diff --git a/fda-units-service/app.py b/fda-units-service/app.py
index 33fcda6928777f2d02ea6a0f903a5af25edb7951..8541b31270ca27302d3dbb6d6ad9adeb783adcba 100644
--- a/fda-units-service/app.py
+++ b/fda-units-service/app.py
@@ -6,6 +6,7 @@ from flasgger import Swagger
 from flasgger.utils import swag_from
 from flasgger import LazyString, LazyJSONEncoder
 from list import list_units, get_uri
+from list_concept import get_concept
 from validate import validator, stringmapper
 from gevent.pywsgi import WSGIServer
 from save import insert_mdb_concepts, insert_mdb_columns_concepts
@@ -137,6 +138,19 @@ def save_column_concept():
         res = {"success": False, "message": str(e)}
         return jsonify(res), 500
 
+@app.route('/api/units/getconcept/<cname>', methods=["GET"], endpoint='get_concept')
+@swag_from('getconcept.yml')
+def get_concept(cname):
+    logging.debug('endpoint get concept, cname=%s, body=%s', cname, request)
+    try:
+        res = get_concept(cname)
+        logging.debug('get concept resulted in concept: %s', res)
+        return jsonify(res), 200
+    except Exception as e:
+        logging.error('Failed to get concept: %s', e)
+        res = {"success": False, "message": str(e)}
+        return jsonify(res), 500
+
 
 rest_server_port = int(os.getenv("PORT_APP"))
 eureka_client.init(eureka_server=os.getenv('EUREKA_SERVER', 'http://localhost:9090/eureka/'),
diff --git a/fda-units-service/list.py b/fda-units-service/list.py
index ee96da0e69dc46447d62e3016ced8c1ad5e6c303..ce5081b5ba42c7240a9ffefbeb8becf352a9088c 100644
--- a/fda-units-service/list.py
+++ b/fda-units-service/list.py
@@ -15,7 +15,11 @@ g.parse('onto/om-2.ttl', format='turtle')
 om = rdflib.Namespace('http://www.ontology-of-units-of-measure.org/resource/om-2/')
 rdf_schema = rdflib.Namespace('http://www.w3.org/2000/01/rdf-schema#')
 
-r={}
+f = rdflib.Graph()
+f.namespace_manager.bind('qudt', 'http://qudt.org/2.1/vocab/unit')
+f.parse('onto/VOCAB_QUDT-UNITS-ALL-v2.1.ttl', format='turtle')
+
+#qudt = rdflib.Namespace('http://qudt.org/2.1/vocab/unit')
 
 def list_units(string,offset=0):
     if bool(re.match('^[a-zA-Z0-9\\s]+$',string)):
diff --git a/fda-units-service/list_concept.py b/fda-units-service/list_concept.py
new file mode 100644
index 0000000000000000000000000000000000000000..846f5f2883965b745496c6de0c90c11f3b39ff24
--- /dev/null
+++ b/fda-units-service/list_concept.py
@@ -0,0 +1,45 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+"""
+Created on Wed Nov  9 11:25:52 2022
+
+@author: Cornelia Michlits
+"""
+
+import rdflib
+import re
+import sys
+g = rdflib.Graph()
+g.namespace_manager.bind('iaq', 'https://w3id.org/digitalconstruction/IndoorAirQuality#')
+g.parse('onto/iaq.nt', format='nt')
+
+f = rdflib.Graph()
+f.namespace_manager.bind('geom', 'http://data.ign.fr/def/geometrie')
+f.parse('onto/def--geometrie.ttl', format='turtle')
+
+h = rdflib.Graph()
+h.namespace_manager.bind('op', 'http://environment.data.gov.au/def/op')
+h.parse('onto/def--op.nt', format='nt')
+
+def get_concept(string,limit=sys.maxsize, offset=0):
+    if bool(re.match('^[a-zA-Z0-9\-\\\s]+$',string)):
+        l_query = """
+        SELECT ?s ?p ?o
+        WHERE{
+            ?s ?p ?o .
+            FILTER regex(str(?s),\""""+string+"""\","i")
+                         }LIMIT """+str(limit)+""" OFFSET """+str(offset)
+        qres1 = g.query(l_query)
+        res = list()
+        for row in qres1:
+            res.append({"S-URI": str(row.s), "P": str(row.p), "O": str(row.o)})
+        qres2 = f.query(l_query)
+        for row in qres2:
+            res.append({"S-URI": str(row.s), "P": str(row.p), "O": str(row.o)})
+        return res
+        qres3 = h.query(l_query)
+        for row in qres3:
+            res.append({"S-URI": str(row.s), "P": str(row.p), "O": str(row.o)})
+        return res
+    else:
+        return None
\ No newline at end of file
diff --git a/fda-units-service/onto/VOCAB_QUDT-UNITS-ALL-v2.1.ttl b/fda-units-service/onto/VOCAB_QUDT-UNITS-ALL-v2.1.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d31d42fe167f67c0f90fbad3981c96d9bb79ed20
--- /dev/null
+++ b/fda-units-service/onto/VOCAB_QUDT-UNITS-ALL-v2.1.ttl
@@ -0,0 +1,25588 @@
+# baseURI: http://qudt.org/2.1/vocab/unit
+# imports: http://qudt.org/2.1/schema/facade/qudt
+# imports: http://qudt.org/2.1/vocab/prefix
+# imports: http://qudt.org/2.1/vocab/quantitykind
+# imports: http://qudt.org/2.1/vocab/sou
+
+@prefix dc: <http://purl.org/dc/elements/1.1/> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix prefix: <http://qudt.org/vocab/prefix/> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix qkdv: <http://qudt.org/vocab/dimensionvector/> .
+@prefix quantitykind: <http://qudt.org/vocab/quantitykind/> .
+@prefix qudt: <http://qudt.org/schema/qudt/> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
+@prefix sou: <http://qudt.org/vocab/sou/> .
+@prefix unit: <http://qudt.org/vocab/unit/> .
+@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
+@prefix voag: <http://voag.linkedmodel.org/schema/voag#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+<http://qudt.org/2.1/vocab/unit>
+  a owl:Ontology ;
+  vaem:hasGraphMetadata vaem:GMD_QUDT-UNITS-ALL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "QUDT Units of Measure for All Units Release 2.1.21" ;
+  owl:imports <http://qudt.org/2.1/schema/facade/qudt> ;
+  owl:imports <http://qudt.org/2.1/vocab/prefix> ;
+  owl:imports <http://qudt.org/2.1/vocab/quantitykind> ;
+  owl:imports <http://qudt.org/2.1/vocab/sou> ;
+  owl:versionIRI <http://qudt.org/2.1/vocab/unit> ;
+.
+unit:A
+  a qudt:Unit ;
+  dcterms:description """The  \\(\\textit{ampere}\\), often shortened to \\(\\textit{amp}\\), is the SI unit of electric current and is one of the seven SI base units.
+\\(\\text{A}\\ \\equiv\\ \\text{amp (or ampere)}\\ \\equiv\\ \\frac{\\text{C}}{\\text{s}}\\ \\equiv\\ \\frac{\\text{coulomb}}{\\text{second}}\\ \\equiv\\ \\frac{\\text{J}}{\\text{Wb}}\\ \\equiv\\ \\frac{\\text{joule}}{\\text{weber}}\\)
+Note that SI supports only the use of symbols and deprecates the use of any abbreviations for units."""^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:CGS-EMU ;
+  qudt:allowedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:allowedUnitOfSystem sou:PLANCK ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ampere"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:CurrentLinkage ;
+  qudt:hasQuantityKind quantitykind:DisplacementCurrent ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ;
+  qudt:hasQuantityKind quantitykind:MagneticTension ;
+  qudt:hasQuantityKind quantitykind:MagnetomotiveForce ;
+  qudt:hasQuantityKind quantitykind:TotalCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA101" ;
+  qudt:iec61360Code "0112/2///62720#UAD717" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ampere?oldid=494026699"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/ampere> ;
+  qudt:symbol "A" ;
+  qudt:ucumCode "A"^^qudt:UCUMcs ;
+  qudt:udunitsCode "A" ;
+  qudt:uneceCommonCode "AMP" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere"@en ;
+  skos:altLabel "amp" ;
+.
+unit:A-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Ampere hour}\\) is a practical unit of electric charge equal to the charge flowing in one hour through a conductor passing one ampere. An ampere-hour or amp-hour (symbol \\(Ah,\\,AHr,\\, A \\cdot h, A h\\)) is a unit of electric charge, with sub-units milliampere-hour (\\(mAh\\)) and milliampere second (\\(mAs\\)). One ampere-hour is equal to 3600 coulombs (ampere-seconds), the electric charge transferred by a steady current of one ampere for one hour. The ampere-hour is frequently used in measurements of electrochemical systems such as electroplating and electrical batteries. The commonly seen milliampere-hour (\\(mAh\\) or \\(mA \\cdot h\\)) is one-thousandth of an ampere-hour (\\(3.6 \\,coulombs\\))."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA102" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ampere-hour"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-86"^^xsd:anyURI ;
+  qudt:symbol "A⋅hr" ;
+  qudt:ucumCode "A.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "AMH" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Hour"@en ;
+.
+unit:A-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of electromagnetic moment."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(A-M^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
+  qudt:iec61360Code "0112/2///62720#UAA106" ;
+  qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/ampere+meter+squared"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "A⋅m²" ;
+  qudt:ucumCode "A.m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A5" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Square Meter"@en-us ;
+  rdfs:label "Ampere Square Metre"@en ;
+.
+unit:A-M2-PER-J-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of gyromagnetic ratio."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(A-m^2/J-s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:GyromagneticRatio ;
+  qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
+  qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/ampere+square+meter+per+joule+second"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "A⋅m²/(J⋅s)" ;
+  qudt:ucumCode "A.m2.J-1.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A.m2/(J.s)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Square Meter Per Joule Second"@en-us ;
+  rdfs:label "Ampere Square Metre Per Joule Second"@en ;
+.
+unit:A-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAB073" ;
+  qudt:plainTextDescription "SI base unit ampere divided by the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "A/cm" ;
+  qudt:ucumCode "A.cm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A2" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Per Centimeter"@en-us ;
+  rdfs:label "Ampere Per Centimetre"@en ;
+.
+unit:A-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB052" ;
+  qudt:plainTextDescription "SI base unit ampere divided by the 0.0001-fold  of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "A/cm²" ;
+  qudt:ucumCode "A.cm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/cm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A4" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Per Square Centimeter"@en-us ;
+  rdfs:label "Ampere Per Square Centimetre"@en ;
+.
+unit:A-PER-DEG_C
+  a qudt:Unit ;
+  dcterms:description "A measure used to express how a current is subject to temperature. Originally used in Wien's Law to describe phenomena related to filaments. One use today is to express how a current generator derates with temperature."^^rdf:HTML ;
+  qudt:conversionMultiplier 57.2957795 ;
+  qudt:expression "\\(A/degC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentPerUnitTemperature ;
+  qudt:informativeReference "http://books.google.com/books?id=zkErAAAAYAAJ&pg=PA60&lpg=PA60&dq=ampere+per+degree"^^xsd:anyURI ;
+  qudt:informativeReference "http://web.mit.edu/course/21/21.guide/use-tab.htm"^^xsd:anyURI ;
+  qudt:symbol "A/°C" ;
+  qudt:ucumCode "A.Cel-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/Cel"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere per Degree Celsius"@en ;
+.
+unit:A-PER-J
+  a qudt:Unit ;
+  dcterms:description "The inverse measure of \\(joule-per-ampere\\) or \\(weber\\). The measure for the reciprical of magnetic flux."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(A/J\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentPerUnitEnergy ;
+  qudt:symbol "A/J" ;
+  qudt:ucumCode "A.J-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/J"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere per Joule"@en ;
+.
+unit:A-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description " is the SI unit of magnetic field strength. One ampere per meter is equal to \\(\\pi/250\\) oersteds (\\(12.566\\, 371\\,millioersteds\\)) in CGS units. The ampere per meter is also the SI unit of \"magnetization\" in the sense of magnetic dipole moment per unit volume; in this context \\(1 A/m = 0.001\\,emu\\,per\\,cubic\\,centimeter\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(A/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Coercivity ;
+  qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAA104" ;
+  qudt:symbol "A/m" ;
+  qudt:ucumCode "A.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "AE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere per Meter"@en-us ;
+  rdfs:label "Ampere per Metre"@en ;
+.
+unit:A-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Ampere Per Square Meter}\\) is a unit in the category of electric current density. This unit is commonly used in the SI unit system."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(A/m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DisplacementCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:TotalCurrentDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA105" ;
+  qudt:informativeReference "https://cdd.iec.ch/cdd/iec61360/iec61360.nsf/Units/0112-2---62720%23UAA105"^^xsd:anyURI ;
+  qudt:symbol "A/m²" ;
+  qudt:ucumCode "A.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere per Square Meter"@en-us ;
+  rdfs:label "Ampere per Square Metre"@en ;
+.
+unit:A-PER-M2-K2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(a/m^2-k^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H-2T0D0 ;
+  qudt:hasQuantityKind quantitykind:RichardsonConstant ;
+  qudt:iec61360Code "0112/2///62720#UAB353" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "A/m²⋅k²" ;
+  qudt:ucumCode "A.m-2.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/(m2.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A6" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere per Square Meter Square Kelvin"@en-us ;
+  rdfs:label "Ampere per Square Metre Square Kelvin"@en ;
+.
+unit:A-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAB072" ;
+  qudt:plainTextDescription "SI base unit ampere divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "A/mm" ;
+  qudt:ucumCode "A.mm-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/mm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A3" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Per Millimeter"@en-us ;
+  rdfs:label "Ampere Per Millimetre"@en ;
+.
+unit:A-PER-MilliM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB051" ;
+  qudt:plainTextDescription "SI base unit ampere divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "A/mm²" ;
+  qudt:ucumCode "A.mm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/mm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A7" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Per Square Millimeter"@en-us ;
+  rdfs:label "Ampere Per Square Millimetre"@en ;
+.
+unit:A-PER-RAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Ampere per Radian}\\) is a derived unit for measuring the amount of current per unit measure of angle, expressed in ampere per radian."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(a-per-rad\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentPerAngle ;
+  qudt:symbol "A/rad" ;
+  qudt:ucumCode "A.rad-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "A/rad"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere per Radian"@en ;
+.
+unit:A-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA107" ;
+  qudt:plainTextDescription "product out of the SI base unit ampere and the SI base unit second" ;
+  qudt:symbol "A⋅s" ;
+  qudt:ucumCode "A.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A8" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Second"@en ;
+.
+unit:AC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The acre is a unit of area in a number of different systems, including the imperial and U.S. customary systems. Its international symbol is ac. The most commonly used acres today are the international acre and, in the United States, the survey acre. The most common use of the acre is to measure tracts of land. One international acre is equal to 4046.8564224 square metres."^^rdf:HTML ;
+  qudt:conversionMultiplier 4046.8564224 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Acre"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA320" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Acre?oldid=495387342"^^xsd:anyURI ;
+  qudt:symbol "acre" ;
+  qudt:ucumCode "[acr_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "ACR" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Acre"@en ;
+  skos:altLabel "acre" ;
+.
+unit:AC-FT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "An acre-foot is a unit of volume commonly used in the United States in reference to large-scale water resources, such as reservoirs, aqueducts, canals, sewer flow capacity, and river flows. It is defined by the volume of one acre of surface area to a depth of one foot. Since the acre is defined as a chain by a furlong (\\(66 ft \\times 660 ft\\)) the acre-foot is exactly \\(43,560 cubic feet\\). For irrigation water, the volume of \\(1 ft \\times 1 \\; ac = 43,560 \\; ft^{3} (1,233.482 \\; m^{3}, 325,851 \\; US gal)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1233.4818375475202 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Acre-foot"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-35"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/acreFoot> ;
+  qudt:symbol "ac⋅ft" ;
+  qudt:ucumCode "[acr_br].[ft_i]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Acre Foot"@en ;
+.
+unit:AFN
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Afghanistan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Afghani"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Afghani?oldid=485904590"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Afghani"@en ;
+.
+unit:AMD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Armenia"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Armenian_dram"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Armenian_dram?oldid=492709723"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Armenian Dram"@en ;
+.
+unit:AMU
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{Unified Atomic Mass Unit}\\) (symbol: \\(\\mu\\)) or \\(\\textit{dalton}\\) (symbol: Da) is a unit that is used for indicating mass on an atomic or molecular scale. It is defined as one twelfth of the rest mass of an unbound atom of carbon-12 in its nuclear and electronic ground state, and has a value of \\(1.660538782(83) \\times 10^{-27} kg\\).  One \\(Da\\) is approximately equal to the mass of one proton or one neutron. The CIPM have categorised it as a \\(\\textit{\"non-SI unit whose values in SI units must be obtained experimentally\"}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ;
+  qudt:exactMatch unit:Da ;
+  qudt:exactMatch unit:U ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ;
+  qudt:symbol "amu" ;
+  qudt:ucumCode "u"^^qudt:UCUMcs ;
+  qudt:udunitsCode "u" ;
+  qudt:uneceCommonCode "D43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Atomic mass unit"@en ;
+  owl:sameAs unit:Da ;
+  owl:sameAs unit:U ;
+.
+unit:ANGSTROM
+  a qudt:Unit ;
+  dcterms:description "The \\(Angstr\\ddot{o}m\\) is an internationally recognized unit of length equal to \\(0.1 \\,nanometre\\) or \\(1 \\times 10^{-10}\\,metres\\).  Although accepted for use, it is not formally defined within the International System of Units(SI). The angstrom is often used in the natural sciences to express the sizes of atoms, lengths of chemical bonds and the wavelengths of electromagnetic radiation, and in technology for the dimensions of parts of integrated circuits. It is also commonly used in structural biology."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/%C3%85ngstr%C3%B6m"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA023" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ångström?oldid=436192495"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(\\AA\\)"^^qudt:LatexString ;
+  qudt:symbol "Å" ;
+  qudt:ucumCode "Ao"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Å" ;
+  qudt:udunitsCode "Å" ;
+  qudt:uneceCommonCode "A11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Angstrom"@en ;
+.
+unit:ANGSTROM3
+  a qudt:Unit ;
+  dcterms:description "A unit that is a non-SI unit, specifically a CGS unit,  of polarizability known informally as polarizability volume.  The SI defined units for polarizability are C*m^2/V and can be converted to \\(Angstr\\ddot{o}m\\)^3 by multiplying the SI value by 4 times pi times the vacuum permittivity and then converting the resulting m^3 to \\(Angstr\\ddot{o}m\\)^3 through the SI base 10 conversion (multiplying by 10^-30)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000000000000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L0I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Polarizability ;
+  qudt:symbol "Ã…^3" ;
+  qudt:unitOfSystem sou:CGS-GAUSS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Angstrom^3"@en ;
+  rdfs:label "Angstrom^3"@en-us ;
+.
+unit:ARCMIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A minute of arc, arcminute, or minute arc (MOA), is a unit of angular measurement equal to one sixtieth (1/60) of one degree (circle/21,600), or \\(\\pi /10,800 radians\\). In turn, a second of arc or arcsecond is one sixtieth (1/60) of one minute of arc. Since one degree is defined as one three hundred and sixtieth (1/360) of a rotation, one minute of arc is 1/21,600 of a rotation. "^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000290888209 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:MIN_Angle ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA097" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Minute_of_arc"^^xsd:anyURI ;
+  qudt:siUnitsExpression "1" ;
+  qudt:symbol "'" ;
+  qudt:ucumCode "'"^^qudt:UCUMcs ;
+  qudt:udunitsCode "′" ;
+  qudt:uneceCommonCode "D61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ArcMinute"@en ;
+  owl:sameAs unit:MIN_Angle ;
+.
+unit:ARCSEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Arc Second\" is a unit of angular measure, also called the \\(\\textit{second of arc}\\), equal to \\(1/60 \\; arcminute\\). One arcsecond is a very small angle: there are 1,296,000 in a circle. The SI recommends \\(\\textit{double prime}\\) (\\(''\\)) as the symbol for the arcsecond. The symbol has become common in astronomy, where very small angles are stated in milliarcseconds (\\(mas\\))."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000484813681 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA096" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Minute_of_arc#Symbols.2C_abbreviations_and_subdivisions"^^xsd:anyURI ;
+  qudt:symbol "\"" ;
+  qudt:ucumCode "''"^^qudt:UCUMcs ;
+  qudt:udunitsCode "″" ;
+  qudt:uneceCommonCode "D62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ArcSecond"@en ;
+.
+unit:ARE
+  a qudt:Unit ;
+  dcterms:description "An 'are' is a unit of area equal to 0.02471 acre and 100 centare."^^rdf:HTML ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAB048" ;
+  qudt:informativeReference "http://www.anidatech.com/units.html"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/are> ;
+  qudt:symbol "a" ;
+  qudt:ucumCode "ar"^^qudt:UCUMcs ;
+  qudt:udunitsCode "a" ;
+  qudt:uneceCommonCode "ARE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "are"@en ;
+.
+unit:ARS
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Argentina"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Argentine_peso"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Argentine_peso?oldid=491431588"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Argentine Peso"@en ;
+.
+unit:AT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{ampere-turn}\\) was the MKS unit of magnetomotive force (MMF), represented by a direct current of one ampere flowing in a single-turn loop in a vacuum. \"Turns\" refers to the winding number of an electrical conductor comprising an inductor. The ampere-turn was replaced by the SI unit, \\(ampere\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagnetomotiveForce ;
+  qudt:symbol "AT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Turn"@en ;
+.
+unit:AT-PER-IN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{Ampere Turn per Inch}\\) is a measure of magnetic field intensity and is eual to 12.5664 Oersted."^^rdf:HTML ;
+  qudt:conversionMultiplier 39.3700787 ;
+  qudt:expression "\\(At/in\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:symbol "At/in" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Turn per Inch"@en ;
+.
+unit:AT-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The  \\(\\textit{Ampere Turn per Metre}\\) is the SI unit of magnetic field strength. One ampere per meter is equal to \\(\\pi/250\\) oersteds (12.566 371 millioersteds) in CGS units. The ampere per meter is also the SI unit of \"magnetization\" in the sense of magnetic dipole moment per unit volume; in this context \\(1 A/m = 0.001 emu per cubic centimeter\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(At/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:symbol "At/m" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ampere Turn per Meter"@en-us ;
+  rdfs:label "Ampere Turn per Metre"@en ;
+.
+unit:ATM
+  a qudt:Unit ;
+  dcterms:description "The standard atmosphere (symbol: atm) is an international reference pressure defined as \\(101.325 \\,kPa\\) and formerly used as unit of pressure. For practical purposes it has been replaced by the bar which is \\(100 kPa\\). The difference of about 1% is not significant for many applications, and is within the error range of common pressure gauges."^^qudt:LatexString ;
+  qudt:conversionMultiplier 101325.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA322" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Atmosphere_(unit)"^^xsd:anyURI ;
+  qudt:symbol "atm" ;
+  qudt:ucumCode "atm"^^qudt:UCUMcs ;
+  qudt:udunitsCode "atm" ;
+  qudt:uneceCommonCode "ATM" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Standard Atmosphere"@en ;
+.
+unit:ATM-M3-PER-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit that consists of the power of the SI base unit metre with the exponent 3 multiplied by the unit atmosphere divided by the SI base unit mol."^^qudt:LatexString ;
+  qudt:conversionMultiplier 101325.0 ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:HenrysLawVolatilityConstant ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Atmosphere Cubic Meter per Mole"@en ;
+  rdfs:label "Atmosphere Cubic Meter per Mole"@en-us ;
+.
+unit:ATM_T
+  a qudt:Unit ;
+  dcterms:description "A technical atmosphere (symbol: at) is a non-SI unit of pressure equal to one kilogram-force per square centimeter. The symbol 'at' clashes with that of the katal (symbol: 'kat'), the SI unit of catalytic activity; a kilotechnical atmosphere would have the symbol 'kat', indistinguishable from the symbol for the katal. It also clashes with that of the non-SI unit, the attotonne, but that unit would be more likely be rendered as the equivalent SI unit. Assay ton (abbreviation 'AT') is not a unit of measurement, but a standard quantity used in assaying ores of precious metals; it is \\(29 1D6 \\,grams\\) (short assay ton) or \\(32 2D3 \\,grams\\) (long assay ton), the amount which bears the same ratio to a milligram as a short or long ton bears to a troy ounce. In other words, the number of milligrams of a particular metal found in a sample of this size gives the number of troy ounces contained in a short or long ton of ore."^^qudt:LatexString ;
+  qudt:conversionMultiplier 98066.5 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA321" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Technical_atmosphere"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(1 at = 98.0665 kPa \\approx 0.96784 standard atmospheres\\)"^^qudt:LatexString ;
+  qudt:symbol "at" ;
+  qudt:ucumCode "att"^^qudt:UCUMcs ;
+  qudt:udunitsCode "at" ;
+  qudt:uneceCommonCode "ATT" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Technical Atmosphere"@en ;
+.
+unit:AU
+  a qudt:Unit ;
+  dcterms:description "An astronomical unit (abbreviated as AU, au, a.u., or ua) is a unit of length equal to \\(149,597,870,700 metres\\) (\\(92,955,807.273 mi\\)) or approximately the mean Earth Sun distance."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 149597870691.6 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Astronomical_unit"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB066" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Astronomical_unit"^^xsd:anyURI ;
+  qudt:plainTextDescription "An astronomical unit (abbreviated as AU, au, a.u., or ua) is a unit of length equal to 149,597,870,700 metres (92,955,807.273 mi) or approximately the mean Earth Sun distance. The symbol ua is recommended by the International Bureau of Weights and Measures, and the international standard ISO 80000, while au is recommended by the International Astronomical Union, and is more common in Anglosphere countries. In general, the International System of Units only uses capital letters for the symbols of units which are named after individual scientists, while au or a.u. can also mean atomic unit or even arbitrary unit. However, the use of AU to refer to the astronomical unit is widespread. The astronomical constant whose value is one astronomical unit is referred to as unit distance and is given the symbol A. [Wikipedia]" ;
+  qudt:symbol "AU" ;
+  qudt:ucumCode "AU"^^qudt:UCUMcs ;
+  qudt:udunitsCode "au" ;
+  qudt:udunitsCode "ua" ;
+  qudt:uneceCommonCode "A12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "astronomical-unit"@en ;
+.
+unit:AUD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Australia, Australian Antarctic Territory, Christmas Island, Cocos (Keeling) Islands, Heard and McDonald Islands, Kiribati, Nauru, Norfolk Island, Tuvalu"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Australian_dollar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Australian_dollar?oldid=495046408"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Australian Dollar"@en ;
+.
+unit:AWG
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Aruba"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Aruban_florin"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Aruban_florin?oldid=492925638"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Aruban Guilder"@en ;
+.
+unit:AZN
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Azerbaijan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Azerbaijani_manat"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Azerbaijani_manat?oldid=495479090"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Azerbaijanian Manat"@en ;
+.
+unit:A_Ab
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Abampere"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:exactMatch unit:BIOT ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Abampere?oldid=489318583"^^xsd:anyURI ;
+  qudt:informativeReference "http://wordinfo.info/results/abampere"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-13?rskey=i2kRRz"^^xsd:anyURI ;
+  qudt:isScalingOf unit:A ;
+  qudt:latexDefinition "\\(1\\,abA = 10\\,A\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abampere> ;
+  qudt:plainTextDescription "The Abampere (aA), also called the biot after Jean-Baptiste Biot, is the basic electromagnetic unit of electric current in the emu-cgs system of units (electromagnetic cgs). One abampere is equal to ten amperes in the SI system of units. An abampere is the constant current that produces, when maintained in two parallel conductors of negligible circular section and of infinite length placed 1 centimetre apart, a force of 2 dynes per centimetre between the two conductors." ;
+  qudt:symbol "abA" ;
+  qudt:ucumCode "Bi"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abampere"@en ;
+  owl:sameAs unit:BIOT ;
+  skos:altLabel "biot" ;
+.
+unit:A_Ab-CentiM2
+  a qudt:Unit ;
+  dcterms:description "\"Abampere Square centimeter\" is the unit of magnetic moment in the electromagnetic centimeter-gram-second system."^^rdf:HTML ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:expression "\\(aAcm2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricConductivity ;
+  qudt:informativeReference "http://wordinfo.info/unit/4266"^^xsd:anyURI ;
+  qudt:symbol "abA⋅cm²" ;
+  qudt:ucumCode "Bi.cm2"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  vaem:todo "Determine type for magnetic moment" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abampere Square centimeter"@en-us ;
+  rdfs:label "Abampere Square centimetre"@en ;
+.
+unit:A_Ab-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description "Abampere Per Square Centimeter (\\(aA/cm^2\\)) is a unit in the category of Electric current density. It is also known as abamperes per square centimeter, abampere/square centimeter, abampere/square centimetre, abamperes per square centimetre, abampere per square centimetre. This unit is commonly used in the cgs unit system. Abampere Per Square Centimeter (\\(aA/cm^2\\)) has a dimension of \\(L^{-2}I\\) where L is length, and I is electric current. It can be converted to the corresponding standard SI unit \\(A/m^{2}\\) by multiplying its value by a factor of 100000."^^qudt:LatexString ;
+  qudt:conversionMultiplier 100000.0 ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:expression "\\(aba-per-cm2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:informativeReference "http://wordinfo.info/results/abampere"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_current_density--abampere_per_square_centimeter.cfm"^^xsd:anyURI ;
+  qudt:symbol "abA/cm²" ;
+  qudt:ucumCode "Bi.cm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "Bi/cm2"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abampere per Square Centimeter"@en-us ;
+  rdfs:label "Abampere per Square Centimetre"@en ;
+.
+unit:A_Stat
+  a qudt:Unit ;
+  dcterms:description "\"Statampere\" (statA) is a unit in the category of Electric current. It is also known as statamperes. This unit is commonly used in the cgs unit system. Statampere (statA) has a dimension of I where I is electric current. It can be converted to the corresponding standard SI unit A by multiplying its value by a factor of 3.355641E-010."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0000000003335641 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_current--statampere.cfm"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statampere> ;
+  qudt:symbol "statA" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statampere"@en ;
+.
+unit:A_Stat-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description "The Statampere per Square Centimeter is a unit of electric current density in the c.g.s. system of units."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000003335641 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:expression "\\(statA / cm^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:symbol "statA/cm²" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statampere per Square Centimeter"@en-us ;
+  rdfs:label "Statampere per Square Centimetre"@en ;
+.
+unit:AttoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "An AttoColomb is \\(10^{-18} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Atto ;
+  qudt:symbol "aC" ;
+  qudt:ucumCode "aC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "AttoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:AttoFARAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:iec61360Code "0112/2///62720#UAA319" ;
+  qudt:isScalingOf unit:FARAD ;
+  qudt:plainTextDescription "0,000 000 000 000 000 001-fold of the SI derived unit farad" ;
+  qudt:prefix prefix:Atto ;
+  qudt:symbol "aF" ;
+  qudt:ucumCode "aF"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H48" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Attofarad"@en ;
+.
+unit:AttoJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB125" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "0,000 000 000 000 000 001-fold of the derived SI unit joule" ;
+  qudt:prefix prefix:Atto ;
+  qudt:symbol "aJ" ;
+  qudt:ucumCode "aJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Attojoule"@en ;
+.
+unit:AttoJ-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Action ;
+  qudt:iec61360Code "0112/2///62720#UAB151" ;
+  qudt:plainTextDescription "unit of the Planck's constant as product of the SI derived unit joule and the SI base unit second" ;
+  qudt:symbol "aJ⋅s" ;
+  qudt:ucumCode "aJ.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Attojoule Second"@en ;
+.
+unit:B
+  a qudt:DimensionlessUnit ;
+  a qudt:LogarithmicUnit ;
+  a qudt:Unit ;
+  dcterms:description "A logarithmic unit of sound pressure equal to 10 decibels (dB),  It is defined as: \\(1 B = (1/2) \\log_{10}(Np)\\)"^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bel"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:SoundExposureLevel ;
+  qudt:hasQuantityKind quantitykind:SoundPowerLevel ;
+  qudt:hasQuantityKind quantitykind:SoundPressureLevel ;
+  qudt:hasQuantityKind quantitykind:SoundReductionIndex ;
+  qudt:iec61360Code "0112/2///62720#UAB351" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_unit"^^xsd:anyURI ;
+  qudt:symbol "B" ;
+  qudt:ucumCode "B"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bel"@en ;
+.
+unit:BAN
+  a qudt:Unit ;
+  dcterms:description "A ban is a logarithmic unit which measures information or entropy, based on base 10 logarithms and powers of 10, rather than the powers of 2 and base 2 logarithms which define the bit. One ban is approximately \\(3.32 (log_2 10) bits\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 2.30258509 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ban"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ban?oldid=472969907"^^xsd:anyURI ;
+  qudt:symbol "ban" ;
+  qudt:uneceCommonCode "Q15" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ban"@en ;
+.
+unit:BAR
+  a qudt:Unit ;
+  dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to \\(100,000\\,Pa\\). It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to \\(100,000\\,Pa = 1 \\,bar \\approx 750.0616827\\, Torr\\). Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ;
+  qudt:conversionMultiplier 100000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA323" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar?oldid=493875987"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/bar> ;
+  qudt:symbol "bar" ;
+  qudt:ucumCode "bar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "BAR" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bar"@en ;
+.
+unit:BAR-L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA326" ;
+  qudt:plainTextDescription "product of the unit bar and the unit litre divided by the SI base unit second" ;
+  qudt:symbol "bar⋅L/s" ;
+  qudt:ucumCode "bar.L.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "bar.L/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bar Liter Per Second"@en-us ;
+  rdfs:label "Bar Litre Per Second"@en ;
+.
+unit:BAR-M3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA814" ;
+  qudt:plainTextDescription "product out of the 0.001-fold of the unit bar and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "bar⋅m³/s" ;
+  qudt:ucumCode "bar.m3.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "bar.m3/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F92" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bar Cubic Meter Per Second"@en-us ;
+  rdfs:label "Bar Cubic Metre Per Second"@en ;
+.
+unit:BAR-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA325" ;
+  qudt:plainTextDescription "pressure relation consisting of the unit bar divided by the unit bar" ;
+  qudt:symbol "bar/bar" ;
+  qudt:ucumCode "bar.bar-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "bar/bar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bar Per Bar"@en ;
+.
+unit:BAR-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:PressureCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA324" ;
+  qudt:plainTextDescription "unit with the name bar divided by the SI base unit kelvin" ;
+  qudt:symbol "bar/K" ;
+  qudt:ucumCode "bar.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "bar/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bar Per Kelvin"@en ;
+.
+unit:BARAD
+  a qudt:Unit ;
+  dcterms:description "A barad is a dyne per square centimetre (\\(dyn \\cdot cm^{-2}\\)), and is equal to \\(0.1 Pa \\) (\\(1 \\, micro \\, bar\\), \\(0.000014504 \\, p.s.i.\\)). Note that this is precisely the microbar, the confusable bar being related in size to the normal atmospheric pressure, at \\(100\\,dyn \\cdot cm^{-2}\\). Accordingly barad was not abbreviated, so occurs prefixed as in \\(cbarad = centibarad\\). Despite being the coherent unit for pressure in c.g.s., barad was probably much less common than the non-coherent bar. Barad is sometimes called \\(barye\\), a name also used for \\(bar\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:exactMatch unit:BARYE ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "Ba" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barad"@en ;
+  owl:sameAs unit:BARYE ;
+.
+unit:BARN
+  a qudt:Unit ;
+  dcterms:description "A barn (symbol b) is a unit of area. Originally used in nuclear physics for expressing the cross sectional area of nuclei and nuclear reactions, today it is used in all fields of high energy physics to express the cross sections of any scattering process, and is best understood as a measure of the probability of interaction between small particles. A barn is defined as \\(10^{-28} m^2 (100 fm^2)\\) and is approximately the cross sectional area of a uranium nucleus. The barn is also the unit of area used in nuclear quadrupole resonance and nuclear magnetic resonance to quantify the interaction of a nucleus with an electric field gradient. While the barn is not an SI unit, it is accepted for use with the SI due to its continued use in particle physics."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000000000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Barn"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAB297" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Barn?oldid=492907677"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Barn_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/barn> ;
+  qudt:symbol "b" ;
+  qudt:ucumCode "b"^^qudt:UCUMcs ;
+  qudt:udunitsCode "b" ;
+  qudt:uneceCommonCode "A14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barn"@en ;
+.
+unit:BARYE
+  a qudt:Unit ;
+  dcterms:description "<p>The barye, or sometimes barad, barrie, bary, baryd, baryed, or barie, is the centimetre-gram-second (CGS) unit of pressure. It is equal to 1 dyne per square centimetre.</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Barye"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:CGS ;
+  qudt:exactMatch unit:BARAD ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Barye?oldid=478631158"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(g/(cm\\cdot s{2}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/barye> ;
+  qudt:symbol "Ba" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barye"@en ;
+  owl:sameAs unit:BARAD ;
+  skos:altLabel "barad" ;
+  skos:altLabel "barie" ;
+  skos:altLabel "bary" ;
+  skos:altLabel "baryd" ;
+  skos:altLabel "baryed" ;
+.
+unit:BBD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Barbados"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Barbadian_dollar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Barbadian_dollar?oldid=494388633"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barbados Dollar"@en ;
+.
+unit:BBL
+  a qudt:Unit ;
+  dcterms:description "A barrel is one of several units of volume, with dry barrels, fluid barrels (UK beer barrel, U.S. beer barrel), oil barrel, etc. The volume of some barrel units is double others, with various volumes in the range of about 100-200 litres (22-44 imp gal; 26-53 US gal)."^^rdf:HTML ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Barrel"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA334" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Barrel?oldid=494614619"^^xsd:anyURI ;
+  qudt:symbol "bbl" ;
+  qudt:ucumCode "[bbl_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "BLL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel"@en ;
+.
+unit:BBL_UK_PET
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1591132 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA329" ;
+  qudt:plainTextDescription "unit of the volume for crude oil according to the Imperial system of units" ;
+  qudt:symbol "bbl{UK petroleum}" ;
+  qudt:uneceCommonCode "J57" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (UK Petroleum)"@en ;
+.
+unit:BBL_UK_PET-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001841587 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA331" ;
+  qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit day" ;
+  qudt:symbol "bbl{UK petroleum}/day" ;
+  qudt:uneceCommonCode "J59" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (UK Petroleum) Per Day"@en ;
+.
+unit:BBL_UK_PET-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000441981 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA332" ;
+  qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit hour" ;
+  qudt:symbol "bbl{UK petroleum}/hr" ;
+  qudt:uneceCommonCode "J60" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (UK Petroleum) Per Hour"@en ;
+.
+unit:BBL_UK_PET-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.002651886 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA330" ;
+  qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit minute" ;
+  qudt:symbol "bbl{UK petroleum}/min" ;
+  qudt:uneceCommonCode "J58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (UK Petroleum) Per Minute"@en ;
+.
+unit:BBL_UK_PET-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1591132 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA333" ;
+  qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "bbl{UK petroleum}" ;
+  qudt:uneceCommonCode "J61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (UK Petroleum) Per Second"@en ;
+.
+unit:BBL_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1589873 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA334" ;
+  qudt:plainTextDescription "unit of the volume for crude oil according to the Anglo-American system of units" ;
+  qudt:symbol "bbl{US petroleum}" ;
+  qudt:ucumCode "[bbl_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "bbl" ;
+  qudt:uneceCommonCode "BLL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (US)"@en ;
+.
+unit:BBL_US-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000184 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA335" ;
+  qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit day" ;
+  qudt:symbol "bsh{US petroleum}/day" ;
+  qudt:ucumCode "[bbl_us].d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bbl_us]/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B1" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (US) Per Day"@en ;
+.
+unit:BBL_US-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0026498 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA337" ;
+  qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit minute" ;
+  qudt:symbol "bbl{US petroleum}/min" ;
+  qudt:ucumCode "[bbl_us].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bbl_us]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "5A" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (US) Per Minute"@en ;
+.
+unit:BBL_US_DRY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1156281989625 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:iec61360Code "0112/2///62720#UAB117" ;
+  qudt:plainTextDescription "non SI-conform unit of the volume in the USA which applies to a resolution from 1912: 1 dry barrel (US) equals approximately to 115,63 litre" ;
+  qudt:symbol "bbl{US dry}" ;
+  qudt:uneceCommonCode "BLD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dry Barrel (US)"@en ;
+.
+unit:BBL_US_PET-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000044163 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA336" ;
+  qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit hour" ;
+  qudt:symbol "bbl{UK petroleum}/hr" ;
+  qudt:ucumCode "[bbl_us].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bbl_us]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (US Petroleum) Per Hour"@en ;
+.
+unit:BBL_US_PET-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1589873 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA338" ;
+  qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "bbl{UK petroleum}/s" ;
+  qudt:ucumCode "[bbl_us].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bbl_us]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Barrel (US Petroleum) Per Second"@en ;
+.
+unit:BDT
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bangladesh"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bangladeshi_taka"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bangladeshi_taka?oldid=492673895"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bangladeshi Taka"@en ;
+.
+unit:BEAT-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Heart Beat per Minute\" is a unit for  'Heart Rate' expressed as \\(BPM\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:HeartRate ;
+  qudt:symbol "BPM" ;
+  qudt:ucumCode "/min{H.B.}"^^qudt:UCUMcs ;
+  qudt:ucumCode "min-1{H.B.}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Heart Beats per Minute"@en ;
+.
+unit:BFT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:iec61360Code "0112/2///62720#UAA110" ;
+  qudt:plainTextDescription "unit for classification of winds according to their speed, developed by Sir Francis Beaufort as measure for the over-all behaviour of a ship's sail at different wind speeds" ;
+  qudt:symbol "Beufort" ;
+  qudt:uneceCommonCode "M19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Beaufort"@en ;
+.
+unit:BHD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bahrain"^^rdf:HTML ;
+  qudt:currencyExponent 3 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bahraini_dinar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bahraini_dinar?oldid=493086643"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bahraini Dinar"@en ;
+.
+unit:BIOT
+  a qudt:Unit ;
+  dcterms:description "\"Biot\" is another name for the abampere (aA), which is the basic electromagnetic unit of electric current in the emu-cgs (centimeter-gram-second) system of units. It is called after a French physicist, astronomer, and mathematician Jean-Baptiste Biot. One abampere is equal to ten amperes in the SI system of units. One abampere is the current, which produces a force of 2 dyne/cm between two infinitively long parallel wires that are 1 cm apart."^^rdf:HTML ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Biot"^^xsd:anyURI ;
+  qudt:exactMatch unit:A_Ab ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAB210" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Biot?oldid=443318821"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/current/10-4/"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/biot> ;
+  qudt:symbol "Bi" ;
+  qudt:ucumCode "Bi"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N96" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Biot"@en ;
+  owl:sameAs unit:A_Ab ;
+.
+unit:BIT
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "In information theory, a bit is the amount of information that, on average, can be stored in a discrete bit. It is thus the amount of information carried by a choice between two equally likely outcomes. One bit corresponds to about 0.693 nats (ln(2)), or 0.301 hartleys (log10(2))."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bit"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAA339" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bit?oldid=495288173"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/bit> ;
+  qudt:symbol "b" ;
+  qudt:ucumCode "bit"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bit"@en ;
+.
+unit:BIT-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A bit per second (B/s) is a unit of data transfer rate equal to 1 bits per second."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DataRate ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobyte_per_second"^^xsd:anyURI ;
+  qudt:symbol "b/s" ;
+  qudt:ucumCode "Bd"^^qudt:UCUMcs ;
+  qudt:ucumCode "bit.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "bit/s"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Bd" ;
+  qudt:udunitsCode "bps" ;
+  qudt:uneceCommonCode "B10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bit per Second"@en ;
+.
+unit:BQ
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI derived unit of activity, usually meaning radioactivity. \"Radioactivity\" is caused when atoms disintegrate, ejecting energetic particles. One becquerel is the radiation caused by one disintegration per second; this is equivalent to about 27.0270 picocuries (pCi). The unit is named for a French physicist, Antoine-Henri Becquerel (1852-1908), the discoverer of radioactivity. Note: both the becquerel and the hertz are basically defined as one event per second, yet they measure different things. The hertz is used to measure the rates of events that happen periodically in a fixed and definite cycle. The becquerel is used to measure the rates of events that happen sporadically and unpredictably, not in a definite cycle."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Becquerel"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA111" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Becquerel?oldid=493710036"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel> ;
+  qudt:symbol "Bq" ;
+  qudt:ucumCode "Bq"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Bq" ;
+  qudt:uneceCommonCode "BQL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Becquerel"@en ;
+.
+unit:BQ-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The only unit in the category of Specific radioactivity. It is also known as becquerels per kilogram, becquerel/kilogram. This unit is commonly used in the SI unit system. Becquerel Per Kilogram (Bq/kg) has a dimension of \\(M{-1}T{-1}\\) where \\(M\\) is mass, and \\(T\\) is time. It essentially the same as the corresponding standard SI unit \\(/kg/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Bq/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassicActivity ;
+  qudt:hasQuantityKind quantitykind:SpecificActivity ;
+  qudt:iec61360Code "0112/2///62720#UAA112" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_radioactivity--becquerel_per_kilogram.cfm"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:plainTextDescription "\"Becquerel per Kilogram\" is used to describe radioactivity, which is often expressed in becquerels per unit of volume or weight, to express how much radioactive material is contained in a sample." ;
+  qudt:symbol "Bq/kg" ;
+  qudt:ucumCode "Bq.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Bq/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Becquerel per Kilogram"@en ;
+.
+unit:BQ-PER-L
+  a qudt:Unit ;
+  dcterms:description "One radioactive disintegration per second from a one part in 10**3 of the SI unit of volume (cubic metre)."@en ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ActivityConcentration ;
+  qudt:symbol "Bq/L" ;
+  qudt:ucumCode "Bq.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Becquerels per litre"@en ;
+.
+unit:BQ-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Bq/m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:SurfaceActivityDensity ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "Bq/m²" ;
+  qudt:ucumCode "Bq.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "Bq/m2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Becquerel per Square Meter"@en-us ;
+  rdfs:label "Becquerel per Square Metre"@en ;
+.
+unit:BQ-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Becquerel Per Cubic Meter (\\(Bq/m3\\)) is a unit in the category of Radioactivity concentration. It is also known as becquerels per cubic meter, becquerel per cubic metre, becquerels per cubic metre, becquerel/cubic inch. This unit is commonly used in the SI unit system. Becquerel Per Cubic Meter (Bq/m3) has a dimension of \\(L{-3}T{-1}\\) where \\(L\\) is length, and \\(T\\) is time. It essentially the same as the corresponding standard SI unit \\(/s\\cdot m{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Bq/m^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ActivityConcentration ;
+  qudt:iec61360Code "0112/2///62720#UAB126" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--radioactivity_concentration--becquerel_per_cubic_meter.cfm"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:plainTextDescription "The SI derived unit of unit in the category of Radioactivity concentration." ;
+  qudt:symbol "Bq/m³" ;
+  qudt:ucumCode "Bq.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "Bq/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Becquerel per Cubic Meter"@en-us ;
+  rdfs:label "Becquerel per Cubic Metre"@en ;
+.
+unit:BQ-SEC-PER-M3
+  a qudt:Unit ;
+  dcterms:description "TBD"@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AbsoluteActivity ;
+  qudt:symbol "Bq⋅s/m³" ;
+  qudt:ucumCode "Bq.s.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Becquerels second per cubic metre"@en ;
+.
+unit:BREATH-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit of respiratory rate."^^rdf:HTML ;
+  qudt:expression "\\(breaths/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:RespiratoryRate ;
+  qudt:symbol "breath/min" ;
+  qudt:ucumCode "/min{breath}"^^qudt:UCUMcs ;
+  qudt:ucumCode "min-1{breath}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Breath per Minute"@en ;
+.
+unit:BSD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bahamas"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bahamian_dollar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bahamian_dollar?oldid=492776024"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bahamian Dollar"@en ;
+.
+unit:BTU_IT
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{British Thermal Unit}\\) (BTU or Btu) is a traditional unit of energy equal to about \\(1.0550558526 \\textit{ kilojoule}\\). It is approximately the amount of energy needed to heat 1 pound (0.454 kg) of water from \\(39 \\,^{\\circ}{\\rm F}\\)  to \\(40 \\,^{\\circ}{\\rm F}\\) . The unit is most often used in the power, steam generation, heating and air conditioning industries. In scientific contexts the BTU has largely been replaced by the SI unit of energy, the \\(joule\\), though it may be used as a measure of agricultural energy production (BTU/kg). It is still used unofficially in metric English-speaking countries (such as Canada), and remains the standard unit of classification for air conditioning units manufactured and sold in many non-English-speaking metric countries."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1055.05585262 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/British_thermal_unit"^^xsd:anyURI ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_ics/catalogue_detail_ics.htm?csnumber=31890"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/british-thermal-unit_group.html"^^xsd:anyURI ;
+  qudt:symbol "Btu{IT}" ;
+  qudt:ucumCode "[Btu_IT]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "BTU" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (International Definition)"@en ;
+.
+unit:BTU_IT-FT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU_{IT} \\, Foot}\\) is an Imperial unit for \\(\\textit{Thermal Energy Length}\\) expressed as \\(Btu-ft\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 321.581024 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu-ft\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergyLength ;
+  qudt:symbol "Btu⋅ft" ;
+  qudt:ucumCode "[Btu_IT].[ft_i]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU Foot"@en ;
+.
+unit:BTU_IT-FT-PER-FT2-HR-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(BTU_{IT}\\), Foot per Square Foot Hour Degree Fahrenheit</em> is an Imperial unit for 'Thermal Conductivity' expressed as \\(Btu_{it} \\cdot ft/(hr \\cdot ft^2  \\cdot degF)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.730734666 ;
+  qudt:expression "\\(Btu(IT) ft/(hr ft^2 degF)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA115" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
+  qudt:plainTextDescription "British thermal unit (international table) foot per hour Square foot degree Fahrenheit is the unit of the thermal conductivity according to the Imperial system of units." ;
+  qudt:symbol "Btu{IT}⋅ft/(ft²⋅hr⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[ft_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT].[ft_i]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J40" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  vaem:comment "owl:sameAs: unit:BTU_IT-FT-PER-HR-FT2-DEG_F" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU (IT) Foot per Square Foot Hour Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-IN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, Inch}\\) is an Imperial unit for 'Thermal Energy Length' expressed as \\(Btu-in\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 26.7984187 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu-in\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergyLength ;
+  qudt:symbol "Btu⋅in" ;
+  qudt:ucumCode "[Btu_IT].[in_i]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU Inch"@en ;
+.
+unit:BTU_IT-IN-PER-FT2-HR-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(BTU_{th}\\) Inch per Square Foot Hour Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity' expressed as \\(Btu_{it}-in/(hr-ft^{2}-degF)\\). An International British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units. \\(1 Btu_{it} \\cdot in/(hr \\cdot ft^{2}  \\cdot degF)\\) shows that one thermochemical BTU of heat per one hour moves through one square foot of material, which is one foot thick due to a temperature difference of one degree Fahrenheit."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.144227889 ;
+  qudt:exactMatch unit:BTU_IT-IN-PER-HR-FT2-DEG_F ;
+  qudt:expression "\\(Btu(it)-in-per-hr-ft2-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA117" ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(Btu_{it} \\cdot in/(hr \\cdot ft^{2}  \\cdot degF)\\)"^^qudt:LatexString ;
+  qudt:plainTextDescription "BTU (th) Inch per Square Foot Hour Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity', an International British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units." ;
+  qudt:symbol "Btu{IT}⋅in/(ft²⋅hr⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[in_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT].[in_i]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J41" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  vaem:comment "owl:sameAs: unit:BTU_IT-IN-PER-HR-FT2-DEG_F" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Inch Per Hour Square Foot Degree Fahrenheit"@en ;
+  owl:sameAs unit:BTU_IT-IN-PER-HR-FT2-DEG_F ;
+.
+unit:BTU_IT-IN-PER-FT2-SEC-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(BTU_{IT}\\), Inch per Square Foot Second Degree Fahrenheit, is an Imperial unit for 'Thermal Conductivity' expressed as \\(Btu_{it}-in/(ft^{2}-s-degF)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 519.220399911 ;
+  qudt:exactMatch unit:BTU_IT-IN-PER-SEC-FT2-DEG_F ;
+  qudt:expression "\\(Btu(it)-in-per-s-ft2-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA118" ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
+  qudt:plainTextDescription "British thermal unit (international table) inch per second Square foot degree Fahrenheit is the unit of the thermal conductivity according to the Imperial system of units." ;
+  qudt:symbol "Btu{IT}⋅in/(ft²⋅s⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[in_i].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT].[in_i]/([ft_i]2.s.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J42" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU (IT) Inch per Square Foot Second Degree Fahrenheit"@en ;
+  owl:sameAs unit:BTU_IT-IN-PER-SEC-FT2-DEG_F ;
+.
+unit:BTU_IT-IN-PER-HR-FT2-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1442279 ;
+  qudt:exactMatch unit:BTU_IT-IN-PER-FT2-HR-DEG_F ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA117" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "Btu{IT}⋅in/(hr⋅ft²⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[in_i].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT].[in_i]/(h.[ft_i]2.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Inch Per Hour Square Foot degree Fahrenheit"@en ;
+  owl:sameAs unit:BTU_IT-IN-PER-FT2-HR-DEG_F ;
+.
+unit:BTU_IT-IN-PER-SEC-FT2-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 519.2204 ;
+  qudt:exactMatch unit:BTU_IT-IN-PER-FT2-SEC-DEG_F ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA118" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "Btu{IT}⋅in/(s⋅ft²⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[in_i].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT].[in_i]/(s.[ft_i]2.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Inch Per Second Square Foot degree Fahrenheit"@en ;
+  owl:sameAs unit:BTU_IT-IN-PER-FT2-SEC-DEG_F ;
+.
+unit:BTU_IT-PER-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "British Thermal Unit (IT) Per Fahrenheit Degree (\\(Btu (IT)/^\\circ F\\)) is a measure of heat capacity. It can be converted to the corresponding standard SI unit J/K by multiplying its value by a factor of 1899.10534."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1899.100535 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/degF\\)"^^qudt:LatexString ;
+  qudt:expression "\\(btu-per-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:HeatCapacity ;
+  qudt:symbol "Btu{IT}/°F" ;
+  qudt:ucumCode "[Btu_IT].[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/[degF]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N60" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU (IT) per Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-PER-DEG_R
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Degree \\, Rankine}\\) is an Imperial unit for 'Heat Capacity' expressed as \\(Btu/degR\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1899.100535 ;
+  qudt:expression "\\(btu-per-degR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:HeatCapacity ;
+  qudt:symbol "Btu{IT}/°R" ;
+  qudt:ucumCode "[Btu_IT].[degR]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/[degR]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N62" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Degree Rankine"@en ;
+.
+unit:BTU_IT-PER-FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{BTU per Square Foot}\\) is an Imperial unit for  'Energy Per Area' expressed as \\(Btu/ft^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 11356.5267 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:symbol "Btu{IT}/ft²" ;
+  qudt:ucumCode "[Btu_IT].[ft_i]-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/[ft_i]2"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Square Foot"@en ;
+.
+unit:BTU_IT-PER-FT2-HR-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Square \\, Foot \\, Hour \\, Degree \\, Fahrenheit}\\) is an Imperial unit for 'Coefficient Of Heat Transfer' expressed as \\(Btu/(hr-ft^{2}-degF)\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/(hr-ft^{2}-degF)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:symbol "Btu{IT}/(hr⋅ft²⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Square Foot Hour Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-PER-FT2-SEC-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Square \\, Foot \\, Second \\, Degree \\, Fahrenheit}\\) is an Imperial unit for 'Coefficient Of Heat Transfer' expressed as \\(Btu/(ft^{2}-s-degF)\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/(ft^{2}-s-degF)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:symbol "Btu{IT}/(ft²⋅s⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([ft_i]2.s.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N76" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Square Foot Second Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-PER-FT3
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{British Thermal Unit (IT) Per Cubic Foot}\\) (\\(Btu (IT)/ft^3\\)) is a unit in the category of Energy density. It is also known as Btu per cubic foot, Btu/cubic foot. This unit is commonly used in the UK, US unit systems. It has a dimension of \\(ML^{-1}T^{-2}\\) where \\(M\\) is mass, \\(L\\) is length, and \\(T\\) is time. It can be converted to the corresponding standard SI unit \\(J/m^3\\) by multiplying its value by a factor of 37258.94579."^^qudt:LatexString ;
+  qudt:conversionMultiplier 37258.94579 ;
+  qudt:expression "\\(Btu(IT)-per-ft3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyDensity ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/fuel-efficiency--volume/c/"^^xsd:anyURI ;
+  qudt:symbol "Btu{IT}/ft³" ;
+  qudt:ucumCode "[Btu_IT].[ft_i]-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/[ft_i]3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N58" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (IT) Per Cubic Foot"@en ;
+.
+unit:BTU_IT-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The British thermal unit (BTU or Btu) is a traditional unit of energy equal to about 1 055.05585 joules. It is approximately the amount of energy needed to heat 1 pound (0.454 kg) of water from \\(39 \\,^{\\circ}{\\rm F}\\) (\\(3.9 \\,^{\\circ}{\\rm C}\\)) to \\(40 \\,^{\\circ}{\\rm F}\\) (\\(4.4 \\,^{\\circ}{\\rm C}\\)). The unit is most often used in the power, steam generation, heating and air conditioning industries. In scientific contexts the BTU has largely been replaced by the SI unit of energy, the joule, though it may be used as a measure of agricultural energy production (BTU/kg)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.29307107 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:informativeReference "http://www.simetric.co.uk/sibtu.htm"^^xsd:anyURI ;
+  qudt:symbol "Btu{IT}/hr" ;
+  qudt:ucumCode "[Btu_IT].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2I" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Hour"@en ;
+.
+unit:BTU_IT-PER-HR-FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{BTU per Hour Square Foot}\\) is an Imperial unit for  'Power Per Area' expressed as \\(Btu/(hr-ft^2)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3.15459075 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/(hr-ft^{2})\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:symbol "Btu{IT}/(hr⋅ft²)" ;
+  qudt:ucumCode "[Btu_IT].h-1.[ft_i]-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/(h.[ft_i]2)"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Hour Square Foot"@en ;
+.
+unit:BTU_IT-PER-HR-FT2-DEG_R
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.555556 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:iec61360Code "0112/2///62720#UAB099" ;
+  qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ;
+  qudt:symbol "Btu{IT}/(hr⋅ft²⋅°R)" ;
+  qudt:ucumCode "[Btu_IT].h-1.[ft_i]-2.[degR]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/(h.[ft_i]2.[degR])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Hour Square Foot degree Rankine"@en ;
+.
+unit:BTU_IT-PER-LB
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The amount of energy generated by a pound of substance is measured in British thermal units (IT) per pound of mass. 1 \\(Btu_{IT}/lb\\) is equivalent to \\(2.326 \\times 10^3\\) joule per kilogram (J/kg)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 2326.0 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(Btu/lb\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI ;
+  qudt:symbol "Btu{IT}/lb" ;
+  qudt:ucumCode "[Btu_IT].[lb_av]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/[lb_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "AZ" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU-IT-PER-lb"@en ;
+.
+unit:BTU_IT-PER-LB-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "British Thermal Unit (therm.) Per Pound Per Fahrenheit Degree (Btu (therm.)/lb- degF) is a unit in the category of Specific heat. This unit is commonly used in the UK unit system. British Thermal Unit (therm.) Per Pound Per Fahrenheit Degree (Btu (therm.)/lb-degF) has a dimension of \\(L2T^{-2}Q^{-1}\\) where \\(L\\) is length, \\(T\\) is time, and \\(Q\\) is temperature. It can be converted to the corresponding standard SI unit \\(J/kg-K\\) by multiplying its value by a factor of 4183.99895."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/(lb-degF)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:symbol "Btu{IT}/(lb⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[lb_av]-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([lb_av].[degF])"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Pound Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-PER-LB-DEG_R
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Pound \\, Degree \\, Rankine}\\) is a unit for 'Specific Heat Capacity' expressed as \\(Btu/(lb-degR)\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/(lb-degR)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:symbol "Btu{IT}/(lb⋅°R)" ;
+  qudt:ucumCode "[Btu_IT].[lb_av]-1.[degR]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([lb_av].[degR])"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Pound Degree Rankine"@en ;
+.
+unit:BTU_IT-PER-LB-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Pound \\,Mole}\\) is an Imperial unit for 'Energy And Work Per Mass Amount Of Substance' expressed as \\(Btu/(lb-mol)\\)."^^qudt:LatexString ;
+  qudt:expression "\\(Btu/(lb-mol)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerMassAmountOfSubstance ;
+  qudt:symbol "Btu{IT}/(lb⋅mol)" ;
+  qudt:ucumCode "[Btu_IT].[lb_av]-1.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([lb_av].mol)"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Pound Mole"@en ;
+.
+unit:BTU_IT-PER-LB_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 237.18597062376833 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB150" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit avoirdupois pound of force according to the avoirdupois system of units" ;
+  qudt:symbol "Btu{IT}/lbf" ;
+  qudt:ucumCode "[Btu_IT].[lbf_av]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/[lbf_av]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Pound of Force"@en ;
+.
+unit:BTU_IT-PER-LB_F-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4186.8 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA119" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the product of the units avoirdupois pound according to the avoirdupois system of units and degree Fahrenheit" ;
+  qudt:symbol "Btu{IT}/(lbf⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[lbf_av]-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([lbf_av].[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Pound Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-PER-LB_F-DEG_R
+  a qudt:Unit ;
+  qudt:conversionMultiplier 426.9 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAB141" ;
+  qudt:plainTextDescription "unit of the heat capacity as British thermal unit according to the international table related to degree Rankine according to the Imperial system of units divided by the unit avoirdupois pound according to the avoirdupois system of units" ;
+  qudt:symbol "Btu{IT}/(lbf⋅°R)" ;
+  qudt:ucumCode "[Btu_IT].[lbf_av]-1.[degR]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([lbf_av].[degR])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Pound Degree Rankine"@en ;
+.
+unit:BTU_IT-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 17.58 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA120" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit minute" ;
+  qudt:symbol "Btu{IT}/min" ;
+  qudt:ucumCode "[Btu_IT].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Minute"@en ;
+.
+unit:BTU_IT-PER-MOL-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Pound \\, Mole \\, Degree \\, Fahrenheit}\\) is an Imperial unit for 'Molar Heat Capacity' expressed as \\(Btu/(lb-mol-degF)\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(Btu/(lb-mol-degF)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MolarHeatCapacity ;
+  qudt:symbol "Btu{IT}/(lb⋅mol⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].mol-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/(mol.[degF])"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Pound Mole Degree Fahrenheit"@en ;
+.
+unit:BTU_IT-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU \\, per \\, Second}\\) is an Imperial unit for 'Heat Flow Rate' expressed as \\(Btu/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1055.05585262 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:informativeReference "http://www.simetric.co.uk/sibtu.htm"^^xsd:anyURI ;
+  qudt:symbol "Btu{IT}/s" ;
+  qudt:ucumCode "[Btu_IT].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J45" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Second"@en ;
+.
+unit:BTU_IT-PER-SEC-FT-DEG_R
+  a qudt:Unit ;
+  qudt:conversionMultiplier 178.66 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAB107" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "Btu{IT}/(s⋅ft⋅°R)" ;
+  qudt:ucumCode "[Btu_IT].s-1.[ft_i]-1.[degR]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/(s.[ft_i].[degR])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Second Foot Degree Rankine"@en ;
+.
+unit:BTU_IT-PER-SEC-FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{BTU per Second Square Foot}\\) is an Imperial unit for  'Power Per Area' expressed as \\(Btu/(s\\cdot ft^2)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 11356.5267 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu/(s-ft^{2})\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:symbol "Btu{IT}/(s⋅ft²)" ;
+  qudt:ucumCode "[Btu_IT].s-1.[ft_i]-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/(s.[ft_i]2)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N53" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU per Second Square Foot"@en ;
+.
+unit:BTU_IT-PER-SEC-FT2-DEG_R
+  a qudt:Unit ;
+  qudt:conversionMultiplier 14.89 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:iec61360Code "0112/2///62720#UAB098" ;
+  qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ;
+  qudt:symbol "Btu{IT}/(s⋅ft²⋅°R)" ;
+  qudt:ucumCode "[Btu_IT].s-1.[ft_i]-2.[degR]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/(s.[ft_i]2.[degR])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (international Table) Per Second Square Foot degree Rankine"@en ;
+.
+unit:BTU_MEAN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1055.05585262 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA113" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units" ;
+  qudt:symbol "BTU{mean}" ;
+  qudt:ucumCode "[Btu_m]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (mean)"@en ;
+.
+unit:BTU_TH
+  a qudt:Unit ;
+  dcterms:description "(\\{\\bf (BTU_{th}}\\), British Thermal Unit (thermochemical definition), is a traditional unit of energy equal to about \\(1.0543502645 kilojoule\\). It is approximately the amount of energy needed to heat 1 pound (0.454 kg) of water from \\(39 \\,^{\\circ}{\\rm F}\\) (\\(39 \\,^{\\circ}{\\rm C}\\)) to \\(40 \\,^{\\circ}{\\rm F}\\) (\\(4.4 \\,^{\\circ}{\\rm C}\\)). The unit is most often used in the power, steam generation, heating and air conditioning industries. In scientific contexts the BTU has largely been replaced by the SI unit of energy, the \\(joule\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1054.3502645 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/British_thermal_unit"^^xsd:anyURI ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_ics/catalogue_detail_ics.htm?csnumber=31890"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/british-thermal-unit_group.html"^^xsd:anyURI ;
+  qudt:symbol "Btu{th}" ;
+  qudt:ucumCode "[Btu_th]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (Thermochemical Definition)"@en ;
+.
+unit:BTU_TH-FT-PER-FT2-HR-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({ \\bf BTU_{TH} \\, Foot \\,  per \\, Square \\, Foot \\, Hour \\, Degree \\, Fahrenheit}\\) is an Imperial unit for 'Thermal Conductivity' expressed as \\(Btu_{th} \\cdot ft/(hr \\cdot ft^2 \\cdot degF)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.729577206 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu(IT) ft/(hr ft^2 degF)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
+  qudt:symbol "Btu{th}⋅ft/(ft²⋅hr⋅°F)" ;
+  qudt:ucumCode "[Btu_IT].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_IT]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU (TH) Foot per Square Foot Hour Degree Fahrenheit"@en ;
+.
+unit:BTU_TH-FT-PER-HR-FT2-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.73 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA123" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "Btu{th}⋅ft/(hr⋅ft²⋅°F)" ;
+  qudt:ucumCode "[Btu_th].[ft_i].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th].[ft_i]/(h.[ft_i]2.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J46" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (thermochemical) Foot Per Hour Square Foot degree Fahrenheit"@en ;
+.
+unit:BTU_TH-IN-PER-FT2-HR-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf BTU_{th}}\\), Inch per Square Foot Hour Degree Fahrenheit, is an Imperial unit for 'Thermal Conductivity' expressed as \\(Btu-in/(hr-ft^{2}-degF)\\). A thermochemical British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units. \\(1 Btu_{th} \\cdot in/(hr \\cdot ft^{2}  \\cdot degF)\\) shows that one thermochemical BTU of heat per one hour moves through one square foot of material, which is one foot thick due to a temperature difference of one degree Fahrenheit."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.144131434 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu(th)-in-per-hr-ft2-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA125" ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(Btu_{th} \\cdot in/(hr \\cdot ft^{2}  \\cdot degF)\\)"^^qudt:LatexString ;
+  qudt:plainTextDescription "Unit of thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "Btu{th}⋅in/(ft²⋅hr⋅°F)" ;
+  qudt:ucumCode "[Btu_th].[in_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th].[in_i]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J48" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU (TH) Inch per Square Foot Hour Degree Fahrenheit"@en ;
+.
+unit:BTU_TH-IN-PER-FT2-SEC-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(BTU_{TH}\\) Inch per Square Foot Second Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity' expressed as \\(Btu_{th} \\cdot in/(ft^{2} \\cdot s \\cdot degF)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 518.8732 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(Btu(it)-in-per-s-ft2-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA126" ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
+  qudt:plainTextDescription "Unit of thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "Btu{th}⋅in/(ft²⋅s⋅°F)" ;
+  qudt:ucumCode "[Btu_th].[in_i].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th].[in_i]/([ft_i]2.s.[degF])"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "BTU (TH) Inch per Square Foot Second Degree Fahrenheit"@en ;
+.
+unit:BTU_TH-PER-FT3
+  a qudt:Unit ;
+  dcterms:description "British Thermal Unit (TH) Per Cubic Foot (\\(Btu (TH)/ft^3\\)) is a unit in the category of Energy density. It is also known as Btu per cubic foot, Btu/cubic foot. This unit is commonly used in the UK, US unit systems. It has a dimension of \\(ML^{-1}T^{-2}\\) where \\(M\\) is mass, \\(L\\) is length, and \\(T\\) is time. It can be converted to the corresponding standard SI unit \\(J/m^3\\) by multiplying its value by a factor of 37234.03."^^qudt:LatexString ;
+  qudt:conversionMultiplier 37234.03 ;
+  qudt:expression "\\(Btu(th)-per-ft3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyDensity ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/fuel-efficiency--volume/c/"^^xsd:anyURI ;
+  qudt:symbol "Btu{th}/ft³" ;
+  qudt:ucumCode "[Btu_th].[ft_i]-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th]/[ft_i]3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N59" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (TH) Per Cubic Foot"@en ;
+.
+unit:BTU_TH-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.2929 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA124" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit hour" ;
+  qudt:symbol "Btu{th}/hr" ;
+  qudt:ucumCode "[Btu_th].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (thermochemical) Per Hour"@en ;
+.
+unit:BTU_TH-PER-LB
+  a qudt:Unit ;
+  dcterms:description "\\({\\bf Btu_{th} / lbm}\\), British Thermal Unit (therm.) Per Pound Mass, is a unit in the category of Thermal heat capacity. It is also known as Btu per pound, Btu/pound, Btu/lb. This unit is commonly used in the UK unit system. British Thermal Unit (therm.) Per Pound Mass (Btu (therm.)/lbm) has a dimension of \\(L^2T^{-2}\\) where \\(L\\) is length, and \\(T\\) is time. It can be converted to the corresponding standard SI unit J/kg by multiplying its value by a factor of 2324.443861."^^qudt:LatexString ;
+  qudt:conversionMultiplier 2324.443861 ;
+  qudt:expression "\\(btu_th-per-lb\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ;
+  qudt:symbol "btu{th}/lb" ;
+  qudt:ucumCode "[Btu_th].[lb_av]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th]/[lb_av]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (TH) Per Pound"@en ;
+.
+unit:BTU_TH-PER-LB-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 426.654 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA127" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units divided by the units pound and degree Fahrenheit" ;
+  qudt:symbol "Btu{th}/(lb⋅°F)" ;
+  qudt:ucumCode "[Btu_th].[lb_av]-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th]/([lb_av].[degF])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (thermochemical) Per Pound Degree Fahrenheit"@en ;
+.
+unit:BTU_TH-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 17.573 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA128" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit minute" ;
+  qudt:symbol "Btu{th}/min" ;
+  qudt:ucumCode "[Btu_th].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (thermochemical) Per Minute"@en ;
+.
+unit:BTU_TH-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1054.35 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA129" ;
+  qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "Btu{th}/s" ;
+  qudt:ucumCode "[Btu_th].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[Btu_th]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "British Thermal Unit (thermochemical) Per Second"@en ;
+.
+unit:BU_UK
+  a qudt:Unit ;
+  dcterms:description "A bushel is an imperial unit of dry volume, equivalent in each of these systems to 4 pecks or 8 gallons. It is used for volumes of dry commodities (not liquids), most often in agriculture. It is abbreviated as bsh. or bu. In modern usage, the dry volume is usually only nominal, with bushels referring to standard weights instead."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.03636872 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bushel"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA344" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bushel?oldid=476704875"^^xsd:anyURI ;
+  qudt:symbol "bsh{UK}" ;
+  qudt:ucumCode "[bu_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "BUI" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "bushel (UK)"@en ;
+.
+unit:BU_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000004209343 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA345" ;
+  qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day" ;
+  qudt:symbol "bsh{UK}/day" ;
+  qudt:ucumCode "[bu_br].d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_br]/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J64" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (UK) Per Day"@en ;
+.
+unit:BU_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001010242 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA346" ;
+  qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour" ;
+  qudt:symbol "bsh{UK}/hr" ;
+  qudt:uneceCommonCode "J65" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (UK) Per Hour"@en ;
+.
+unit:BU_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0006061453 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA347" ;
+  qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute" ;
+  qudt:symbol "bsh{UK}/min" ;
+  qudt:ucumCode "[bu_br].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_br]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J66" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (UK) Per Minute"@en ;
+.
+unit:BU_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.03636872 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA348" ;
+  qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "bsh{UK}/s" ;
+  qudt:ucumCode "[bu_br].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_br]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J67" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (UK) Per Second"@en ;
+.
+unit:BU_US
+  a qudt:Unit ;
+  dcterms:description "A bushel is an imperial and U.S. customary unit of dry volume, equivalent in each of these systems to 4 pecks or 8 gallons. It is used for volumes of dry commodities (not liquids), most often in agriculture. It is abbreviated as bsh. or bu. In modern usage, the dry volume is usually only nominal, with bushels referring to standard weights instead."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.03523907 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bushel"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA353" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bushel?oldid=476704875"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/bushel-US> ;
+  qudt:symbol "bsh{US}" ;
+  qudt:ucumCode "[bu_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "bu" ;
+  qudt:uneceCommonCode "BUA" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "bushel (US)"@en ;
+.
+unit:BU_US_DRY-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000040786 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA349" ;
+  qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time day" ;
+  qudt:symbol "bsh{US}/day" ;
+  qudt:ucumCode "[bu_us].d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_us]/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J68" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (US Dry) Per Day"@en ;
+.
+unit:BU_US_DRY-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000009789 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA350" ;
+  qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time hour" ;
+  qudt:symbol "bsh{US}/hr" ;
+  qudt:ucumCode "[bu_us].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_us]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J69" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (US Dry) Per Hour"@en ;
+.
+unit:BU_US_DRY-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00058732 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA351" ;
+  qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time minute" ;
+  qudt:symbol "bsh{US}/min" ;
+  qudt:ucumCode "[bu_us].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_us]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J70" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (US Dry) Per Minute"@en ;
+.
+unit:BU_US_DRY-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.03523907 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA352" ;
+  qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "bsh{US}/s" ;
+  qudt:ucumCode "[bu_us].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[bu_us]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bushel (US Dry) Per Second"@en ;
+.
+unit:BYR
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Belarus"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Belarusian_ruble"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Belarusian_ruble?oldid=494143246"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Belarussian Ruble"@en ;
+.
+unit:BYTE
+  a qudt:CountingUnit ;
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The byte is a unit of digital information in computing and telecommunications that most commonly consists of eight bits."^^rdf:HTML ;
+  qudt:conversionMultiplier 5.5451774444795624753378569716654 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Byte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAA354" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Byte?oldid=493588918"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BIT ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/byte> ;
+  qudt:symbol "B" ;
+  qudt:ucumCode "By"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "AD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Byte"@en ;
+.
+unit:BelizeDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Belize"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Belize_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(BZD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Belize_dollar?oldid=462662376"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Belize Dollar"@en ;
+.
+unit:BermudaDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bermuda"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bermudian_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(BMD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bermudian_dollar?oldid=492670344"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bermuda Dollar"@en ;
+.
+unit:BolivianMvdol
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bolivia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(BOV\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bolivian Mvdol (Funds code)"@en ;
+.
+unit:Boliviano
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bolivia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bolivian_boliviano"^^xsd:anyURI ;
+  qudt:expression "\\(BOB\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bolivian_boliviano?oldid=494873944"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Boliviano"@en ;
+.
+unit:BrazilianReal
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Brazil"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Brazilian_real"^^xsd:anyURI ;
+  qudt:expression "\\(BRL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Brazilian_real?oldid=495278259"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Brazilian Real"@en ;
+.
+unit:BruneiDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Brunei"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Brunei_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(BND\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Brunei_dollar?oldid=495134546"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Brunei Dollar"@en ;
+.
+unit:BulgarianLev
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bulgaria"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bulgarian_lev"^^xsd:anyURI ;
+  qudt:expression "\\(BGN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bulgarian_lev?oldid=494947467"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Bulgarian Lev"@en ;
+.
+unit:BurundianFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Burundi"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Burundian_franc"^^xsd:anyURI ;
+  qudt:expression "\\(BIF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Burundian_franc?oldid=489383699"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Burundian Franc"@en ;
+.
+unit:C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of electric charge. One coulomb is the amount of charge accumulated in one second by a current of one ampere. Electricity is actually a flow of charged particles, such as electrons, protons, or ions. The charge on one of these particles is a whole-number multiple of the charge e on a single electron, and one coulomb represents a charge of approximately 6.241 506 x 1018 e. The coulomb is named for a French physicist, Charles-Augustin de Coulomb (1736-1806), who was the first to measure accurately the forces exerted between electric charges."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:PLANCK ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Coulomb"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:hasQuantityKind quantitykind:ElementaryCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA130" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Coulomb?oldid=491815163"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb> ;
+  qudt:symbol "C" ;
+  qudt:ucumCode "C"^^qudt:UCUMcs ;
+  qudt:udunitsCode "C" ;
+  qudt:uneceCommonCode "COU" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb"@en ;
+.
+unit:C-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Coulomb Meter (C-m) is a unit in the category of Electric dipole moment. It is also known as atomic unit, u.a., au, ua. This unit is commonly used in the SI unit system. Coulomb Meter (C-m) has a dimension of LTI where L is length, T is time, and I is electric current. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L1I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ;
+  qudt:iec61360Code "0112/2///62720#UAA133" ;
+  qudt:symbol "C⋅m" ;
+  qudt:ucumCode "C.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A26" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Meter"@en-us ;
+  rdfs:label "Coulomb Metre"@en ;
+.
+unit:C-M2
+  a qudt:Unit ;
+  dcterms:description "Coulomb Square Meter (C-m2) is a unit in the category of Electric quadrupole moment. This unit is commonly used in the SI unit system. Coulomb Square Meter (C-m2) has a dimension of L2TI where L is length, T is time, and I is electric current. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C m^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricQuadrupoleMoment ;
+  qudt:symbol "C⋅m²" ;
+  qudt:ucumCode "C.m2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Square Meter"@en-us ;
+  rdfs:label "Coulomb Square Metre"@en ;
+.
+unit:C-M2-PER-V
+  a qudt:Unit ;
+  dcterms:description "Coulomb Square Meter (C-m2-per-volt) is a unit in the category of Electric polarizability."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(C m^{2} v^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L0I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Polarizability ;
+  qudt:iec61360Code "0112/2///62720#UAB486" ;
+  qudt:symbol "C⋅m²/V" ;
+  qudt:ucumCode "C.m2.V-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "C.m2/V"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Square Meter Per Volt"@en-us ;
+  rdfs:label "Coulomb Square Metre Per Volt"@en ;
+.
+unit:C-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB101" ;
+  qudt:plainTextDescription "derived SI unit coulomb divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "C/cm²" ;
+  qudt:ucumCode "C.cm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/cm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Per Square Centimeter"@en-us ;
+  rdfs:label "Coulomb Per Square Centimetre"@en ;
+.
+unit:C-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB120" ;
+  qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 3" ;
+  qudt:symbol "C/cm³" ;
+  qudt:ucumCode "C.cm-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/cm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Per Cubic Centimeter"@en-us ;
+  rdfs:label "Coulomb Per Cubic Centimetre"@en ;
+.
+unit:C-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Coulomb Per Kilogram (C/kg)}\\) is the unit in the category of Exposure. It is also known as coulombs per kilogram, coulomb/kilogram. This unit is commonly used in the SI unit system. Coulomb Per Kilogram (C/kg) has a dimension of \\(M^{-1}TI\\) where \\(M\\) is mass, \\(T\\) is time, and \\(I\\) is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:iec61360Code "0112/2///62720#UAA131" ;
+  qudt:symbol "C/kg" ;
+  qudt:ucumCode "C.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CKG" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb per Kilogram"@en ;
+.
+unit:C-PER-KiloGM-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of exposure rate"^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(C/kg-s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ExposureRate ;
+  qudt:iec61360Code "0112/2///62720#UAA132" ;
+  qudt:informativeReference "http://en.wikibooks.org/wiki/Basic_Physics_of_Nuclear_Medicine/Units_of_Radiation_Measurement"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "C/kg⋅s" ;
+  qudt:ucumCode "C.kg-1.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/(kg.s)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Per Kilogram Second"@en ;
+.
+unit:C-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Coulomb per Meter\" is a unit for  'Electric Charge Line Density' expressed as \\(C/m\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeLineDensity ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeLinearDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB337" ;
+  qudt:symbol "C/m" ;
+  qudt:ucumCode "C.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb per Meter"@en-us ;
+  rdfs:label "Coulomb per Metre"@en ;
+.
+unit:C-PER-M2
+  a qudt:Unit ;
+  dcterms:description "Coulomb Per Square Meter (\\(C/m^2\\)) is a unit in the category of Electric charge surface density. It is also known as coulombs per square meter, coulomb per square metre, coulombs per square metre, coulomb/square meter, coulomb/square metre. This unit is commonly used in the SI unit system. Coulomb Per Square Meter (C/m2) has a dimension of \\(L^{-2}TI\\) where L is length, T is time, and I is electric current. This unit is the standard SI unit in this category. "^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C/m^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeSurfaceDensity ;
+  qudt:hasQuantityKind quantitykind:ElectricPolarization ;
+  qudt:iec61360Code "0112/2///62720#UAA134" ;
+  qudt:symbol "C/m²" ;
+  qudt:ucumCode "C.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A34" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb per Square Meter"@en-us ;
+  rdfs:label "Coulomb per Square Metre"@en ;
+.
+unit:C-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Coulomb Per Cubic Meter (\\(C/m^{3}\\)) is a unit in the category of Electric charge density. It is also known as coulomb per cubic metre, coulombs per cubic meter, coulombs per cubic metre, coulomb/cubic meter, coulomb/cubic metre. This unit is commonly used in the SI unit system. Coulomb Per Cubic Meter has a dimension of \\(L^{-3}TI\\) where \\(L\\) is length, \\(T\\) is time, and \\(I\\) is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C/m^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeDensity ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA135" ;
+  qudt:symbol "C/m³" ;
+  qudt:ucumCode "C.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb per Cubic Meter"@en-us ;
+  rdfs:label "Coulomb per Cubic Metre"@en ;
+.
+unit:C-PER-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description " (\\(C/mol\\)) is a unit in the category of Molar electric charge. It is also known as \\(coulombs/mol\\). Coulomb Per Mol has a dimension of \\(TN{-1}I\\) where \\(T\\) is time, \\(N\\) is amount of substance, and \\(I\\) is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(c-per-mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ;
+  qudt:iec61360Code "0112/2///62720#UAB142" ;
+  qudt:symbol "c/mol" ;
+  qudt:ucumCode "C.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb per Mole"@en ;
+.
+unit:C-PER-MilliM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB100" ;
+  qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "C/mm²" ;
+  qudt:ucumCode "C.mm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/mm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Per Square Millimeter"@en-us ;
+  rdfs:label "Coulomb Per Square Millimetre"@en ;
+.
+unit:C-PER-MilliM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB119" ;
+  qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 000 001-fold of the power of the SI base unit metre by exponent 3" ;
+  qudt:symbol "C/mm³" ;
+  qudt:ucumCode "C.mm-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "C/mm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Coulomb Per Cubic Millimeter"@en-us ;
+  rdfs:label "Coulomb Per Cubic Millimetre"@en ;
+.
+unit:C2-M-PER-J
+  a qudt:Unit ;
+  dcterms:description "\"Square Coulomb Meter per Joule\" is a unit for  'Polarizability' expressed as \\(C^{2} m^{2} J^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C^{2} m^{2} J^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L0I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Polarizability ;
+  qudt:symbol "C²⋅m²/J" ;
+  qudt:ucumCode "C2.m.J-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "C2.m/J"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Coulomb Meter per Joule"@en-us ;
+  rdfs:label "Square Coulomb Metre per Joule"@en ;
+.
+unit:C3-M-PER-J2
+  a qudt:Unit ;
+  dcterms:description "\"Cubic Coulomb Meter per Square Joule\" is a unit for  'Cubic Electric Dipole Moment Per Square Energy' expressed as \\(C^{3} m^{3} J^{-2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C^{3} m^{3} J^{-2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E3L-1I0M-2H0T7D0 ;
+  qudt:hasQuantityKind quantitykind:CubicElectricDipoleMomentPerSquareEnergy ;
+  qudt:symbol "C³⋅m³/J²" ;
+  qudt:ucumCode "C3.m.J-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "C3.m/J2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Coulomb Meter per Square Joule"@en-us ;
+  rdfs:label "Cubic Coulomb Metre per Square Joule"@en ;
+.
+unit:C4-M4-PER-J3
+  a qudt:Unit ;
+  dcterms:description "\"Quartic Coulomb Meter per Cubic Energy\" is a unit for  'Quartic Electric Dipole Moment Per Cubic Energy' expressed as \\(C^{4} m^{4} J^{-3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(C^4m^4/J^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E4L-2I0M-3H0T10D0 ;
+  qudt:hasQuantityKind quantitykind:QuarticElectricDipoleMomentPerCubicEnergy ;
+  qudt:symbol "C⁴m⁴/J³" ;
+  qudt:ucumCode "C4.m4.J-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "C4.m4/J3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quartic Coulomb Meter per Cubic Energy"@en-us ;
+  rdfs:label "Quartic Coulomb Metre per Cubic Energy"@en ;
+.
+unit:CAD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Canada"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Canadian_dollar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Canadian_dollar?oldid=494738466"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Canadian Dollar"@en ;
+.
+unit:CAL_15_DEG_C
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4.1855 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB139" ;
+  qudt:plainTextDescription "unit for the quantity of heat which is required to warm up 1 g  of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius" ;
+  qudt:symbol "cal{15 °C}" ;
+  qudt:ucumCode "cal_[15]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A1" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (15 Degrees C)"@en ;
+.
+unit:CAL_IT
+  a qudt:Unit ;
+  dcterms:description "International Table calorie."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4.1868 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:symbol "cal{IT}" ;
+  qudt:ucumCode "cal_IT"^^qudt:UCUMcs ;
+  qudt:udunitsCode "cal" ;
+  qudt:uneceCommonCode "D70" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "International Table calorie"@en ;
+.
+unit:CAL_IT-PER-GM
+  a qudt:Unit ;
+  dcterms:description "Calories produced per gram of substance." ;
+  qudt:conversionMultiplier 4186.8 ;
+  qudt:expression "\\(cal_{it}-per-gm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB176" ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ;
+  qudt:plainTextDescription "unit calorie according to the international steam table divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:symbol "cal{IT}/g" ;
+  qudt:ucumCode "cal_IT.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_IT/g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D75" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (international Table) Per Gram"@en ;
+.
+unit:CAL_IT-PER-GM-DEG_C
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4186.8 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA362" ;
+  qudt:plainTextDescription "unit calorieIT divided by the products of the units gram and degree Celsius" ;
+  qudt:symbol "cal{IT}/(g⋅°C)" ;
+  qudt:ucumCode "cal_IT.g-1.Cel-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_IT/(g.Cel)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (international Table) Per Gram Degree Celsius"@en ;
+.
+unit:CAL_IT-PER-GM-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4186.8 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA363" ;
+  qudt:plainTextDescription "unit calorieIT divided by the product of the SI base unit gram and Kelvin" ;
+  qudt:symbol "cal{IT}/(g⋅K)" ;
+  qudt:ucumCode "cal_IT.g-1.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_IT/(g.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (international Table) Per Gram Kelvin"@en ;
+.
+unit:CAL_IT-PER-SEC-CentiM-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 418.68 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAB108" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "cal{IT}/(s⋅cm⋅K)" ;
+  qudt:ucumCode "cal_IT.s-1.cm-1.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_IT/(s.cm.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (international Table) Per Second Centimeter Kelvin"@en-us ;
+  rdfs:label "Calorie (international Table) Per Second Centimetre Kelvin"@en ;
+.
+unit:CAL_IT-PER-SEC-CentiM2-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 41868.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:iec61360Code "0112/2///62720#UAB096" ;
+  qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ;
+  qudt:symbol "cal{IT}/(s⋅cm²⋅K)" ;
+  qudt:ucumCode "cal_IT.s-1.cm-2.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_IT/(s.cm2.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (international Table) Per Second Square Centimeter kelvin"@en-us ;
+  rdfs:label "Calorie (international Table) Per Second Square Centimetre kelvin"@en ;
+.
+unit:CAL_MEAN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4.19 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA360" ;
+  qudt:plainTextDescription "unit used particularly for calorific values of foods" ;
+  qudt:symbol "cal{mean}" ;
+  qudt:ucumCode "cal_m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J75" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (mean)"@en ;
+.
+unit:CAL_TH
+  a qudt:Unit ;
+  dcterms:description "The energy needed to increase the temperature of a given mass of water by \\(1 ^\\circ C\\) at atmospheric pressure depends on the starting temperature and is difficult to measure precisely. Accordingly, there have been several definitions of the calorie. The two perhaps most popular definitions used in older literature are the \\(15 ^\\circ C\\) calorie and the thermochemical calorie."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4.184 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Calorie"^^xsd:anyURI ;
+  qudt:latexDefinition """\\(1 \\; cal_{th} = 4.184 J\\)
+
+\\(\\approx 0.003964 BTU\\)
+
+\\(\\approx 1.163 \\times 10^{-6} kWh\\)
+
+\\(\\approx 2.611 \\times 10^{19} eV\\)"""^^qudt:LatexString ;
+  qudt:symbol "cal" ;
+  qudt:ucumCode "cal_th"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D35" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Thermochemical Calorie"@en ;
+.
+unit:CAL_TH-PER-CentiM-SEC-DEG_C
+  a qudt:Unit ;
+  qudt:conversionMultiplier 418.4 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA365" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "cal{th}/(cm⋅s⋅°C)" ;
+  qudt:ucumCode "cal_th.cm-1.s-1.Cel-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/(cm.s.Cel)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J78" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Centimeter Second Degree Celsius"@en-us ;
+  rdfs:label "Calorie (thermochemical) Per Centimetre Second Degree Celsius"@en ;
+.
+unit:CAL_TH-PER-G
+  a qudt:Unit ;
+  dcterms:description "\\(Thermochemical Calorie. Calories produced per gram of substance.\\)"^^qudt:LatexString ;
+  dcterms:isReplacedBy "unit:CAL_TH-PER-GM" ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(cal\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ;
+  qudt:symbol "calTH/g" ;
+  qudt:ucumCode "cal_th.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/g"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "calorie (thermochemical) per gram (calTH/g)"@en ;
+  owl:deprecated true ;
+  skos:changeNote "2020-10-30 - incorrect local-name - G is for Gravity, GM is for gram - the correct named individual was already present, so this one deprecated. " ;
+.
+unit:CAL_TH-PER-GM
+  a qudt:Unit ;
+  dcterms:description "Thermochemical Calorie. Calories produced per gram of substance." ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:expression "\\(cal\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB153" ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ;
+  qudt:plainTextDescription "unit thermochemical calorie divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:symbol "cal{th}/g" ;
+  qudt:ucumCode "cal_th.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B36" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Gram"@en ;
+.
+unit:CAL_TH-PER-GM-DEG_C
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA366" ;
+  qudt:plainTextDescription "unit calorie (thermochemical) divided by the product of the unit gram and degree Celsius" ;
+  qudt:symbol "cal{th}/(g⋅°C)" ;
+  qudt:ucumCode "cal_th.g-1.Cel-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/(g.Cel)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J79" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Gram Degree Celsius"@en ;
+.
+unit:CAL_TH-PER-GM-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA367" ;
+  qudt:plainTextDescription "unit calorie (thermochemical) divided by the product of the SI derived unit gram and the SI base unit Kelvin" ;
+  qudt:symbol "cal{th}/(g⋅K)" ;
+  qudt:ucumCode "cal_th.g-1.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/(g.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D37" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Gram Kelvin"@en ;
+.
+unit:CAL_TH-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.06973 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA368" ;
+  qudt:plainTextDescription "unit calorie divided by the unit minute" ;
+  qudt:symbol "cal{th}/min" ;
+  qudt:ucumCode "cal_th.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Minute"@en ;
+.
+unit:CAL_TH-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4.184 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA369" ;
+  qudt:plainTextDescription "unit calorie divided by the SI base unit second" ;
+  qudt:symbol "cal{th}/s" ;
+  qudt:ucumCode "cal_th.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J82" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Second"@en ;
+.
+unit:CAL_TH-PER-SEC-CentiM-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 418.4 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAB109" ;
+  qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ;
+  qudt:symbol "cal{th}/(s⋅cm⋅K)" ;
+  qudt:ucumCode "cal_th.s-1.cm-1.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/(s.cm.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Second Centimeter Kelvin"@en-us ;
+  rdfs:label "Calorie (thermochemical) Per Second Centimetre Kelvin"@en ;
+.
+unit:CAL_TH-PER-SEC-CentiM2-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 41840.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:iec61360Code "0112/2///62720#UAB097" ;
+  qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ;
+  qudt:symbol "cal{th}/(s⋅cm²⋅K)" ;
+  qudt:ucumCode "cal_th.s-1.cm-2.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cal_th/(s.cm2.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie (thermochemical) Per Second Square Centimeter kelvin"@en-us ;
+  rdfs:label "Calorie (thermochemical) Per Second Square Centimetre kelvin"@en ;
+.
+unit:CARAT
+  a qudt:Unit ;
+  dcterms:description "The carat is a unit of mass equal to 200 mg and is used for measuring gemstones and pearls. The current definition, sometimes known as the metric carat, was adopted in 1907 at the Fourth General Conference on Weights and Measures, and soon afterward in many countries around the world. The carat is divisible into one hundred points of two milligrams each. Other subdivisions, and slightly different mass values, have been used in the past in different locations. In terms of diamonds, a paragon is a flawless stone of at least 100 carats (20 g). The ANSI X.12 EDI standard abbreviation for the carat is \\(CD\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0002 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Carat"^^xsd:anyURI ;
+  qudt:expression "\\(Nm/ct\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB166" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Carat?oldid=477129057"^^xsd:anyURI ;
+  qudt:symbol "ct" ;
+  qudt:ucumCode "[car_m]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CTM" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Carat"@en ;
+  skos:altLabel "metric carat" ;
+.
+unit:CASES-PER-1000I-YR
+  a qudt:Unit ;
+  dcterms:description "The typical expression of morbidity rate, expressed as cases per 1000 individuals, per year."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Incidence ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ;
+  qudt:plainTextDescription "The typical expression of morbidity rate, expressed as cases per 1000 individuals, per year." ;
+  qudt:symbol "Cases/1000 individuals/year" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cases per 1000 individuals per year"@en ;
+.
+unit:CD
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Candela}\\) is a unit for  'Luminous Intensity' expressed as \\(cd\\).  The candela is the SI base unit of luminous intensity; that is, power emitted by a light source in a particular direction, weighted by the luminosity function (a standardized model of the sensitivity of the human eye to different wavelengths, also known as the luminous efficiency function). A common candle emits light with a luminous intensity of roughly one candela."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Candela"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousIntensity ;
+  qudt:iec61360Code "0112/2///62720#UAA370" ;
+  qudt:iec61360Code "0112/2///62720#UAD719" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Candela?oldid=484253082"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/candela> ;
+  qudt:symbol "cd" ;
+  qudt:ucumCode "cd"^^qudt:UCUMcs ;
+  qudt:udunitsCode "cd" ;
+  qudt:uneceCommonCode "CDL" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Candela"@en ;
+.
+unit:CD-PER-IN2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Candela per Square Inch\" is a unit for  'Luminance' expressed as \\(cd/in^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1550.0031000062002 ;
+  qudt:expression "\\(cd/in^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Luminance ;
+  qudt:iec61360Code "0112/2///62720#UAB257" ;
+  qudt:symbol "cd/in²" ;
+  qudt:ucumCode "cd.[in_i]-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "cd/[in_i]2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Candela per Square Inch"@en ;
+.
+unit:CD-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The candela per square metre (\\(cd/m^2\\)) is the derived SI unit of luminance. The unit is based on the candela, the SI unit of luminous intensity, and the square metre, the SI unit of area. Nit (nt) is a deprecated non-SI name also used for this unit (\\(1 nit = 1 cd/m^2\\)). As a measure of light emitted per unit area, this unit is frequently used to specify the brightness of a display device. Most consumer desktop liquid crystal displays have luminances of 200 to 300 \\(cd/m^2\\); the sRGB spec for monitors targets 80 cd/m2. HDTVs range from 450 to about 1000 cd/m2. Typically, calibrated monitors should have a brightness of \\(120 cd/m^2\\). \\(Nit\\) is believed to come from the Latin word nitere, to shine."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(cd/m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Luminance ;
+  qudt:iec61360Code "0112/2///62720#UAA371" ;
+  qudt:symbol "cd/m²" ;
+  qudt:ucumCode "cd.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "cd/m2"^^qudt:UCUMcs ;
+  qudt:udunitsCode "nt" ;
+  qudt:uneceCommonCode "A24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "candela per square meter"@en-us ;
+  rdfs:label "candela per square metre"@en ;
+.
+unit:CFU
+  a qudt:Unit ;
+  dcterms:description "\"Colony Forming Unit\" is a unit for  'Microbial Formation' expressed as \\(CFU\\)."^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Colony-forming_unit"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MicrobialFormation ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Colony-forming_unit?oldid=473146689"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnit> ;
+  qudt:symbol "CFU" ;
+  qudt:ucumCode "[CFU]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Colony Forming Unit"@en ;
+.
+unit:CH
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A chain is a unit of length. It measures 66 feet, or 22 yards, or 100 links, or 4 rods. There are 10 chains in a furlong, and 80 chains in one statute mile. An acre is the area of 10 square chains (that is, an area of one chain by one furlong). The chain has been used for several centuries in Britain and in some other countries influenced by British practice."^^rdf:HTML ;
+  qudt:conversionMultiplier 20.1168 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Chain"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB203" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Chain?oldid=494116185"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/chain> ;
+  qudt:symbol "ch" ;
+  qudt:ucumCode "[ch_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "X1" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "chain"@en ;
+  skos:altLabel "Gunter's chain" ;
+.
+unit:CLO
+  a qudt:Unit ;
+  dcterms:description "A C.G.S System unit for \\(\\textit{Thermal Insulance}\\) expressed as \"clo\"."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.155 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalInsulance ;
+  qudt:iec61360Code "0112/2///62720#UAA374" ;
+  qudt:symbol "clo" ;
+  qudt:uneceCommonCode "J83" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Clo"@en ;
+.
+unit:CM_H2O
+  a qudt:Unit ;
+  dcterms:isReplacedBy unit:CentiM_H2O ;
+  qudt:conversionMultiplier 98.0665 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "cmH₂0" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter of Water"@en-us ;
+  rdfs:label "Centimetre of Water"@en ;
+  owl:deprecated true ;
+.
+unit:CORD
+  a qudt:Unit ;
+  dcterms:description "The cord is a unit of measure of dry volume used in Canada and the United States to measure firewood and pulpwood. A cord is the amount of wood that, when 'ranked and well stowed' (arranged so pieces are aligned, parallel, touching and compact), occupies a volume of 128 cubic feet (3.62 cubic metres). This corresponds to a well stacked woodpile 4 feet (122 cm) wide, 4 feet (122 cm) high, and 8 feet (244 cm) long; or any other arrangement of linear measurements that yields the same volume. The name cord probably comes from the use of a cord or string to measure it. "^^rdf:HTML ;
+  qudt:conversionMultiplier 3.62 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cord"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cord?oldid=490232340"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/cord> ;
+  qudt:symbol "cord" ;
+  qudt:ucumCode "[crd_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "WCD" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cord"@en ;
+.
+unit:CP
+  a qudt:Unit ;
+  dcterms:description "\"Candlepower\" (abbreviated as cp) is a now-obsolete unit which was used to express levels of light intensity in terms of the light emitted by a candle of specific size and constituents. In modern usage Candlepower equates directly to the unit known as the candela."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Candlepower"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousIntensity ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Candlepower?oldid=491140098"^^xsd:anyURI ;
+  qudt:symbol "cp" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Candlepower"@en ;
+.
+unit:CUP
+  a qudt:Unit ;
+  dcterms:description "\"US Liquid Cup\" is a unit for  'Liquid Volume' expressed as \\(cup\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00023658825 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:symbol "cup" ;
+  qudt:ucumCode "[cup_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Liquid Cup"@en ;
+.
+unit:CUP_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0002365882 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA404" ;
+  qudt:plainTextDescription "unit of the volume according to the Anglo-American system of units" ;
+  qudt:symbol "cup{US}" ;
+  qudt:ucumCode "[cup_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cup (US)"@en ;
+.
+unit:CWT_LONG
+  a qudt:Unit ;
+  dcterms:description "\"Hundred Weight - Long\" is a unit for  'Mass' expressed as \\(cwt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 50.80235 ;
+  qudt:exactMatch unit:Hundredweight_UK ;
+  qudt:expression "\\(cwt long\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "cwt{long}" ;
+  qudt:ucumCode "[lcwt_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CWI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Long Hundred Weight"@en ;
+  owl:sameAs unit:Hundredweight_UK ;
+  skos:altLabel "British hundredweight" ;
+.
+unit:CWT_SHORT
+  a qudt:Unit ;
+  dcterms:description "\"Hundred Weight - Short\" is a unit for  'Mass' expressed as \\(cwt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 45.359237 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:Hundredweight_US ;
+  qudt:expression "\\(cwt\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "cwt{short}" ;
+  qudt:ucumCode "[scwt_av]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hundred Weight - Short"@en ;
+  owl:sameAs unit:Hundredweight_US ;
+  skos:altLabel "U.S. hundredweight" ;
+.
+unit:C_Ab
+  a qudt:Unit ;
+  dcterms:description "\"abcoulomb\" (abC or aC) or electromagnetic unit of charge (emu of charge) is the basic physical unit of electric charge in the cgs-emu system of units. One abcoulomb is equal to ten coulombs (\\(1\\,abC\\,=\\,10\\,C\\))."^^qudt:LatexString ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Abcoulomb"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Abcoulomb?oldid=477198635"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-9?rskey=KHjyOu"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb> ;
+  qudt:symbol "abC" ;
+  qudt:ucumCode "10.C"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abcoulomb"@en ;
+.
+unit:C_Ab-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description """Abcoulomb Per Square Centimeter is a unit in the category of Electric charge surface density. It is also known as abcoulombs per square centimeter, abcoulomb per square centimetre, abcoulombs per square centimetre, abcoulomb/square centimeter,abcoulomb/square centimetre. This unit is commonly used in the cgs unit system.
+Abcoulomb Per Square Centimeter (abcoulomb/cm2) has a dimension of \\(L_2TI\\).  where L is length, T is time, and I is electric current. It can be converted to the corresponding standard SI unit \\(C/m^2\\) by multiplying its value by a factor of 100,000."""^^qudt:LatexString ;
+  qudt:conversionMultiplier "100000"^^xsd:decimal ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:expression "\\(abc-per-cm2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_charge_surface_density--abcoulomb_per_square_centimeter.cfm"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(abcoulomb/cm^2\\)"^^qudt:LatexString ;
+  qudt:symbol "abC/cm²" ;
+  qudt:ucumCode "10.C.cm-2"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abcoulomb per Square Centimeter"@en-us ;
+  rdfs:label "Abcoulomb per Square Centimetre"@en ;
+.
+unit:C_Stat
+  a qudt:Unit ;
+  dcterms:description "The statcoulomb (\\(statC\\)) or franklin (\\(Fr\\)) or electrostatic unit of charge (\\(esu\\)) is the physical unit for electrical charge used in the centimetre-gram-second system of units (cgs) and Gaussian units. It is a derived unit given by \\(1\\ statC = 1\\ g\\ cm\\ s = 1\\ erg\\ cm\\). The SI system of units uses the coulomb (C) instead. The conversion between C and statC is different in different contexts. The number 2997924580 is 10 times the value of the speed of light expressed in meters/second, and the conversions are exact except where indicated. The coulomb is an extremely large charge rarely encountered in electrostatics, while the statcoulomb is closer to everyday charges."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000033356409519815204957557671447492 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Statcoulomb"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:exactMatch unit:FR ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Statcoulomb?oldid=492664360"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(1 C \\leftrightarrow 2997924580 statC \\approx 3.00 \\times 10^9 statC,\\ 1 \\hspace{0.3pc} statC \\leftrightarrow \\hspace{0.3pc} \\approx 3.34 \\times 10^{-10} C\\) for electric charge."^^qudt:LatexString ;
+  qudt:latexDefinition "\\(1 C \\leftrightarrow 4 \\pi \\times 2997924580 statC \\approx 3.77 \\times 10^{10} statC,\\ 1 \\hspace{0.3pc} statC \\leftrightarrow \\hspace{0.2pc} \\approx 2.6 \\times 10^{-11} C\\) for electric flux \\(\\Phi_D\\)"^^qudt:LatexString ;
+  qudt:latexDefinition "\\(1 C/m \\leftrightarrow 4 \\pi \\times 2997924580 \\times 10^{-4} statC/cm \\approx 3.77 \\times 10^6 statC/cm,\\ 1 \\hspace{0.3pc} statC/cm \\leftrightarrow \\hspace{0.3pc} \\approx 2.65 \\times 10^{-7} C/m\\) for electric displacement field \\(D\\)."^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb> ;
+  qudt:symbol "statC" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statcoulomb"@en ;
+  owl:sameAs unit:FR ;
+.
+unit:C_Stat-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Statcoulomb per Square Centimeter}\\) is a unit of measure for electric flux density and electric polarization. One Statcoulomb per Square Centimeter is \\(2.15\\times 10^9 \\, coulomb\\,per\\,square\\,inch\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000333564 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:expression "\\(statc-per-cm2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:symbol "statC/cm²" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statcoulomb per Square Centimeter"@en-us ;
+  rdfs:label "Statcoulomb per Square Centimetre"@en ;
+.
+unit:C_Stat-PER-MOL
+  a qudt:Unit ;
+  dcterms:description "\"Statcoulomb per Mole\" is a unit of measure for the electical charge associated with one mole of a substance. The mole is a unit of measurement used in chemistry to express amounts of a chemical substance, defined as an amount of a substance that contains as many elementary entities (e.g., atoms, molecules, ions, electrons) as there are atoms in 12 grams of pure carbon-12 (12C), the isotope of carbon with atomic weight 12."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000000333564 ;
+  qudt:expression "\\(statC/mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ;
+  qudt:symbol "statC/mol" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statcoulomb per Mole"@en ;
+.
+unit:CapeVerdeEscudo
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cape Verde"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cape_Verdean_escudo"^^xsd:anyURI ;
+  qudt:expression "\\(CVE\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cape_Verdean_escudo?oldid=491416749"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cape Verde Escudo"@en ;
+.
+unit:CaymanIslandsDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cayman Islands"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cayman_Islands_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(KYD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cayman_Islands_dollar?oldid=494206112"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cayman Islands Dollar"@en ;
+.
+unit:Cedi
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Ghana"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ghanaian_cedi"^^xsd:anyURI ;
+  qudt:expression "\\(GHS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ghanaian_cedi?oldid=415914569"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cedi"@en ;
+.
+unit:CentiBAR
+  a qudt:Unit ;
+  dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to \\(100,000\\,Pa = 1 bar \\approx 750.0616827 Torr\\). Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BAR ;
+  qudt:prefix prefix:Centi ;
+  qudt:symbol "cbar" ;
+  qudt:ucumCode "cbar"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centibar"@en ;
+.
+unit:CentiC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A CentiCoulomb is \\(10^{-2} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Centi ;
+  qudt:symbol "cC" ;
+  qudt:ucumCode "cC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "CentiCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:CentiGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB077" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "0,000 01-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Centi ;
+  qudt:symbol "cg" ;
+  qudt:ucumCode "cg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CGM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centigram"@en ;
+.
+unit:CentiL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA373" ;
+  qudt:plainTextDescription "0,01-fold of the unit litre" ;
+  qudt:symbol "cL" ;
+  qudt:ucumCode "cL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CLT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centilitre"@en ;
+  rdfs:label "Centilitre"@en-us ;
+.
+unit:CentiM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A centimetre is a unit of length in the metric system, equal to one hundredth of a metre, which is the SI base unit of length. Centi is the SI prefix for a factor of 10.  The centimetre is the base unit of length in the now deprecated centimetre-gram-second (CGS) system of units."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Centimetre"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA375" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Centimetre?oldid=494931891"^^xsd:anyURI ;
+  qudt:isScalingOf unit:M ;
+  qudt:prefix prefix:Centi ;
+  qudt:symbol "cm" ;
+  qudt:ucumCode "cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CMT" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter"@en-us ;
+  rdfs:label "Centimetre"@en ;
+.
+unit:CentiM-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA378" ;
+  qudt:plainTextDescription "0,01-fold of the SI base unit metre divided by the unit hour" ;
+  qudt:symbol "cm/hr" ;
+  qudt:ucumCode "cm.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter Per Hour"@en-us ;
+  rdfs:label "Centimetre Per Hour"@en ;
+.
+unit:CentiM-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA376" ;
+  qudt:plainTextDescription "0,01-fold of the SI base unit metre divided by the SI base unit kelvin" ;
+  qudt:symbol "cm/K" ;
+  qudt:ucumCode "cm.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter Per Kelvin"@en-us ;
+  rdfs:label "Centimetre Per Kelvin"@en ;
+.
+unit:CentiM-PER-KiloYR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000316880878140289 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:symbol "cm/(1000 yr)" ;
+  qudt:ucumCode "cm.ka-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimetres per thousand years"@en ;
+.
+unit:CentiM-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Centimeter per Second\" is a C.G.S System unit for  'Linear Velocity' expressed as \\(cm/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(cm/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA379" ;
+  qudt:latexDefinition "\\(cm/s\\)"^^qudt:LatexString ;
+  qudt:symbol "cm/s" ;
+  qudt:ucumCode "cm.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2M" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "centimeter per second"@en-us ;
+  rdfs:label "centimetre per second"@en ;
+.
+unit:CentiM-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Centimeter per Square Second}\\) is a C.G.S System unit for  \\(\\textit{Linear Acceleration}\\) expressed as \\(cm/s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(cm/s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:iec61360Code "0112/2///62720#UAB398" ;
+  qudt:symbol "cm/s²" ;
+  qudt:ucumCode "cm.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm/s2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M39" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter per Square Second"@en-us ;
+  rdfs:label "Centimetre per Square Second"@en ;
+.
+unit:CentiM-SEC-DEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Centimeter Second Degree Celsius}\\) is a C.G.S System unit for 'Length Temperature Time' expressed as \\(cm-s-degC\\)."^^qudt:LatexString ;
+  qudt:expression "\\(cm-s-degC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:LengthTemperatureTime ;
+  qudt:symbol "cm⋅s⋅°C" ;
+  qudt:ucumCode "cm.s.Cel-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm.s/Cel"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter Second Degree Celsius"@en-us ;
+  rdfs:label "Centimetre Second Degree Celsius"@en ;
+.
+unit:CentiM2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit of area equal to that of a square, of sides 1cm"^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(sqcm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA384" ;
+  qudt:isScalingOf unit:M2 ;
+  qudt:prefix prefix:Centi ;
+  qudt:symbol "cm²" ;
+  qudt:ucumCode "cm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CMK" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Centimeter"@en-us ;
+  rdfs:label "Square Centimetre"@en ;
+.
+unit:CentiM2-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Square centimeter minute\" is a unit for  'Area Time' expressed as \\(cm^{2} . m\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.006 ;
+  qudt:expression "\\(cm^{2}m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTime ;
+  qudt:symbol "cm²m" ;
+  qudt:ucumCode "cm2.min"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Centimeter Minute"@en-us ;
+  rdfs:label "Square Centimetre Minute"@en ;
+.
+unit:CentiM2-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:symbol "cm²/cm³" ;
+  qudt:ucumCode "cm2.cm-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square centimetres per cubic centimetre"@en ;
+.
+unit:CentiM2-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:symbol "cm²/s" ;
+  qudt:ucumCode "cm2.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square centimetres per second"@en ;
+.
+unit:CentiM2-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Square Centimeter Second\" is a C.G.S System unit for  'Area Time' expressed as \\(cm^2 . s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(cm^2 . s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTime ;
+  qudt:symbol "cm²⋅s" ;
+  qudt:ucumCode "cm2.s"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Centimeter Second"@en-us ;
+  rdfs:label "Square Centimetre Second"@en ;
+.
+unit:CentiM3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The CGS unit of volume, equal to 10-6 cubic meter, 1 milliliter, or about 0.061 023 7 cubic inch"^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:expression "\\(cubic-cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA385" ;
+  qudt:isScalingOf unit:M3 ;
+  qudt:prefix prefix:Centi ;
+  qudt:symbol "cm³" ;
+  qudt:ucumCode "cm3"^^qudt:UCUMcs ;
+  qudt:udunitsCode "cc" ;
+  qudt:uneceCommonCode "CMQ" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "cubic centimeter"@en-us ;
+  rdfs:label "cubic centimetre"@en ;
+.
+unit:CentiM3-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:plainTextDescription "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "cm³/cm³" ;
+  qudt:ucumCode "cm3.cm-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/cm3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Cubic Centimeter"@en-us ;
+  rdfs:label "Cubic Centimetre Per Cubic Centimetre"@en ;
+.
+unit:CentiM3-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000000001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA388" ;
+  qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit day" ;
+  qudt:symbol "cm³/day" ;
+  qudt:ucumCode "cm3.d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Day"@en-us ;
+  rdfs:label "Cubic Centimetre Per Day"@en ;
+.
+unit:CentiM3-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA391" ;
+  qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour" ;
+  qudt:symbol "cm³/hr" ;
+  qudt:ucumCode "cm3.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G48" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Hour"@en-us ;
+  rdfs:label "Cubic Centimetre Per Hour"@en ;
+.
+unit:CentiM3-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA386" ;
+  qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit kelvin" ;
+  qudt:symbol "cm³/K" ;
+  qudt:ucumCode "cm3.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Kelvin"@en-us ;
+  rdfs:label "Cubic Centimetre Per Kelvin"@en ;
+.
+unit:CentiM3-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA394" ;
+  qudt:plainTextDescription "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "cm³/m³" ;
+  qudt:ucumCode "cm3.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J87" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Cubic Meter"@en-us ;
+  rdfs:label "Cubic Centimetre Per Cubic Metre"@en ;
+.
+unit:CentiM3-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA395" ;
+  qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit minute" ;
+  qudt:symbol "cm³/min" ;
+  qudt:ucumCode "cm3.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Minute"@en-us ;
+  rdfs:label "Cubic Centimetre Per Minute"@en ;
+.
+unit:CentiM3-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarRefractivity ;
+  qudt:hasQuantityKind quantitykind:MolarVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA398" ;
+  qudt:plainTextDescription "0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol" ;
+  qudt:symbol "cm³/mol" ;
+  qudt:ucumCode "cm3.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Mole"@en-us ;
+  rdfs:label "Cubic Centimetre Per Mole"@en ;
+.
+unit:CentiM3-PER-MOL-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit that is the 0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol multiplied by the SI base unit second."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate ;
+  qudt:hasQuantityKind quantitykind:SecondOrderReactionRateConstant ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter per Mole Second"@en ;
+  rdfs:label "Cubic Centimeter per Mole Second"@en-us ;
+.
+unit:CentiM3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA399" ;
+  qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "cm³/s" ;
+  qudt:ucumCode "cm3.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm3/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2J" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Centimeter Per Second"@en-us ;
+  rdfs:label "Cubic Centimetre Per Second"@en ;
+.
+unit:CentiMOL-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:hasQuantityKind quantitykind:IonicStrength ;
+  qudt:hasQuantityKind quantitykind:MolalityOfSolute ;
+  qudt:plainTextDescription "1/100 of SI unit of amount of substance per kilogram" ;
+  qudt:symbol "cmol/kg" ;
+  qudt:ucumCode "cmol.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cmol/kg"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimole per kilogram"@en ;
+.
+unit:CentiM_H2O
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Centimeter of Water}\\) is a C.G.S System unit for  'Force Per Area' expressed as \\(cm_{H2O}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 98.0665 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Centimetre_of_water"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA402" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Centimetre_of_water?oldid=487656894"^^xsd:anyURI ;
+  qudt:plainTextDescription "non SI conforming unit of pressure that corresponds to the static pressure generated by a water column with a height of 1 centimetre" ;
+  qudt:symbol "cmH₂0" ;
+  qudt:ucumCode "cm[H2O]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "cmH2O" ;
+  qudt:udunitsCode "cm_H2O" ;
+  qudt:uneceCommonCode "H78" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter of Water"@en-us ;
+  rdfs:label "Centimetre of Water"@en ;
+  rdfs:label "Conventional Centimeter Of Water"@en-us ;
+  rdfs:label "Conventional Centimetre Of Water"@en ;
+.
+unit:CentiM_HG
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1333.224 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA403" ;
+  qudt:plainTextDescription "not SI conform unit of the pressure, that corresponds with the static pressure generated by a mercury column with the height of 1 centimetre" ;
+  qudt:symbol "cmHg" ;
+  qudt:ucumCode "cm[Hg]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "cmHg" ;
+  qudt:udunitsCode "cm_Hg" ;
+  qudt:uneceCommonCode "J89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centimeter Of Mercury"@en-us ;
+  rdfs:label "Centimetre Of Mercury"@en ;
+.
+unit:CentiN-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA355" ;
+  qudt:plainTextDescription "0,01-fold of the product of the SI derived unit newton and SI base unit metre" ;
+  qudt:symbol "cN⋅m" ;
+  qudt:ucumCode "cN.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centinewton Meter"@en-us ;
+  rdfs:label "Centinewton Metre"@en ;
+.
+unit:CentiPOISE
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Centipoise}\\) is a C.G.S System unit for  'Dynamic Viscosity' expressed as \\(cP\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA356" ;
+  qudt:plainTextDescription "0,01-fold of the CGS unit of the dynamic viscosity poise" ;
+  qudt:symbol "cP" ;
+  qudt:ucumCode "cP"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C7" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centipoise"@en ;
+.
+unit:CentiPOISE-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA358" ;
+  qudt:plainTextDescription "0.01-fold of the CGS unit of the dynamic viscosity poise divided by the unit of the pressure bar" ;
+  qudt:symbol "cP/bar" ;
+  qudt:ucumCode "cP.bar-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "cP/bar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J74" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centipoise Per Bar"@en ;
+.
+unit:CentiST
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Centistokes}\\) is a C.G.S System unit for  'Kinematic Viscosity' expressed as \\(cSt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:KinematicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA359" ;
+  qudt:symbol "cSt" ;
+  qudt:ucumCode "cSt"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4C" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Centistokes"@en ;
+.
+unit:ChileanPeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Chile"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Chilean_peso"^^xsd:anyURI ;
+  qudt:expression "\\(CLP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Chilean_peso?oldid=495455481"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Chilean Peso"@en ;
+.
+unit:Ci
+  a qudt:Unit ;
+  dcterms:description "The curie (symbol Ci) is a non-SI unit of radioactivity, named after Marie and Pierre Curie. It is defined as \\(1Ci = 3.7 \\times 10^{10} decays\\ per\\ second\\). Its continued use is discouraged. One Curie is roughly the activity of 1 gram of the radium isotope Ra, a substance studied by the Curies. The SI derived unit of radioactivity is the becquerel (Bq), which equates to one decay per second. Therefore: \\(1Ci = 3.7 \\times 10^{10} Bq= 37 GBq\\) and \\(1Bq \\equiv 2.703 \\times 10^{-11}Ci \\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 37000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Curie"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA138" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Curie?oldid=495080313"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/curie> ;
+  qudt:symbol "Ci" ;
+  qudt:ucumCode "Ci"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Ci" ;
+  qudt:uneceCommonCode "CUR" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Curie"@en ;
+.
+unit:ColombianPeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Colombia"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Colombian_peso"^^xsd:anyURI ;
+  qudt:expression "\\(COP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Colombian_peso?oldid=490834575"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Colombian Peso"@en ;
+.
+unit:ComoroFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Comoros"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Comorian_franc"^^xsd:anyURI ;
+  qudt:expression "\\(KMF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Comorian_franc?oldid=489502162"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Comoro Franc"@en ;
+.
+unit:ConvertibleMark
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bosnia and Herzegovina"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(BAM\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Convertible Marks"@en ;
+.
+unit:CordobaOro
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Nicaragua"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Nicaraguan_c%C3%B3rdoba"^^xsd:anyURI ;
+  qudt:expression "\\(NIO\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nicaraguan_córdoba?oldid=486140595"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cordoba Oro"@en ;
+.
+unit:CostaRicanColon
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Costa Rica"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Costa_Rican_col%C3%B3n"^^xsd:anyURI ;
+  qudt:expression "\\(CRC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Costa_Rican_colón?oldid=491007608"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Costa Rican Colon"@en ;
+.
+unit:CroatianKuna
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Croatia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Croatian_kuna"^^xsd:anyURI ;
+  qudt:expression "\\(HRK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Croatian_kuna?oldid=490959527"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Croatian Kuna"@en ;
+.
+unit:CubanPeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cuba"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cuban_peso"^^xsd:anyURI ;
+  qudt:expression "\\(CUP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cuban_peso?oldid=486492974"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cuban Peso"@en ;
+.
+unit:CyprusPound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cyprus"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cypriot_pound"^^xsd:anyURI ;
+  qudt:expression "\\(CYP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cypriot_pound?oldid=492644935"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cyprus Pound"@en ;
+.
+unit:CzechKoruna
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Czech Republic"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Czech_koruna"^^xsd:anyURI ;
+  qudt:expression "\\(CZK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Czech_koruna?oldid=493991393"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Czech Koruna"@en ;
+.
+unit:DAY
+  a qudt:Unit ;
+  dcterms:description "Mean solar day"^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 86400.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Day"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:BiodegredationHalfLife ;
+  qudt:hasQuantityKind quantitykind:FishBiotransformationHalfLife ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA407" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Day?oldid=494970012"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/day> ;
+  qudt:symbol "day" ;
+  qudt:ucumCode "d"^^qudt:UCUMcs ;
+  qudt:udunitsCode "d" ;
+  qudt:uneceCommonCode "DAY" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Day"@en ;
+.
+unit:DAY_Sidereal
+  a qudt:Unit ;
+  dcterms:description "The length of time which passes between a given fixed star in the sky crossing a given projected meridian (line of longitude). The sidereal day is \\(23 h 56 m 4.1 s\\), slightly shorter than the solar day because the Earth 's orbital motion about the Sun  means the Earth  has to rotate slightly more than one turn with respect to the \"fixed\" stars in order to reach the same Earth-Sun orientation. Another way of thinking about the difference is that it amounts to \\(1/365.2425^{th}\\) of a day per day, since even if the Earth  did not spin on its axis at all, the Sun  would appear to make one rotation around the Earth  as the Earth  completed a single orbit (which takes one year)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 86164.099 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA412" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sidereal_time"^^xsd:anyURI ;
+  qudt:informativeReference "http://scienceworld.wolfram.com/astronomy/SiderealDay.html"^^xsd:anyURI ;
+  qudt:symbol "day{sidereal}" ;
+  qudt:ucumCode "d"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sidereal Day"@en ;
+.
+unit:DEATHS-PER-1000000I-YR
+  a qudt:Unit ;
+  dcterms:description "The expression of mortality rate, expressed as deaths per 1,000,000 individuals, per year."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MortalityRate ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ;
+  qudt:plainTextDescription "The expression of mortality rate, expressed as deaths per Million individuals, per year." ;
+  qudt:symbol "deaths/million individuals/yr" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Deaths per Million individuals per year"@en ;
+.
+unit:DEATHS-PER-1000I-YR
+  a qudt:Unit ;
+  dcterms:description "The typical expression of mortality rate, expressed as deaths per 1000 individuals, per year."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MortalityRate ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ;
+  qudt:plainTextDescription "The typical expression of mortality rate, expressed as deaths per 1000 individuals, per year." ;
+  qudt:symbol "deaths/1000 individuals/yr" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Deaths per 1000 individuals per year"@en ;
+.
+unit:DECADE
+  a qudt:DimensionlessUnit ;
+  a qudt:LogarithmicUnit ;
+  a qudt:Unit ;
+  dcterms:description "One decade is a factor of 10 difference between two numbers (an order of magnitude difference) measured on a logarithmic scale. It is especially useful when referring to frequencies and when describing frequency response of electronic systems, such as audio amplifiers and filters. The factor-of-ten in a decade can be in either direction: so one decade up from 100 Hz is 1000 Hz, and one decade down is 10 Hz. The factor-of-ten is what is important, not the unit used, so \\(3.14 rad/s\\) is one decade down from \\(31.4 rad/s\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Decade_(log_scale)"^^xsd:anyURI ;
+  qudt:symbol "dec" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dec"@en ;
+.
+unit:DEG
+  a qudt:Unit ;
+  dcterms:description "A degree (in full, a degree of arc, arc degree, or arcdegree), usually denoted by \\(^\\circ\\) (the degree symbol), is a measurement of plane angle, representing 1/360 of a full rotation; one degree is equivalent to  \\(2\\pi /360 rad\\), \\(0.017453 rad\\). It is not an SI unit, as the SI unit for angles is radian, but is an accepted SI unit."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0174532925 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA024" ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-331"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/degree> ;
+  qudt:symbol "°" ;
+  qudt:ucumCode "deg"^^qudt:UCUMcs ;
+  qudt:udunitsCode "°" ;
+  qudt:uneceCommonCode "DD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree"@en ;
+.
+unit:DEG-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Degree per Hour\" is an Imperial unit for  'Angular Velocity' expressed as \\(deg/h\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000484813681 ;
+  qudt:expression "\\(deg/h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "°/h" ;
+  qudt:ucumCode "deg.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "deg/h"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree per Hour"@en ;
+.
+unit:DEG-PER-M
+  a qudt:Unit ;
+  dcterms:description "A change of angle in one SI unit of length."@en ;
+  qudt:conversionMultiplier 0.0174532925199433 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:symbol "°/m" ;
+  qudt:ucumCode "deg.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degrees per metre"@en ;
+.
+unit:DEG-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "A unit of measure for the rate of change of plane angle, \\(d\\omega / dt\\),  in durations of one minute.The vector \\(\\omega\\) is directed along the axis of rotation in the direction for which the rotation is clockwise."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000290888209 ;
+  qudt:expression "\\(deg-per-min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "°/min" ;
+  qudt:ucumCode "deg.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "deg/min"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree per Minute"@en ;
+.
+unit:DEG-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Degree per Second\" is an Imperial unit for  'Angular Velocity' expressed as \\(deg/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0174532925 ;
+  qudt:expression "\\(deg/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:iec61360Code "0112/2///62720#UAA026" ;
+  qudt:symbol "°/s" ;
+  qudt:ucumCode "deg.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "deg/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E96" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree per Second"@en ;
+.
+unit:DEG-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Degree per Square Second}\\) is an Imperial unit for \\(\\textit{Angular Acceleration}\\) expressed as \\(deg/s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0174532925 ;
+  qudt:expression "\\(deg/s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AngularAcceleration ;
+  qudt:iec61360Code "0112/2///62720#UAB407" ;
+  qudt:symbol "°/s²" ;
+  qudt:ucumCode "deg.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "deg/s2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M45" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree per Square Second"@en ;
+.
+unit:DEG2
+  a qudt:Unit ;
+  dcterms:description "A square degree is a non-SI unit measure of solid angle. It is denoted in various ways, including deg, sq. deg. and \\(\\circ^2\\). Just as degrees are used to measure parts of a circle, square degrees are used to measure parts of a sphere. Analogous to one degree being equal to \\(\\pi /180 radians\\), a square degree is equal to (\\(\\pi /180)\\) or about 1/3283 steradian. The number of square degrees in a whole sphere is or approximately 41 253 deg. This is the total area of the 88 constellations in the list of constellations by area. For example, observed from the surface of the Earth, the Moon has a diameter of approximately \\(0.5^\\circ\\), so it covers a solid angle of approximately 0.196 deg, which is \\(4.8 \\times 10\\) of the total sky sphere."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00030461742 ;
+  qudt:expression "\\(deg^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:SolidAngle ;
+  qudt:symbol "°²" ;
+  qudt:ucumCode "deg2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square degree"@en ;
+.
+unit:DEGREE_API
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Gravity_API ;
+  qudt:iec61360Code "0112/2///62720#UAA027" ;
+  qudt:plainTextDescription "unit for the determination of the density of petroleum at 60 degrees F (15.56 degrees C)" ;
+  qudt:symbol "°API" ;
+  qudt:uneceCommonCode "J13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree API"@en ;
+.
+unit:DEGREE_BALLING
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA031" ;
+  qudt:plainTextDescription "unit for the mixing ratio of a soluble dry substance in water at 17.5 degrees C similar to the percent designation for solutions, in which a solution of 1 g saccharose in 100 g saccharose/ water solution corresponds to 1 degree Balling and respectively a one percent solution" ;
+  qudt:symbol "°Balling" ;
+  qudt:uneceCommonCode "J17" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Balling"@en ;
+.
+unit:DEGREE_BAUME
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA028" ;
+  qudt:plainTextDescription """graduation of the areometer scale for determination of densitiy of fluids.
+
+The Baumé scale is a pair of hydrometer scales developed by French pharmacist Antoine Baumé in 1768 to measure density of various liquids. The unit of the Baumé scale has been notated variously as degrees Baumé, B°, Bé° and simply Baumé (the accent is not always present). One scale measures the density of liquids heavier than water and the other, liquids lighter than water. The Baumé of distilled water is 0. The API gravity scale is based on errors in early implementations of the Baumé scale.""" ;
+  qudt:symbol "°Bé{origin}" ;
+  qudt:uneceCommonCode "J14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Baume (origin Scale)"@en ;
+.
+unit:DEGREE_BAUME_US_HEAVY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA029" ;
+  qudt:plainTextDescription "graduation of the areometer scale for determination of density of fluids according to the Anglo-American system of units, which are heavier than water" ;
+  qudt:symbol "°Bé{US Heavy}" ;
+  qudt:uneceCommonCode "J15" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Baume (US Heavy)"@en ;
+.
+unit:DEGREE_BAUME_US_LIGHT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA030" ;
+  qudt:plainTextDescription "graduation of the areometer scale for determination of density of fluids according to the Anglo-American system of units, which are lighter than water" ;
+  qudt:symbol "°Bé{US Light}" ;
+  qudt:uneceCommonCode "J16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Baume (US Light)"@en ;
+.
+unit:DEGREE_BRIX
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA032" ;
+  qudt:plainTextDescription "unit named according to Adolf Brix for the mixing ratio of a soluble dry substance in water with 15.5 °C similar to the percent designation for solutions, in which a solution of 1 g saccharose in 100 g saccharose/water solution corresponds to 1 °Brix and respectively an one percent solution" ;
+  qudt:symbol "°Bx" ;
+  qudt:uneceCommonCode "J18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Brix"@en ;
+.
+unit:DEGREE_OECHSLE
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA048" ;
+  qudt:plainTextDescription "unit of the density of the must, as measure for the proportion of the soluble material in the grape must" ;
+  qudt:symbol "°Oe" ;
+  qudt:uneceCommonCode "J27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Oechsle"@en ;
+.
+unit:DEGREE_PLATO
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA049" ;
+  qudt:plainTextDescription "unit for the mixing ratio of the original gravity in the beer brew at 17,5 °C before the fermentation" ;
+  qudt:symbol "°P" ;
+  qudt:uneceCommonCode "PLA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Plato"@en ;
+.
+unit:DEGREE_TWADDELL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA054" ;
+  qudt:plainTextDescription "unit of the density of fluids, which are heavier than water" ;
+  qudt:symbol "°Tw" ;
+  qudt:uneceCommonCode "J31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Twaddell"@en ;
+.
+unit:DEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Celsius}\\), also known as centigrade, is a scale and unit of measurement for temperature. It can refer to a specific temperature on the Celsius scale as well as a unit to indicate a temperature interval, a difference between two temperatures or an uncertainty. This definition fixes the magnitude of both the degree Celsius and the kelvin as precisely 1 part in 273.16 (approximately 0.00366) of the difference between absolute zero and the triple point of water. Thus, it sets the magnitude of one degree Celsius and that of one kelvin as exactly the same. Additionally, it establishes the difference between the two scales' null points as being precisely \\(273.15\\,^{\\circ}{\\rm C}\\).</p>"^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 273.15 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Celsius"^^xsd:anyURI ;
+  qudt:expression "\\(degC\\)"^^qudt:LatexString ;
+  qudt:guidance "<p>See NIST section <a href=\"http://physics.nist.gov/Pubs/SP811/sec04.html#4.2.1.1\">SP811 section 4.2.1.1</a></p>"^^rdf:HTML ;
+  qudt:guidance "<p>See NIST section <a href=\"http://physics.nist.gov/Pubs/SP811/sec06.html#6.2.8\">SP811 section 6.2.8</a></p>"^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:BoilingPoint ;
+  qudt:hasQuantityKind quantitykind:FlashPoint ;
+  qudt:hasQuantityKind quantitykind:MeltingPoint ;
+  qudt:hasQuantityKind quantitykind:Temperature ;
+  qudt:iec61360Code "0112/2///62720#UAA033" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Celsius?oldid=494152178"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(\\,^{\\circ}{\\rm C}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius> ;
+  qudt:symbol "°C" ;
+  qudt:ucumCode "Cel"^^qudt:UCUMcs ;
+  qudt:udunitsCode "°C" ;
+  qudt:udunitsCode "℃" ;
+  qudt:uneceCommonCode "CEL" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius"@en ;
+  skos:altLabel "degree-centigrade" ;
+.
+unit:DEG_C-CentiM
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Celsius Centimeter} is a C.G.S System unit for 'Length Temperature' expressed as \\(cm-degC\\)."^^qudt:LatexString ;
+  qudt:expression "\\(cm-degC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthTemperature ;
+  qudt:symbol "°C⋅cm" ;
+  qudt:ucumCode "Cel.cm"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius Centimeter"@en-us ;
+  rdfs:label "Degree Celsius Centimetre"@en ;
+.
+unit:DEG_C-KiloGM-PER-M2
+  a qudt:Unit ;
+  dcterms:description "Derived unit for the product of the temperature in degrees Celsius and the mass density of a medium, integrated over vertical depth or height in metres."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H1T0D0 ;
+  qudt:symbol "°C⋅kg/m²" ;
+  qudt:ucumCode "Cel.kg.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degrees Celsius kilogram per square metre"@en ;
+.
+unit:DEG_C-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Celsius per Hour} is a unit for 'Temperature Per Time' expressed as \\(degC / hr\\)."^^qudt:LatexString ;
+  qudt:expression "\\(degC / hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA036" ;
+  qudt:symbol "°C/hr" ;
+  qudt:ucumCode "Cel.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Cel/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius per Hour"@en ;
+.
+unit:DEG_C-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:TemperatureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA034" ;
+  qudt:plainTextDescription "unit with the name Degree Celsius divided by the SI base unit kelvin" ;
+  qudt:symbol "°C/K" ;
+  qudt:ucumCode "Cel.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Cel/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius Per Kelvin"@en ;
+.
+unit:DEG_C-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H1T0D0 ;
+  qudt:symbol "°C/m" ;
+  qudt:ucumCode "Cel.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degrees Celsius per metre"@en ;
+.
+unit:DEG_C-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Celsius per Minute} is a unit for 'Temperature Per Time' expressed as \\(degC / m\\)."^^qudt:LatexString ;
+  qudt:expression "\\(degC / m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA037" ;
+  qudt:symbol "°C/m" ;
+  qudt:ucumCode "Cel.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Cel/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius per Minute"@en ;
+.
+unit:DEG_C-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Celsius per Second} is a unit for 'Temperature Per Time' expressed as \\(degC / s\\)."^^qudt:LatexString ;
+  qudt:expression "\\(degC / s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA038" ;
+  qudt:symbol "°C/s" ;
+  qudt:ucumCode "Cel.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Cel/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius per Second"@en ;
+.
+unit:DEG_C-PER-YR
+  a qudt:Unit ;
+  dcterms:description "A rate of change of temperature expressed on the Celsius scale over a period of an average calendar year (365.25 days)."@en ;
+  qudt:conversionMultiplier 0.0000000316880878140289 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:symbol "°C/yr" ;
+  qudt:ucumCode "Cel.a-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degrees Celsius per year"@en ;
+.
+unit:DEG_C-WK
+  a qudt:Unit ;
+  dcterms:description "temperature multiplied by unit of time."@en ;
+  qudt:conversionMultiplier 604800.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:TimeTemperature ;
+  qudt:symbol "°C/wk" ;
+  qudt:ucumCode "Cel.wk"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Celsius week"@en ;
+.
+unit:DEG_C2-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H2T-1D0 ;
+  qudt:symbol "°C²⋅s" ;
+  qudt:ucumCode "K2.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Degrees Celsius per second"@en ;
+.
+unit:DEG_C_GROWING_CEREAL-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier "86400"^^xsd:double ;
+  qudt:conversionOffset "0.0"^^xsd:double ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:GrowingDegreeDay_Cereal ;
+  qudt:plainTextDescription "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops." ;
+  qudt:symbol "GDD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Growing Degree Days (Cereals)"@en ;
+.
+unit:DEG_F
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Fahrenheit} is an Imperial unit for 'Thermodynamic Temperature' expressed as \\(\\,^{\\circ}{\\rm F}\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.5555555555555556 ;
+  qudt:conversionOffset 459.669607 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:BoilingPoint ;
+  qudt:hasQuantityKind quantitykind:FlashPoint ;
+  qudt:hasQuantityKind quantitykind:MeltingPoint ;
+  qudt:hasQuantityKind quantitykind:Temperature ;
+  qudt:iec61360Code "0112/2///62720#UAA039" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit> ;
+  qudt:symbol "°F" ;
+  qudt:ucumCode "[degF]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "°F" ;
+  qudt:udunitsCode "℉" ;
+  qudt:uneceCommonCode "FAH" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit"@en ;
+.
+unit:DEG_F-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description ""^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF-hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalResistivity ;
+  qudt:symbol "°F⋅hr" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit Hour"@en ;
+.
+unit:DEG_F-HR-FT2-PER-BTU_IT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.89563 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalInsulance ;
+  qudt:iec61360Code "0112/2///62720#UAA043" ;
+  qudt:plainTextDescription "unit of the thermal resistor according to the Imperial system of units" ;
+  qudt:symbol "°F⋅hr⋅ft²/Btu{IT}" ;
+  qudt:ucumCode "[degF].h-1.[ft_i]-2.[Btu_IT]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/(h.[ft_i]2.[Btu_IT])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (international Table)"@en ;
+.
+unit:DEG_F-HR-FT2-PER-BTU_TH
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.8969 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalInsulance ;
+  qudt:iec61360Code "0112/2///62720#UAA040" ;
+  qudt:plainTextDescription "unit of the thermal resistor according to the according to the Imperial system of units" ;
+  qudt:symbol "°F⋅hr⋅ft²/Btu{th}" ;
+  qudt:ucumCode "[degF].h-1.[ft_i]-2.[Btu_th]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/(h.[ft_i]2.[Btu_th])"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (thermochemical)"@en ;
+.
+unit:DEG_F-HR-PER-BTU_IT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Fahrenheit Hour per BTU} is an Imperial unit for 'Thermal Resistance' expressed as \\(degF-hr/Btu\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF-hr/Btu\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalResistance ;
+  qudt:symbol "°F⋅hr/Btu" ;
+  qudt:ucumCode "[degF].h.[Btu_IT]-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF].h/[Btu_IT]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit Hour per BTU"@en ;
+.
+unit:DEG_F-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Fahrenheit per Hour} is a unit for 'Temperature Per Time' expressed as \\(degF / h\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF / h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA044" ;
+  qudt:symbol "°F/h" ;
+  qudt:ucumCode "[degF].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit per Hour"@en ;
+.
+unit:DEG_F-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.5555556 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:TemperatureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA041" ;
+  qudt:plainTextDescription "traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the SI base unit Kelvin" ;
+  qudt:symbol "°F/K" ;
+  qudt:ucumCode "[degF].K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit Per Kelvin"@en ;
+.
+unit:DEG_F-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Fahrenheit per Minute} is a unit for 'Temperature Per Time' expressed as \\(degF / m\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF / m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA045" ;
+  qudt:symbol "°F/m" ;
+  qudt:ucumCode "[degF].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit per Minute"@en ;
+.
+unit:DEG_F-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Degree Fahrenheit per Second} is a unit for 'Temperature Per Time' expressed as \\(degF / s\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF / s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA046" ;
+  qudt:symbol "°F/s" ;
+  qudt:ucumCode "[degF].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J25" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit per Second"@en ;
+.
+unit:DEG_F-PER-SEC2
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Degree Fahrenheit per Square Second}\\) is a C.G.S System unit for expressinh the acceleration of a temperature expressed as \\(degF / s^2\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(degF / s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:plainTextDescription "'Degree Fahrenheit per Square Second' is a unit for expressing the acceleration of a temperature expressed as 'degF /s2'." ;
+  qudt:symbol "°F/s²" ;
+  qudt:ucumCode "[degF].s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degF]/s2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Fahrenheit per Square Second"@en ;
+.
+unit:DEG_R
+  a qudt:Unit ;
+  dcterms:description "Rankine is a thermodynamic (absolute) temperature scale. The symbol for degrees Rankine is \\(^\\circ R\\) or \\(^\\circ Ra\\) if necessary to distinguish it from the Rømer and Réaumur scales). Zero on both the Kelvin and Rankine scales is absolute zero, but the Rankine degree is defined as equal to one degree Fahrenheit, rather than the one degree Celsius used by the Kelvin scale. A temperature of \\(-459.67 ^\\circ F\\) is exactly equal to \\(0 ^\\circ R\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.5555555555555556 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:BoilingPoint ;
+  qudt:hasQuantityKind quantitykind:FlashPoint ;
+  qudt:hasQuantityKind quantitykind:MeltingPoint ;
+  qudt:hasQuantityKind quantitykind:Temperature ;
+  qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ;
+  qudt:iec61360Code "0112/2///62720#UAA050" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Rankine_scale"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine> ;
+  qudt:symbol "°R" ;
+  qudt:ucumCode "[degR]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "°R" ;
+  qudt:uneceCommonCode "A48" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Rankine"@en ;
+.
+unit:DEG_R-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\\(A rate of change of temperature measured in degree Rankine in periods of one hour.\\)"^^qudt:LatexString ;
+  qudt:expression "\\(degR / h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA051" ;
+  qudt:isScalingOf unit:DEG_R-PER-MIN ;
+  qudt:symbol "°R/h" ;
+  qudt:ucumCode "[degR].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degR]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J28" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Rankine per Hour"@en ;
+.
+unit:DEG_R-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\\(A rate of change of temperature measured in degree Rankine in periods of one minute\\)"^^qudt:LatexString ;
+  qudt:expression "\\(degR / m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA052" ;
+  qudt:isScalingOf unit:DEG_R-PER-SEC ;
+  qudt:symbol "°R/m" ;
+  qudt:ucumCode "[degR].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degR]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J29" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Rankine per Minute"@en ;
+.
+unit:DEG_R-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\\(A rate of change of temperature measured in degree Rankine in periods of one second.\\)"^^qudt:LatexString ;
+  qudt:expression "\\(degR / s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA053" ;
+  qudt:symbol "°R/s" ;
+  qudt:ucumCode "[degR].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[degR]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J30" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degree Rankine per Second"@en ;
+.
+unit:DIOPTER
+  a qudt:Unit ;
+  dcterms:description "A dioptre, or diopter, is a unit of measurement for the optical power of a lens or curved mirror, which is equal to the reciprocal of the focal length measured in metres (that is, \\(1/metre\\)). For example, a \\(3 \\; dioptre\\) lens brings parallel rays of light to focus at \\(1/3\\,metre\\). The same unit is also sometimes used for other reciprocals of distance, particularly radii of curvature and the vergence of optical beams. Though the diopter is based on the SI-metric system it has not been included in the standard so that there is no international name or abbreviation for this unit of measurement within the international system of units this unit for optical power would need to be specified explicitly as the inverse metre."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Dioptre"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Curvature ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Dioptre?oldid=492506920"^^xsd:anyURI ;
+  qudt:symbol "D" ;
+  qudt:ucumCode "[diop]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q25" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Diopter"@en ;
+.
+unit:DPI
+  a qudt:Unit ;
+  qudt:conversionMultiplier 39.37008 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:iec61360Code "0112/2///62720#UAA421" ;
+  qudt:plainTextDescription "point density as amount of the picture base element divided by the unit inch according to the Anglo-American and the Imperial system of units" ;
+  qudt:symbol "DPI" ;
+  qudt:ucumCode "{dot}/[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dots Per Inch"@en ;
+.
+unit:DRAM_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0017718451953125 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB181" ;
+  qudt:plainTextDescription "non SI-conforming unit of mass comes from the Anglo-American Troy or Apothecaries' Weight System of units which is  mainly used in England, in the Netherlands and in the USA as a commercial weight" ;
+  qudt:symbol "dr{UK}" ;
+  qudt:ucumCode "[dr_ap]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DRI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dram (UK)"@en ;
+.
+unit:DRAM_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0038879346 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB180" ;
+  qudt:plainTextDescription "non SI-conform unit of the mass according to the avoirdupois system of units: 1 dram (av. ) = 1/16 ounce (av. ) = 1/256 pound (av.)" ;
+  qudt:symbol "dr{US}" ;
+  qudt:ucumCode "[dr_av]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "dr" ;
+  qudt:udunitsCode "fldr" ;
+  qudt:uneceCommonCode "DRA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dram (US)"@en ;
+.
+unit:DWT
+  a qudt:Unit ;
+  dcterms:description "\"Penny Weight\" is a unit for  'Mass' expressed as \\(dwt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00155517384 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pennyweight"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pennyweight?oldid=486693644"^^xsd:anyURI ;
+  qudt:symbol "dwt" ;
+  qudt:ucumCode "[pwt_tr]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DWT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Penny Weight"@en ;
+  skos:altLabel "dryquartus" ;
+.
+unit:DYN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "In physics, the dyne is a unit of force specified in the centimetre-gram-second (CGS) system of units. One dyne is equal to In physics, the dyne is a unit of force specified in the centimetre-gram-second (CGS) system of units. One dyne is equal to \\SI{10}{\\micro\\newton}. Equivalently, the dyne is defined as 'the force required to accelerate a mass of one gram at a rate of one centimetre per square second'. The dyne per centimetre is the unit traditionally used to measure surface tension."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Dyne"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAA422" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Dyne?oldid=494703827"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(g\\cdot cm/s^{2}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/dyne> ;
+  qudt:symbol "dyn" ;
+  qudt:ucumCode "dyn"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DU" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dyne"@en ;
+.
+unit:DYN-CentiM
+  a qudt:Unit ;
+  dcterms:description "\"Dyne Centimeter\" is a C.G.S System unit for  'Torque' expressed as \\(dyn-cm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(dyn-cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA423" ;
+  qudt:symbol "dyn⋅cm" ;
+  qudt:ucumCode "dyn.cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J94" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dyne Centimeter"@en-us ;
+  rdfs:label "Dyne Centimetre"@en ;
+.
+unit:DYN-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB106" ;
+  qudt:plainTextDescription "CGS unit of the surface tension" ;
+  qudt:symbol "dyn/cm" ;
+  qudt:ucumCode "dyn.cm-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dyn/cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DX" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dyne Per Centimeter"@en-us ;
+  rdfs:label "Dyne Per Centimetre"@en ;
+.
+unit:DYN-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description "\"Dyne per Square Centimeter\" is a C.G.S System unit for  'Force Per Area' expressed as \\(dyn/cm^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(dyn/cm^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA424" ;
+  qudt:symbol "dyn/cm²" ;
+  qudt:ucumCode "dyn.cm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "dyn/cm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D9" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dyne per Square Centimeter"@en-us ;
+  rdfs:label "Dyne per Square Centimetre"@en ;
+.
+unit:DYN-SEC-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB144" ;
+  qudt:plainTextDescription "CGS unit of the mechanical impedance" ;
+  qudt:symbol "dyn⋅s/cm" ;
+  qudt:ucumCode "dyn.s.cm-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dyn.s/cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dyne Second Per Centimeter"@en-us ;
+  rdfs:label "Dyne Second Per Centimetre"@en ;
+.
+unit:DYN-SEC-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:iec61360Code "0112/2///62720#UAB102" ;
+  qudt:plainTextDescription "CGS unit of the acoustic image impedance of the medium" ;
+  qudt:symbol "dyn⋅s/cm³" ;
+  qudt:ucumCode "dyn.s.cm-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "dyn.s/cm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dyne Second Per Cubic Centimeter"@en-us ;
+  rdfs:label "Dyne Second Per Cubic Centimetre"@en ;
+.
+unit:DZD
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Algeria"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Algerian_dinar"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Algerian_dinar?oldid=492845503"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Algerian Dinar"@en ;
+.
+unit:Da
+  a qudt:Unit ;
+  dcterms:description "The unified atomic mass unit (symbol: \\(\\mu\\)) or dalton (symbol: Da) is a unit that is used for indicating mass on an atomic or molecular scale. It is defined as one twelfth of the rest mass of an unbound atom of carbon-12 in its nuclear and electronic ground state, and has a value of \\(1.660538782(83) \\times 10^{-27} kg\\). One \\(Da\\) is approximately equal to the mass of one proton or one neutron. The CIPM have categorised it as a \"non-SI unit whose values in SI units must be obtained experimentally\"."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Dalton"^^xsd:anyURI ;
+  qudt:exactMatch unit:AMU ;
+  qudt:exactMatch unit:U ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolecularMass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Dalton?oldid=495038954"^^xsd:anyURI ;
+  qudt:symbol "Da" ;
+  qudt:ucumCode "u"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D43" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dalton"@en ;
+  owl:sameAs unit:AMU ;
+  owl:sameAs unit:U ;
+  skos:altLabel "atomic-mass-unit" ;
+.
+unit:Dalasi
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Gambia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gambian_dalasi"^^xsd:anyURI ;
+  qudt:expression "\\(GMD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gambian_dalasi?oldid=489522429"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dalasi"@en ;
+.
+unit:DanishKrone
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Denmark, Faroe Islands, Greenland"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Danish_krone"^^xsd:anyURI ;
+  qudt:expression "\\(DKK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Danish_krone?oldid=491168880"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Danish Krone"@en ;
+.
+unit:Debye
+  a qudt:Unit ;
+  dcterms:description "\"Debye\" is a C.G.S System unit for  'Electric Dipole Moment' expressed as \\(D\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000000000000000000000000333564 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Debye"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E1L1I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Debye?oldid=492149112"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/debye> ;
+  qudt:symbol "D" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Debye"@en ;
+.
+unit:DecaARE
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAB049" ;
+  qudt:plainTextDescription "unit of the area which is mainly common in the agriculture and forestry: 1 da = 10 a" ;
+  qudt:symbol "daa" ;
+  qudt:ucumCode "daar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DAA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decare"@en ;
+.
+unit:DecaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A DecaCoulomb is \\(10 C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Deca ;
+  qudt:symbol "daC" ;
+  qudt:ucumCode "daC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "DecaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:DecaGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB075" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "0,01-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Deca ;
+  qudt:symbol "dag" ;
+  qudt:ucumCode "dag"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DJ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decagram"@en ;
+.
+unit:DecaL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB115" ;
+  qudt:plainTextDescription "10-fold of the unit litre" ;
+  qudt:symbol "daL" ;
+  qudt:ucumCode "daL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decalitre"@en ;
+  rdfs:label "Decalitre"@en-us ;
+.
+unit:DecaM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB064" ;
+  qudt:isScalingOf unit:M ;
+  qudt:plainTextDescription "10-fold of the SI base unit metre" ;
+  qudt:prefix prefix:Deca ;
+  qudt:symbol "dam" ;
+  qudt:ucumCode "dam"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decameter"@en-us ;
+  rdfs:label "Decametre"@en ;
+.
+unit:DecaM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB179" ;
+  qudt:isScalingOf unit:M3 ;
+  qudt:plainTextDescription "1 000-fold of the power of the SI base unit metre by exponent 3" ;
+  qudt:prefix prefix:Deca ;
+  qudt:symbol "dam³" ;
+  qudt:ucumCode "dam3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DMA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decameter"@en-us ;
+  rdfs:label "Cubic Decametre"@en ;
+.
+unit:DecaPA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB375" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:plainTextDescription "10-fold of the derived SI unit pascal" ;
+  qudt:prefix prefix:Deca ;
+  qudt:symbol "daPa" ;
+  qudt:ucumCode "daPa"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H75" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decapascal"@en ;
+.
+unit:DeciB
+  a qudt:DimensionlessUnit ;
+  a qudt:LogarithmicUnit ;
+  a qudt:Unit ;
+  dcterms:description "A customary logarithmic measure most commonly used (in various ways) for measuring sound.Sound is measured on a logarithmic scale. Informally, if one sound is \\(1\\,bel\\) (10 decibels) \"louder\" than another, this means the louder sound is 10 times louder than the fainter one. A difference of 20 decibels corresponds to an increase of 10 x 10 or 100 times in intensity. The beginning of the scale, 0 decibels, can be set in different ways, depending on exactly the aspect of sound being measured. For sound intensity (the power of the sound waves per unit of area) \\(0\\,decibel\\) is equal to \\(1\\,picoWatts\\,per\\,Metre\\,Squared\\). This corresponds approximately to the faintest sound that can be detected by a person who has good hearing. For sound pressure (the pressure exerted by the sound waves) 0 decibels equals \\(20\\,micropascals\\,RMS\\), and for sound power \\(0\\,decibels\\) sometimes equals \\(1\\,picoWatt\\). In all cases, one decibel equals \\(\\approx\\,0.115129\\,neper\\)."^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Decibel"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:SoundExposureLevel ;
+  qudt:hasQuantityKind quantitykind:SoundPowerLevel ;
+  qudt:hasQuantityKind quantitykind:SoundPressureLevel ;
+  qudt:hasQuantityKind quantitykind:SoundReductionIndex ;
+  qudt:iec61360Code "0112/2///62720#UAA409" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Decibel?oldid=495380648"^^xsd:anyURI ;
+  qudt:symbol "dB" ;
+  qudt:ucumCode "dB"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2N" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decibel"@en ;
+.
+unit:DeciBAR
+  a qudt:Unit ;
+  dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to \\(100,000 Pa = 1 bar \\approx 750.0616827 Torr\\). Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BAR ;
+  qudt:prefix prefix:Deci ;
+  qudt:symbol "dbar" ;
+  qudt:ucumCode "dbar"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decibar"@en ;
+.
+unit:DeciBAR-PER-YR
+  a qudt:Unit ;
+  dcterms:description "A rate of change of pressure expressed in decibars over a period of an average calendar year (365.25 days)."@en ;
+  qudt:conversionMultiplier 0.00031688 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:symbol "dbar/yr" ;
+  qudt:ucumCode "dbar.a-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decibars per year"@en ;
+.
+unit:DeciB_C
+  a qudt:Unit ;
+  dcterms:description "\"Decibel Carrier Unit\" is a unit for  'Signal Detection Threshold' expressed as \\(dBc\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:SignalDetectionThreshold ;
+  qudt:symbol "dBc" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decibel Carrier Unit"@en ;
+.
+unit:DeciB_M
+  a qudt:DimensionlessUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Decibel Referred to 1mw\" is a 'Dimensionless Ratio' expressed as \\(dBm\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:symbol "dBmW" ;
+  qudt:udunitsCode "Bm" ;
+  qudt:uneceCommonCode "DBM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decibel Referred to 1mw"@en ;
+.
+unit:DeciC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A DeciCoulomb is \\(10^{-1} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Deci ;
+  qudt:symbol "dC" ;
+  qudt:ucumCode "dC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "DeciCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:DeciGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB076" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "0.0001-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Deci ;
+  qudt:symbol "dg" ;
+  qudt:ucumCode "dg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DG" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decigram"@en ;
+.
+unit:DeciL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB113" ;
+  qudt:plainTextDescription "0.1-fold of the unit litre" ;
+  qudt:symbol "dL" ;
+  qudt:ucumCode "dL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DLT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decilitre"@en ;
+  rdfs:label "Decilitre"@en-us ;
+.
+unit:DeciL-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificVolume ;
+  qudt:iec61360Code "0112/2///62720#UAB094" ;
+  qudt:plainTextDescription "0.1-fold of the unit of the volume litre divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:symbol "dL/g" ;
+  qudt:ucumCode "dL.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dL/g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decilitre Per Gram"@en ;
+  rdfs:label "Decilitre Per Gram"@en-us ;
+.
+unit:DeciM
+  a qudt:Unit ;
+  dcterms:description "A decimeter is a tenth of a meter."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA412" ;
+  qudt:isScalingOf unit:M ;
+  qudt:prefix prefix:Deci ;
+  qudt:symbol "dm" ;
+  qudt:ucumCode "dm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DMT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decimeter"@en-us ;
+  rdfs:label "Decimetre"@en ;
+.
+unit:DeciM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA413" ;
+  qudt:isScalingOf unit:M2 ;
+  qudt:plainTextDescription "0.1-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:prefix prefix:Deci ;
+  qudt:symbol "dm²" ;
+  qudt:ucumCode "dm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DMK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Decimeter"@en-us ;
+  rdfs:label "Square Decimetre"@en ;
+.
+unit:DeciM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA414" ;
+  qudt:isScalingOf unit:M3 ;
+  qudt:plainTextDescription "0.1-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:prefix prefix:Deci ;
+  qudt:symbol "dm³" ;
+  qudt:ucumCode "dm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DMQ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter"@en-us ;
+  rdfs:label "Cubic Decimetre"@en ;
+.
+unit:DeciM3-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001157407407 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA415" ;
+  qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time day" ;
+  qudt:symbol "dm³/day" ;
+  qudt:ucumCode "dm3.d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dm3/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J90" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter Per Day"@en-us ;
+  rdfs:label "Cubic Decimetre Per Day"@en ;
+.
+unit:DeciM3-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA416" ;
+  qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour" ;
+  qudt:symbol "dm³/hr" ;
+  qudt:ucumCode "dm3.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dm3/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E92" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter Per Hour"@en-us ;
+  rdfs:label "Cubic Decimetre Per Hour"@en ;
+.
+unit:DeciM3-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA417" ;
+  qudt:plainTextDescription "volume ratio consisting of the 0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "dm³/m³" ;
+  qudt:ucumCode "dm3.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "dm3/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter Per Cubic Meter"@en-us ;
+  rdfs:label "Cubic Decimetre Per Cubic Metre"@en ;
+.
+unit:DeciM3-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA418" ;
+  qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time minute" ;
+  qudt:symbol "dm³/min" ;
+  qudt:ucumCode "dm3.min-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "dm3/min3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J92" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter Per Minute"@en-us ;
+  rdfs:label "Cubic Decimetre Per Minute"@en ;
+.
+unit:DeciM3-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarRefractivity ;
+  qudt:hasQuantityKind quantitykind:MolarVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA419" ;
+  qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol" ;
+  qudt:symbol "dm³/mol" ;
+  qudt:ucumCode "dm3.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dm3/mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A37" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter Per Mole"@en-us ;
+  rdfs:label "Cubic Decimetre Per Mole"@en ;
+.
+unit:DeciM3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA420" ;
+  qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time second" ;
+  qudt:symbol "dm³/s" ;
+  qudt:ucumCode "dm3.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dm3/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Decimeter Per Second"@en-us ;
+  rdfs:label "Cubic Decimetre Per Second"@en ;
+.
+unit:DeciN-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAB084" ;
+  qudt:plainTextDescription "0.1-fold of the product of the derived SI unit joule and the SI base unit metre" ;
+  qudt:symbol "dN⋅m" ;
+  qudt:ucumCode "dN.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Decinewton Meter"@en-us ;
+  rdfs:label "Decinewton Metre"@en ;
+.
+unit:DeciS-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:plainTextDescription "Decisiemens per metre." ;
+  qudt:symbol "dS/m" ;
+  qudt:ucumCode "dS.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "dS/m"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "decisiemens per meter"@en-us ;
+  rdfs:label "decisiemens per metre"@en ;
+.
+unit:DeciTONNE
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:exactMatch unit:DeciTON_Metric ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "dt" ;
+  qudt:uneceCommonCode "DTN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "DeciTonne"@en ;
+  owl:sameAs unit:DeciTON_Metric ;
+.
+unit:DeciTON_Metric
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:exactMatch unit:DeciTONNE ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB078" ;
+  qudt:plainTextDescription "100-fold of the SI base unit kilogram" ;
+  qudt:symbol "dt" ;
+  qudt:ucumCode "dt"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DTN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Metric DeciTON"@en ;
+  owl:sameAs unit:DeciTONNE ;
+.
+unit:Denar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Former Yugoslav Republic of Macedonia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Macedonian_denar"^^xsd:anyURI ;
+  qudt:expression "\\(MKD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Macedonian_denar?oldid=489550202"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Denar"@en ;
+.
+unit:Denier
+  a qudt:Unit ;
+  dcterms:description "Denier or den is a unit of measure for the linear mass density of fibers. It is defined as the mass in grams per 9,000 meters. In the International System of Units the tex is used instead (see below). The denier is based on a natural standard: a single strand of silk is approximately one denier. A 9,000-meter strand of silk weighs about one gram. The term denier is from the French denier, a coin of small value (worth 1/12 of a sou). Applied to yarn, a denier was held to be equal in weight to 1/24 of an ounce. The term microdenier is used to describe filaments that weigh less than one gram per 9,000 meter length."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.00000011 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Denier"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB244" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Denier?oldid=463382291"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Units_of_textile_measurement#Denier"^^xsd:anyURI ;
+  qudt:symbol "D" ;
+  qudt:ucumCode "[den]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Denier"@en ;
+.
+unit:DjiboutiFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Djibouti"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Djiboutian_franc"^^xsd:anyURI ;
+  qudt:expression "\\(DJF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Djiboutian_franc?oldid=486807423"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Djibouti Franc"@en ;
+.
+unit:Dobra
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "The currency of São Tomé and Príncipe"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Dobra"^^xsd:anyURI ;
+  qudt:expression "\\(STD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Dobra?oldid=475725328"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dobra"@en ;
+.
+unit:DominicanPeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Dominican Republic"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Dominican_peso"^^xsd:anyURI ;
+  qudt:expression "\\(DOP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Dominican_peso?oldid=493950199"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dominican Peso"@en ;
+.
+unit:E
+  a qudt:Unit ;
+  dcterms:description "\"Elementary Charge\", usually denoted as \\(e\\), is the electric charge carried by a single proton, or equivalently, the negation (opposite) of the electric charge carried by a single electron. This elementary charge is a fundamental physical constant. To avoid confusion over its sign, e is sometimes called the elementary positive charge. This charge has a measured value of approximately \\(1.602176634 \\times 10^{-19} coulombs\\). In the cgs system, \\(e\\) is \\(4.80320471257026372 \\times 10^{-10} statcoulombs\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:symbol "e" ;
+  qudt:ucumCode "[e]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "e" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Elementary Charge"@en ;
+.
+unit:ERG
+  a qudt:Unit ;
+  dcterms:description "An erg is the unit of energy and mechanical work in the centimetre-gram-second (CGS) system of units, symbol 'erg'. Its name is derived from the Greek ergon, meaning 'work'. An erg is the amount of work done by a force of one dyne exerted for a distance of one centimeter. In the CGS base units, it is equal to one gram centimeter-squared per second-squared (\\(g \\cdot cm^2/s^2\\)). It is thus equal to \\(10^{-7}\\) joules or 100 nanojoules in SI units. \\(1 erg = 10^{-7} J = 100 nJ\\),  \\(1 erg = 624.15 GeV = 6.2415 \\times 10^{11} eV\\), \\(1 erg = 1 dyne\\cdot cm = 1 g \\cdot cm^2/s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Erg"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA429" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Erg?oldid=490293432"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(g\\cdot cm^{2}/s^{2}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/erg> ;
+  qudt:symbol "erg" ;
+  qudt:ucumCode "erg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A57" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg"@en ;
+.
+unit:ERG-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ;
+  qudt:iec61360Code "0112/2///62720#UAB145" ;
+  qudt:plainTextDescription "CGS unit of the length-related energy" ;
+  qudt:symbol "erg/cm" ;
+  qudt:ucumCode "erg.cm-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg Per Centimeter"@en-us ;
+  rdfs:label "Erg Per Centimetre"@en ;
+.
+unit:ERG-PER-CentiM2-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Erg per Square Centimeter Second\" is a C.G.S System unit for  'Power Per Area' expressed as \\(erg/(cm^{2}-s)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(erg/(cm^{2}-s)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB055" ;
+  qudt:symbol "erg/(cm²⋅s)" ;
+  qudt:ucumCode "erg.cm-2.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/(cm2.s)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A65" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg per Square Centimeter Second"@en-us ;
+  rdfs:label "Erg per Square Centimetre Second"@en ;
+.
+unit:ERG-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(erg-per-cm3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB146" ;
+  qudt:symbol "erg/cm³" ;
+  qudt:ucumCode "erg.cm-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/cm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A60" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg per Cubic Centimeter"@en-us ;
+  rdfs:label "Erg per Cubic Centimetre"@en ;
+.
+unit:ERG-PER-G
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(erg-per-g\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB061" ;
+  qudt:symbol "erg/g" ;
+  qudt:ucumCode "erg.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A61" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg per Gram"@en ;
+.
+unit:ERG-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB061" ;
+  qudt:plainTextDescription "CGS unit of the mass-related energy" ;
+  qudt:symbol "erg/g" ;
+  qudt:ucumCode "erg.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg Per Gram"@en ;
+.
+unit:ERG-PER-GM-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ;
+  qudt:iec61360Code "0112/2///62720#UAB147" ;
+  qudt:plainTextDescription "CGS unit of the mass-related power" ;
+  qudt:symbol "erg/(g⋅s)" ;
+  qudt:ucumCode "erg.g-1.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/(g.s)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg Per Gram Second"@en ;
+.
+unit:ERG-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Erg per Second\" is a C.G.S System unit for  'Power' expressed as \\(erg/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(erg/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA430" ;
+  qudt:latexDefinition "\\(g\\cdot cm^{2}/s^{3}\\)"^^qudt:LatexString ;
+  qudt:symbol "erg/s" ;
+  qudt:ucumCode "erg.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "erg/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A63" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg per Second"@en ;
+.
+unit:ERG-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularMomentum ;
+  qudt:symbol "erg⋅s" ;
+  qudt:ucumCode "erg.s"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erg Second"@en ;
+.
+unit:ERLANG
+  a qudt:Unit ;
+  dcterms:description "The \"Erlang\" is a dimensionless unit that is used in telephony as a measure of offered load or carried load on service-providing elements such as telephone circuits or telephone switching equipment."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Erlang_(unit)"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAB340" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Erlang_(unit)"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
+  qudt:symbol "E" ;
+  qudt:uneceCommonCode "Q11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Erlang"@en ;
+.
+unit:EV
+  a qudt:Unit ;
+  dcterms:description "An electron volt (eV) is the energy that an electron gains when it travels through a potential of one volt. You can imagine that the electron starts at the negative plate of a parallel plate capacitor and accelerates to the positive plate, which is at one volt higher potential. Numerically \\(1 eV\\) approximates \\(1.6x10^{-19} joules\\), where \\(1 joule\\) is \\(6.2x10^{18} eV\\). For example, it would take \\(6.2x10^{20} eV/sec\\) to light a 100 watt light bulb."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Electron_volt"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_volt?oldid=344021738"^^xsd:anyURI ;
+  qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
+  qudt:quantityValue qudt:ValueForElectronVolt ;
+  qudt:symbol "eV" ;
+  qudt:ucumCode "eV"^^qudt:UCUMcs ;
+  qudt:udunitsCode "eV" ;
+  qudt:uneceCommonCode "A53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electron Volt"@en ;
+.
+unit:EV-PER-ANGSTROM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ;
+  qudt:latexSymbol "\\(ev/\\AA\\)"^^qudt:LatexString ;
+  qudt:plainTextDescription "unit electronvolt divided by the unit angstrom" ;
+  qudt:symbol "eV/Å" ;
+  qudt:ucumCode "eV.Ao-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "eV/Ao"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electronvolt Per Angstrom"@en ;
+.
+unit:EV-PER-K
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Electron Volt per Kelvin} is a unit for 'Heat Capacity' expressed as \\(ev/K\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:expression "\\(ev/K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:HeatCapacity ;
+  qudt:symbol "ev/K" ;
+  qudt:ucumCode "eV.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "eV/K"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electron Volt per Kelvin"@en ;
+.
+unit:EV-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ;
+  qudt:iec61360Code "0112/2///62720#UAA426" ;
+  qudt:plainTextDescription "unit electronvolt divided by the SI base unit metre" ;
+  qudt:symbol "eV/m" ;
+  qudt:ucumCode "eV.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "eV/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electronvolt Per Meter"@en-us ;
+  rdfs:label "Electronvolt Per Metre"@en ;
+.
+unit:EV-PER-T
+  a qudt:Unit ;
+  dcterms:description "\"Electron Volt per Tesla\" is a unit for  'Magnetic Dipole Moment' expressed as \\(eV T^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:expression "\\(eV T^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
+  qudt:symbol "eV/T" ;
+  qudt:ucumCode "eV.T-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "eV/T"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electron Volt per Tesla"@en ;
+.
+unit:EV-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Electron Volt Second\" is a unit for  'Angular Momentum' expressed as \\(eV s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularMomentum ;
+  qudt:symbol "eV⋅s" ;
+  qudt:ucumCode "eV.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "eV/s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electron Volt Second"@en ;
+.
+unit:E_h
+  a qudt:Unit ;
+  dcterms:description """<p>The \\(\\textit{Hartree}\\) (symbol: \\(E_h\\) or \\(Ha\\)), also known as the \\(\\text{Hartree\\,Energy}\\), is the atomic unit of energy. The hartree energy is equal to the absolute value of the electric potential energy of the hydrogen atom in its ground state. The energy of the electron in an H-atom in its ground state is \\(-E_H\\), where \\(E_H= 2 R_\\infty \\cdot hc_0\\). The 2006 CODATA recommended value was \\(E_H = 4.35974394(22) \\times 10^{-18} J = 27.21138386(68) eV\\).</p>
+<dt class=\"size-14\">Definition:</dt>
+<dd>\\(E_H= \\frac{e^2}{4\\pi \\epsilon_0 a_0 }\\)<br/>
+where, \\(e\\) is the elementary charge, \\(\\epsilon_0\\) is the electric constant, and \\(a_0\\) is the Bohr radius.'</dd>"""^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.00000000000000000435974394 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hartree"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Hartree?oldid=489318053"^^xsd:anyURI ;
+  qudt:symbol "Ha" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hartree"@en ;
+.
+unit:EarthMass
+  a qudt:Unit ;
+  dcterms:description "Earth mass (\\(M_{\\oplus}\\)) is the unit of mass equal to that of the Earth. In SI Units, \\(1 M_{\\oplus} = 5.9722 \\times 10^{24} kg\\). Earth mass is often used to describe masses of rocky terrestrial planets. The four terrestrial planets of the Solar System, Mercury, Venus, Earth, and Mars, have masses of 0.055, 0.815, 1.000, and 0.107 Earth masses respectively."^^qudt:LatexString ;
+  qudt:conversionMultiplier 5972190000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Earth_mass"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Earth_mass?oldid=495457885"^^xsd:anyURI ;
+  qudt:latexDefinition """One Earth mass can be converted to related units:
+
+81.3 Lunar mass (ML)
+0.00315 Jupiter mass (MJ) (Jupiter has 317.83 Earth masses)[1]
+0.0105 Saturn mass (Saturn has 95.16 Earth masses)[3]
+0.0583 Neptune mass (Neptune has 17.147 Earth masses)[4]
+0.000 003 003 Solar mass (\\(M_{\\odot}\\)) (The Sun has 332946 Earth masses)"""^^qudt:LatexString ;
+  qudt:symbol "M⊕" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Earth mass"@en ;
+.
+unit:EastCaribbeanDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/East_Caribbean_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(XCD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/East_Caribbean_dollar?oldid=493020176"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "East Caribbean Dollar"@en ;
+.
+unit:EgyptianPound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Egypt"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Egyptian_pound"^^xsd:anyURI ;
+  qudt:expression "\\(EGP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Egyptian_pound?oldid=494670285"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Egyptian Pound"@en ;
+.
+unit:ElementaryCharge
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Elementary Charge}, usually denoted as \\(e\\), is the electric charge carried by a single proton, or equivalently, the negation (opposite) of the electric charge carried by a single electron. This elementary charge is a fundamental physical constant. To avoid confusion over its sign, e is sometimes called the elementary positive charge. This charge has a measured value of approximately \\(1.602176634 \\times 10^{-19} coulombs\\). In the cgs system, \\(e\\) is \\(4.80320471257026372 \\times 10^{-10} statcoulombs\\)."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.0000000000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:symbol "e" ;
+  qudt:ucumCode "[e]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Elementary Charge"@en ;
+.
+unit:EthiopianBirr
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Ethiopia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ethiopian_birr"^^xsd:anyURI ;
+  qudt:expression "\\(ETB\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ethiopian_birr?oldid=493373507"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ethiopian Birr"@en ;
+.
+unit:Euro
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "European Union Euro"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Euro"^^xsd:anyURI ;
+  qudt:expression "\\(EUR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Euro?oldid=495293446"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/euro> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Euro"@en ;
+.
+unit:EuropeanCompositeUnit
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bonds market unit"^^rdf:HTML ;
+  qudt:expression "\\(XBA\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "European Composite Unit (EURCO) (Bonds market unit)"@en ;
+.
+unit:EuropeanMonetaryUnit
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bonds market unit"^^rdf:HTML ;
+  qudt:expression "\\(XBB\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "European Monetary Unit (E.M.U.-6) (Bonds market unit)"@en ;
+.
+unit:EuropeanUnitOfAccount17
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bonds market unit"^^rdf:HTML ;
+  qudt:expression "\\(XBD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "European Unit of Account 17 (E.U.A.-17) (Bonds market unit)"@en ;
+.
+unit:EuropeanUnitOfAccount9
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bonds market unit"^^rdf:HTML ;
+  qudt:expression "\\(XBC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "European Unit of Account 9 (E.U.A.-9) (Bonds market unit)"@en ;
+.
+unit:ExaBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The exabyte is a multiple of the unit byte for digital information. The prefix exa means 10^18 in the International System of Units (SI), so ExaByte is 10^18 Bytes."^^rdf:HTML ;
+  qudt:conversionMultiplier 5545177444479562475.3378569716654 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Exabyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Exa ;
+  qudt:symbol "EB" ;
+  qudt:ucumCode "EBy"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ExaByte"@en ;
+.
+unit:ExaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "An ExaCoulomb is \\(10^{18} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000000000000.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Exa ;
+  qudt:symbol "EC" ;
+  qudt:ucumCode "EC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ExaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:ExaJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB122" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "1 000 000 000 000 000 000-fold of the derived SI unit joule" ;
+  qudt:prefix prefix:Exa ;
+  qudt:symbol "EJ" ;
+  qudt:ucumCode "EJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A68" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Exajoule"@en ;
+.
+unit:ExbiBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The exbibyte is a multiple of the unit byte for digital information. The prefix exbi means 1024^6"^^rdf:HTML ;
+  qudt:conversionMultiplier 6393154322601327829.8943153498712 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Exbibyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Exbi ;
+  qudt:symbol "EiB" ;
+  qudt:uneceCommonCode "E59" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ExbiByte"@en ;
+.
+unit:F
+  a qudt:Unit ;
+  dcterms:description "\"Faraday\" is a unit for  'Electric Charge' expressed as \\(F\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 96485.3399 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/faraday> ;
+  qudt:symbol "F" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Faraday"@en ;
+.
+unit:FA
+  a qudt:Unit ;
+  dcterms:description "\"Fractional area\" is a unit for  'Solid Angle' expressed as \\(fa\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 12.5663706 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:SolidAngle ;
+  qudt:symbol "fa" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Fractional area"@en ;
+.
+unit:FARAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of electric capacitance. Very early in the study of electricity scientists discovered that a pair of conductors separated by an insulator can store a much larger charge than an isolated conductor can store. The better the insulator, the larger the charge that the conductors can hold. This property of a circuit is called capacitance, and it is measured in farads. One farad is defined as the ability to store one coulomb of charge per volt of potential difference between the two conductors. This is a natural definition, but the unit it defines is very large. In practical circuits, capacitance is often measured in microfarads, nanofarads, or sometimes even in picofarads (10-12 farad, or trillionths of a farad). The unit is named for the British physicist Michael Faraday (1791-1867), who was known for his work in electricity and electrochemistry."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:iec61360Code "0112/2///62720#UAA144" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/farad> ;
+  qudt:siUnitsExpression "C/V" ;
+  qudt:symbol "F" ;
+  qudt:ucumCode "F"^^qudt:UCUMcs ;
+  qudt:udunitsCode "F" ;
+  qudt:uneceCommonCode "FAR" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Farad"@en ;
+.
+unit:FARAD-PER-KiloM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:iec61360Code "0112/2///62720#UAA145" ;
+  qudt:plainTextDescription "SI derived unit farad divided by the 1 000-fold of the SI base unit metre" ;
+  qudt:symbol "F/km" ;
+  qudt:ucumCode "F.km-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "F/km"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Farad Per Kilometer"@en-us ;
+  rdfs:label "Farad Per Kilometre"@en ;
+.
+unit:FARAD-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Farad Per Meter (\\(F/m\\)) is a unit in the category of Electric permittivity. It is also known as farad/meter. This unit is commonly used in the SI unit system. Farad Per Meter has a dimension of M-1L-3T4I2 where M is mass, L is length, T is time, and I is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(F/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:iec61360Code "0112/2///62720#UAA146" ;
+  qudt:symbol "F/m" ;
+  qudt:ucumCode "F.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "F/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A69" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Farad per Meter"@en-us ;
+  rdfs:label "Farad per Metre"@en ;
+.
+unit:FARAD_Ab
+  a qudt:Unit ;
+  dcterms:description "An abfarad is an obsolete electromagnetic (CGS) unit of capacitance equal to \\(10^{9}\\) farads (1,000,000,000 F or 1 GF). The absolute farad of the e.m.u. system, for a steady current identically \\(abC/abV\\), and identically reciprocal abdaraf. 1 abF = 1 GF."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Abfarad"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Abfarad?oldid=407124018"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-13"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad> ;
+  qudt:symbol "abF" ;
+  qudt:ucumCode "GF"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abfarad"@en ;
+.
+unit:FARAD_Ab-PER-CentiM
+  a qudt:Unit ;
+  dcterms:description "The absolute dielectric constant of free space is defined as the ratio of displacement to the electric field intensity. The unit of measure is the abfarad per centimeter, a derived CGS unit."^^rdf:HTML ;
+  qudt:conversionMultiplier 100000000000.0 ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:expression "\\(abf-per-cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:symbol "abf/cm" ;
+  qudt:ucumCode "GF.cm-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abfarad per Centimeter"@en-us ;
+  rdfs:label "Abfarad per Centimetre"@en ;
+.
+unit:FARAD_Stat
+  a qudt:Unit ;
+  dcterms:description "Statfarad (statF) is a unit in the category of Electric capacitance. It is also known as statfarads. This unit is commonly used in the cgs unit system. Statfarad (statF) has a dimension of \\(M^{-1}L^{-2}T^4I^2\\) where M is mass, L is length, T is time, and I is electric current. It can be converted to the corresponding standard SI unit F by multiplying its value by a factor of 1.11265E-012."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000001112650056053618432174089964848 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_capacitance--statfarad.cfm"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad> ;
+  qudt:symbol "statF" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statfarad"@en ;
+.
+unit:FATH
+  a qudt:Unit ;
+  dcterms:description "A fathom = 1.8288 meters, is a unit of length in the imperial and the U.S. customary systems, used especially for measuring the depth of water. There are two yards in an imperial or U.S. fathom. Originally based on the distance between the man's outstretched arms, the size of a fathom has varied slightly depending on whether it was defined as a thousandth of an (Admiralty) nautical mile or as a multiple of the imperial yard.  Abbreviations: f, fath, fm, fth, fthm."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.8288 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Fathom"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Fathom?oldid=493265429"^^xsd:anyURI ;
+  qudt:symbol "fathom" ;
+  qudt:ucumCode "[fth_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "AK" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Fathom"@en ;
+.
+unit:FBM
+  a qudt:Unit ;
+  dcterms:description "The board-foot is a specialized unit of measure for the volume of lumber in the United States and Canada. It is the volume of a one-foot length of a board one foot wide and one inch thick. Board-foot can be abbreviated FBM (for 'foot, board measure'), BDFT, or BF. Thousand board-feet can be abbreviated as MFBM, MBFT or MBF. "^^rdf:HTML ;
+  qudt:conversionMultiplier 0.00236 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:symbol "BDFT" ;
+  qudt:ucumCode "[bf_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "BFT" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Board Foot"@en ;
+.
+unit:FC
+  a qudt:Unit ;
+  dcterms:description "\"Foot Candle\" is a unit for  'Luminous Flux Per Area' expressed as \\(fc\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 10.764 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Foot-candle"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousFluxPerArea ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Foot-candle?oldid=475579268"^^xsd:anyURI ;
+  qudt:symbol "fc" ;
+  qudt:uneceCommonCode "P27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Candle"@en ;
+.
+unit:FM
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{fermi}\\), or \\(\\textit{femtometer}\\) (other spelling \\(femtometre\\), symbol \\(fm\\)) is an SI unit of length equal to \\(10^{-15} metre\\). This distance is often encountered in nuclear physics as a characteristic of this scale. The symbol for the fermi is also \\(fm\\)."^^qudt:LatexString ;
+  qudt:conversionCoefficient 0.0 ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:exactMatch unit:FemtoM ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Fermi_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/fermi> ;
+  qudt:symbol "fm" ;
+  qudt:uneceCommonCode "A71" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "fermi"@en ;
+  owl:sameAs unit:FemtoM ;
+.
+unit:FR
+  a qudt:Unit ;
+  dcterms:description "\"Franklin\" is a unit for  'Electric Charge' expressed as \\(Fr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000003335641 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Franklin"^^xsd:anyURI ;
+  qudt:exactMatch unit:C_Stat ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAB212" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Franklin?oldid=495090654"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/franklin> ;
+  qudt:symbol "Fr" ;
+  qudt:uneceCommonCode "N94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Franklin"@en ;
+  owl:sameAs unit:C_Stat ;
+.
+unit:FRACTION
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier "1"^^xsd:double ;
+  qudt:conversionOffset "0"^^xsd:double ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:plainTextDescription "Fraction is a unit for 'Dimensionless Ratio' expressed as the value of the ratio itself." ;
+  qudt:symbol "÷" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Fraction"@en ;
+.
+unit:FRAME-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Frame per Second\" is a unit for  'Video Frame Rate' expressed as \\(fps\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VideoFrameRate ;
+  qudt:symbol "fps" ;
+  qudt:ucumCode "/s{frame}"^^qudt:UCUMcs ;
+  qudt:ucumCode "s-1{frame}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Frame per Second"@en ;
+.
+unit:FT
+  a qudt:Unit ;
+  dcterms:description "A foot is a unit of length defined as being 0.3048 m exactly and used in the imperial system of units and United States customary units. It is subdivided into 12 inches. The foot is still officially used in Canada and still commonly used in the United Kingdom, although the latter has partially metricated its units of measurement. "^^rdf:HTML ;
+  qudt:conversionMultiplier 0.3048 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Foot_%28length%29"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA440" ;
+  qudt:symbol "ft" ;
+  qudt:ucumCode "[ft_i]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "ft" ;
+  qudt:uneceCommonCode "FOT" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot"@en ;
+.
+unit:FT-LA
+  a qudt:Unit ;
+  dcterms:description "\"Foot Lambert\" is a C.G.S System unit for  'Luminance' expressed as \\(ft-L\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3.4262591 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-L\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Luminance ;
+  qudt:symbol "ft⋅L" ;
+  qudt:ucumCode "[ft_i].Lmb"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Lambert"@en ;
+.
+unit:FT-LB_F
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force\" is an Imperial unit for  'Energy And Work' expressed as \\(ft-lbf\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.35581807 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Foot-pound_force"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-lbf\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Foot-pound_force?oldid=453269257"^^xsd:anyURI ;
+  qudt:symbol "ft⋅lbf" ;
+  qudt:ucumCode "[ft_i].[lbf_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "85" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force"@en ;
+.
+unit:FT-LB_F-PER-FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound per Square Foot\" is an Imperial unit for  'Energy Per Area' expressed as \\(ft-lbf/ft^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 14.5939042 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-lbf/ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:symbol "ft⋅lbf/ft²" ;
+  qudt:ucumCode "[ft_i].[lbf_av].[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound per Square Foot"@en ;
+.
+unit:FT-LB_F-PER-FT2-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force per Square Foot Second\" is an Imperial unit for  'Power Per Area' expressed as \\(ft \\cdot lbf/(ft^2 \\cdot s)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 14.5939042 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-lbf/ft^2s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:latexSymbol "\\(ft \\cdot lbf/(ft^2 \\cdot s)\\)"^^qudt:LatexString ;
+  qudt:symbol "ft⋅lbf/ft²s" ;
+  qudt:ucumCode "[ft_i].[lbf_av].[sft_i]-1.s-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force per Square Foot Second"@en ;
+.
+unit:FT-LB_F-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force per Hour\" is an Imperial unit for  'Power' expressed as \\(ft-lbf/hr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00376616129 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-lbf/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:symbol "ft⋅lbf/hr" ;
+  qudt:ucumCode "[ft_i].[lbf_av].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K15" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force per Hour"@en ;
+.
+unit:FT-LB_F-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force per Square Meter\" is a unit for  'Energy Per Area' expressed as \\(ft-lbf/m^{2}\\)."^^qudt:LatexString ;
+  qudt:expression "\\(ft-lbf/m^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:symbol "ft⋅lbf/m²" ;
+  qudt:ucumCode "[ft_i].[lbf_av].m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force per Square Meter"@en-us ;
+  rdfs:label "Foot Pound Force per Square Metre"@en ;
+.
+unit:FT-LB_F-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force per Minute\" is an Imperial unit for  'Power' expressed as \\(ft-lbf/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0225969678 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-lbf/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:symbol "ft⋅lbf/min" ;
+  qudt:ucumCode "[ft_i].[lbf_av].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K16" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force per Minute"@en ;
+.
+unit:FT-LB_F-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force per Second\" is an Imperial unit for  'Power' expressed as \\(ft-lbf/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.35581807 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft-lbf/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:symbol "ft⋅lbf/s" ;
+  qudt:ucumCode "[ft_i].[lbf_av].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A74" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force per Second"@en ;
+.
+unit:FT-LB_F-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Foot Pound Force Second\" is a unit for  'Angular Momentum' expressed as \\(lbf / s\\)."^^qudt:LatexString ;
+  qudt:expression "\\(lbf / s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularMomentum ;
+  qudt:symbol "lbf/s" ;
+  qudt:ucumCode "[ft_i].[lbf_av].s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Pound Force Second"@en ;
+.
+unit:FT-PDL
+  a qudt:Unit ;
+  dcterms:description "\"Foot Poundal\" is an Imperial unit for  'Energy And Work' expressed as \\(ft-pdl\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0421401100938048 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB220" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal> ;
+  qudt:symbol "ft⋅pdl" ;
+  qudt:uneceCommonCode "N46" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Poundal"@en ;
+.
+unit:FT-PER-DAY
+  a qudt:Unit ;
+  dcterms:description "\"Foot per Day\" is an Imperial unit for  'Linear Velocity' expressed as \\(ft/d\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000352777777777778 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft/d\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:symbol "ft/day" ;
+  qudt:ucumCode "[ft_i].d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]/d"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot per Day"@en ;
+.
+unit:FT-PER-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.54864 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA441" ;
+  qudt:plainTextDescription "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit" ;
+  qudt:symbol "ft/°F" ;
+  qudt:ucumCode "[ft_i].[lbf_av].[degF]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Per Degree Fahrenheit"@en ;
+.
+unit:FT-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\"Foot per Hour\" is an Imperial unit for  'Linear Velocity' expressed as \\(ft/hr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00008466666666666667 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA442" ;
+  qudt:symbol "ft/hr" ;
+  qudt:ucumCode "[ft_i].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K14" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot per Hour"@en ;
+.
+unit:FT-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\"Foot per Minute\" is an Imperial unit for  'Linear Velocity' expressed as \\(ft/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00508 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA448" ;
+  qudt:symbol "ft/min" ;
+  qudt:ucumCode "[ft_i].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FR" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot per Minute"@en ;
+.
+unit:FT-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{foot per second}\\) (plural \\(\\textit{feet per second}\\)) is a unit of both speed (scalar) and velocity (vector quantity, which includes direction). It expresses the distance in feet (\\(ft\\)) traveled or displaced, divided by the time in seconds (\\(s\\), or \\(sec\\)). The corresponding unit in the International System of Units (SI) is the \\(\\textit{metre per second}\\). Abbreviations include \\(ft/s\\), \\(ft/sec\\) and \\(fps\\), and the rarely used scientific notation \\(ft\\,s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.3048 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Foot_per_second"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA449" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Foot_per_second?oldid=491316573"^^xsd:anyURI ;
+  qudt:symbol "ft/s" ;
+  qudt:ucumCode "[ft_i].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FS" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot per Second"@en ;
+.
+unit:FT-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Foot per Square Second}\\) is an Imperial unit for \\(\\textit{Linear Acceleration}\\) expressed as \\(ft/s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.3048 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft/s^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:iec61360Code "0112/2///62720#UAA452" ;
+  qudt:symbol "ft/s²" ;
+  qudt:ucumCode "[ft_i].s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]/s2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A73" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot per Square Second"@en ;
+.
+unit:FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The square foot (plural square feet; abbreviated \\(ft^2\\) or \\(sq \\, ft\\)) is an imperial unit and U.S. customary unit of area, used mainly in the United States, Canada, United Kingdom, Hong Kong, Bangladesh, India, Pakistan and Afghanistan. It is defined as the area of a square with sides of 1 foot in length."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.09290304 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA454" ;
+  qudt:symbol "ft²" ;
+  qudt:ucumCode "[ft_i]2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[sft_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FTK" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot"@en ;
+.
+unit:FT2-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Foot Degree Fahrenheit} is an Imperial unit for 'Area Temperature' expressed as \\(ft^{2}-degF\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{2}-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTemperature ;
+  qudt:symbol "ft²⋅°F" ;
+  qudt:ucumCode "[sft_i].[degF]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot Degree Fahrenheit"@en ;
+.
+unit:FT2-HR-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Foot Hour Degree Fahrenheit} is an Imperial unit for 'Area Time Temperature' expressed as \\(ft^{2}-hr-degF\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{2}-hr-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTimeTemperature ;
+  qudt:symbol "ft²⋅hr⋅°F" ;
+  qudt:ucumCode "[sft_i].h.[degF]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot Hour Degree Fahrenheit"@en ;
+.
+unit:FT2-HR-DEG_F-PER-BTU_IT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Foot Hour Degree Fahrenheit per BTU} is an Imperial unit for 'Thermal Insulance' expressed as \\((degF-hr-ft^{2})/Btu\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(sqft-hr-degF/btu\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalInsulance ;
+  qudt:symbol "sqft⋅hr⋅°F/btu" ;
+  qudt:ucumCode "[sft_i].h.[degF].[Btu_IT]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot Hour Degree Fahrenheit per BTU"@en ;
+.
+unit:FT2-PER-BTU_IT-IN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00346673589 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft2-per-btu-in\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalResistivity ;
+  qudt:symbol "ft²/btu⋅in" ;
+  qudt:ucumCode "[sft_i].[Btu_IT]-1.[in_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot per BTU Inch"@en ;
+.
+unit:FT2-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Foot per Hour} is an Imperial unit for \\(\\textit{Kinematic Viscosity}\\) and  \\(\\textit{Thermal Diffusivity}\\) expressed as \\(ft^{2}/hr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000258064 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{2}/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAB247" ;
+  qudt:symbol "ft²/hr" ;
+  qudt:ucumCode "[sft_i].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M79" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot per Hour"@en ;
+.
+unit:FT2-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Square Foot per Second\" is an Imperial unit for  'Kinematic Viscosity' expressed as \\(ft^{2}/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.09290304 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{2}/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA455" ;
+  qudt:symbol "ft²/s" ;
+  qudt:ucumCode "[sft_i].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "S3" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot per Second"@en ;
+.
+unit:FT2-SEC-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Foot Second Degree Fahrenheit} is an Imperial unit for 'Area Time Temperature' expressed as \\(ft^{2}\\cdot s\\cdot degF\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{2}-s-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTimeTemperature ;
+  qudt:symbol "ft²⋅s⋅°F" ;
+  qudt:ucumCode "[sft_i].s.[degF]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Foot Second Degree Fahrenheit"@en ;
+.
+unit:FT3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The cubic foot is an Imperial and US customary unit of volume, used in the United States and the United Kingdom. It is defined as the volume of a cube with sides of one foot (0.3048 m) in length. To calculate cubic feet multiply length X width X height. "^^rdf:HTML ;
+  qudt:conversionMultiplier 0.028316846592 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA456" ;
+  qudt:symbol "ft³" ;
+  qudt:ucumCode "[cft_i]"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FTQ" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot"@en ;
+.
+unit:FT3-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000003277413 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA458" ;
+  qudt:plainTextDescription "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day" ;
+  qudt:symbol "ft³/day" ;
+  qudt:ucumCode "[cft_i].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot Per Day"@en ;
+.
+unit:FT3-PER-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.05097033 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA457" ;
+  qudt:plainTextDescription "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit" ;
+  qudt:symbol "ft³/°F" ;
+  qudt:ucumCode "[cft_i].[degF]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot Per Degree Fahrenheit"@en ;
+.
+unit:FT3-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000007865792 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA459" ;
+  qudt:plainTextDescription "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour" ;
+  qudt:symbol "ft³/hr" ;
+  qudt:ucumCode "[cft_i].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2K" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot Per Hour"@en ;
+.
+unit:FT3-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Cubic Foot per Minute\" is an Imperial unit for  'Volume Per Unit Time' expressed as \\(ft^3/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0004719474432000001 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{3}/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:iec61360Code "0112/2///62720#UAA461" ;
+  qudt:symbol "ft³/min" ;
+  qudt:ucumCode "[cft_i].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[cft_i]/min"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]3.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]3/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2L" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot per Minute"@en ;
+.
+unit:FT3-PER-MIN-FT2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00508 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:iec61360Code "0112/2///62720#UAB086" ;
+  qudt:plainTextDescription "unit of the volume flow rate according to the Anglio-American and imperial system of units cubic foot per minute related to the transfer area according to the Anglian American and Imperial system of units square foot" ;
+  qudt:symbol "ft³/(min⋅ft²)" ;
+  qudt:ucumCode "[cft_i].min-1.[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot Per Minute Square Foot"@en ;
+.
+unit:FT3-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Cubic Foot per Second\" is an Imperial unit for \\( \\textit{Volume Per Unit Time}\\) expressed as \\(ft^3/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.028316846592000004 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(ft^{3}/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:iec61360Code "0112/2///62720#UAA462" ;
+  qudt:symbol "ft³/s" ;
+  qudt:ucumCode "[cft_i].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[cft_i]/s"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]3.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[ft_i]3/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E17" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Foot per Second"@en ;
+.
+unit:FT_H2O
+  a qudt:Unit ;
+  dcterms:description "\"Foot of Water\" is a unit for  'Force Per Area' expressed as \\(ftH2O\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 2989.067 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA463" ;
+  qudt:symbol "ftH₂0" ;
+  qudt:ucumCode "[ft_i'H2O]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "ftH2O" ;
+  qudt:udunitsCode "fth2o" ;
+  qudt:uneceCommonCode "K24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot of Water"@en ;
+.
+unit:FT_HG
+  a qudt:Unit ;
+  qudt:conversionMultiplier 40636.66 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA464" ;
+  qudt:plainTextDescription "not SI conform unit of the pressure, at which 1 ftHg corresponds to the static pressure, which is excited by a mercury column with a height of 1 foot" ;
+  qudt:symbol "ftHg" ;
+  qudt:ucumCode "[ft_i'Hg]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K25" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Foot Of Mercury"@en ;
+.
+unit:FT_US
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{US Survey Foot}\\) is a unit for 'Length' expressed as \\(ftUS\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.3048006 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:symbol "ft{US Survey}" ;
+  qudt:ucumCode "[ft_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M51" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Survey Foot"@en ;
+.
+unit:FUR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A furlong is a measure of distance in imperial units and U.S. customary units equal to one-eighth of a mile, equivalent to 220 yards, 660 feet, 40 rods, or 10 chains. The exact value of the furlong varies slightly among English-speaking countries. Five furlongs are approximately 1 kilometre (1.0058 km is a closer approximation). Since the original definition of the metre was one-quarter of one ten-millionth of the circumference of the Earth (along the great circle coincident with the meridian of longitude passing through Paris), the circumference of the Earth is about 40,000 km or about 200,000 furlongs. "^^rdf:HTML ;
+  qudt:conversionMultiplier 201.168 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Furlong"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB204" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Furlong?oldid=492237369"^^xsd:anyURI ;
+  qudt:symbol "furlong" ;
+  qudt:ucumCode "[fur_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M50" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:comment "Check if this is US-Survey or International Customary definition (multiplier)" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Furlong"@en ;
+.
+unit:FUR_Long
+  a qudt:Unit ;
+  qudt:expression "\\(longfur\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:symbol "furlong{long}" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Long Furlong"@en ;
+.
+unit:FalklandIslandsPound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Falkland Islands"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Falkland_Islands_pound"^^xsd:anyURI ;
+  qudt:expression "\\(FKP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Falkland_Islands_pound?oldid=489513616"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Falkland Islands Pound"@en ;
+.
+unit:FemtoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A FemtoCoulomb is \\(10^{-15} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Femto ;
+  qudt:symbol "fC" ;
+  qudt:ucumCode "fC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "FemtoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:FemtoGM-PER-KiloGM
+  a qudt:Unit ;
+  dcterms:description "One part per 10**18 by mass of the measurand in the matrix."@en ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "fg/kg" ;
+  qudt:ucumCode "fg.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtograms per kilogram"@en ;
+.
+unit:FemtoGM-PER-L
+  a qudt:Unit ;
+  dcterms:description "One 10**18 part of the SI standard unit of mass of the measurand per litre volume of matrix.."@en ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "fg/L" ;
+  qudt:ucumCode "fg.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtograms per litre"@en ;
+.
+unit:FemtoJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB124" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "0,000 000 000 000 001-fold of the derived SI unit joule" ;
+  qudt:prefix prefix:Femto ;
+  qudt:symbol "fJ" ;
+  qudt:ucumCode "fJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A70" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtojoule"@en ;
+.
+unit:FemtoL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:plainTextDescription "0.000000000000001-fold of the unit litre" ;
+  qudt:symbol "fL" ;
+  qudt:ucumCode "fL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtolitre"@en ;
+  rdfs:label "Femtolitre"@en-us ;
+.
+unit:FemtoM
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{femtometre}\\) is an SI unit of length equal to \\(10^{-15} meter\\). This distance can also be called \\(\\textit{fermi}\\) and was so named in honour of Enrico Fermi. It is often encountered in nuclear physics as a characteristic of this scale. The symbol for the fermi is also \\(fm\\)."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:exactMatch unit:FM ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB063" ;
+  qudt:isScalingOf unit:M ;
+  qudt:prefix prefix:Femto ;
+  qudt:symbol "fm" ;
+  qudt:ucumCode "fm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtometer"@en-us ;
+  rdfs:label "Femtometre"@en ;
+  owl:sameAs unit:FM ;
+.
+unit:FemtoMOL-PER-KiloGM
+  a qudt:Unit ;
+  dcterms:description "A 10**15 part quantity of substance of the measurand per kilogram mass of matrix."@en ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:symbol "fmol/kg" ;
+  qudt:ucumCode "fmol.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtomoles per kilogram"@en ;
+.
+unit:FemtoMOL-PER-L
+  a qudt:Unit ;
+  dcterms:description "A 10**18 part quantity of substance of the measurand per litre volume of matrix."@en ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:symbol "fmol/L" ;
+  qudt:ucumCode "fmol.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Femtomoles per litre"@en ;
+.
+unit:FijiDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Fiji"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Fijian_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(FJD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Fijian_dollar?oldid=494373740"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Fiji Dollar"@en ;
+.
+unit:Flight
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:symbol "flight" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Flight"@en ;
+.
+unit:Forint
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Hungary"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hungarian_forint"^^xsd:anyURI ;
+  qudt:expression "\\(HUF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Hungarian_forint?oldid=492818607"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Forint"@en ;
+.
+unit:FrancCongolais
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Democratic Republic of Congo"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Congolese_franc"^^xsd:anyURI ;
+  qudt:expression "\\(CDF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Congolese_franc?oldid=490314640"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Franc Congolais"@en ;
+.
+unit:G
+  a qudt:Unit ;
+  dcterms:description "\"Gravity\" is a unit for  'Linear Acceleration' expressed as \\(G\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:symbol "G" ;
+  qudt:ucumCode "[g]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gravity"@en ;
+.
+unit:GALILEO
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{Galileo}\\) is the unit of acceleration of free fall used extensively in the science of gravimetry. The Galileo is defined as \\(1 \\textit{centimeter per square second}\\) (\\(1 cm/s^2\\)). Unfortunately, the Galileo is often denoted with the symbol Gal, not to be confused with the Gallon that also uses the same symbol."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gal"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gal?oldid=482010741"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gal> ;
+  qudt:plainTextDescription "CGS unit of acceleration called gal with the definition: 1 Gal = 1 cm/s" ;
+  qudt:symbol "Gal" ;
+  qudt:ucumCode "Gal"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Galileo"@en ;
+.
+unit:GAL_IMP
+  a qudt:Unit ;
+  dcterms:description "\"Imperial Gallon\" is an Imperial unit for  'Liquid Volume' expressed as \\(galIMP\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00454609 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:symbol "gal{Imp}" ;
+  qudt:ucumCode "[gal_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GLI" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Gallon"@en ;
+.
+unit:GAL_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00454609 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA500" ;
+  qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units" ;
+  qudt:symbol "gal{UK}" ;
+  qudt:ucumCode "[gal_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GLI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (UK)"@en ;
+.
+unit:GAL_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000005261678 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA501" ;
+  qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit day" ;
+  qudt:symbol "gal{UK}/day" ;
+  qudt:ucumCode "[gal_br].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K26" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (UK) Per Day"@en ;
+.
+unit:GAL_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001262803 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA502" ;
+  qudt:plainTextDescription "unit gallon (UK dry or Liq.) according to the Imperial system of units divided by the SI unit hour" ;
+  qudt:symbol "gal{UK}/hr" ;
+  qudt:ucumCode "[gal_br].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (UK) Per Hour"@en ;
+.
+unit:GAL_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00007576817 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA503" ;
+  qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit minute" ;
+  qudt:symbol "gal{UK}/min" ;
+  qudt:ucumCode "[gal_br].m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G3" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (UK) Per Minute"@en ;
+.
+unit:GAL_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00454609 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA504" ;
+  qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "gal{UK}/s" ;
+  qudt:ucumCode "[gal_br].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (UK) Per Second"@en ;
+.
+unit:GAL_US
+  a qudt:Unit ;
+  dcterms:description "\"US Gallon\" is a unit for  'Liquid Volume' expressed as \\(galUS\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.003785412 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:symbol "gal{US}" ;
+  qudt:ucumCode "[gal_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GLL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Gallon"@en ;
+  skos:altLabel "Queen Anne's wine gallon" ;
+.
+unit:GAL_US-PER-DAY
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"US Gallon per Day\" is a unit for  'Volume Per Unit Time' expressed as \\(gal/d\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000438126389 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(gal/d\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:symbol "gal/day" ;
+  qudt:ucumCode "[gal_us].d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[gal_us]/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GB" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Gallon per Day"@en ;
+.
+unit:GAL_US-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001051503 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA507" ;
+  qudt:plainTextDescription "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI unit hour" ;
+  qudt:symbol "gal{US}/hr" ;
+  qudt:ucumCode "[gal_us].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (US) Per Hour"@en ;
+.
+unit:GAL_US-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"US Gallon per Minute\" is a C.G.S System unit for  'Volume Per Unit Time' expressed as \\(gal/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000630902 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(gal/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:symbol "gal/min" ;
+  qudt:ucumCode "[gal_us].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[gal_us]/min"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Gallon per Minute"@en ;
+.
+unit:GAL_US-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.003785412 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA509" ;
+  qudt:plainTextDescription "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "gal{US}/s" ;
+  qudt:ucumCode "[gal_us].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gallon (US Liquid) Per Second"@en ;
+.
+unit:GAL_US_DRY
+  a qudt:Unit ;
+  dcterms:description "\"Dry Gallon US\" is a unit for  'Dry Volume' expressed as \\(dry_gal\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00440488377 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:symbol "gal{US Dry}" ;
+  qudt:ucumCode "[gal_wi]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GLD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Dry Gallon US"@en ;
+  skos:altLabel "Winchester gallon" ;
+  skos:altLabel "corn gallon" ;
+.
+unit:GAUGE_FR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0003333333 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB377" ;
+  qudt:plainTextDescription "unit for the diameter of thin tubes in the medical technology (e.g. catheter) and telecommunications engineering (e.g. fiberglasses)." ;
+  qudt:symbol "French gauge" ;
+  qudt:ucumCode "[Ch]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H79" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "French Gauge"@en ;
+.
+unit:GAUSS
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:exactMatch unit:Gs ;
+  qudt:exactMatch unit:T_Ab ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB135" ;
+  qudt:plainTextDescription "CGS unit of the magnetic flux density B" ;
+  qudt:symbol "Gs" ;
+  qudt:ucumCode "G"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gauss"@en ;
+  owl:sameAs unit:Gs ;
+  owl:sameAs unit:T_Ab ;
+.
+unit:GI
+  a qudt:Unit ;
+  dcterms:description "The fundamental unit of magnetomotive force (\\(mmf\\)) in electromagnetic units is called a Gilbert. It is the \\(mmf\\) which will produce a magnetic field strength of one Gauss (Maxwell per Square Centimeter) in a path one centimeter long."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.795774715 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gilbert"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagnetomotiveForce ;
+  qudt:iec61360Code "0112/2///62720#UAB211" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gilbert?oldid=492755037"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert> ;
+  qudt:symbol "Gb" ;
+  qudt:ucumCode "Gb"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N97" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gilbert"@en ;
+.
+unit:GI_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001420653 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA511" ;
+  qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units (1/32 Imperial Gallon)" ;
+  qudt:symbol "gill{UK}" ;
+  qudt:ucumCode "[gil_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GII" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (UK)"@en ;
+.
+unit:GI_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001644274 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA512" ;
+  qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time day" ;
+  qudt:symbol "gill{UK}/day" ;
+  qudt:ucumCode "[gil_br].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (UK) Per Day"@en ;
+.
+unit:GI_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000003946258 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA513" ;
+  qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time hour" ;
+  qudt:symbol "gill{UK}/hr" ;
+  qudt:ucumCode "[gil_br].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (UK) Per Hour"@en ;
+.
+unit:GI_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000002367755 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA514" ;
+  qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time minute" ;
+  qudt:symbol "gill{UK}/min" ;
+  qudt:ucumCode "[gil_br].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (UK) Per Minute"@en ;
+.
+unit:GI_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001420653 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA515" ;
+  qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "gill{UK}/s" ;
+  qudt:ucumCode "[gil_br].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (UK) Per Second"@en ;
+.
+unit:GI_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000118294125 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA516" ;
+  qudt:plainTextDescription "unit of the volume according the Anglo-American system of units (1/32 US Gallon)" ;
+  qudt:symbol "gill{US}" ;
+  qudt:ucumCode "[gil_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GIA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (US)"@en ;
+.
+unit:GI_US-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001369145 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA517" ;
+  qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time day" ;
+  qudt:symbol "gill{US}/day" ;
+  qudt:ucumCode "[gil_us].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (US) Per Day"@en ;
+.
+unit:GI_US-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000003285947 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA518" ;
+  qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time hour" ;
+  qudt:symbol "gill{US}/hr" ;
+  qudt:ucumCode "[gil_us].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K37" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (US) Per Hour"@en ;
+.
+unit:GI_US-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001971568 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA519" ;
+  qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time minute" ;
+  qudt:symbol "gill{US}/min" ;
+  qudt:ucumCode "[gil_us].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (US) Per Minute"@en ;
+.
+unit:GI_US-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001182941 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA520" ;
+  qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "gill{US}/s" ;
+  qudt:ucumCode "[gil_us].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gill (US) Per Second"@en ;
+.
+unit:GM
+  a qudt:Unit ;
+  dcterms:description "A unit of mass in the metric system. The name comes from the Greek gramma, a small weight identified in later Roman and Byzantine times with the Latin scripulum or scruple (the English scruple is equal to about 1.3 grams). The gram was originally defined to be the mass of one cubic centimeter of pure water, but to provide precise standards it was necessary to construct physical objects of specified mass. One gram is now defined to be 1/1000 of the mass of the standard kilogram, a platinum-iridium bar carefully guarded by the International Bureau of Weights and Measures in Paris for more than a century. (The kilogram, rather than the gram, is considered the base unit of mass in the SI.) The gram is a small mass, equal to about 15.432 grains or 0.035 273 966 ounce. "^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gram"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA465" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gram?oldid=493995797"^^xsd:anyURI ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gram> ;
+  qudt:symbol "g" ;
+  qudt:ucumCode "g"^^qudt:UCUMcs ;
+  qudt:udunitsCode "g" ;
+  qudt:uneceCommonCode "GRM" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram"@en ;
+.
+unit:GM-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthMass ;
+  qudt:iec61360Code "0112/2///62720#UAB381" ;
+  qudt:plainTextDescription "unit of the imbalance as product of the 0.001-fold of the SI base unit kilogram and the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "g/mm" ;
+  qudt:ucumCode "g.mm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H84" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Millimeter"@en-us ;
+  rdfs:label "Gram Millimetre"@en ;
+.
+unit:GM-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB103" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre and exponent 2" ;
+  qudt:symbol "g/cm²" ;
+  qudt:ucumCode "g.cm-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "g/cm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "25" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Square Centimeter"@en-us ;
+  rdfs:label "Gram Per Square Centimetre"@en ;
+.
+unit:GM-PER-CentiM2-YR
+  a qudt:Unit ;
+  dcterms:description "A rate of change of 0.001 of the SI unit of mass over 0.00001 of the SI unit of area in a period of an average calendar year (365.25 days)"@en ;
+  qudt:conversionMultiplier 0.000000316880878140289 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:symbol "g/(cm²⋅yr)" ;
+  qudt:ucumCode "g.cm-2.a-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Grams per square centimetre per year"@en ;
+.
+unit:GM-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA469" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.000 001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "g/cm³" ;
+  qudt:ucumCode "g.cm-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "g/cm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Cubic Centimeter"@en-us ;
+  rdfs:label "Gram Per Cubic Centimetre"@en ;
+.
+unit:GM-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA472" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit day" ;
+  qudt:symbol "g/day" ;
+  qudt:ucumCode "g.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F26" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Day"@en ;
+.
+unit:GM-PER-DEG_C
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Gram Degree Celsius} is a C.G.S System unit for 'Mass Temperature' expressed as \\(g \\cdot degC\\)."^^qudt:LatexString ;
+  qudt:expression "\\(g-degC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassTemperature ;
+  qudt:symbol "g/°C" ;
+  qudt:ucumCode "d.Cel-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Degree Celsius"@en ;
+.
+unit:GM-PER-DeciM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA475" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "g/dm³" ;
+  qudt:ucumCode "g.dm-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Cubic Decimeter"@en-us ;
+  rdfs:label "Gram Per Cubic Decimetre"@en ;
+.
+unit:GM-PER-GM
+  a qudt:Unit ;
+  dcterms:description "mass ratio consisting of the 0.001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "g/g" ;
+  qudt:ucumCode "g.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "g/g"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Gram"@en ;
+.
+unit:GM-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA478" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit hour" ;
+  qudt:symbol "g/hr" ;
+  qudt:ucumCode "g.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Hour"@en ;
+.
+unit:GM-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA481" ;
+  qudt:plainTextDescription "0,001 fold of the SI base unit kilogram divided by the SI base unit kilogram" ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "g/kg" ;
+  qudt:ucumCode "g.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "g/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Kilogram"@en ;
+.
+unit:GM-PER-KiloM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 1000-fold of the SI base unit metre" ;
+  qudt:symbol "g/km" ;
+  qudt:ucumCode "g.km-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Kilometer"@en-us ;
+  rdfs:label "Gram Per Kilometre"@en ;
+.
+unit:GM-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA482" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit litre" ;
+  qudt:symbol "g/L" ;
+  qudt:ucumCode "g.L-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Liter"@en-us ;
+  rdfs:label "Gram Per Litre"@en ;
+.
+unit:GM-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA485" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the SI base unit metre" ;
+  qudt:symbol "g/m" ;
+  qudt:ucumCode "g.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GF" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Meter"@en-us ;
+  rdfs:label "Gram Per Metre"@en ;
+.
+unit:GM-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA486" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "g/m²" ;
+  qudt:ucumCode "g.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "g/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Square Meter"@en-us ;
+  rdfs:label "Gram Per Square Metre"@en ;
+.
+unit:GM-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000011574073 ;
+  qudt:expression "\\(g-m^{-2}-day^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a day." ;
+  qudt:symbol "g/(m²⋅day)" ;
+  qudt:ucumCode "g.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "grams per square meter per day"@en-us ;
+  rdfs:label "grams per square metre per day"@en ;
+.
+unit:GM-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA487" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "g/m³" ;
+  qudt:ucumCode "g.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "g/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Cubic Meter"@en-us ;
+  rdfs:label "Gram Per Cubic Metre"@en ;
+.
+unit:GM-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA490" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit minute" ;
+  qudt:symbol "g/min" ;
+  qudt:ucumCode "g.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Minute"@en ;
+.
+unit:GM-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarMass ;
+  qudt:iec61360Code "0112/2///62720#UAA496" ;
+  qudt:plainTextDescription "0,01-fold of the SI base unit kilogram divided by the SI base unit mol" ;
+  qudt:symbol "g/mol" ;
+  qudt:ucumCode "g.mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Mole"@en ;
+.
+unit:GM-PER-MilliL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA493" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.001-fold of the unit litre" ;
+  qudt:symbol "g/mL" ;
+  qudt:ucumCode "g.mL-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GJ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Millilitre"@en ;
+  rdfs:label "Gram Per Millilitre"@en-us ;
+.
+unit:GM-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB376" ;
+  qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.001-fold the SI base unit meter" ;
+  qudt:symbol "g/mm" ;
+  qudt:ucumCode "g.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Millimeter"@en-us ;
+  rdfs:label "Gram Per Millimetre"@en ;
+.
+unit:GM-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA497" ;
+  qudt:plainTextDescription "0,001fold of the SI base unit kilogram divided by the SI base unit second" ;
+  qudt:symbol "g/s" ;
+  qudt:ucumCode "g.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Per Second"@en ;
+.
+unit:GM_Carbon-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000011574073 ;
+  qudt:expression "\\(g C-m^{-2}-day^{-1}\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a day. Used to express productivity of an ecosystem." ;
+  qudt:symbol "g{carbon}/(m²⋅day)" ;
+  qudt:ucumCode "g.m-2.d-1{C}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "grams Carbon per square meter per day"@en-us ;
+  rdfs:label "grams Carbon per square metre per day"@en ;
+.
+unit:GM_F-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 98.0665 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA510" ;
+  qudt:plainTextDescription "not SI conform unit of the pressure" ;
+  qudt:symbol "gf/cm²" ;
+  qudt:ucumCode "gf.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gram Force Per Square Centimeter"@en-us ;
+  rdfs:label "Gram Force Per Square Centimetre"@en ;
+.
+unit:GM_Nitrogen-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000011574073 ;
+  qudt:expression "\\(g N-m^{-2}-day^{-1}\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:plainTextDescription "A metric unit of volume over time indicating the amount of Nitrogen generated across one square meter over a day. Used to express productivity of an ecosystem." ;
+  qudt:symbol "g{nitrogen}/(m²⋅day)" ;
+  qudt:ucumCode "g.m-2.d-1{N}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "grams Nitrogen per square meter per day"@en-us ;
+  rdfs:label "grams Nitrogen per square metre per day"@en ;
+.
+unit:GON
+  a qudt:Unit ;
+  dcterms:description "\"Gon\" is a C.G.S System unit for  'Plane Angle' expressed as \\(gon\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.015707963267949 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gon"^^xsd:anyURI ;
+  qudt:exactMatch unit:GRAD ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA522" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gon?oldid=424098171"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gon> ;
+  qudt:symbol "gon" ;
+  qudt:ucumCode "gon"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gon"@en ;
+  owl:sameAs unit:GRAD ;
+.
+unit:GR
+  a qudt:DimensionlessUnit ;
+  a qudt:Unit ;
+  dcterms:description "the tangent of an angle of inclination multiplied by 100"^^rdf:HTML ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Grade"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Grade?oldid=485504533"^^xsd:anyURI ;
+  qudt:symbol "gr" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Grade"@en ;
+.
+unit:GRAD
+  a qudt:Unit ;
+  dcterms:description "\"Grad\" is a unit for  'Plane Angle' expressed as \\(grad\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0157079633 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Grad"^^xsd:anyURI ;
+  qudt:exactMatch unit:GON ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA522" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Grad?oldid=490906645"^^xsd:anyURI ;
+  qudt:symbol "grad" ;
+  qudt:uneceCommonCode "A91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Grad"@en ;
+  owl:sameAs unit:GON ;
+.
+unit:GRAIN
+  a qudt:Unit ;
+  dcterms:description "A grain is a unit of measurement of mass that is nominally based upon the mass of a single seed of a cereal.  The grain is the only unit of mass measure common to the three traditional English mass and weight systems; the obsolete Tower grain was, by definition, exactly  /64 of a troy grain. Since 1958, the grain or troy grain measure has been defined in terms of units of mass in the International System of Units as precisely 64.79891 milligrams. Thus, \\(1 gram \\approx 15.4323584 grains\\).  There are precisely 7,000 grains per avoirdupois pound in the imperial and U.S. customary units, and 5,760 grains in the Troy pound."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00006479891 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cereal"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA523" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cereal?oldid=495222949"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/grain> ;
+  qudt:symbol "gr{UK}" ;
+  qudt:ucumCode "[gr]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GRN" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Grain"@en ;
+.
+unit:GRAIN-PER-GAL
+  a qudt:Unit ;
+  dcterms:description "\"Grain per Gallon\" is an Imperial unit for  'Density' expressed as \\(gr/gal\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.017118061 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(gr/gal\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "grain{UK}/gal" ;
+  qudt:ucumCode "[gr].[gal_br]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K41" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Grain per Gallon"@en ;
+.
+unit:GRAIN-PER-GAL_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01711806 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA524" ;
+  qudt:plainTextDescription "unit of the density according to the Anglo-American system of units" ;
+  qudt:symbol "grain{US}/gal" ;
+  qudt:ucumCode "[gr].[gal_us]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Grain Per Gallon (US)"@en ;
+.
+unit:GRAY
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of radiation dose. Radiation carries energy, and when it is absorbed by matter the matter receives this energy. The dose is the amount of energy deposited per unit of mass. One gray is defined to be the dose of one joule of energy absorbed per kilogram of matter, or 100 rad. The unit is named for the British physician L. Harold Gray (1905-1965), an authority on the use of radiation in the treatment of cancer."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Grey"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDose ;
+  qudt:hasQuantityKind quantitykind:Kerma ;
+  qudt:iec61360Code "0112/2///62720#UAA163" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Grey?oldid=494774160"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gray> ;
+  qudt:siUnitsExpression "J/kg" ;
+  qudt:symbol "Gy" ;
+  qudt:ucumCode "Gy"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Gy" ;
+  qudt:uneceCommonCode "A95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gray"@en ;
+.
+unit:GRAY-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Gray per Second\" is a unit for  'Absorbed Dose Rate' expressed as \\(Gy/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(Gy/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ;
+  qudt:hasQuantityKind quantitykind:KermaRate ;
+  qudt:iec61360Code "0112/2///62720#UAA164" ;
+  qudt:symbol "Gy/s" ;
+  qudt:ucumCode "Gy.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gray per Second"@en ;
+.
+unit:GT
+  a qudt:Unit ;
+  dcterms:description "The formula for calculating GT is given by \\({ GT=V\\times (0.2+0.02\\times \\log _{10}(V))}\\)" ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:informativeReference "http://www.imo.org/en/About/Conventions/ListOfConventions/Pages/International-Convention-on-Tonnage-Measurement-of-Ships.aspx"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Gross_tonnage"^^xsd:anyURI ;
+  qudt:latexDefinition "\\({ GT=V\\times (0.2+0.02\\times \\log _{10}(V))}\\) where V is measured in cubic meters."^^qudt:LatexString ;
+  qudt:plainTextDescription "Gross tonnage (GT, G.T. or gt) is a nonlinear measure of a ship's overall internal volume. Gross tonnage is different from gross register tonnage. Gross tonnage is used to determine things such as a ship's manning regulations, safety rules, registration fees, and port dues, whereas the older gross register tonnage is a measure of the volume of only certain enclosed spaces." ;
+  qudt:symbol "G.T." ;
+  qudt:ucumCode "t{gross}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gross Tonnage"@en ;
+  rdfs:seeAlso unit:RT ;
+.
+unit:Gamma
+  a qudt:Unit ;
+  dcterms:description "\"Gamma\" is a C.G.S System unit for  'Magnetic Field'."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gamma"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticField ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB213" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gamma?oldid=494680973"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gamma> ;
+  qudt:symbol "γ" ;
+  qudt:uneceCommonCode "P12" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gamma"@en ;
+.
+unit:GibiBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The gibibyte is a multiple of the unit byte for digital information storage. The prefix gibi means 1024^3"^^qudt:LatexString ;
+  qudt:conversionMultiplier 5954088943.6391441429912255610071 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gibibyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Gibi ;
+  qudt:symbol "GiB" ;
+  qudt:uneceCommonCode "E62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "GibiByte"@en ;
+.
+unit:GibraltarPound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Gibraltar"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gibraltar_pound"^^xsd:anyURI ;
+  qudt:expression "\\(GIP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gibraltar_pound?oldid=494842600"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gibraltar pound"@en ;
+.
+unit:GigaBIT-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A gigabit per second (Gbit/s or Gb/s) is a unit of data transfer rate equal to 1,000,000,000 bits per second."^^rdf:HTML ;
+  qudt:conversionMultiplier 693147180.55994530941723212145818 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DataRate ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Data-rate_units#Gigabit_per_second"^^xsd:anyURI ;
+  qudt:isScalingOf unit:MegaBIT-PER-SEC ;
+  qudt:symbol "Gbps" ;
+  qudt:ucumCode "Gbit.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B80" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigabit per Second"@en ;
+.
+unit:GigaBQ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAB047" ;
+  qudt:isScalingOf unit:BQ ;
+  qudt:plainTextDescription "1 000 000 000-fold of the derived SI unit becquerel" ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GBq" ;
+  qudt:ucumCode "GBq"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GBQ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigabecquerel"@en ;
+.
+unit:GigaBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The gigabyte is a multiple of the unit byte for digital information storage. The prefix giga means 10 in the International System of Units (SI), therefore 1 gigabyte is \\(1,000,000,000 \\; bytes\\). The unit symbol for the gigabyte is \\(GB\\) or \\(Gbyte\\), but not \\(Gb\\) (lower case b) which is typically used for the gigabit. Historically, the term has also been used in some fields of computer science and information technology to denote the \\(gibibyte\\), or \\(1073741824 \\; bytes\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 5545177444.47956 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gigabyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAB185" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gigabyte?oldid=493019145"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GB" ;
+  qudt:ucumCode "GBy"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "GigaByte"@en ;
+  skos:altLabel "gbyte" ;
+.
+unit:GigaBasePair
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:informativeReference "https://www.genome.gov/genetics-glossary/Gigabase"^^xsd:anyURI ;
+  qudt:plainTextDescription "A gigabase (abbreviated Gb, or Gbp for gigabase pairs.) is a unit of measurement used to help designate the length of DNA. One gigabase is equal to 1 billion bases. " ;
+  qudt:symbol "Gbp" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigabase Pair"@en ;
+  skos:altLabel "Gigabase" ;
+.
+unit:GigaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier "1000000000"^^xsd:decimal ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GC" ;
+  qudt:ucumCode "GC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "GigaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:GigaC-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:iec61360Code "0112/2///62720#UAA149" ;
+  qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "GC/m³" ;
+  qudt:ucumCode "GC.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A84" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigacoulomb Per Cubic Meter"@en-us ;
+  rdfs:label "Gigacoulomb Per Cubic Metre"@en ;
+.
+unit:GigaEV
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Giga Electron Volt\" is a unit for  'Energy And Work' expressed as \\(GeV\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:symbol "GeV" ;
+  qudt:ucumCode "GeV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Giga Electron Volt"@en ;
+.
+unit:GigaHZ
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The hertz (symbol Hz) is the SI unit of frequency defined as the number of cycles per second of a periodic phenomenon. A GigaHertz is \\(10^{9} hz\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hertz"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA150" ;
+  qudt:isScalingOf unit:HZ ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GHz" ;
+  qudt:ucumCode "GHz"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigahertz"@en ;
+.
+unit:GigaHZ-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ConductionSpeed ;
+  qudt:hasQuantityKind quantitykind:GroupSpeedOfSound ;
+  qudt:hasQuantityKind quantitykind:PhaseSpeedOfSound ;
+  qudt:hasQuantityKind quantitykind:SoundParticleVelocity ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA151" ;
+  qudt:plainTextDescription "product of the 1 000 000 000-fold of the SI derived unit hertz and the SI base unit metre" ;
+  qudt:symbol "GHz⋅M" ;
+  qudt:ucumCode "GHz.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigahertz Meter"@en-us ;
+  rdfs:label "Gigahertz Metre"@en ;
+.
+unit:GigaJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA152" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit joule" ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GJ" ;
+  qudt:ucumCode "GJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GV" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigajoule"@en ;
+.
+unit:GigaOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA147" ;
+  qudt:isScalingOf unit:OHM ;
+  qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit ohm" ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GΩ" ;
+  qudt:ucumCode "GOhm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A87" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigaohm"@en ;
+.
+unit:GigaPA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA153" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit pascal" ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GPa" ;
+  qudt:ucumCode "GP"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigapascal"@en ;
+.
+unit:GigaW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA154" ;
+  qudt:isScalingOf unit:W ;
+  qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit watt" ;
+  qudt:prefix prefix:Giga ;
+  qudt:symbol "GW" ;
+  qudt:ucumCode "GW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A90" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigawatt"@en ;
+.
+unit:GigaW-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA155" ;
+  qudt:plainTextDescription "1 000 000 000-fold of the product of the SI derived unit watt and the unit hour" ;
+  qudt:symbol "GW⋅hr" ;
+  qudt:ucumCode "GW.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GWH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gigawatt Hour"@en ;
+.
+unit:Gold-OunceTroy
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(XAU\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:ucumCode "[oz_tr]{Au}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gold (one Troy ounce)"@en ;
+.
+unit:GoldFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bank for International Settlements"^^rdf:HTML ;
+  qudt:expression "\\(XFO\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gold franc (special settlement currency)"@en ;
+.
+unit:Gs
+  a qudt:Unit ;
+  dcterms:description "The gauss, abbreviated as \\(G\\), is the cgs unit of measurement of a magnetic field \\(B\\), which is also known as the \"magnetic flux density\" or the \"magnetic induction\".  One gauss is defined as one maxwell per square centimeter; it equals \\(10^{-4} tesla\\) (or \\(100 micro T\\)). The Gauss is identical to maxwells per square centimetre; technically defined in a three-dimensional system, it corresponds in the SI, with its extra base unit the ampere. The gauss is quite small by earthly standards, 1 Gs being only about four times Earth's flux density, but it is subdivided, with \\(1 gauss = 105 gamma\\). This unit of magnetic induction is also known as the \\(\\textit{abtesla}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Gauss_%28unit%29"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:exactMatch unit:GAUSS ;
+  qudt:exactMatch unit:T_Ab ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Gauss_(unit)"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.diracdelta.co.uk/science/source/g/a/gauss/source.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-526?rskey=HAbfz2"^^xsd:anyURI ;
+  qudt:symbol "G" ;
+  qudt:ucumCode "G"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "76" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Gs"@en ;
+  owl:sameAs unit:GAUSS ;
+  owl:sameAs unit:T_Ab ;
+.
+unit:Guarani
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Paraguay"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Guaran%C3%AD"^^xsd:anyURI ;
+  qudt:expression "\\(PYG\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Guaraní?oldid=412592698"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Guarani"@en ;
+.
+unit:GuineaFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Guinea"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Guinean_franc"^^xsd:anyURI ;
+  qudt:expression "\\(GNF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Guinean_franc?oldid=489527042"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Guinea Franc"@en ;
+.
+unit:GuyanaDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Guyana"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Guyanese_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(GYD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Guyanese_dollar?oldid=495070062"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Guyana Dollar"@en ;
+.
+unit:H
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of electric inductance. A changing magnetic field induces an electric current in a loop of wire (or in a coil of many loops) located in the field. Although the induced voltage depends only on the rate at which the magnetic flux changes, measured in webers per second, the amount of the current depends also on the physical properties of the coil. A coil with an inductance of one henry requires a flux of one weber for each ampere of induced current. If, on the other hand, it is the current which changes, then the induced field will generate a potential difference within the coil: if the inductance is one henry a current change of one ampere per second generates a potential difference of one volt. The henry is a large unit; inductances in practical circuits are measured in millihenrys (mH) or microhenrys (u03bc H). The unit is named for the American physicist Joseph Henry (1797-1878), one of several scientists who discovered independently how magnetic fields can be used to generate alternating currents. \\(\\text{H} \\; \\equiv \\; \\text{henry}\\; \\equiv\\; \\frac{\\text{Wb}}{\\text{A}}\\; \\equiv\\; \\frac{\\text{weber}}{\\text{amp}}\\; \\equiv\\ \\frac{\\text{V}\\cdot\\text{s}}{\\text{A}}\\; \\equiv\\; \\frac{\\text{volt} \\cdot \\text{second}}{\\text{amp}}\\; \\equiv\\ \\Omega\\cdot\\text{s}\\; \\equiv\\; \\text{ohm.second}\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Henry"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:iec61360Code "0112/2///62720#UAA165" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Henry?oldid=491435978"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/henry> ;
+  qudt:siUnitsExpression "Wb/A" ;
+  qudt:symbol "H" ;
+  qudt:ucumCode "H"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Henry"@en ;
+.
+unit:H-PER-KiloOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA167" ;
+  qudt:plainTextDescription "SI derived unit henry divided by the 1 000-fold of the SI derived unit ohm" ;
+  qudt:symbol "H/kΩ" ;
+  qudt:ucumCode "H.kOhm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H03" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Henry Per Kiloohm"@en ;
+.
+unit:H-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The henry per meter (symbolized \\(H/m\\)) is the unit of magnetic permeability in the International System of Units ( SI ). Reduced to base units in SI, \\(1\\,H/m\\) is the equivalent of one kilogram meter per square second per square ampere."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(H/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ElectromagneticPermeability ;
+  qudt:hasQuantityKind quantitykind:Permeability ;
+  qudt:iec61360Code "0112/2///62720#UAA168" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Henry?oldid=491435978"^^xsd:anyURI ;
+  qudt:symbol "H/m" ;
+  qudt:ucumCode "H.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Henry per Meter"@en-us ;
+  rdfs:label "Henry per Metre"@en ;
+.
+unit:H-PER-OHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA166" ;
+  qudt:plainTextDescription "SI derived unit henry divided by the SI derived unit ohm" ;
+  qudt:symbol "H/Ω" ;
+  qudt:ucumCode "H.Ohm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H04" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Henry Per Ohm"@en ;
+.
+unit:HA
+  a qudt:Unit ;
+  dcterms:description "The customary metric unit of land area, equal to 100 ares. One hectare is a square hectometer, that is, the area of a square 100 meters on each side: exactly 10 000 square meters or approximately 107 639.1 square feet, 11 959.9 square yards, or 2.471 054 acres."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hectare"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA532" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Hectare?oldid=494256954"^^xsd:anyURI ;
+  qudt:symbol "ha" ;
+  qudt:ucumCode "har"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HAR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectare"@en ;
+.
+unit:HART
+  a qudt:Unit ;
+  dcterms:description "The \"Hartley\" is a unit of information."^^rdf:HTML ;
+  qudt:conversionMultiplier 2.3025850929940456840179914546844 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAB344" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/hartley> ;
+  qudt:symbol "Hart" ;
+  qudt:uneceCommonCode "Q15" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hartley"@en ;
+.
+unit:HART-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "The \"Hartley per Second\" is a unit of information rate."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Hart/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:InformationFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB347" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
+  qudt:symbol "Hart/s" ;
+  qudt:uneceCommonCode "Q18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hartley per Second"@en ;
+.
+unit:HP
+  a qudt:Unit ;
+  dcterms:description "550 foot-pound force per second"^^rdf:HTML ;
+  qudt:conversionMultiplier 745.6999 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Horsepower"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Horsepower?oldid=495510329"^^xsd:anyURI ;
+  qudt:symbol "HP" ;
+  qudt:ucumCode "[HP]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "hp" ;
+  qudt:uneceCommonCode "K43" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Horsepower"@en ;
+.
+unit:HP-PER-M
+  qudt:symbol "HP{metric}" ;
+.
+unit:HP-PER-V
+  qudt:symbol "HP{electric}" ;
+.
+unit:HP_Boiler
+  a qudt:Unit ;
+  dcterms:description "\"Boiler Horsepower\" is a unit for  'Power' expressed as \\(hp_boiler\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 9809.5 ;
+  qudt:expression "\\(boiler_hp\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:symbol "HP{boiler}" ;
+  qudt:uneceCommonCode "K42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Boiler Horsepower"@en ;
+.
+unit:HP_Brake
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9809.5 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA536" ;
+  qudt:plainTextDescription "unit of the power according to the Imperial system of units" ;
+  qudt:symbol "HP{brake}" ;
+  qudt:uneceCommonCode "K42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Horsepower (brake)"@en ;
+.
+unit:HP_Electric
+  a qudt:Unit ;
+  qudt:conversionMultiplier 746.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA537" ;
+  qudt:plainTextDescription "unit of the power according to the Anglo-American system of units" ;
+  qudt:symbol "HP{electric}" ;
+  qudt:uneceCommonCode "K43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Horsepower (electric)"@en ;
+.
+unit:HP_Metric
+  a qudt:Unit ;
+  qudt:conversionMultiplier 735.4988 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA534" ;
+  qudt:plainTextDescription "unit of the mechanical power according to the Anglo-American system of units" ;
+  qudt:symbol "HP{metric}" ;
+  qudt:uneceCommonCode "HJ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Horsepower (metric)"@en ;
+.
+unit:HR
+  a qudt:Unit ;
+  dcterms:description "The hour (common symbol: h or hr) is a unit of measurement of time. In modern usage, an hour comprises 60 minutes, or 3,600 seconds. It is approximately 1/24 of a mean solar day. An hour in the Universal Coordinated Time (UTC) time standard can include a negative or positive leap second, and may therefore have a duration of 3,599 or 3,601 seconds for adjustment purposes. Although it is not a standard defined by the International System of Units, the hour is a unit accepted for use with SI, represented by the symbol h."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hour"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA525" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Hour?oldid=495040268"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/hour> ;
+  qudt:symbol "hr" ;
+  qudt:ucumCode "h"^^qudt:UCUMcs ;
+  qudt:udunitsCode "h" ;
+  qudt:uneceCommonCode "HUR" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hour"@en ;
+.
+unit:HR-FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Hour Square Foot\" is an Imperial unit for  'Area Time' expressed as \\(hr-ft^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 334.450944 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(hr-ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTime ;
+  qudt:symbol "hr⋅ft²" ;
+  qudt:ucumCode "h.[ft_i]2"^^qudt:UCUMcs ;
+  qudt:ucumCode "h.[sft_i]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hour Square Foot"@en ;
+.
+unit:HR_Sidereal
+  a qudt:Unit ;
+  dcterms:description "Sidereal time is a time-keeping system astronomers use to keep track of the direction to point their telescopes to view a given star in the night sky. A mean sidereal day is about 23 h 56 m 4.1 s in length. However, due to variations in the rotation rate of the Earth, the rate of an ideal sidereal clock deviates from any simple multiple of a civil clock. In practice, the difference is kept track of by the difference UTC-UT1, which is measured by radio telescopes and kept on file and available to the public at the IERS and at the United States Naval Observatory. A Sidereal Hour is \\(1/24^{th}\\) of a Sidereal Day. A mean sidereal day is 23 hours, 56 minutes, 4.0916 seconds (23.9344699 hours or 0.99726958 mean solar days), the time it takes Earth to make one rotation relative to the vernal equinox. (Due to nutation, an actual sidereal day is not quite so constant.) The vernal equinox itself precesses slowly westward relative to the fixed stars, completing one revolution in about 26,000 years, so the misnamed sidereal day (\"sidereal\" is derived from the Latin sidus meaning \"star\") is 0.0084 seconds shorter than Earth's period of rotation relative to the fixed stars."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3590.17 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sidereal_time"^^xsd:anyURI ;
+  qudt:isScalingOf unit:DAY_Sidereal ;
+  qudt:symbol "hr{sidereal}" ;
+  qudt:ucumCode "h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sidereal Hour"@en ;
+.
+unit:HZ
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The hertz (symbol Hz) is the SI unit of frequency defined as the number of cycles per second of a periodic phenomenon. One of its most common uses is the description of the sine wave, particularly those used in radio and audio applications, such as the frequency of musical tones. The word \"hertz\" is named for Heinrich Rudolf Hertz, who was the first to conclusively prove the existence of electromagnetic waves."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hertz"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:exactMatch unit:PER-SEC ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA170" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/hertz> ;
+  qudt:symbol "Hz" ;
+  qudt:ucumCode "Hz"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Hz" ;
+  qudt:uneceCommonCode "HTZ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hertz"@en ;
+  owl:sameAs unit:PER-SEC ;
+.
+unit:HZ-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:iec61360Code "0112/2///62720#UAA171" ;
+  qudt:plainTextDescription "product of the SI derived unit hertz and the SI base unit metre" ;
+  qudt:symbol "Hz⋅M" ;
+  qudt:ucumCode "Hz.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hertz Meter"@en-us ;
+  rdfs:label "Hertz Metre"@en ;
+.
+unit:HZ-PER-K
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Hertz per Kelvin} is a unit for 'Inverse Time Temperature' expressed as \\(Hz K^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(Hz K^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:InverseTimeTemperature ;
+  qudt:symbol "Hz/K" ;
+  qudt:ucumCode "Hz.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hertz per Kelvin"@en ;
+.
+unit:HZ-PER-T
+  a qudt:Unit ;
+  dcterms:description "\"Hertz per Tesla\" is a unit for  'Electric Charge Per Mass' expressed as \\(Hz T^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(Hz T^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:symbol "Hz/T" ;
+  qudt:ucumCode "Hz.T-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hertz per Tesla"@en ;
+.
+unit:HZ-PER-V
+  a qudt:Unit ;
+  dcterms:description "In the Hertz per Volt standard the frequency of the note is directly related to the voltage. A pitch of a note goes up one octave when its frequency doubles, meaning that the voltage will have to double for every octave rise. Depending on the footage (octave) selected, nominally one volt gives 1000Hz, two volts 2000Hz and so on. In terms of notes, bottom C would be 0.25 volts, the next C up would be 0.5 volts, then 1V, 2V, 4V, 8V for the following octaves. This system was used mainly by Yamaha and Korg."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(Hz V^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:InverseMagneticFlux ;
+  qudt:symbol "Hz/V" ;
+  qudt:ucumCode "Hz.V-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hertz per Volt"@en ;
+.
+unit:H_Ab
+  a qudt:Unit ;
+  dcterms:description "Abhenry is the centimeter-gram-second electromagnetic unit of inductance, equal to one billionth of a henry."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Abhenry"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Abhenry?oldid=477198643"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry> ;
+  qudt:symbol "abH" ;
+  qudt:ucumCode "nH"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abhenry"@en ;
+.
+unit:H_Stat
+  a qudt:Unit ;
+  dcterms:description "\"Stathenry\" (statH) is a unit in the category of Electric inductance. It is also known as stathenries. This unit is commonly used in the cgs unit system. Stathenry (statH) has a dimension of \\(ML^2T^{-2}I^{-2}\\) where M is mass, L is length, T is time, and I is electric current. It can be converted to the corresponding standard SI unit H by multiplying its value by a factor of \\(8.987552 \\times 10^{11}\\) ."^^qudt:LatexString ;
+  qudt:conversionMultiplier 898760000000.0 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_inductance--stathenry.cfm"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry> ;
+  qudt:symbol "statH" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Stathenry"@en ;
+.
+unit:H_Stat-PER-CentiM
+  a qudt:Unit ;
+  dcterms:description "The Stathenry per Centimeter is a unit of measure for the absolute permeability of free space."^^rdf:HTML ;
+  qudt:conversionMultiplier 89876000000000.0 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:expression "\\(stath-per-cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ElectromagneticPermeability ;
+  qudt:hasQuantityKind quantitykind:Permeability ;
+  qudt:symbol "statH/cm" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Stathenry per Centimeter"@en-us ;
+  rdfs:label "Stathenry per Centimetre"@en ;
+.
+unit:HaitiGourde
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Haiti"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Haitian_gourde"^^xsd:anyURI ;
+  qudt:expression "\\(HTG\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Haitian_gourde?oldid=486090975"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Haiti Gourde"@en ;
+.
+unit:HeartBeat
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Heart Beat"@en ;
+.
+unit:HectoBAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB087" ;
+  qudt:plainTextDescription "100-fold of the unit bar" ;
+  qudt:symbol "hbar" ;
+  qudt:ucumCode "hbar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HBA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectobar"@en ;
+.
+unit:HectoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"HectoCoulomb\" is a unit for  'Electric Charge' expressed as \\(hC\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Hecto ;
+  qudt:symbol "hC" ;
+  qudt:ucumCode "hC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "HectoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:HectoGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB079" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "0.1-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Hecto ;
+  qudt:symbol "hg" ;
+  qudt:ucumCode "hg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HGM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectogram"@en ;
+.
+unit:HectoL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA533" ;
+  qudt:plainTextDescription "100-fold of the unit litre" ;
+  qudt:symbol "hL" ;
+  qudt:ucumCode "hL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HLT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectolitre"@en ;
+  rdfs:label "Hectolitre"@en-us ;
+.
+unit:HectoM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB062" ;
+  qudt:isScalingOf unit:M ;
+  qudt:plainTextDescription "100-fold of the SI base unit metre" ;
+  qudt:prefix prefix:Hecto ;
+  qudt:symbol "hm" ;
+  qudt:ucumCode "hm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HMT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectometer"@en-us ;
+  rdfs:label "Hectometre"@en ;
+.
+unit:HectoPA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Hectopascal is a unit of pressure. 1 Pa is approximately the pressure exerted by a 10-g mass resting on a 1-cm2 area. 1013 hPa = 1 atm. There are 100 pascals in 1 hectopascal."^^rdf:HTML ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:exactMatch unit:MilliBAR ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA527" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:symbol "hPa" ;
+  qudt:ucumCode "hPa"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A97" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:comment "Hectopascal is commonly used in meteorology to report values for atmospheric pressure. It is equivalent to millibar." ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectopascal"@en ;
+  owl:sameAs unit:MilliBAR ;
+.
+unit:HectoPA-L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA530" ;
+  qudt:plainTextDescription "product out of the 100-fold of the SI derived unit pascal and the unit litre divided by the SI base unit second" ;
+  qudt:symbol "hPa⋅L/s" ;
+  qudt:ucumCode "hPa.L.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectopascal Liter Per Second"@en-us ;
+  rdfs:label "Hectopascal Litre Per Second"@en ;
+.
+unit:HectoPA-M3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA531" ;
+  qudt:plainTextDescription "product out of the 100-fold of the SI unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "hPa⋅m³/s" ;
+  qudt:ucumCode "hPa.m3.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectopascal Cubic Meter Per Second"@en-us ;
+  rdfs:label "Hectopascal Cubic Metre Per Second"@en ;
+.
+unit:HectoPA-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA529" ;
+  qudt:plainTextDescription "100-fold of the SI derived unit pascal divided by the unit bar" ;
+  qudt:symbol "hPa/bar" ;
+  qudt:ucumCode "hPa.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectopascal Per Bar"@en ;
+.
+unit:HectoPA-PER-HR
+  a qudt:Unit ;
+  dcterms:description "A change in pressure of one hundred Newtons per square metre (100 Pascals) per hour. Equivalent to a change of one millibar per hour."@en ;
+  qudt:conversionMultiplier 0.0277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:symbol "hPa/hr" ;
+  qudt:ucumCode "hPa.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectopascals per hour"@en ;
+.
+unit:HectoPA-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:PressureCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA528" ;
+  qudt:plainTextDescription "100-fold of the SI derived unit pascal divided by the SI base unit kelvin" ;
+  qudt:symbol "hPa/K" ;
+  qudt:ucumCode "hPa.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F82" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hectopascal Per Kelvin"@en ;
+.
+unit:HongKongDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Hong Kong Special Administrative Region"^^rdf:HTML ;
+  qudt:currencyExponent 1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Hong_Kong_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(HKD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Hong_Kong_dollar?oldid=495133277"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hong Kong Dollar"@en ;
+.
+unit:Hryvnia
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Ukraine"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ukrainian_hryvnia"^^xsd:anyURI ;
+  qudt:expression "\\(UAH\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ukrainian_hryvnia?oldid=493064633"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hryvnia"@en ;
+.
+unit:Hundredweight_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 50.80235 ;
+  qudt:exactMatch unit:CWT_LONG ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA405" ;
+  qudt:plainTextDescription "out of use unit of the mass according to the Imperial system of units" ;
+  qudt:symbol "cwt{long}" ;
+  qudt:ucumCode "[lcwt_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CWI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hundredweight (UK)"@en ;
+  owl:sameAs unit:CWT_LONG ;
+.
+unit:Hundredweight_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 45.35924 ;
+  qudt:exactMatch unit:CWT_SHORT ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA406" ;
+  qudt:plainTextDescription "out of use unit of the mass according to the Imperial system of units" ;
+  qudt:symbol "cwt{short}" ;
+  qudt:ucumCode "[scwt_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "CWA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Hundredweight (US)"@en ;
+  owl:sameAs unit:CWT_SHORT ;
+.
+unit:IN
+  a qudt:Unit ;
+  dcterms:description "An inch is the name of a unit of length in a number of different systems, including Imperial units, and United States customary units. There are 36 inches in a yard and 12 inches in a foot. Corresponding units of area and volume are the square inch and the cubic inch."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0254 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Inch"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA539" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Inch?oldid=492522790"^^xsd:anyURI ;
+  qudt:symbol "in" ;
+  qudt:ucumCode "[in_i]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "in" ;
+  qudt:uneceCommonCode "INH" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inch"@en ;
+.
+unit:IN-PER-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.04572 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA540" ;
+  qudt:plainTextDescription "unit inch according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit" ;
+  qudt:symbol "in/°F" ;
+  qudt:ucumCode "[in_i].[degF]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inch Per Degree Fahrenheit"@en ;
+.
+unit:IN-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "The inch per second is a unit of speed or velocity. It expresses the distance in inches (in) traveled or displaced, divided by time in seconds (s, or sec). The equivalent SI unit is the metre per second. Abbreviations include in/s, in/sec, ips, and less frequently in s."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0254 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(in-per-sec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:PropellantBurnRate ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA542" ;
+  qudt:symbol "in/s" ;
+  qudt:ucumCode "[in_i].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[in_i]/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "IU" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inch per Second"@en ;
+.
+unit:IN-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Inch per Square second}\\) is an Imperial unit for \\(\\textit{Linear Acceleration}\\) expressed as \\(in/s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0254 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(in/s2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:iec61360Code "0112/2///62720#UAB044" ;
+  qudt:symbol "in/s²" ;
+  qudt:ucumCode "[in_i].s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[in_i]/s2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "IV" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inch per Square second"@en ;
+.
+unit:IN2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A square inch is a unit of area, equal to the area of a square with sides of one inch. The following symbols are used to denote square inches: square in, sq inches, sq inch, sq in inches/-2, inch/-2, in/-2, inches^2, \\(inch^2\\), \\(in^2\\), \\(inches^2\\), \\(inch^2\\), \\(in^2\\) or in some cases \\(\"^2\\). The square inch is a common unit of measurement in the United States and the United Kingdom."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00064516 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(in^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA547" ;
+  qudt:symbol "in²" ;
+  qudt:ucumCode "[in_i]2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[sin_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "INK" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Inch"@en ;
+.
+unit:IN2-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00064516 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA548" ;
+  qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2 divided by the SI base unit second" ;
+  qudt:symbol "in²/s" ;
+  qudt:ucumCode "[sin_i].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G08" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Inch Per Second"@en ;
+.
+unit:IN3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The cubic inch is a unit of measurement for volume in the Imperial units and United States customary units systems. It is the volume of a cube with each of its three sides being one inch long. The cubic inch and the cubic foot are still used as units of volume in the United States, although the common SI units of volume, the liter, milliliter, and cubic meter, are continually replacing them, especially in manufacturing and high technology. One cubic foot is equal to exactly 1728 cubic inches."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000016387064 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(in^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA549" ;
+  qudt:symbol "in³" ;
+  qudt:ucumCode "[cin_i]"^^qudt:UCUMcs ;
+  qudt:ucumCode "[in_i]3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "INQ" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Inch"@en ;
+.
+unit:IN3-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000004551961 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA550" ;
+  qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour" ;
+  qudt:symbol "in³/hr" ;
+  qudt:ucumCode "[cin_i].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Inch Per Hour"@en ;
+.
+unit:IN3-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Cubic Inch per Minute\" is an Imperial unit for  'Volume Per Unit Time' expressed as \\(in^{3}/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000027311773333333333 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(in^{3}/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:iec61360Code "0112/2///62720#UAA551" ;
+  qudt:symbol "in³/min" ;
+  qudt:ucumCode "[cin_i].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[cin_i]/min"^^qudt:UCUMcs ;
+  qudt:ucumCode "[in_i]3.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[in_i]3/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G57" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Inch per Minute"@en ;
+.
+unit:IN3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001638706 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA552" ;
+  qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "in³/s" ;
+  qudt:ucumCode "[cin_i].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Inch Per Second"@en ;
+.
+unit:IN4
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000004162314 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ;
+  qudt:iec61360Code "0112/2///62720#UAA545" ;
+  qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 4" ;
+  qudt:symbol "in⁴" ;
+  qudt:ucumCode "[in_i]4"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D69" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quartic Inch"@en ;
+.
+unit:IN_H2O
+  a qudt:Unit ;
+  dcterms:description "Inches of water, wc, inch water column (inch WC), inAq, Aq, or inH2O is a non-SI unit for pressure. The units are by convention and due to the historical measurement of certain pressure differentials. It is used for measuring small pressure differences across an orifice, or in a pipeline or shaft. Inches of water can be converted to a pressure unit using the formula for pressure head. It is defined as the pressure exerted by a column of water of 1 inch in height at defined conditions for example \\(39 ^\\circ F\\) at the standard acceleration of gravity; 1 inAq is approximately equal to 249 pascals at \\(0 ^\\circ C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 249.080024 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Inch_of_water"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA553" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Inch_of_water?oldid=466175519"^^xsd:anyURI ;
+  qudt:symbol "inH₂0" ;
+  qudt:ucumCode "[in_i'H2O]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F78" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inch of Water"@en ;
+.
+unit:IN_HG
+  a qudt:Unit ;
+  dcterms:description "Inches of mercury, (inHg) is a unit of measurement for pressure. It is still widely used for barometric pressure in weather reports, refrigeration and aviation in the United States, but is seldom used elsewhere. It is defined as the pressure exerted by a column of mercury of 1 inch in height at \\(32 ^\\circ F\\) at the standard acceleration of gravity. 1 inHg = 3,386.389 pascals at \\(0 ^\\circ C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3386.389 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Inch_of_mercury"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA554" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Inch_of_mercury?oldid=486634645"^^xsd:anyURI ;
+  qudt:symbol "inHg" ;
+  qudt:ucumCode "[in_i'Hg]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "inHg" ;
+  qudt:udunitsCode "in_Hg" ;
+  qudt:uneceCommonCode "F79" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inch of Mercury"@en ;
+.
+unit:IU
+  a qudt:Unit ;
+  dcterms:description "<p><strong>International Unit</strong> is a unit for \\textit{'Amount Of Substance'} expressed as \\(IU\\)</p>."^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/International_unit"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstance ;
+  qudt:iec61360Code "0112/2///62720#UAB603" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/International_unit?oldid=488801913"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/InternationalUnit> ;
+  qudt:symbol "IU" ;
+  qudt:ucumCode "[IU]"^^qudt:UCUMcs ;
+  qudt:ucumCode "[iU]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "International Unit"@en ;
+.
+unit:IU-PER-L
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"International Unit per Liter\" is a unit for  'Serum Or Plasma Level' expressed as \\(IU/L\\)."^^qudt:LatexString ;
+  qudt:expression "\\(IU/L\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SerumOrPlasmaLevel ;
+  qudt:symbol "IU/L" ;
+  qudt:ucumCode "[IU].L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[IU]/L"^^qudt:UCUMcs ;
+  qudt:ucumCode "[iU].L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[iU]/L"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "International Unit per Liter"@en-us ;
+  rdfs:label "International Unit per Litre"@en ;
+.
+unit:IU-PER-MilliGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier "0.000001"^^xsd:double ;
+  qudt:conversionOffset "0"^^xsd:double ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:plainTextDescription "International Units per milligramme." ;
+  qudt:symbol "IU/mg" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "International Unit per milligram"@en ;
+.
+unit:IcelandKrona
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Iceland"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Icelandic_kr%C3%B3na"^^xsd:anyURI ;
+  qudt:expression "\\(ISK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Icelandic_króna?oldid=495457496"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Iceland Krona"@en ;
+.
+unit:IndianRupee
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bhutan, India"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Indian_rupee"^^xsd:anyURI ;
+  qudt:expression "\\(INR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Indian_rupee?oldid=495120167"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Indian Rupee"@en ;
+.
+unit:IranianRial
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Iran"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Iranian_rial"^^xsd:anyURI ;
+  qudt:expression "\\(IRR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Iranian_rial?oldid=495299431"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Iranian Rial"@en ;
+.
+unit:IraqiDinar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Iraq"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Iraqi_dinar"^^xsd:anyURI ;
+  qudt:expression "\\(IQD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Iraqi_dinar?oldid=494793908"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Iraqi Dinar"@en ;
+.
+unit:J
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of work or energy, defined to be the work done by a force of one newton acting to move an object through a distance of one meter in the direction in which the force is applied. Equivalently, since kinetic energy is one half the mass times the square of the velocity, one joule is the kinetic energy of a mass of two kilograms moving at a velocity of \\(1 m/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Joule"^^xsd:anyURI ;
+  qudt:exactMatch unit:N-M ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ExchangeIntegral ;
+  qudt:hasQuantityKind quantitykind:HamiltonFunction ;
+  qudt:hasQuantityKind quantitykind:LagrangeFunction ;
+  qudt:hasQuantityKind quantitykind:LevelWidth ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA172" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Joule?oldid=494340406"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(\\text{J}\\ \\equiv\\ \\text{joule}\\ \\equiv\\ \\text{CV}\\ \\equiv\\ \\text{coulomb.volt}\\ \\equiv\\ \\frac{\\text{eV}}{1.602\\ 10^{-19}}\\ \\equiv\\ \\frac{\\text{electron.volt}}{1.602\\ 10^{-19}}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/joule> ;
+  qudt:plainTextDescription "The SI unit of work or energy, defined to be the work done by a force of one newton acting to move an object through a distance of one meter in the direction in which the force is applied. Equivalently, since kinetic energy is one half the mass times the square of the velocity, one joule is the kinetic energy of a mass of two kilograms moving at a velocity of 1 m/s. This is the same as 107 ergs in the CGS system, or approximately 0.737 562 foot-pound in the traditional English system. In other energy units, one joule equals about 9.478 170 x 10-4 Btu, 0.238 846 (small) calories, or 2.777 778 x 10-4 watt hour. The joule is named for the British physicist James Prescott Joule (1818-1889), who demonstrated the equivalence of mechanical and thermal energy in a famous experiment in 1843. " ;
+  qudt:symbol "J" ;
+  qudt:ucumCode "J"^^qudt:UCUMcs ;
+  qudt:udunitsCode "J" ;
+  qudt:uneceCommonCode "JOU" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule"@en ;
+  owl:sameAs unit:N-M ;
+.
+unit:J-M-PER-MOL
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Joule Meter per Mole} is a unit for 'Length Molar Energy' expressed as \\(J \\cdot m \\cdot mol^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J m mol^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:LengthMolarEnergy ;
+  qudt:symbol "J⋅m/mol" ;
+  qudt:ucumCode "J.m.mol-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Meter per Mole"@en-us ;
+  rdfs:label "Joule Metre per Mole"@en ;
+.
+unit:J-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TotalAtomicStoppingPower ;
+  qudt:iec61360Code "0112/2///62720#UAA181" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "J⋅m²" ;
+  qudt:ucumCode "J.m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D73" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Square Meter"@en-us ;
+  rdfs:label "Joule Square Metre"@en ;
+.
+unit:J-M2-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(j-m2/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TotalMassStoppingPower ;
+  qudt:iec61360Code "0112/2///62720#UAB487" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "j⋅m²/kg" ;
+  qudt:ucumCode "J.m2.kg-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Square Meter per Kilogram"@en-us ;
+  rdfs:label "Joule Square Metre per Kilogram"@en ;
+.
+unit:J-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB188" ;
+  qudt:plainTextDescription "derived SI unit joule divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "J/cm²" ;
+  qudt:ucumCode "J.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Per Square Centimeter"@en-us ;
+  rdfs:label "Joule Per Square Centimetre"@en ;
+.
+unit:J-PER-CentiM2-DAY
+  a qudt:Unit ;
+  dcterms:description "Radiant energy per 10^-4 SI unit area over a period of one day."@en ;
+  qudt:conversionMultiplier 0.115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:hasQuantityKind quantitykind:Radiosity ;
+  qudt:symbol "J/(cm²⋅day)" ;
+  qudt:ucumCode "J.cm-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joules per square centimetre per day"@en ;
+.
+unit:J-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA174" ;
+  qudt:plainTextDescription "SI derived unit joule divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:symbol "J/g" ;
+  qudt:ucumCode "J.g-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Per Gram"@en ;
+.
+unit:J-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:plainTextDescription "SI derived unit joule divided by the 3600 times the SI base unit second" ;
+  qudt:symbol "J/hr" ;
+  qudt:ucumCode "J.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Per Hour"@en ;
+.
+unit:J-PER-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Joule Per Kelvin (J/K) is a unit in the category of Entropy. It is also known as joules per kelvin, joule/kelvin. This unit is commonly used in the SI unit system. Joule Per Kelvin (J/K) has a dimension of \\(ML^{2}T^{-2}Q^{-1}\\( where \\(M\\) is mass, L is length, T is time, and Q is temperature. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J/K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Entropy ;
+  qudt:hasQuantityKind quantitykind:HeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA173" ;
+  qudt:symbol "J/K" ;
+  qudt:ucumCode "J.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "JE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Kelvin"@en ;
+.
+unit:J-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Joule Per Kilogram} (\\(J/kg\\)) is a unit in the category of Thermal heat capacity. It is also known as \\textit{joule/kilogram}, \\textit{joules per kilogram}. This unit is commonly used in the SI unit system. The unit has a dimension of \\(L2T^{-2}\\) where \\(L\\) is length, and \\(T\\) is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:hasQuantityKind quantitykind:SpecificEnthalpy ;
+  qudt:hasQuantityKind quantitykind:SpecificGibbsEnergy ;
+  qudt:hasQuantityKind quantitykind:SpecificHelmholtzEnergy ;
+  qudt:hasQuantityKind quantitykind:SpecificInternalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA175" ;
+  qudt:symbol "J/kg" ;
+  qudt:ucumCode "J.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "J/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J2" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Kilogram"@en ;
+.
+unit:J-PER-KiloGM-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Specific heat capacity - The heat required to raise unit mass of a substance by unit temperature interval under specified conditions, such as constant pressure: usually measured in joules per kelvin per kilogram. Symbol \\(c_p\\) (for constant pressure) Also called specific heat."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J-per-kgK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEntropy ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ;
+  qudt:iec61360Code "0112/2///62720#UAA176" ;
+  qudt:latexSymbol "\\(J/(kg \\cdot K)\\)"^^qudt:LatexString ;
+  qudt:symbol "J/(kg⋅K)" ;
+  qudt:ucumCode "J.kg-1.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Kilogram Kelvin"@en ;
+  rdfs:label "Joules per kilogram per Kelvin"@en ;
+.
+unit:J-PER-KiloGM-K-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(j-per-kg-k-m3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatVolume ;
+  qudt:symbol "J/(kg⋅K⋅m³)" ;
+  qudt:ucumCode "J.kg-1.K.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Kilogram Kelvin Cubic Meter"@en-us ;
+  rdfs:label "Joule per Kilogram Kelvin Cubic Metre"@en ;
+.
+unit:J-PER-KiloGM-K-PA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(j-per-kg-k-pa\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatPressure ;
+  qudt:symbol "J/(kg⋅K⋅Pa)" ;
+  qudt:ucumCode "J.kg-1.K-1.Pa-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Kilogram Kelvin per Pascal"@en ;
+.
+unit:J-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
+  qudt:expression "\\(j/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:LinearEnergyTransfer ;
+  qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ;
+  qudt:iec61360Code "0112/2///62720#UAA178" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "J/m" ;
+  qudt:ucumCode "J.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "J/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Per Meter"@en-us ;
+  rdfs:label "Joule Per Metre"@en ;
+.
+unit:J-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Joule Per Square Meter (\\(J/m^2\\)) is a unit in the category of Energy density. It is also known as joules per square meter, joule per square metre, joule/square meter, joule/square metre. This unit is commonly used in the SI unit system."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J/m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyFluence ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:hasQuantityKind quantitykind:RadiantFluence ;
+  qudt:iec61360Code "0112/2///62720#UAA179" ;
+  qudt:symbol "J/m²" ;
+  qudt:ucumCode "J.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "J/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Square Meter"@en-us ;
+  rdfs:label "Joule per Square Metre"@en ;
+.
+unit:J-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Joule Per Cubic Meter}\\) (\\(J/m^{3}\\)) is a unit in the category of Energy density. It is also known as joules per cubic meter, joule per cubic metre, joules per cubic metre, joule/cubic meter, joule/cubic metre. This unit is commonly used in the SI unit system.  It has a dimension of \\(ML^{-1}T^{-2}\\) where \\(M\\) is mass, \\(L\\) is length, and \\(T\\) is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(j-per-m3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ElectromagneticEnergyDensity ;
+  qudt:hasQuantityKind quantitykind:EnergyDensity ;
+  qudt:hasQuantityKind quantitykind:RadiantEnergyDensity ;
+  qudt:hasQuantityKind quantitykind:VolumicElectromagneticEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA180" ;
+  qudt:symbol "J/m³" ;
+  qudt:ucumCode "J.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "J/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B8" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Cubic Meter"@en-us ;
+  rdfs:label "Joule per Cubic Metre"@en ;
+.
+unit:J-PER-M3-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Joule per Cubic Meter Kelvin} is a unit for 'Volumetric Heat Capacity' expressed as \\(J/(m^{3} K)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J/(m^{3} K)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ;
+  qudt:symbol "J/(m³⋅K)" ;
+  qudt:ucumCode "J.m-3.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Cubic Meter Kelvin"@en-us ;
+  rdfs:label "Joule per Cubic Metre Kelvin"@en ;
+.
+unit:J-PER-M4
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Joule Per Quartic Meter} (\\(J/m^4\\)) is a unit for the spectral concentration of radiant energy density (in terms of wavelength), or the spectral radiant energy density (in terms of wave length). This unit is commonly used in the SI unit system."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(J/m^4\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA177" ;
+  qudt:symbol "J/m⁴" ;
+  qudt:ucumCode "J.m-4"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Quartic Meter"@en-us ;
+  rdfs:label "Joule per Quartic Metre"@en ;
+.
+unit:J-PER-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The joule per mole (symbol: \\(J\\cdot mol^{-1}\\)) is an SI derived unit of energy per amount of material. Energy is measured in joules, and the amount of material is measured in moles. Physical quantities measured in \\(J\\cdot mol^{-1}\\)) usually describe quantities of energy transferred during phase transformations or chemical reactions. Division by the number of moles facilitates comparison between processes involving different quantities of material and between similar processes involving different types of materials. The meaning of such a quantity is always context-dependent and, particularly for chemical reactions, is dependent on the (possibly arbitrary) definition of a 'mole' for a particular process."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J/mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ChemicalAffinity ;
+  qudt:hasQuantityKind quantitykind:ElectricPolarizability ;
+  qudt:hasQuantityKind quantitykind:MolarEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA183" ;
+  qudt:symbol "J/mol" ;
+  qudt:ucumCode "J.mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B15" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Mole"@en ;
+.
+unit:J-PER-MOL-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Energy needed to heat one mole of substance by 1 Kelvin, under standard conditions (not standard temperature and pressure STP). The standard molar entropy is usually given the symbol S, and has units of joules per mole kelvin ( \\( J\\cdot mol^{-1} K^{-1}\\)). Unlike standard enthalpies of formation, the value of S is an absolute. That is, an element in its standard state has a nonzero value of S at room temperature."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J/(mol-K)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MolarEntropy ;
+  qudt:hasQuantityKind quantitykind:MolarHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA184" ;
+  qudt:symbol "J/(mol⋅K)" ;
+  qudt:ucumCode "J.mol-1.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Mole Kelvin"@en ;
+.
+unit:J-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:plainTextDescription "SI derived unit joule divided by the SI base unit second" ;
+  qudt:symbol "J/s" ;
+  qudt:ucumCode "J.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Per Second"@en ;
+.
+unit:J-PER-T
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The magnetic moment of a magnet is a quantity that determines the force that the magnet can exert on electric currents and the torque that a magnetic field will exert on it. A loop of electric current, a bar magnet, an electron, a molecule, and a planet all have magnetic moments. The unit for magnetic moment is not a base unit in the International System of Units (SI) and it can be represented in more than one way. For example, in the current loop definition, the area is measured in square meters and I is measured in amperes, so the magnetic moment is measured in ampere-square meters (A m2). In the equation for torque on a moment, the torque is measured in joules and the magnetic field in tesla, so the moment is measured in Joules per Tesla (J u00b7T-1). These two representations are equivalent: 1 A u00b7m2 = 1 J u00b7T-1. "^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(j-per-t\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
+  qudt:iec61360Code "0112/2///62720#UAB336" ;
+  qudt:symbol "J/T" ;
+  qudt:ucumCode "J.T-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Tesla"@en ;
+.
+unit:J-PER-T2
+  a qudt:Unit ;
+  dcterms:description "A measure of the diamagnetic energy, for a Bohr-radius spread around a magnetic axis, per square Tesla."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J T^{-2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L2I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerSquareMagneticFluxDensity ;
+  qudt:informativeReference "http://www.eng.fsu.edu/~dommelen/quantum/style_a/elecmagfld.html"^^xsd:anyURI ;
+  qudt:symbol "J/T²" ;
+  qudt:ucumCode "J.T-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule per Square Tesla"@en ;
+.
+unit:J-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(The joule-second is a unit equal to a joule multiplied by a second, used to measure action or angular momentum. The joule-second is the unit used for Planck's constant.\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Action ;
+  qudt:hasQuantityKind quantitykind:AngularMomentum ;
+  qudt:iec61360Code "0112/2///62720#UAB151" ;
+  qudt:symbol "J⋅s" ;
+  qudt:ucumCode "J.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Second"@en ;
+.
+unit:J-SEC-PER-MOL
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Joule Second per Mole} is a unit for 'Molar Angular Momentum' expressed as \\(J s mol^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(J s mol^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MolarAngularMomentum ;
+  qudt:symbol "J⋅s/mol" ;
+  qudt:ucumCode "J.s.mol-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Joule Second per Mole"@en ;
+.
+unit:JamaicanDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Jamaica"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Jamaican_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(JMD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Jamaican_dollar?oldid=494039981"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Jamaican Dollar"@en ;
+.
+unit:JapaneseYen
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Japan"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Japanese_yen"^^xsd:anyURI ;
+  qudt:expression "\\(JPY\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Japanese_yen?oldid=493771966"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Japanese yen"@en ;
+.
+unit:JordanianDinar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Jordan"^^rdf:HTML ;
+  qudt:currencyExponent 3 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Jordanian_dinar"^^xsd:anyURI ;
+  qudt:expression "\\(JOD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Jordanian_dinar?oldid=495270728"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Jordanian Dinar"@en ;
+.
+unit:K
+  a qudt:Unit ;
+  dcterms:description "\\(The SI base unit of temperature, previously called the degree Kelvin. One kelvin represents the same temperature difference as one degree Celsius. In 1967 the General Conference on Weights and Measures defined the temperature of the triple point of water (the temperature at which water exists simultaneously in the gaseous, liquid, and solid states) to be exactly 273.16 kelvins. Since this temperature is also equal to 0.01 u00b0C, the temperature in kelvins is always equal to 273.15 plus the temperature in degrees Celsius. The kelvin equals exactly 1.8 degrees Fahrenheit. The unit is named for the British mathematician and physicist William Thomson (1824-1907), later known as Lord Kelvin after he was named Baron Kelvin of Largs.\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kelvin"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:BoilingPoint ;
+  qudt:hasQuantityKind quantitykind:CorrelatedColorTemperature ;
+  qudt:hasQuantityKind quantitykind:FlashPoint ;
+  qudt:hasQuantityKind quantitykind:MeltingPoint ;
+  qudt:hasQuantityKind quantitykind:Temperature ;
+  qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ;
+  qudt:iec61360Code "0112/2///62720#UAA185" ;
+  qudt:iec61360Code "0112/2///62720#UAD721" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kelvin?oldid=495075694"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin> ;
+  qudt:symbol "K" ;
+  qudt:ucumCode "K"^^qudt:UCUMcs ;
+  qudt:udunitsCode "K" ;
+  qudt:uneceCommonCode "KEL" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin"@en ;
+.
+unit:K-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 86400.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:TimeTemperature ;
+  qudt:symbol "K⋅day" ;
+  qudt:ucumCode "K.d"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin day"@en ;
+.
+unit:K-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthTemperature ;
+  qudt:symbol "K⋅m" ;
+  qudt:ucumCode "K.m"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin metres"@en ;
+.
+unit:K-M-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T-1D0 ;
+  qudt:symbol "K⋅m/s" ;
+  qudt:ucumCode "K.m.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin metres per second"@en ;
+.
+unit:K-M-PER-W
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalResistivity ;
+  qudt:iec61360Code "0112/2///62720#UAB488" ;
+  qudt:plainTextDescription "product of the SI base unit kelvin and the SI base unit metre divided by the derived SI unit watt" ;
+  qudt:symbol "K⋅m/W" ;
+  qudt:ucumCode "K.m.W-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin Meter Per Watt"@en-us ;
+  rdfs:label "Kelvin Metre Per Watt"@en ;
+.
+unit:K-M2-PER-KiloGM-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M-1H1T-1D0 ;
+  qudt:symbol "K⋅m²/(kg⋅s)" ;
+  qudt:ucumCode "K.m2.kg-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin square metres per kilogram per second"@en ;
+.
+unit:K-PA-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H1T-3D0 ;
+  qudt:symbol "K⋅Pa/s" ;
+  qudt:ucumCode "K.Pa.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin Pascals per second"@en ;
+.
+unit:K-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kelvin per Hour} is a unit for 'Temperature Per Time' expressed as \\(K / h\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:expression "\\(K / h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA189" ;
+  qudt:symbol "K/h" ;
+  qudt:ucumCode "K.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin per Hour"@en ;
+.
+unit:K-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:TemperatureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA186" ;
+  qudt:plainTextDescription "SI base unit kelvin divided by the SI base unit kelvin" ;
+  qudt:symbol "K/K" ;
+  qudt:ucumCode "K.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F02" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin Per Kelvin"@en ;
+.
+unit:K-PER-M
+  a qudt:Unit ;
+  dcterms:description "A change of temperature on the Kelvin temperature scale in one SI unit of length."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H1T0D0 ;
+  qudt:symbol "K/m" ;
+  qudt:ucumCode "K.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Degrees Kelvin per metre"@en ;
+  rdfs:label "Kelvins per metre"@en ;
+.
+unit:K-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kelvin per Minute} is a unit for 'Temperature Per Time' expressed as \\(K / m\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier "0.01666667"^^<http://www.linkedmodel.org/schema/dtype#numericUnion> ;
+  qudt:expression "\\(K / m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA191" ;
+  qudt:symbol "K/min" ;
+  qudt:ucumCode "K.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin per Minute"@en ;
+.
+unit:K-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kelvin per Second} is a unit for 'Temperature Per Time' expressed as \\(K / s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(K / s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA192" ;
+  qudt:symbol "K/s" ;
+  qudt:ucumCode "K.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "K/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin per Second"@en ;
+.
+unit:K-PER-T
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kelvin per Tesla} is a unit for 'Temperature Per Magnetic Flux Density' expressed as \\(K T^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(K T^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H1T2D0 ;
+  qudt:hasQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ;
+  qudt:symbol "K/T" ;
+  qudt:ucumCode "K.T-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin per Tesla"@en ;
+.
+unit:K-PER-W
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Thermal resistance is a heat property and a measure of a temperature difference by which an object or material resists a heat flow (heat per time unit or thermal resistance). Thermal resistance is the reciprocal thermal conductance. Absolute thermal resistance is the temperature difference across a structure when a unit of heat energy flows through it in unit time. It is the reciprocal of thermal conductance. The SI units of thermal resistance are kelvins per watt or the equivalent degrees Celsius per watt (the two are the same since as intervals).</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(K/W\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalResistance ;
+  qudt:iec61360Code "0112/2///62720#UAA187" ;
+  qudt:symbol "K/W" ;
+  qudt:ucumCode "K.W-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "K/W"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin per Watt"@en ;
+.
+unit:K-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ;
+  qudt:hasQuantityKind quantitykind:TimeTemperature ;
+  qudt:symbol "K⋅s" ;
+  qudt:ucumCode "K.s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kelvin second"@en ;
+.
+unit:K2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H2T0D0 ;
+  qudt:symbol "K²" ;
+  qudt:ucumCode "K2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Kelvin"@en ;
+.
+unit:KAT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Katal"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:CatalyticActivity ;
+  qudt:iec61360Code "0112/2///62720#UAB196" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Katal?oldid=486431865"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/katal> ;
+  qudt:symbol "kat" ;
+  qudt:ucumCode "kat"^^qudt:UCUMcs ;
+  qudt:udunitsCode "kat" ;
+  qudt:uneceCommonCode "KAT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Katal"@en ;
+.
+unit:KIP_F
+  a qudt:Unit ;
+  dcterms:description "1000 pound-force"^^rdf:HTML ;
+  qudt:conversionMultiplier 4448.222 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kip"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kip?oldid=492552722"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/kip> ;
+  qudt:symbol "kip" ;
+  qudt:ucumCode "k[lbf_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M75" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kip"@en ;
+.
+unit:KIP_F-PER-IN2
+  a qudt:Unit ;
+  dcterms:description "\"Kip per Square Inch\" is a unit for  'Force Per Area' expressed as \\(kip/in^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6894757.89 ;
+  qudt:expression "\\(kip/in^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB242" ;
+  qudt:symbol "kip/in²" ;
+  qudt:ucumCode "k[lbf_av].[in_i]-2"^^qudt:UCUMcs ;
+  qudt:udunitsCode "ksi" ;
+  qudt:uneceCommonCode "N20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kip per Square Inch"@en ;
+.
+unit:KN
+  a qudt:Unit ;
+  dcterms:description "The knot (pronounced 'not') is a unit of speed equal to one nautical mile (1.852 km) per hour, approximately 1.151 mph. The abbreviation \\(kn\\) is preferred by the International Hydrographic Organization (IHO), which includes every major sea-faring nation; however, the abbreviations kt (singular) and kts (plural) are also widely used. However, use of the abbreviation kt for knot conflicts with the SI symbol for kilotonne. The knot is a non-SI unit accepted for use with the International System of Units (SI). Worldwide, the knot is used in meteorology, and in maritime and air navigation - for example, a vessel travelling at 1 knot along a meridian travels one minute of geographic latitude in one hour. Etymologically, the term knot derives from counting the number of knots in the line that unspooled from the reel of a chip log in a specific time."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.5144444444444445 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Knot"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:MI_N-PER-HR ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAB110" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Knot?oldid=495066194"^^xsd:anyURI ;
+  qudt:symbol "kn" ;
+  qudt:ucumCode "[kn_i]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "kt" ;
+  qudt:uneceCommonCode "KNT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Knot"@en ;
+  owl:sameAs unit:MI_N-PER-HR ;
+  skos:altLabel "kt" ;
+  skos:altLabel "kts" ;
+.
+unit:KN-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Knot per Second}\\) is a unit for 'Linear Acceleration' expressed as \\(kt/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.5144444444444445 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(kt/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:symbol "kn/s" ;
+  qudt:ucumCode "[kn_i].s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[kn_i]/s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Knot per Second"@en ;
+.
+unit:KY
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kayser"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:expression "\\(\\(cm^{-1}\\)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kayser?oldid=458489166"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/kayser> ;
+  qudt:symbol "K" ;
+  qudt:ucumCode "Ky"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kayser"@en ;
+.
+unit:KenyanShilling
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kenya"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kenyan_shilling"^^xsd:anyURI ;
+  qudt:expression "\\(KES\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kenyan_shilling?oldid=489547027"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kenyan Shilling"@en ;
+.
+unit:KibiBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The kibibyte is a multiple of the unit byte for digital information equivalent to 1024 bytes."^^rdf:HTML ;
+  qudt:conversionMultiplier 5678.2617031470719747459655389854 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Kibi ;
+  qudt:symbol "KiB" ;
+  qudt:uneceCommonCode "E64" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "KibiByte"@en ;
+.
+unit:KiloA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA557" ;
+  qudt:isScalingOf unit:A ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kA" ;
+  qudt:ucumCode "kA"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "kiloampere"@en ;
+.
+unit:KiloA-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAB053" ;
+  qudt:plainTextDescription "product of the 1 000-fold of the SI base unit ampere and the unit hour" ;
+  qudt:symbol "kA⋅hr" ;
+  qudt:ucumCode "kA.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "TAH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kiloampere Hour"@en ;
+.
+unit:KiloA-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAA558" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit ampere divided by the SI base unit metre" ;
+  qudt:symbol "kA/m" ;
+  qudt:ucumCode "kA.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kiloampere Per Meter"@en-us ;
+  rdfs:label "Kiloampere Per Metre"@en ;
+.
+unit:KiloA-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA559" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "kA/m²" ;
+  qudt:ucumCode "kA.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kiloampere Per Square Meter"@en-us ;
+  rdfs:label "Kiloampere Per Square Metre"@en ;
+.
+unit:KiloBAR
+  a qudt:Unit ;
+  dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to \\(100,000 Pa = 1 bar \\approx 750.0616827 Torr\\). Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ;
+  qudt:conversionMultiplier 100000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB088" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BAR ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kbar" ;
+  qudt:ucumCode "kbar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KBA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilobar"@en ;
+.
+unit:KiloBIT-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A kilobit per second (kB/s) is a unit of data transfer rate equal to 1,000 bits per second."^^rdf:HTML ;
+  qudt:conversionMultiplier 693.14718055994530941723212145818 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DataRate ;
+  qudt:iec61360Code "0112/2///62720#UAA586" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobit_per_second"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BIT-PER-SEC ;
+  qudt:symbol "kbps" ;
+  qudt:ucumCode "kbit.s-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C74" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilobit per Second"@en ;
+.
+unit:KiloBQ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA561" ;
+  qudt:isScalingOf unit:BQ ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit becquerel" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kBq" ;
+  qudt:ucumCode "kBq"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2Q" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilobecquerel"@en ;
+.
+unit:KiloBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The kilobyte is a multiple of the unit byte for digital information equivalent to 1000 bytes. Although the prefix kilo- means 1000, the term kilobyte and symbol kB have historically been used to refer to either 1024 (210) bytes or 1000 (103) bytes, dependent upon context, in the fields of computer science and information technology. This ambiguity is removed in QUDT, with KibiBYTE used to refer to 1024 bytes."^^rdf:HTML ;
+  qudt:conversionMultiplier 5545.17744447956 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Byte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Byte?oldid=493588918"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Kibi ;
+  qudt:symbol "kB" ;
+  qudt:ucumCode "kBy"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2P" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilo Byte"@en ;
+.
+unit:KiloBYTE-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A kilobyte per second (kByte/s) is a unit of data transfer rate equal to 1000 bytes per second or 8000 bits per second."^^rdf:HTML ;
+  qudt:conversionMultiplier 5545.17744447956 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DataRate ;
+  qudt:iec61360Code "0112/2///62720#UAB306" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobyte_per_second"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BIT-PER-SEC ;
+  qudt:symbol "kBps" ;
+  qudt:ucumCode "kBy.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilobyte per Second"@en ;
+.
+unit:KiloC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA563" ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kC" ;
+  qudt:ucumCode "kC"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B26" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "KiloCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:KiloC-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:hasQuantityKind quantitykind:ElectricPolarization ;
+  qudt:iec61360Code "0112/2///62720#UAA564" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "kC/m²" ;
+  qudt:ucumCode "kC.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocoulomb Per Square Meter"@en-us ;
+  rdfs:label "Kilocoulomb Per Square Metre"@en ;
+.
+unit:KiloC-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA565" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "kC/m³" ;
+  qudt:ucumCode "kC.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocoulomb Per Cubic Meter"@en-us ;
+  rdfs:label "Kilocoulomb Per Cubic Metre"@en ;
+.
+unit:KiloCAL
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kilocalorie} is a unit for \\textit{Energy And Work} expressed as \\(kcal\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Calorie"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Calorie?oldid=494307622"^^xsd:anyURI ;
+  qudt:symbol "kcal" ;
+  qudt:ucumCode "kcal"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie"@en ;
+.
+unit:KiloCAL-PER-CentiM-SEC-DEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(kilocal-per-cm-sec-degc\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:symbol "kcal/(cm⋅s⋅°C)" ;
+  qudt:ucumCode "kcal.cm-1.s-1.Cel-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Centimeter Second Degree Celsius"@en-us ;
+  rdfs:label "Kilocalorie per Centimetre Second Degree Celsius"@en ;
+.
+unit:KiloCAL-PER-CentiM2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilocalorie per Square Centimeter\" is a unit for  'Energy Per Area' expressed as \\(kcal/cm^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000004184 ;
+  qudt:expression "\\(kcal/cm^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:symbol "kcal/cm²" ;
+  qudt:ucumCode "kcal.cm-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Square Centimeter"@en-us ;
+  rdfs:label "Kilocalorie per Square Centimetre"@en ;
+.
+unit:KiloCAL-PER-CentiM2-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilocalorie per Square Centimeter Minute\" is a unit for  'Power Per Area' expressed as \\(kcal/(cm^{2}-min)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000697333333 ;
+  qudt:expression "\\(kcal/(cm^{2}-min)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:symbol "kcal/(cm²⋅min)" ;
+  qudt:ucumCode "kcal.cm-2.min-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Square Centimeter Minute"@en-us ;
+  rdfs:label "Kilocalorie per Square Centimetre Minute"@en ;
+.
+unit:KiloCAL-PER-CentiM2-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilocalorie per Square Centimeter Second\" is a unit for  'Power Per Area' expressed as \\(kcal/(cm^{2}-s)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000004184 ;
+  qudt:expression "\\(kcal/(cm^{2}-s)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:symbol "kcal/(cm²⋅s)" ;
+  qudt:ucumCode "kcal.cm-2.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Square Centimeter Second"@en-us ;
+  rdfs:label "Kilocalorie per Square Centimetre Second"@en ;
+.
+unit:KiloCAL-PER-GM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilocalorie per Gram\" is a unit for  'Specific Energy' expressed as \\(kcal/gm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4184000.0 ;
+  qudt:expression "\\(kcal/gm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:symbol "kcal/g" ;
+  qudt:ucumCode "kcal.g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Gram"@en ;
+.
+unit:KiloCAL-PER-GM-DEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Calorie per Gram Degree Celsius} is a unit for 'Specific Heat Capacity' expressed as \\(kcal/(gm-degC)\\)."^^qudt:LatexString ;
+  qudt:expression "\\(kcal/(gm-degC)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
+  qudt:symbol "kcal/(g⋅°C)" ;
+  qudt:ucumCode "cal.g-1.Cel-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Calorie per Gram Degree Celsius"@en ;
+.
+unit:KiloCAL-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kilocalorie per Minute} is a unit for \\textit{Heat Flow Rate} and \\textit{Power} expressed as \\(kcal/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 69.7333333 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(kcal/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:symbol "kcal/min" ;
+  qudt:ucumCode "kcal.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie Per Minute"@en ;
+.
+unit:KiloCAL-PER-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The kilocalorie per mole is a derived unit of energy per Avogadro's number of particles. It is the quotient of a kilocalorie (1000 thermochemical gram calories) and a mole, mainly used in the United States. In SI units, it is equal to \\(4.184 kJ/mol\\), or \\(6.9477 \\times 10 J per molecule\\). At room temperature it is equal to 1.688 . Physical quantities measured in \\(kcal\\cdot mol\\) are usually thermodynamical quantities; mostly free energies such as: Heat of vaporization Heat of fusion</p>."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:expression "\\(kcal/mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MolarEnergy ;
+  qudt:symbol "kcal/mol" ;
+  qudt:ucumCode "kcal.mol-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Mole"@en ;
+.
+unit:KiloCAL-PER-MOL-DEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kilocalorie per Mole Degree Celsius} is a unit for 'Molar Heat Capacity' expressed as \\(kcal/(mol-degC)\\)."^^qudt:LatexString ;
+  qudt:expression "\\(kcal/(mol-degC)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MolarHeatCapacity ;
+  qudt:symbol "kcal/(mol⋅°C)" ;
+  qudt:ucumCode "kcal.mol-1.Cel-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie per Mole Degree Celsius"@en ;
+.
+unit:KiloCAL-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kilocalorie per Second} is a unit for \\textit{Heat Flow Rate} and \\textit{Power} expressed as \\(kcal/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(kcal/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:symbol "kcal/s" ;
+  qudt:ucumCode "kcal.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie Per Second"@en ;
+.
+unit:KiloCAL_IT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4186.8 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA589" ;
+  qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food" ;
+  qudt:symbol "kcal{IT}" ;
+  qudt:ucumCode "kcal_IT"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (international Table)"@en ;
+.
+unit:KiloCAL_IT-PER-HR-M-DEG_C
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.163 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA588" ;
+  qudt:plainTextDescription "1 000-fold of the no longer approved unit international calorie for energy divided by the product of the SI base unit metre, the unit hour for time and the unit degree Celsius for temperature" ;
+  qudt:symbol "kcal{IT}/(hr⋅m⋅°C)" ;
+  qudt:ucumCode "kcal_IT.h-1.m-1.Cel-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (international Table) Per Hour Meter Degree Celsius"@en-us ;
+  rdfs:label "Kilocalorie (international Table) Per Hour Metre Degree Celsius"@en ;
+.
+unit:KiloCAL_Mean
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4190.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA587" ;
+  qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food" ;
+  qudt:symbol "kcal{mean}" ;
+  qudt:ucumCode "kcal_m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (mean)"@en ;
+.
+unit:KiloCAL_TH
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA590" ;
+  qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food" ;
+  qudt:symbol "kcal{th}" ;
+  qudt:ucumCode "[Cal]"^^qudt:UCUMcs ;
+  qudt:ucumCode "kcal_th"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (thermochemical)"@en ;
+.
+unit:KiloCAL_TH-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.162230555555556 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB184" ;
+  qudt:plainTextDescription "1 000-fold of the non-legal unit thermochemical calorie divided by the unit hour" ;
+  qudt:symbol "kcal{th}/hr" ;
+  qudt:ucumCode "kcal_th.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E15" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (thermochemical) Per Hour"@en ;
+.
+unit:KiloCAL_TH-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 69.73383333333334 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA591" ;
+  qudt:plainTextDescription "1000-fold of the unit calorie divided by the unit minute" ;
+  qudt:symbol "kcal{th}/min" ;
+  qudt:ucumCode "kcal_th.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (thermochemical) Per Minute"@en ;
+.
+unit:KiloCAL_TH-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4184.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA592" ;
+  qudt:plainTextDescription "1000-fold of the unit calorie divided by the SI base unit second" ;
+  qudt:symbol "kcal{th}/s" ;
+  qudt:ucumCode "kcal_th.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocalorie (thermochemical) Per Second"@en ;
+.
+unit:KiloCi
+  a qudt:Unit ;
+  qudt:conversionMultiplier 37000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:hasQuantityKind quantitykind:DecayConstant ;
+  qudt:iec61360Code "0112/2///62720#UAB046" ;
+  qudt:plainTextDescription "1 000-fold of the unit curie" ;
+  qudt:symbol "kCi" ;
+  qudt:ucumCode "kCi"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2R" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilocurie"@en ;
+.
+unit:KiloEV
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilo Electron Volt\" is a unit for  'Energy And Work' expressed as \\(keV\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:symbol "keV" ;
+  qudt:ucumCode "keV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilo Electron Volt"@en ;
+.
+unit:KiloEV-PER-MicroM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilo Electron Volt per Micrometer\" is a unit for  'Linear Energy Transfer' expressed as \\(keV/microM\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000001602176634 ;
+  qudt:expression "\\(keV/microM\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:LinearEnergyTransfer ;
+  qudt:symbol "keV/µM" ;
+  qudt:ucumCode "keV.um-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilo Electron Volt per Micrometer"@en-us ;
+  rdfs:label "Kilo Electron Volt per Micrometre"@en ;
+.
+unit:KiloGAUSS
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB136" ;
+  qudt:plainTextDescription "1 000-fold of the CGS unit of the magnetic flux density B" ;
+  qudt:symbol "kGs" ;
+  qudt:ucumCode "kG"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "78" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogauss"@en ;
+.
+unit:KiloGM
+  a qudt:Unit ;
+  qudt:allowedUnitOfSystem sou:CGS-EMU ;
+  qudt:allowedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kilogram"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA594" ;
+  qudt:iec61360Code "0112/2///62720#UAD720" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kilogram?oldid=493633626"^^xsd:anyURI ;
+  qudt:plainTextDescription "The kilogram or kilogramme (SI symbol: kg), also known as the kilo, is the base unit of mass in the International System of Units and is defined as being equal to the mass of the International Prototype Kilogram (IPK), which is almost exactly equal to the mass of one liter of water. The avoirdupois (or international) pound, used in both the Imperial system and U.S. customary units, is defined as exactly 0.45359237 kg, making one kilogram approximately equal to 2.2046 avoirdupois pounds." ;
+  qudt:symbol "kg" ;
+  qudt:ucumCode "kg"^^qudt:UCUMcs ;
+  qudt:udunitsCode "kg" ;
+  qudt:uneceCommonCode "KGM" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram"@en ;
+.
+unit:KiloGM-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MomentOfInertia ;
+  qudt:iec61360Code "0112/2///62720#UAA600" ;
+  qudt:plainTextDescription "product of the SI base unit kilogram and the 0 0001fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "kg⋅cm²" ;
+  qudt:ucumCode "kg.cm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Square Centimeter"@en-us ;
+  rdfs:label "Kilogram Square Centimetre"@en ;
+.
+unit:KiloGM-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kilogram Kelvin} is a unit for 'Mass Temperature' expressed as \\(kg-K\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg-K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassTemperature ;
+  qudt:symbol "kg⋅K" ;
+  qudt:ucumCode "kg.K"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Kelvin"@en ;
+.
+unit:KiloGM-M-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilogram Meter Per Second\" is a unit for  'Linear Momentum' expressed as \\(kg-m/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(kg-m/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:LinearMomentum ;
+  qudt:iec61360Code "0112/2///62720#UAA615" ;
+  qudt:symbol "kg⋅m/s" ;
+  qudt:ucumCode "kg.m.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg.m/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Meter Per Second"@en-us ;
+  rdfs:label "Kilogram Metre Per Second"@en ;
+.
+unit:KiloGM-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilogram Square Meter\" is a unit for  'Moment Of Inertia' expressed as \\(kg-m^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg-m2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MomentOfInertia ;
+  qudt:iec61360Code "0112/2///62720#UAA622" ;
+  qudt:symbol "kg⋅m²" ;
+  qudt:ucumCode "kg.m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Square Meter"@en-us ;
+  rdfs:label "Kilogram Square Metre"@en ;
+.
+unit:KiloGM-M2-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilogram Square Meter Per Second\" is a unit for  'Angular Momentum' expressed as \\(kg-m^2-s^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(kg-m2/sec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularImpulse ;
+  qudt:hasQuantityKind quantitykind:AngularMomentum ;
+  qudt:iec61360Code "0112/2///62720#UAA623" ;
+  qudt:symbol "kg⋅m²/s" ;
+  qudt:ucumCode "kg.m2.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Square Meter Per Second"@en-us ;
+  rdfs:label "Kilogram Square Metre Per Second"@en ;
+.
+unit:KiloGM-MilliM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MomentOfInertia ;
+  qudt:iec61360Code "0112/2///62720#UAA627" ;
+  qudt:plainTextDescription "product of the SI base kilogram and the  0.001-fold of the power of the SI base metre with the exponent 2" ;
+  qudt:symbol "kg⋅mm²" ;
+  qudt:ucumCode "kg.mm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Square Millimeter"@en-us ;
+  rdfs:label "Kilogram Square Millimetre"@en ;
+.
+unit:KiloGM-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB174" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "kg/cm²" ;
+  qudt:ucumCode "kg.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D5" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Square Centimeter"@en-us ;
+  rdfs:label "Kilogram Per Square Centimetre"@en ;
+.
+unit:KiloGM-PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA597" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the 0.000 001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "kg⋅cm³" ;
+  qudt:ucumCode "kg.cm-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Cubic Centimeter"@en-us ;
+  rdfs:label "Kilogram Per Cubic Centimetre"@en ;
+.
+unit:KiloGM-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA601" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the unit day" ;
+  qudt:symbol "kg/day" ;
+  qudt:ucumCode "kg.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Day"@en ;
+.
+unit:KiloGM-PER-DeciM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA604" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "kg⋅dm³" ;
+  qudt:ucumCode "kg.dm-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Cubic Decimeter"@en-us ;
+  rdfs:label "Kilogram Per Cubic Decimetre"@en ;
+.
+unit:KiloGM-PER-HA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilogram Per Hectare is a unit of mass per area. Kilogram Per Hectare (kg/ha) has a dimension of ML-2 where M is mass, and L is length. It can be converted to the corresponding standard SI unit kg/m2 by multiplying its value by a factor of 0.0001."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:expression "\\(kg/hare\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:symbol "kg/ha" ;
+  qudt:ucumCode "kg.har-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/har"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Hectare"@en ;
+.
+unit:KiloGM-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilogram Per Hour (kg/h) is a unit in the category of Mass flow rate. It is also known as kilogram/hour. Kilogram Per Hour (kg/h) has a dimension of MT-1 where M is mass, and T is time. It can be converted to the corresponding standard SI unit kg/s by multiplying its value by a factor of 0.000277777777778."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000277777778 ;
+  qudt:expression "\\(kg/h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA607" ;
+  qudt:symbol "kg/h" ;
+  qudt:ucumCode "kg.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Hour"@en ;
+.
+unit:KiloGM-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA610" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the SI base unit kilogram" ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "kg/kg" ;
+  qudt:ucumCode "kg.kg-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "3H" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Kilogram"@en ;
+.
+unit:KiloGM-PER-KiloM2
+  a qudt:Unit ;
+  dcterms:description "One SI standard unit of mass over the square of one thousand standard unit of length."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:hasQuantityKind quantitykind:SurfaceDensity ;
+  qudt:symbol "kg/km²" ;
+  qudt:ucumCode "kg.km-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilograms per square kilometre"@en ;
+.
+unit:KiloGM-PER-KiloMOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarMass ;
+  qudt:iec61360Code "0112/2///62720#UAA611" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the 1 000-fold of the SI base unit mol" ;
+  qudt:symbol "kg/kmol" ;
+  qudt:ucumCode "kg.kmol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Kilomol"@en ;
+.
+unit:KiloGM-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA612" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the unit litre" ;
+  qudt:symbol "kg/L" ;
+  qudt:ucumCode "kg.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Liter"@en-us ;
+  rdfs:label "Kilogram Per Litre"@en ;
+.
+unit:KiloGM-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilogram Per Meter (kg/m) is a unit in the category of Linear mass density. It is also known as kilogram/meter, kilogram/metre, kilograms per meter, kilogram per metre, kilograms per metre. This unit is commonly used in the SI unit system. Kilogram Per Meter (kg/m) has a dimension of ML-1 where M is mass, and L is length. This unit is the standard SI unit in this category. "^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearDensity ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA616" ;
+  qudt:symbol "kg/m" ;
+  qudt:ucumCode "kg.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Meter"@en-us ;
+  rdfs:label "Kilogram per Metre"@en ;
+.
+unit:KiloGM-PER-M-HR
+  a qudt:Unit ;
+  dcterms:description "One SI standard unit of mass over one SI standard unit of length over 3600 times one SI standard unit of time."@en ;
+  qudt:conversionMultiplier 0.000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:symbol "kg/(m⋅hr)" ;
+  qudt:ucumCode "kg.m-1.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilograms per metre per hour"@en ;
+.
+unit:KiloGM-PER-M-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:symbol "kg/(m⋅s)" ;
+  qudt:ucumCode "kg.m-1.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N37" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilograms per metre per second"@en ;
+.
+unit:KiloGM-PER-M-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of pressure. The pascal is the standard pressure unit in the MKS metric system, equal to one newton per square meter or one \"kilogram per meter per second per second.\" The unit is named for Blaise Pascal (1623-1662), French philosopher and mathematician, who was the first person to use a barometer to measure differences in altitude."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ;
+  qudt:exactMatch unit:N-PER-M2 ;
+  qudt:exactMatch unit:PA ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:siUnitsExpression "kg/m/s^2" ;
+  qudt:symbol "kg/(m⋅s²)" ;
+  qudt:ucumCode "kg.m-1.s-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilograms per metre per square second"@en ;
+  owl:sameAs unit:N-PER-M2 ;
+  owl:sameAs unit:PA ;
+.
+unit:KiloGM-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilogram Per Square Meter (kg/m2) is a unit in the category of Surface density. It is also known as kilograms per square meter, kilogram per square metre, kilograms per square metre, kilogram/square meter, kilogram/square metre. This unit is commonly used in the SI unit system. Kilogram Per Square Meter (kg/m2) has a dimension of ML-2 where M is mass, and L is length. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg/m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:BodyMassIndex ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:hasQuantityKind quantitykind:MeanMassRange ;
+  qudt:hasQuantityKind quantitykind:SurfaceDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA617" ;
+  qudt:symbol "kg/m²" ;
+  qudt:ucumCode "kg.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Square Meter"@en-us ;
+  rdfs:label "Kilogram per Square Metre"@en ;
+.
+unit:KiloGM-PER-M2-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:exactMatch unit:KiloGM-PER-SEC-M2 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:symbol "kg/(m²⋅s)" ;
+  qudt:ucumCode "kg.m-2.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilograms per square metre per second"@en ;
+  owl:sameAs unit:KiloGM-PER-SEC-M2 ;
+.
+unit:KiloGM-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilogram per cubic metre is an SI derived unit of density, defined by mass in kilograms divided by volume in cubic metres. The official SI symbolic abbreviation is \\(kg \\cdot m^{-3}\\), or equivalently either \\(kg/m^3\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(kg/m^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:hasQuantityKind quantitykind:MassConcentration ;
+  qudt:hasQuantityKind quantitykind:MassConcentrationOfWater ;
+  qudt:hasQuantityKind quantitykind:MassConcentrationOfWaterVapour ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA619" ;
+  qudt:plainTextDescription "Kilogram per cubic metre is an SI derived unit of density, defined by mass in kilograms divided by volume in cubic metres. The official SI symbolic abbreviation is kg . m^-3, or equivalently either kg/m^3." ;
+  qudt:symbol "kg/m³" ;
+  qudt:ucumCode "kg.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KMQ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Cubic Meter"@en-us ;
+  rdfs:label "Kilogram per Cubic Metre"@en ;
+  rdfs:label "kilogram per cubic meter"@en-us ;
+  rdfs:label "kilogram per cubic metre"@en ;
+.
+unit:KiloGM-PER-M3-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "kg/(m³⋅s)" ;
+  qudt:ucumCode "kg.m-3.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilograms per cubic metre per second"@en ;
+.
+unit:KiloGM-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA624" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the unit minute" ;
+  qudt:symbol "kg/min" ;
+  qudt:ucumCode "kg.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Minute"@en ;
+.
+unit:KiloGM-PER-MOL
+  a qudt:Unit ;
+  dcterms:description "<p>In chemistry, the molar mass M is defined as the mass of a given substance (chemical element or chemical compound) divided by its amount of substance. It is a physical property of a given substance. The base SI unit for molar mass is \\(kg/mol\\). However, for historical reasons, molar masses are almost always expressed in \\(g/mol\\). As an example, the molar mass of water is approximately: \\(18.01528(33) \\; g/mol\\)</p>."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg mol^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarMass ;
+  qudt:symbol "kg/mol" ;
+  qudt:ucumCode "kg.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D74" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Mol"@en ;
+.
+unit:KiloGM-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearDensity ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB070" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "kg/mm" ;
+  qudt:ucumCode "kg.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KW" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Millimeter"@en-us ;
+  rdfs:label "Kilogram Per Millimetre"@en ;
+.
+unit:KiloGM-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilogram Per Second (kg/s) is a unit in the category of Mass flow rate. It is also known as kilogram/second, kilograms per second. This unit is commonly used in the SI unit system. Kilogram Per Second (kg/s) has a dimension of \\(MT^{-1}\\) where M is mass, and T is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA629" ;
+  qudt:symbol "kg/s" ;
+  qudt:ucumCode "kg.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KGS" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Second"@en ;
+.
+unit:KiloGM-PER-SEC-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:exactMatch unit:KiloGM-PER-M2-SEC ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:iec61360Code "0112/2///62720#UAA618" ;
+  qudt:plainTextDescription "SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 2 and the SI base unit second" ;
+  qudt:symbol "kg/(s⋅m²)" ;
+  qudt:ucumCode "kg.(s.m2)-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg.s-1.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/(s.m2)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Per Second Per Square Meter"@en-us ;
+  rdfs:label "Kilogram Per Second Per Square Metre"@en ;
+  owl:sameAs unit:KiloGM-PER-M2-SEC ;
+.
+unit:KiloGM-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kg-per-sec2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:latexSymbol "\\(kg \\cdot s^2\\)"^^qudt:LatexString ;
+  qudt:symbol "kg/s²" ;
+  qudt:ucumCode "kg.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "kg/s2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram per Square Second"@en ;
+.
+unit:KiloGM-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:expression "\\(kilog-sec2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T2D0 ;
+  qudt:symbol "kg⋅s²" ;
+  qudt:ucumCode "kg.s2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Square Second"@en ;
+.
+unit:KiloGM2-PER-SEC2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M2H0T-2D0 ;
+  qudt:symbol "kg/s²" ;
+  qudt:ucumCode "kg2.s-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Kilograms per square second"@en ;
+.
+unit:KiloGM_F
+  a qudt:Unit ;
+  dcterms:description "\"Kilogram Force\" is a unit for  'Force' expressed as \\(kgf\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kilogram-force"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kilogram-force?oldid=493375479"^^xsd:anyURI ;
+  qudt:symbol "kgf" ;
+  qudt:ucumCode "kgf"^^qudt:UCUMcs ;
+  qudt:udunitsCode "kgf" ;
+  qudt:uneceCommonCode "B37" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Force"@en ;
+.
+unit:KiloGM_F-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA634" ;
+  qudt:plainTextDescription "product of the unit kilogram-force and the SI base unit metre" ;
+  qudt:symbol "kgf⋅m" ;
+  qudt:ucumCode "kgf.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram?force Meter"@en-us ;
+  rdfs:label "Kilogram?force Metre"@en ;
+.
+unit:KiloGM_F-M-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 98066.5 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB189" ;
+  qudt:plainTextDescription "product of the unit kilogram-force and the SI base unit metre divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "kgf⋅m/cm²" ;
+  qudt:ucumCode "kgf.m.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram?force Meter Per Square Centimeter"@en-us ;
+  rdfs:label "Kilogram?force Metre Per Square Centimetre"@en ;
+.
+unit:KiloGM_F-M-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:iec61360Code "0112/2///62720#UAB154" ;
+  qudt:plainTextDescription "product of the SI base unit metre and the unit kilogram-force according to the Anglo-American and Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "kgf⋅m/s" ;
+  qudt:ucumCode "kgf.m.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram?force Meter Per Second"@en-us ;
+  rdfs:label "Kilogram?force Metre Per Second"@en ;
+.
+unit:KiloGM_F-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description "\"Kilogram Force per Square Centimeter\" is a unit for  'Force Per Area' expressed as \\(kgf/cm^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 98066.5 ;
+  qudt:expression "\\(kgf/cm^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "kgf/cm²" ;
+  qudt:ucumCode "kgf.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Force per Square Centimeter"@en-us ;
+  rdfs:label "Kilogram Force per Square Centimetre"@en ;
+.
+unit:KiloGM_F-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA635" ;
+  qudt:plainTextDescription "not SI conform unit of the pressure" ;
+  qudt:symbol "kgf/m²" ;
+  qudt:ucumCode "kgf.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Force Per Square Meter"@en-us ;
+  rdfs:label "Kilogram Force Per Square Metre"@en ;
+.
+unit:KiloGM_F-PER-MilliM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9806650.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA636" ;
+  qudt:plainTextDescription "not SI conform unit of the pressure" ;
+  qudt:symbol "kgf/mm²" ;
+  qudt:ucumCode "kgf.mm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilogram Force Per Square Millimeter"@en-us ;
+  rdfs:label "Kilogram Force Per Square Millimetre"@en ;
+.
+unit:KiloHZ
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Kilohertz\" is a C.G.S System unit for  'Frequency' expressed as \\(KHz\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA566" ;
+  qudt:isScalingOf unit:HZ ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kHz" ;
+  qudt:ucumCode "kHz"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KHZ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilohertz"@en ;
+.
+unit:KiloHZ-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ConductionSpeed ;
+  qudt:hasQuantityKind quantitykind:GroupSpeedOfSound ;
+  qudt:hasQuantityKind quantitykind:PhaseSpeedOfSound ;
+  qudt:hasQuantityKind quantitykind:SoundParticleVelocity ;
+  qudt:iec61360Code "0112/2///62720#UAA567" ;
+  qudt:plainTextDescription "product of the 1 000-fold of the SI derived unit hertz and the SI base unit metre" ;
+  qudt:symbol "kHz⋅m" ;
+  qudt:ucumCode "kHz.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M17" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilohertz Meter"@en-us ;
+  rdfs:label "Kilohertz Metre"@en ;
+.
+unit:KiloJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA568" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit joule" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kJ" ;
+  qudt:ucumCode "kJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KJO" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilojoule"@en ;
+.
+unit:KiloJ-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerTemperature ;
+  qudt:iec61360Code "0112/2///62720#UAA569" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit kelvin" ;
+  qudt:symbol "kJ/K" ;
+  qudt:ucumCode "kJ.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kJ/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilojoule Per Kelvin"@en ;
+.
+unit:KiloJ-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA570" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit kilogram" ;
+  qudt:symbol "kJ/kg" ;
+  qudt:ucumCode "kJ.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kJ/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilojoule Per Kilogram"@en ;
+.
+unit:KiloJ-PER-KiloGM-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAA571" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the product of the SI base unit kilogram and the SI base unit kelvin" ;
+  qudt:symbol "kJ/(kg⋅K)" ;
+  qudt:ucumCode "kJ.(kg.K)-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kJ.kg-1.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kJ/(kg.K)"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilojoule Per Kilogram Kelvin"@en ;
+.
+unit:KiloJ-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MolarEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA572" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit mol" ;
+  qudt:symbol "kJ/mol" ;
+  qudt:ucumCode "kJ.mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilojoule Per Mole"@en ;
+.
+unit:KiloL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB114" ;
+  qudt:plainTextDescription "1 000-fold of the unit litre" ;
+  qudt:symbol "kL" ;
+  qudt:ucumCode "kL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K6" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilolitre"@en ;
+  rdfs:label "Kilolitre"@en-us ;
+.
+unit:KiloL-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00277777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB121" ;
+  qudt:plainTextDescription "unit of the volume kilolitres divided by the unit hour" ;
+  qudt:symbol "kL/hr" ;
+  qudt:ucumCode "kL.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4X" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilolitre Per Hour"@en ;
+  rdfs:label "Kilolitre Per Hour"@en-us ;
+.
+unit:KiloLB_F-FT-PER-A
+  a qudt:Unit ;
+  qudt:conversionMultiplier 2728.302797866667 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:iec61360Code "0112/2///62720#UAB483" ;
+  qudt:plainTextDescription "product of the Anglo-American unit pound-force and foot divided by the SI base unit ampere" ;
+  qudt:symbol "klbf⋅ft/A" ;
+  qudt:ucumCode "[lbf_av].[ft_i].A-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Foot Per Ampere"@en ;
+.
+unit:KiloLB_F-FT-PER-LB
+  a qudt:Unit ;
+  qudt:conversionMultiplier 2989.067 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB484" ;
+  qudt:plainTextDescription "product of the Anglo-American unit pound-force and the Anglo-American unit foot divided by the Anglo-American unit pound (US) of mass" ;
+  qudt:symbol "klbf⋅ft/lb" ;
+  qudt:ucumCode "[lbf_av].[ft_i].[lb_av]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Foot Per Pound"@en ;
+.
+unit:KiloLB_F-PER-FT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 14593.904199475066 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB192" ;
+  qudt:plainTextDescription "unit of the length-related force" ;
+  qudt:symbol "klbf/ft" ;
+  qudt:ucumCode "[lbf_av].[ft_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F17" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Per Foot"@en ;
+.
+unit:KiloLB_F-PER-IN2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 6894757.89 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB138" ;
+  qudt:plainTextDescription "1 000-fold of the unit for pressure psi as a compounded unit pound-force according to the Anglo-American system of units divided by the power of the unit Inch according to the Anglo-American and Imperial system of units by exponent 2" ;
+  qudt:symbol "kpsi" ;
+  qudt:ucumCode "k[lbf_av].[sin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "84" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopound Force Per Square Inch"@en ;
+.
+unit:KiloM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A common metric unit of length or distance. One kilometer equals exactly 1000 meters, about 0.621 371 19 mile, 1093.6133 yards, or 3280.8399 feet. Oddly, higher multiples of the meter are rarely used; even the distances to the farthest galaxies are usually measured in kilometers. "^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:CGS-EMU ;
+  qudt:allowedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kilometre"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kilometre?oldid=494821851"^^xsd:anyURI ;
+  qudt:isScalingOf unit:M ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "km" ;
+  qudt:ucumCode "km"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KMT" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilometer"@en-us ;
+  rdfs:label "Kilometre"@en ;
+.
+unit:KiloM-PER-DAY
+  a qudt:Unit ;
+  dcterms:description "A change in location of a distance of one thousand metres in an elapsed time of one day (86400 seconds)."@en ;
+  qudt:conversionMultiplier 0.0115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:symbol "kg/day" ;
+  qudt:ucumCode "km.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilometres per day"@en ;
+.
+unit:KiloM-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\"Kilometer per Hour\" is a C.G.S System unit for  'Linear Velocity' expressed as \\(km/hr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.2777777777777778 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kilometres_per_hour"^^xsd:anyURI ;
+  qudt:expression "\\(km/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA638" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kilometres_per_hour?oldid=487674812"^^xsd:anyURI ;
+  qudt:symbol "km/hr" ;
+  qudt:ucumCode "km.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "km/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KMH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilometer per Hour"@en-us ;
+  rdfs:label "Kilometre per Hour"@en ;
+.
+unit:KiloM-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Kilometer per Second\" is a C.G.S System unit for  'Linear Velocity' expressed as \\(km/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:expression "\\(km/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAB392" ;
+  qudt:symbol "km/s" ;
+  qudt:ucumCode "km.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "km/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilometer per Second"@en-us ;
+  rdfs:label "Kilometre per Second"@en ;
+.
+unit:KiloM3-PER-SEC2
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Cubic Kilometer per Square Second}\\) is a unit for \\(\\textit{Standard Gravitational Parameter}\\) expressed as \\(km^3/s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:expression "\\(km^3/s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:StandardGravitationalParameter ;
+  qudt:symbol "km³/s²" ;
+  qudt:ucumCode "km3.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "km3/s2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Kilometer per Square Second"@en-us ;
+  rdfs:label "Cubic Kilometre per Square Second"@en ;
+.
+unit:KiloMOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstance ;
+  qudt:iec61360Code "0112/2///62720#UAA640" ;
+  qudt:isScalingOf unit:MOL ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit mol" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kmol" ;
+  qudt:ucumCode "kmol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilomole"@en ;
+.
+unit:KiloMOL-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:CatalyticActivity ;
+  qudt:iec61360Code "0112/2///62720#UAA641" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit mole divided by the unit for time hour" ;
+  qudt:symbol "kmol/hr" ;
+  qudt:ucumCode "kmol.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilomole Per Hour"@en ;
+.
+unit:KiloMOL-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilomole Per Kilogram (\\(kmol/kg\\)) is a unit of Molality"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(kmol/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:hasQuantityKind quantitykind:IonicStrength ;
+  qudt:hasQuantityKind quantitykind:MolalityOfSolute ;
+  qudt:symbol "kmol/kg" ;
+  qudt:ucumCode "kmol.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "kmol/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilomol per Kilogram"@en ;
+.
+unit:KiloMOL-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:iec61360Code "0112/2///62720#UAA642" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit mol divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "kmol/m³" ;
+  qudt:ucumCode "kmol.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B46" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilomole Per Cubic Meter"@en-us ;
+  rdfs:label "Kilomole Per Cubic Metre"@en ;
+.
+unit:KiloMOL-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 16.94444 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MolarFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA645" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit mole divided by the unit for time minute" ;
+  qudt:symbol "kmol/min" ;
+  qudt:ucumCode "kmol.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilomole Per Minute"@en ;
+.
+unit:KiloMOL-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MolarFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA646" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit mol divided by the SI base unit second" ;
+  qudt:symbol "kmol/s" ;
+  qudt:ucumCode "kmol.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilomole Per Second"@en ;
+.
+unit:KiloN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAA573" ;
+  qudt:isScalingOf unit:N ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit newton" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kN" ;
+  qudt:ucumCode "kN"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilonewton"@en ;
+.
+unit:KiloN-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA574" ;
+  qudt:plainTextDescription "1 000-fold of the product of the SI derived unit newton and the SI base unit metre" ;
+  qudt:symbol "kN⋅m" ;
+  qudt:ucumCode "kN.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B48" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilonewton Meter"@en-us ;
+  rdfs:label "Kilonewton Metre"@en ;
+.
+unit:KiloOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA555" ;
+  qudt:isScalingOf unit:OHM ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit ohm" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kΩ" ;
+  qudt:ucumCode "kOhm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kiloohm"@en ;
+.
+unit:KiloP
+  a qudt:Unit ;
+  dcterms:description "Same as kilogramForce"^^rdf:HTML ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAB059" ;
+  qudt:symbol "kP" ;
+  qudt:ucumCode "kgf"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B51" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopond"@en ;
+.
+unit:KiloPA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kilopascal is a unit of pressure. 1 kPa is approximately the pressure exerted by a 10-g mass resting on a 1-cm2 area. 101.3 kPa = 1 atm. There are 1,000 pascals in 1 kilopascal."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal_%28unit%29"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA575" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:symbol "kPa" ;
+  qudt:ucumCode "kPa"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KPA" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopascal"@en ;
+.
+unit:KiloPA-M2-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:iec61360Code "0112/2///62720#UAB130" ;
+  qudt:plainTextDescription "sector-specific unit of the burst index as 1 000-fold of the derived unit for pressure pascal related to the substance, represented as a quotient from the 0.001-fold of the SI base unit kilogram divided by the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "kPa⋅m²/g" ;
+  qudt:ucumCode "kPa.m2.g-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopascal Square Meter per Gram"@en-us ;
+  rdfs:label "Kilopascal Square Metre per Gram"@en ;
+.
+unit:KiloPA-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA577" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit pascal divided by the unit bar" ;
+  qudt:symbol "kPa/bar" ;
+  qudt:ucumCode "kPa.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F03" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopascal Per Bar"@en ;
+.
+unit:KiloPA-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:PressureCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA576" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit pascal divided by the SI base unit kelvin" ;
+  qudt:symbol "kPa/K" ;
+  qudt:ucumCode "kPa.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F83" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopascal Per Kelvin"@en ;
+.
+unit:KiloPA-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB060" ;
+  qudt:plainTextDescription "1 000-fold of the derived SI unit pascal divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "kPa/mm" ;
+  qudt:ucumCode "kPa.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopascal Per Millimeter"@en-us ;
+  rdfs:label "Kilopascal Per Millimetre"@en ;
+.
+unit:KiloPA_A
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Kilopascal Absolute} is a SI System unit for 'Force Per Area' expressed as \\(KPaA\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "KPaA" ;
+  qudt:ucumCode "kPa{absolute}"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopascal Absolute"@en ;
+.
+unit:KiloPOND
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAB059" ;
+  qudt:plainTextDescription "illegal unit of the weight, defined as mass of 1 kg which receives a weight of 1 kp through gravitation at sea level, which equates to a force of 9,806 65 newton" ;
+  qudt:symbol "kp" ;
+  qudt:uneceCommonCode "B51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilopond"@en ;
+.
+unit:KiloR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.258 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:iec61360Code "0112/2///62720#UAB057" ;
+  qudt:plainTextDescription "1 000-fold of the unit roentgen" ;
+  qudt:symbol "kR" ;
+  qudt:ucumCode "kR"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kiloroentgen"@en ;
+.
+unit:KiloS
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Admittance ;
+  qudt:hasQuantityKind quantitykind:Conductance ;
+  qudt:iec61360Code "0112/2///62720#UAA578" ;
+  qudt:isScalingOf unit:S ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit siemens" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kS" ;
+  qudt:ucumCode "kS"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilosiemens"@en ;
+.
+unit:KiloS-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA579" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit siemens divided by the SI base unit metre" ;
+  qudt:symbol "kS/m" ;
+  qudt:ucumCode "kS.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilosiemens Per Meter"@en-us ;
+  rdfs:label "Kilosiemens Per Metre"@en ;
+.
+unit:KiloSEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Killosecond\" is an Imperial unit for  'Time' expressed as \\(ks\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Millisecond"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA647" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Millisecond?oldid=495102042"^^xsd:anyURI ;
+  qudt:isScalingOf unit:SEC ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "ks" ;
+  qudt:ucumCode "ks"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B52" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "kilosecond"@en ;
+.
+unit:KiloTONNE
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:exactMatch unit:KiloTON_Metric ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "kt" ;
+  qudt:uneceCommonCode "KTN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "KiloTonne"@en ;
+  owl:sameAs unit:KiloTON_Metric ;
+.
+unit:KiloTON_Metric
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:exactMatch unit:KiloTONNE ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB080" ;
+  qudt:plainTextDescription "1 000 000-fold of the SI base unit kilogram" ;
+  qudt:symbol "kton{short}" ;
+  qudt:ucumCode "kt"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KTN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Metric KiloTON"@en ;
+  owl:sameAs unit:KiloTONNE ;
+.
+unit:KiloV
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA580" ;
+  qudt:isScalingOf unit:V ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit volt" ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kV" ;
+  qudt:ucumCode "kV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KVT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilovolt"@en ;
+.
+unit:KiloV-A
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ComplexPower ;
+  qudt:iec61360Code "0112/2///62720#UAA581" ;
+  qudt:plainTextDescription "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere" ;
+  qudt:symbol "kV⋅A" ;
+  qudt:ucumCode "kV.A"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KVA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilovolt Ampere"@en ;
+.
+unit:KiloV-A-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB160" ;
+  qudt:plainTextDescription "product of the 1 000-fold of the unit for apparent by ampere and the unit hour" ;
+  qudt:symbol "kV⋅A/hr" ;
+  qudt:ucumCode "kV.A.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C79" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilovolt Ampere Hour"@en ;
+.
+unit:KiloV-A_Reactive
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ReactivePower ;
+  qudt:iec61360Code "0112/2///62720#UAA648" ;
+  qudt:plainTextDescription "1 000-fold of the unit var" ;
+  qudt:symbol "kV⋅A{Reactive}" ;
+  qudt:ucumCode "kV.A{reactive}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KVR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilovolt Ampere Reactive"@en ;
+.
+unit:KiloV-A_Reactive-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB195" ;
+  qudt:plainTextDescription "product of the 1 000-fold of the unit volt ampere reactive and the unit hour" ;
+  qudt:symbol "kV⋅A{Reactive}⋅hr" ;
+  qudt:ucumCode "kV.A.h{reactive}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K3" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilovolt Ampere Reactive Hour"@en ;
+.
+unit:KiloV-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA582" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit volt divided by the SI base unit metre" ;
+  qudt:symbol "kV/m" ;
+  qudt:ucumCode "kV.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilovolt Per Meter"@en-us ;
+  rdfs:label "Kilovolt Per Metre"@en ;
+.
+unit:KiloW
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(The kilowatt is a derived unit of power in the International System of Units (SI),  The unit, defined as 1,000 joule per second, measures the rate of energy conversion or transfer.\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Watt"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA583" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Watt?oldid=494906356"^^xsd:anyURI ;
+  qudt:isScalingOf unit:W ;
+  qudt:prefix prefix:Kilo ;
+  qudt:symbol "kW" ;
+  qudt:ucumCode "kW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KWT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilowatt"@en ;
+.
+unit:KiloW-HR
+  a qudt:Unit ;
+  dcterms:description "The kilowatt hour, or kilowatt-hour, (symbol \\(kW \\cdot h\\), \\(kW h\\) or \\(kWh\\)) is a unit of energy equal to 1000 watt hours or 3.6 megajoules. For constant power, energy in watt hours is the product of power in watts and time in hours. The kilowatt hour is most commonly known as a billing unit for energy delivered to consumers by electric utilities."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3600000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kilowatt_hour"^^xsd:anyURI ;
+  qudt:expression "\\(kW-h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kilowatt_hour?oldid=494927235"^^xsd:anyURI ;
+  qudt:symbol "kW⋅h" ;
+  qudt:ucumCode "kW.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KWH" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilowatthour"@en ;
+.
+unit:KiloW-HR-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier "3600000"^^xsd:double ;
+  qudt:conversionOffset "0"^^xsd:double ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:plainTextDescription "A unit of energy per unit area, equivalent to 3 600 000 joules per square metre." ;
+  qudt:symbol "kW⋅h/m²" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kilowatt hour per square metre"@en ;
+.
+unit:KiloWB-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticVectorPotential ;
+  qudt:iec61360Code "0112/2///62720#UAA585" ;
+  qudt:plainTextDescription "1 000-fold of the SI derived unit weber divided by the SI base unit metre" ;
+  qudt:symbol "kWb/m" ;
+  qudt:ucumCode "kWb.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kiloweber Per Meter"@en-us ;
+  rdfs:label "Kiloweber Per Metre"@en ;
+.
+unit:Kina
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Papua New Guinea"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kina"^^xsd:anyURI ;
+  qudt:expression "\\(PGK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kina?oldid=477155361"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kina"@en ;
+.
+unit:Kroon
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Estonia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Estonian_kroon"^^xsd:anyURI ;
+  qudt:expression "\\(EEK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Estonian_kroon?oldid=492626188"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kroon"@en ;
+.
+unit:KuwaitiDinar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kuwait"^^rdf:HTML ;
+  qudt:currencyExponent 3 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kuwaiti_dinar"^^xsd:anyURI ;
+  qudt:expression "\\(KWD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kuwaiti_dinar?oldid=489547428"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kuwaiti Dinar"@en ;
+.
+unit:Kwanza
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Angola"^^rdf:HTML ;
+  qudt:currencyExponent 1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Angolan_kwanza"^^xsd:anyURI ;
+  qudt:expression "\\(AOA\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Angolan_kwanza?oldid=491748749"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kwanza"@en ;
+.
+unit:Kyat
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Myanmar"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Myanma_kyat"^^xsd:anyURI ;
+  qudt:expression "\\(MMK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Myanma_kyat?oldid=441109905"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Kyat"@en ;
+.
+unit:L
+  a qudt:Unit ;
+  dcterms:description "The \\(litre\\) (American spelling: \\(\\textit{liter}\\); SI symbol \\(l\\) or \\(L\\)) is a non-SI metric system unit of volume equal to \\(1 \\textit{cubic decimetre}\\) (\\(dm^3\\)), 1,000 cubic centimetres (\\(cm^3\\)) or \\(1/1000 \\textit{cubic metre}\\). If the lower case \"L\" is used as the symbol, it is sometimes rendered as a cursive \"l\" to help distinguish it from the capital \"I\", although this usage has no official approval by any international bureau."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Litre"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Litre?oldid=494846400"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/litre> ;
+  qudt:symbol "L" ;
+  qudt:ucumCode "L"^^qudt:UCUMcs ;
+  qudt:ucumCode "l"^^qudt:UCUMcs ;
+  qudt:udunitsCode "L" ;
+  qudt:uneceCommonCode "LTR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter"@en-us ;
+  rdfs:label "Litre"@en ;
+  skos:altLabel "litre" ;
+.
+unit:L-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA652" ;
+  qudt:plainTextDescription "unit litre divided by the unit day" ;
+  qudt:symbol "L/day" ;
+  qudt:ucumCode "L.d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "LD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Day"@en-us ;
+  rdfs:label "Litre Per Day"@en ;
+.
+unit:L-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA655" ;
+  qudt:plainTextDescription "Unit litre divided by the unit hour" ;
+  qudt:symbol "L/hr" ;
+  qudt:ucumCode "L.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Hour"@en-us ;
+  rdfs:label "Litre Per Hour"@en ;
+.
+unit:L-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA650" ;
+  qudt:plainTextDescription "unit litre divided by the SI base unit kelvin" ;
+  qudt:symbol "L/K" ;
+  qudt:ucumCode "L.K-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Kelvin"@en-us ;
+  rdfs:label "Litre Per Kelvin"@en ;
+.
+unit:L-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:SpecificVolume ;
+  qudt:iec61360Code "0112/2///62720#UAB380" ;
+  qudt:plainTextDescription "unit of the volume litre divided by the SI base unit kilogram" ;
+  qudt:symbol "L/kg" ;
+  qudt:ucumCode "L.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H83" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Kilogram"@en-us ;
+  rdfs:label "Litre Per Kilogram"@en ;
+.
+unit:L-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA658" ;
+  qudt:plainTextDescription "volume ratio consisting of the unit litre divided by the unit litre" ;
+  qudt:symbol "L/L" ;
+  qudt:ucumCode "L.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Liter"@en-us ;
+  rdfs:label "Litre Per Litre"@en ;
+.
+unit:L-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA659" ;
+  qudt:plainTextDescription "unit litre divided by the unit minute" ;
+  qudt:symbol "L/min" ;
+  qudt:ucumCode "L.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L2" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Minute"@en-us ;
+  rdfs:label "Litre Per Minute"@en ;
+.
+unit:L-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarRefractivity ;
+  qudt:hasQuantityKind quantitykind:MolarVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA662" ;
+  qudt:plainTextDescription "unit litre divided by the SI base unit mol" ;
+  qudt:symbol "L/mol" ;
+  qudt:ucumCode "L.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Mole"@en-us ;
+  rdfs:label "Litre Per Mole"@en ;
+.
+unit:L-PER-MicroMOL
+  a qudt:Unit ;
+  dcterms:description "The inverse of a molar concentration - the untits of per molarity."@en ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarRefractivity ;
+  qudt:hasQuantityKind quantitykind:MolarVolume ;
+  qudt:symbol "L/µmol" ;
+  qudt:ucumCode "L.umol-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Litres per micromole"@en ;
+.
+unit:L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA664" ;
+  qudt:plainTextDescription "unit litre divided by the SI base unit second" ;
+  qudt:symbol "L/s" ;
+  qudt:ucumCode "L.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "L/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Second"@en-us ;
+  rdfs:label "Litre Per Second"@en ;
+.
+unit:L-PER-SEC-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VentilationRatePerFloorArea ;
+  qudt:plainTextDescription "Ventilation rate in Litres per second divided by the floor area" ;
+  qudt:symbol "L/(m²⋅s)" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liter Per Second Per Square Meter"@en-us ;
+  rdfs:label "Litre Per Second Per Square Metre"@en ;
+.
+unit:LA
+  a qudt:Unit ;
+  dcterms:description "The lambert (symbol \\(L\\), \\(la\\) or \\(Lb\\)) is a non-SI unit of luminance. A related unit of luminance, the foot-lambert, is used in the lighting, cinema and flight simulation industries. The SI unit is the candela per square metre (\\(cd/m^2\\))."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3183.09886 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lambert"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:CGS ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Luminance ;
+  qudt:iec61360Code "0112/2///62720#UAB259" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lambert?oldid=494078267"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/lambert> ;
+  qudt:symbol "L" ;
+  qudt:ucumCode "Lmb"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P30" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lambert"@en ;
+.
+unit:LB
+  a qudt:Unit ;
+  dcterms:description "A pound of mass, based on the international standard definition of the pound as exactly 0.45359237 kg."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.45359237 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "lbm" ;
+  qudt:ucumCode "[lb_av]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "lb" ;
+  qudt:uneceCommonCode "LBR" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mass"@en ;
+.
+unit:LB-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Pound Degree Fahrenheit} is an Imperial unit for 'Mass Temperature' expressed as \\(lb-degF\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassTemperature ;
+  qudt:symbol "lb⋅°F" ;
+  qudt:ucumCode "[lb_av].[degF]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Degree Fahrenheit"@en ;
+.
+unit:LB-DEG_R
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Pound Degree Rankine} is an Imperial unit for 'Mass Temperature' expressed as \\(lb-degR\\)."^^qudt:LatexString ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(lb-degR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassTemperature ;
+  qudt:symbol "lb⋅°R" ;
+  qudt:ucumCode "[lb_av].[degR]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Degree Rankine"@en ;
+.
+unit:LB-FT2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.04214011 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MomentOfInertia ;
+  qudt:iec61360Code "0112/2///62720#UAA671" ;
+  qudt:plainTextDescription "product of the unit pound according to the avoirdupois system of units and the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ;
+  qudt:symbol "lb⋅ft²" ;
+  qudt:ucumCode "[lb_av].[sft_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K65" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mass (avoirdupois) Square Foot"@en ;
+.
+unit:LB-IN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.011521246198 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthMass ;
+  qudt:iec61360Code "0112/2///62720#UAB194" ;
+  qudt:plainTextDescription "unit of the unbalance (product of avoirdupois pound according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units)" ;
+  qudt:symbol "lb⋅in" ;
+  qudt:ucumCode "[lb_av].[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "IA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mass (avoirdupois) Inch"@en ;
+.
+unit:LB-IN2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0002926397 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MomentOfInertia ;
+  qudt:iec61360Code "0112/2///62720#UAA672" ;
+  qudt:plainTextDescription "product of the unit pound according to the avoirdupois system of units and the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ;
+  qudt:symbol "lb⋅in²" ;
+  qudt:ucumCode "[lb_av].[sin_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mass (avoirdupois) Square Inch"@en ;
+.
+unit:LB-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "<p><strong>Pound Mole</strong> is a unit for \\textit{'Mass Amount Of Substance'} expressed as \\(lb-mol\\).</p>."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.45359237 ;
+  qudt:expression "\\(lb-mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassAmountOfSubstance ;
+  qudt:iec61360Code "0112/2///62720#UAB402" ;
+  qudt:symbol "lb⋅mol" ;
+  qudt:ucumCode "[lb_av].mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mole"@en ;
+.
+unit:LB-MOL-DEG_F
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Pound Mole Degree Fahrenheit} is a unit for 'Mass Amount Of Substance Temperature' expressed as \\(lb-mol-degF\\)."^^qudt:LatexString ;
+  qudt:expression "\\(lb-mol-degF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassAmountOfSubstanceTemperature ;
+  qudt:symbol "lb⋅mol⋅°F" ;
+  qudt:ucumCode "[lb_av].mol.[degF]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mole Degree Fahrenheit"@en ;
+.
+unit:LB-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000005249912 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA673" ;
+  qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit for time day" ;
+  qudt:symbol "lb/day" ;
+  qudt:ucumCode "[lb_av].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K66" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound (avoirdupois) Per Day"@en ;
+.
+unit:LB-PER-FT
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Foot\" is an Imperial unit for  'Mass Per Length' expressed as \\(lb/ft\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.4881639435695537 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/ft\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:symbol "lb/ft" ;
+  qudt:ucumCode "[lb_av].[ft_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P2" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Foot"@en ;
+.
+unit:LB-PER-FT-HR
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Foot Hour\" is an Imperial unit for  'Dynamic Viscosity' expressed as \\(lb/(ft-hr)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0004133788732137649 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/(ft-hr)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:symbol "lb/(ft⋅hr)" ;
+  qudt:ucumCode "[lb_av].[ft_i]-1.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K67" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Foot Hour"@en ;
+.
+unit:LB-PER-FT-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Foot Second\" is an Imperial unit for  'Dynamic Viscosity' expressed as \\(lb/(ft-s)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.4881639435695537 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/(ft-s)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:symbol "lb/(ft⋅s)" ;
+  qudt:ucumCode "[lb_av].[ft_i]-1.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K68" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Foot Second"@en ;
+.
+unit:LB-PER-FT2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4.882428 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB262" ;
+  qudt:plainTextDescription "unit for areal-related mass as a unit pound according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2" ;
+  qudt:symbol "lb/ft²" ;
+  qudt:ucumCode "[lb_av].[ft_i]-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FP" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Mass (avoirdupois) Per Square Foot"@en ;
+.
+unit:LB-PER-FT3
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Cubic Foot\" is an Imperial unit for  'Density' expressed as \\(lb/ft^{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 16.018463373960138 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/ft^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "lb/ft³" ;
+  qudt:ucumCode "[lb_av].[cft_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "87" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Cubic Foot"@en ;
+.
+unit:LB-PER-GAL
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Gallon\" is an Imperial unit for  'Density' expressed as \\(lb/gal\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 99.7763727 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/gal\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "lb/gal" ;
+  qudt:ucumCode "[lb_av].[gal_br]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Gallon"@en ;
+.
+unit:LB-PER-GAL_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 99.77637 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:iec61360Code "0112/2///62720#UAA679" ;
+  qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit gallon (UK) according to the Imperial system of units" ;
+  qudt:symbol "lb/gal{UK}" ;
+  qudt:ucumCode "[lb_av].[gal_br]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound (avoirdupois) Per Gallon (UK)"@en ;
+.
+unit:LB-PER-GAL_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:iec61360Code "0112/2///62720#UAA680" ;
+  qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system divided by the unit gallon (US, liq.) according to the Anglo-American system of units" ;
+  qudt:symbol "lb/gal{US}" ;
+  qudt:ucumCode "[lb_av].[gal_us]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound (avoirdupois) Per Gallon (US)"@en ;
+.
+unit:LB-PER-HR
+  a qudt:Unit ;
+  dcterms:description "Pound per hour is a mass flow unit. It is abbreviated as PPH or more conventionally as lb/h. Fuel flow for engines is usually expressed using this unit, it is particularly useful when dealing with gases or liquids as volume flow varies more with temperature and pressure. \\(1 lb/h = 0.4535927 kg/h = 126.00 mg/s\\).  Minimum fuel intake on a jumbojet can be as low as 150 lb/h when idling, however this is not enough to sustain flight."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00012599788055555556 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_per_hour"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(PPH\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_per_hour?oldid=328571072"^^xsd:anyURI ;
+  qudt:symbol "PPH" ;
+  qudt:ucumCode "[lb_av].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4U" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Hour"@en ;
+.
+unit:LB-PER-IN
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Inch\" is an Imperial unit for  'Mass Per Length' expressed as \\(lb/in\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 17.857967322834646 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/in\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:symbol "lb/in" ;
+  qudt:ucumCode "[lb_av].[in_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "PO" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Inch"@en ;
+.
+unit:LB-PER-IN2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:hasQuantityKind quantitykind:MeanMassRange ;
+  qudt:hasQuantityKind quantitykind:SurfaceDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB137" ;
+  qudt:plainTextDescription "unit of the areal-related mass as avoirdupois pound according to the avoirdupois system of units related to the area square inch according to the Anglo-American and Imperial system of units" ;
+  qudt:symbol "lb/in²" ;
+  qudt:ucumCode "[lb_av].[sin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "80" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound (avoirdupois) Per Square Inch"@en ;
+.
+unit:LB-PER-IN3
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Cubic Inch\" is an Imperial unit for  'Density' expressed as \\(lb/in^{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 27679.904710203125 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/in^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "lb/in³" ;
+  qudt:ucumCode "[lb_av].[cin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "LA" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Cubic Inch"@en ;
+.
+unit:LB-PER-M3
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Cubic Meter\" is a unit for  'Density' expressed as \\(lb/m^{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.45359237 ;
+  qudt:expression "\\(lb/m^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "lb/m³" ;
+  qudt:ucumCode "[lb_av].m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Cubic Meter"@en-us ;
+  rdfs:label "Pound per Cubic Metre"@en ;
+.
+unit:LB-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Minute\" is an Imperial unit for  'Mass Per Time' expressed as \\(lb/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.007559872833333333 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:symbol "lb/min" ;
+  qudt:ucumCode "[lb_av].min-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Minute"@en ;
+.
+unit:LB-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.4535924 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA692" ;
+  qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the SI base unit for time second" ;
+  qudt:symbol "lb/s" ;
+  qudt:ucumCode "[lb_av].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound (avoirdupois) Per Second"@en ;
+.
+unit:LB-PER-YD3
+  a qudt:Unit ;
+  dcterms:description "\"Pound per Cubic Yard\" is an Imperial unit for  'Density' expressed as \\(lb/yd^{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.5932764212577829 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lb/yd^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "lb/yd³" ;
+  qudt:ucumCode "[lb_av].[cyd_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K84" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound per Cubic Yard"@en ;
+.
+unit:LB_F
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force\" is an Imperial unit for  'Force' expressed as \\(lbf\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 4.448222 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pound-force"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pound-force?oldid=453191483"^^xsd:anyURI ;
+  qudt:symbol "lbf" ;
+  qudt:ucumCode "[lbf_av]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "lbf" ;
+  qudt:uneceCommonCode "C78" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force"@en ;
+.
+unit:LB_F-FT
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force Foot\" is an Imperial unit for  'Torque' expressed as \\(lbf-ft\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.35581807 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf-ft\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:symbol "lbf⋅ft" ;
+  qudt:ucumCode "[lbf_av].[ft_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M92" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Foot"@en ;
+.
+unit:LB_F-IN
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force Inch\" is an Imperial unit for  'Torque' expressed as \\(lbf-in\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.112984839 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf-in\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:symbol "lbf⋅in" ;
+  qudt:ucumCode "[lbf_av].[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F21" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Inch"@en ;
+.
+unit:LB_F-PER-FT
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force per Foot\" is an Imperial unit for  'Force Per Length' expressed as \\(lbf/ft\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 14.5939042 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf/ft\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:symbol "lbf/ft" ;
+  qudt:ucumCode "[lbf_av].[ft_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force per Foot"@en ;
+.
+unit:LB_F-PER-FT2
+  a qudt:Unit ;
+  dcterms:description "Pounds or Pounds Force per Square Foot is a British (Imperial) and American pressure unit which is directly related to the psi pressure unit by a factor of 144 (1 sq ft = 12 in x 12 in = 144 sq in). 1 Pound per Square Foot equals 47.8803 Pascals. The psf pressure unit is mostly for lower pressure applications such as specifying building structures to withstand a certain wind force or rating a building floor for maximum weight load."^^rdf:HTML ;
+  qudt:conversionMultiplier 47.8802631 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf/ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "lbf/ft²" ;
+  qudt:ucumCode "[lbf_av].[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force per Square Foot"@en ;
+.
+unit:LB_F-PER-IN
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force per Inch\" is an Imperial unit for  'Force Per Length' expressed as \\(lbf/in\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 175.12685 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf/in\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:symbol "lbf/in" ;
+  qudt:ucumCode "[lbf_av].[in_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force per Inch"@en ;
+.
+unit:LB_F-PER-IN2
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force per Square Inch\" is an Imperial unit for  'Force Per Area' expressed as \\(psia\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6894.75789 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pounds_per_square_inch"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:PSI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pounds_per_square_inch?oldid=485678341"^^xsd:anyURI ;
+  qudt:symbol "psia" ;
+  qudt:ucumCode "[lbf_av].[sin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "PS" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force per Square Inch"@en ;
+  owl:sameAs unit:PSI ;
+.
+unit:LB_F-PER-IN2-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 12410.56 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA702" ;
+  qudt:plainTextDescription "composed unit for pressure (pound-force per square inch) divided by the unit degree Fahrenheit for temperature" ;
+  qudt:symbol "lbf/(in²⋅°F)" ;
+  qudt:ucumCode "[lbf_av].[sin_i]-1.[degF]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Per Square Inch Degree Fahrenheit"@en ;
+.
+unit:LB_F-PER-IN2-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force per Square Inch Second\" is a unit for  'Force Per Area Time' expressed as \\(lbf / in^{2}-s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6894.75789 ;
+  qudt:expression "\\(lbf / in^{2}-s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:symbol "lbf/in²⋅s" ;
+  qudt:ucumCode "[lbf_av].[sin_i]-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force per Square Inch Second"@en ;
+.
+unit:LB_F-PER-LB
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force per Pound\" is an Imperial unit for  'Thrust To Mass Ratio' expressed as \\(lbf/lb\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 9.80665085 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf/lb\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThrustToMassRatio ;
+  qudt:symbol "lbf/lb" ;
+  qudt:ucumCode "[lbf_av].[lb_av]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force per Pound"@en ;
+.
+unit:LB_F-SEC-PER-FT2
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force Second per Square Foot\" is an Imperial unit for  'Dynamic Viscosity' expressed as \\(lbf-s/ft^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 47.8802631 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf-s/ft^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:symbol "lbf⋅s/ft²" ;
+  qudt:ucumCode "[lbf_av].s.[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Second per Square Foot"@en ;
+.
+unit:LB_F-SEC-PER-IN2
+  a qudt:Unit ;
+  dcterms:description "\"Pound Force Second per Square Inch\" is an Imperial unit for  'Dynamic Viscosity' expressed as \\(lbf-s/in^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6894.75789 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(lbf-s/in^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:symbol "lbf⋅s/in²" ;
+  qudt:ucumCode "[lbf_av].s.[sin_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Force Second per Square Inch"@en ;
+.
+unit:LB_T
+  a qudt:Unit ;
+  dcterms:description "An obsolete unit of mass; the Troy Pound has been defined as exactly 5760 grains, or 0.3732417216 kg. A Troy Ounce is 1/12th of a Troy Pound."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.3732417216 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "lbt" ;
+  qudt:ucumCode "[lb_tr]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "LBT" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Troy"@en ;
+.
+unit:LM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit for measuring the flux of light being produced by a light source or received by a surface. The intensity of a light source is measured in candelas. One lumen represents the total flux of light emitted, equal to the intensity in candelas multiplied by the solid angle in steradians into which the light is emitted. A full sphere has a solid angle of \\(4\\cdot\\pi\\) steradians. A light source that uniformly radiates one candela in all directions has a total luminous flux of \\(1 cd\\cdot 4 \\pi sr = 4 \\pi cd \\cdot sr \\approx 12.57 \\; \\text{lumens}\\). \"Lumen\" is a Latin word for light."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lumen"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousFlux ;
+  qudt:iec61360Code "0112/2///62720#UAA718" ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Lumen_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/lumen> ;
+  qudt:siUnitsExpression "cd.sr" ;
+  qudt:symbol "lm" ;
+  qudt:ucumCode "lm"^^qudt:UCUMcs ;
+  qudt:udunitsCode "LM" ;
+  qudt:uneceCommonCode "LUM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "lumen"@en ;
+.
+unit:LM-PER-W
+  a qudt:Unit ;
+  dcterms:description "A measurement of luminous efficacy, which is the light output in lumens using one watt of electricity."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(lm-per-w\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:LuminousEfficacy ;
+  qudt:hasQuantityKind quantitykind:SpectralLuminousEfficiency ;
+  qudt:iec61360Code "0112/2///62720#UAA719" ;
+  qudt:symbol "lm/W" ;
+  qudt:ucumCode "lm.W-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lumen per Watt"@en ;
+.
+unit:LM-SEC
+  a qudt:Unit ;
+  dcterms:description "In photometry, the lumen second is the SI derived unit of luminous energy. It is based on the lumen, the SI unit of luminous flux, and the second, the SI base unit of time.  The lumen second is sometimes called the talbot (symbol T).  An older name for the lumen second was the lumberg."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(lm s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA722" ;
+  qudt:symbol "lm⋅s" ;
+  qudt:ucumCode "lm.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "lumen second"@en ;
+  skos:altLabel "lumberg" ;
+  skos:altLabel "talbot" ;
+.
+unit:LUX
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit for measuring the illumination (illuminance) of a surface. One lux is defined as an illumination of one lumen per square meter or 0.0001 phot. In considering the various light units, it's useful to think about light originating at a point and shining upon a surface. The intensity of the light source is measured in candelas; the total light flux in transit is measured in lumens (1 lumen = 1 candelau00b7steradian); and the amount of light received per unit of surface area is measured in lux (1 lux = 1 lumen/square meter). One lux is equal to approximately 0.09290 foot candle."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lux"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousFluxPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA723" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lux?oldid=494700274"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/lux> ;
+  qudt:siUnitsExpression "lm/m^2" ;
+  qudt:symbol "lx" ;
+  qudt:ucumCode "lx"^^qudt:UCUMcs ;
+  qudt:udunitsCode "lx" ;
+  qudt:uneceCommonCode "LUX" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lux"@en ;
+.
+unit:LUX-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit for measuring the illumination (illuminance) of a surface. One lux is defined as an illumination of one lumen per square meter or 0.0001 phot. In considering the various light units, it's useful to think about light originating at a point and shining upon a surface. The intensity of the light source is measured in candelas; the total light flux in transit is measured in lumens (1 lumen = 1 candelau00b7steradian); and the amount of light received per unit of surface area is measured in lux (1 lux = 1 lumen/square meter). One lux is equal to approximately 0.09290 foot candle."^^rdf:HTML ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lux"^^xsd:anyURI ;
+  qudt:expression "\\(lx hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousExposure ;
+  qudt:iec61360Code "0112/2///62720#UAA724" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lux?oldid=494700274"^^xsd:anyURI ;
+  qudt:siUnitsExpression "lm-hr/m^2" ;
+  qudt:symbol "lx⋅hr" ;
+  qudt:ucumCode "lx.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lux Hour"@en ;
+.
+unit:LY
+  a qudt:Unit ;
+  dcterms:description "A unit of length defining the distance, in meters, that light travels in a vacuum in one year."^^rdf:HTML ;
+  qudt:conversionMultiplier 9460730472580800.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Light-year"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB069" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Light-year?oldid=495083584"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear> ;
+  qudt:symbol "ly" ;
+  qudt:ucumCode "[ly]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B57" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Light Year"@en ;
+.
+unit:LaoKip
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Laos"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:symbol " ₭" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lao kip"@en ;
+.
+unit:Lari
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Georgia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lari"^^xsd:anyURI ;
+  qudt:expression "\\(GEL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lari?oldid=486808394"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lari"@en ;
+.
+unit:LatvianLats
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Latvia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Latvian_lats"^^xsd:anyURI ;
+  qudt:expression "\\(LVL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Latvian_lats?oldid=492800402"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Latvian Lats"@en ;
+.
+unit:LebanesePound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Lebanon"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lebanese_pound"^^xsd:anyURI ;
+  qudt:expression "\\(LBP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lebanese_pound?oldid=495528740"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lebanese Pound"@en ;
+.
+unit:Lek
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Albania"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lek"^^xsd:anyURI ;
+  qudt:expression "\\(ALL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lek?oldid=495195665"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lek"@en ;
+.
+unit:Lempira
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Honduras"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lempira"^^xsd:anyURI ;
+  qudt:expression "\\(HNL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lempira?oldid=389955747"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lempira"@en ;
+.
+unit:Leone
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Sierra Leone"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Sierra_Leonean_leone"^^xsd:anyURI ;
+  qudt:expression "\\(SLL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sierra_Leonean_leone?oldid=493517965"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Leone"@en ;
+.
+unit:LiberianDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Liberia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Liberian_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(LRD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Liberian_dollar?oldid=489549110"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Liberian Dollar"@en ;
+.
+unit:LibyanDinar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Libya"^^rdf:HTML ;
+  qudt:currencyExponent 3 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Libyan_dinar"^^xsd:anyURI ;
+  qudt:expression "\\(LYD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Libyan_dinar?oldid=491421981"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Libyan Dinar"@en ;
+.
+unit:Lilangeni
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Swaziland"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Swazi_lilangeni"^^xsd:anyURI ;
+  qudt:expression "\\(SZL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Swazi_lilangeni?oldid=490323340"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lilangeni"@en ;
+.
+unit:LithuanianLitas
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Lithuania"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Lithuanian_litas"^^xsd:anyURI ;
+  qudt:expression "\\(LTL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Lithuanian_litas?oldid=493046592"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lithuanian Litas"@en ;
+.
+unit:Loti
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Lesotho"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Loti"^^xsd:anyURI ;
+  qudt:expression "\\(LSL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Loti?oldid=384534708"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Loti"@en ;
+.
+unit:LunarMass
+  a qudt:Unit ;
+  qudt:conversionMultiplier 73460000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Moon"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Moon?oldid=494566371"^^xsd:anyURI ;
+  qudt:symbol "M☾" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Lunar mass"@en ;
+.
+unit:M
+  a qudt:Unit ;
+  dcterms:description "The metric and SI base unit of distance.  The 17th General Conference on Weights and Measures in 1983 defined the meter as that distance that makes the speed of light in a vacuum equal to exactly 299 792 458 meters per second. The speed of light in a vacuum, \\(c\\), is one of the fundamental constants of nature. The meter is equal to approximately 1.093 613 3 yards, 3.280 840 feet, or 39.370 079 inches."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:CGS-EMU ;
+  qudt:allowedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Metre"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA726" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Metre?oldid=495145797"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/metre> ;
+  qudt:plainTextDescription "The metric and SI base unit of distance.   The meter is equal to approximately 1.093 613 3 yards, 3.280 840 feet, or 39.370 079 inches." ;
+  qudt:symbol "m" ;
+  qudt:ucumCode "m"^^qudt:UCUMcs ;
+  qudt:udunitsCode "m" ;
+  qudt:uneceCommonCode "MTR" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter"@en-us ;
+  rdfs:label "Metre"@en ;
+.
+unit:M-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Meter Kelvin} is a unit for 'Length Temperature' expressed as \\(m K\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthTemperature ;
+  qudt:iec61360Code "0112/2///62720#UAB170" ;
+  qudt:symbol "m⋅K" ;
+  qudt:ucumCode "m.K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter Kelvin"@en-us ;
+  rdfs:label "Metre Kelvin"@en ;
+.
+unit:M-K-PER-W
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Meter Kelvin per Watt} is a unit for 'Thermal Resistivity' expressed as \\(K-m/W\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(K-m/W\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalResistivity ;
+  qudt:symbol "K⋅m/W" ;
+  qudt:ucumCode "m.K.W-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter Kelvin per Watt"@en-us ;
+  rdfs:label "Metre Kelvin per Watt"@en ;
+.
+unit:M-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m-kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthMass ;
+  qudt:symbol "m⋅kg" ;
+  qudt:ucumCode "m.kg"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter Kilogram"@en-us ;
+  rdfs:label "Metre Kilogram"@en ;
+.
+unit:M-PER-FARAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m-per-f\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-4D0 ;
+  qudt:hasQuantityKind quantitykind:InversePermittivity ;
+  qudt:symbol "m/f" ;
+  qudt:ucumCode "m.F-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter per Farad"@en-us ;
+  rdfs:label "Metre per Farad"@en ;
+.
+unit:M-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Metre per hour is a metric unit of both speed (scalar) and velocity (Vector (geometry)). Its symbol is m/h or mu00b7h-1 (not to be confused with the imperial unit symbol mph. By definition, an object travelling at a speed of 1 m/h for an hour would move 1 metre."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000277777778 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:expression "\\(m/h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAB328" ;
+  qudt:symbol "m/h" ;
+  qudt:ucumCode "m.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M60" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter per Hour"@en-us ;
+  rdfs:label "Metre per Hour"@en ;
+.
+unit:M-PER-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m-per-k\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA728" ;
+  qudt:symbol "m/k" ;
+  qudt:ucumCode "m/K"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter per Kelvin"@en-us ;
+  rdfs:label "Metre per Kelvin"@en ;
+.
+unit:M-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Meter Per Minute (m/min) is a unit in the category of Velocity. It is also known as meter/minute, meters per minute, metre per minute, metres per minute. Meter Per Minute (m/min) has a dimension of LT-1 where L is length, and T is time. It can be converted to the corresponding standard SI unit m/s by multiplying its value by a factor of 0.016666666666"^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0166666667 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:expression "\\(m/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA732" ;
+  qudt:symbol "m/min" ;
+  qudt:ucumCode "m.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2X" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter per Minute"@en-us ;
+  rdfs:label "Metre per Minute"@en ;
+.
+unit:M-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description """Metre per second is an SI derived unit of both speed (scalar) and velocity (vector quantity which specifies both magnitude and a specific direction), defined by distance in metres divided by time in seconds.
+The official SI symbolic abbreviation is mu00b7s-1, or equivalently either m/s."""^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA733" ;
+  qudt:symbol "m/s" ;
+  qudt:ucumCode "m.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MTS" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter per Second"@en-us ;
+  rdfs:label "Metre per Second"@en ;
+.
+unit:M-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The \\(\\textit{meter per Square second}\\) is the unit of acceleration in the International System of Units (SI). As a derived unit it is composed from the SI base units of length, the metre, and the standard unit of time, the second. Its symbol is written in several forms as \\(m/s^2\\), or \\(m s^{-2}\\). As acceleration, the unit is interpreted physically as change in velocity or speed per time interval, that is, \\(\\textit{metre per second per second}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m/s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:iec61360Code "0112/2///62720#UAA736" ;
+  qudt:symbol "m/s²" ;
+  qudt:ucumCode "m.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "m/s2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MSK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meter per Square Second"@en-us ;
+  rdfs:label "Metre per Square Second"@en ;
+.
+unit:M-PER-YR
+  a qudt:Unit ;
+  dcterms:description "A rate of change of SI standard unit length over a period of an average calendar year (365.25 days)."@en ;
+  qudt:conversionMultiplier 0.0000000316880878140289 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:symbol "m/yr" ;
+  qudt:ucumCode "m.a-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Metres per year"@en ;
+.
+unit:M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The S I unit of area is the square metre."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Square_metre"^^xsd:anyURI ;
+  qudt:expression "\\(sq-m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:hasQuantityKind quantitykind:NuclearQuadrupoleMoment ;
+  qudt:iec61360Code "0112/2///62720#UAA744" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Square_metre?oldid=490945508"^^xsd:anyURI ;
+  qudt:symbol "m²" ;
+  qudt:ucumCode "m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MTK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter"@en-us ;
+  rdfs:label "Square Metre"@en ;
+.
+unit:M2-HR-DEG_C-PER-KiloCAL_IT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.859845 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalInsulance ;
+  qudt:iec61360Code "0112/2///62720#UAA749" ;
+  qudt:plainTextDescription "product of the power of the SI base unit metre with the exponent 2, of the unit hour for time and the unit degree Celsius for temperature divided by the 1000-fold of the out of use unit for energy international calorie" ;
+  qudt:symbol "m²⋅hr⋅°C/kcal{IT}" ;
+  qudt:ucumCode "m2.h.Cel/kcal_IT"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter Hour Degree Celsius Per Kilocalorie (international Table)"@en-us ;
+  rdfs:label "Square Metre Hour Degree Celsius Per Kilocalorie (international Table)"@en ;
+.
+unit:M2-HZ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:symbol "m²⋅Hz" ;
+  qudt:ucumCode "m2.Hz"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres Hertz"@en ;
+.
+unit:M2-HZ2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:symbol "m²⋅Hz²" ;
+  qudt:ucumCode "m2.Hz2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Metres square Hertz"@en ;
+.
+unit:M2-HZ3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ;
+  qudt:symbol "m²⋅Hz³" ;
+  qudt:ucumCode "m2.Hz3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres cubic Hertz"@en ;
+.
+unit:M2-HZ4
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-4D0 ;
+  qudt:symbol "m²⋅Hz⁴" ;
+  qudt:ucumCode "m2.Hz4"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres Hertz^4"@en ;
+.
+unit:M2-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Meter Kelvin} is a unit for 'Area Temperature' expressed as \\(m^{2}-K\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{2}-K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTemperature ;
+  qudt:symbol "m²⋅K" ;
+  qudt:ucumCode "m2.K"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter Kelvin"@en-us ;
+  rdfs:label "Square Metre Kelvin"@en ;
+.
+unit:M2-K-PER-W
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Square Meter Kelvin per Watt} is a unit for 'Thermal Insulance' expressed as \\((K^{2})m/W\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\((K^{2})m/W\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalInsulance ;
+  qudt:iec61360Code "0112/2///62720#UAA746" ;
+  qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ;
+  qudt:symbol "(K²)m/W" ;
+  qudt:ucumCode "m2.K.W-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter Kelvin per Watt"@en-us ;
+  rdfs:label "Square Metre Kelvin per Watt"@en ;
+.
+unit:M2-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ;
+  qudt:symbol "m²/g" ;
+  qudt:ucumCode "m2.g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres per gram"@en ;
+.
+unit:M2-PER-GM_DRY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ;
+  qudt:symbol "m²/g{dry sediment}" ;
+  qudt:ucumCode "m2.g-1{dry}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres per gram of dry sediment"@en ;
+.
+unit:M2-PER-HA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:AreaRatio ;
+  qudt:plainTextDescription "Square metres per hectare." ;
+  qudt:symbol "m²/ha" ;
+  qudt:ucumCode "m2.har-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "square meters per hectare"@en-us ;
+  rdfs:label "square metres per hectare"@en ;
+.
+unit:M2-PER-HZ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:symbol "m²/Hz" ;
+  qudt:ucumCode "m2.Hz-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres per Hertz"@en ;
+.
+unit:M2-PER-HZ-DEG
+  a qudt:Unit ;
+  qudt:conversionMultiplier 57.2957795130823 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:symbol "m²/(Hz⋅°)" ;
+  qudt:ucumCode "m2.Hz-1.deg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres per Hertz per degree"@en ;
+.
+unit:M2-PER-HZ2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T2D0 ;
+  qudt:symbol "m²/Hz²" ;
+  qudt:ucumCode "m2.Hz-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres per square Hertz"@en ;
+.
+unit:M2-PER-J
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
+  qudt:expression "\\(m^2/j\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:SpectralCrossSection ;
+  qudt:iec61360Code "0112/2///62720#UAA745" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "m²/j" ;
+  qudt:ucumCode "m2.J-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Joule"@en-us ;
+  rdfs:label "Square Metre per Joule"@en ;
+.
+unit:M2-PER-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m2-per-k\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:AreaThermalExpansion ;
+  qudt:symbol "m²/k" ;
+  qudt:ucumCode "m2.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Kelvin"@en-us ;
+  rdfs:label "Square Metre per Kelvin"@en ;
+.
+unit:M2-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Square Meter Per Kilogram (m2/kg) is a unit in the category of Specific Area. It is also known as square meters per kilogram, square metre per kilogram, square metres per kilogram, square meter/kilogram, square metre/kilogram. This unit is commonly used in the SI unit system. Square Meter Per Kilogram (m2/kg) has a dimension of M-1L2 where M is mass, and L is length. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^2/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:MassEnergyTransferCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA750" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "m²/kg" ;
+  qudt:ucumCode "m2.kg-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Kilogram"@en-us ;
+  rdfs:label "Square Metre per Kilogram"@en ;
+.
+unit:M2-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier "1"^^xsd:double ;
+  qudt:conversionOffset "0.0"^^xsd:double ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:AreaRatio ;
+  qudt:plainTextDescription "A square metre unit of area per square metre" ;
+  qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:symbol "m²/m²" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "square meter per square meter"@en-us ;
+  rdfs:label "square metre per square metre"@en ;
+.
+unit:M2-PER-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Square Meter Per Mole (m2/mol) is a unit in the category of Specific Area. It is also known as square meters per mole, square metre per per, square metres per per, square meter/per, square metre/per. This unit is commonly used in the SI unit system. Square Meter Per Mole (m2/mol) has a dimension of M-1L2 where M is mass, and L is length. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^2/mol\\)"^^qudt:LatexString ;
+  qudt:expression "\\(m^{2}/mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:MolarAttenuationCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA751" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "m²/mol" ;
+  qudt:ucumCode "m2.mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Mole"@en-us ;
+  rdfs:label "Square Metre per Mole"@en ;
+.
+unit:M2-PER-N
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:Compressibility ;
+  qudt:iec61360Code "0112/2///62720#UAB492" ;
+  qudt:plainTextDescription "power of the SI base unit metre with the exponent 2 divided by the derived SI unit newton" ;
+  qudt:symbol "m²/N" ;
+  qudt:ucumCode "m2.N-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H59" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter Per Newton"@en-us ;
+  rdfs:label "Square Metre Per Newton"@en ;
+.
+unit:M2-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(Square Metres per second is the SI derived unit of angular momentum, defined by distance or displacement in metres multiplied by distance again in metres and divided by time in seconds. The unit is written in symbols as m2/s or m2u00b7s-1 or m2s-1. It may be better understood when phrased as \"metres per second times metres\", i.e. the momentum of an object with respect to a position.\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{2} s^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:hasQuantityKind quantitykind:DiffusionCoefficient ;
+  qudt:hasQuantityKind quantitykind:NeutronDiffusionCoefficient ;
+  qudt:hasQuantityKind quantitykind:ThermalDiffusionRatioCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA752" ;
+  qudt:symbol "m²/s" ;
+  qudt:ucumCode "m2.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m2/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "S4" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Second"@en-us ;
+  rdfs:label "Square Metre per Second"@en ;
+.
+unit:M2-PER-SEC2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:symbol "m²/s²" ;
+  qudt:ucumCode "m2.s-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metres per square second"@en ;
+.
+unit:M2-PER-SR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
+  qudt:expression "\\(m^2/sr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularCrossSection ;
+  qudt:iec61360Code "0112/2///62720#UAA986" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Steradian?oldid=494317847"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "m²/sr" ;
+  qudt:ucumCode "m2.sr-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Steradian"@en-us ;
+  rdfs:label "Square Metre per Steradian"@en ;
+.
+unit:M2-PER-SR-J
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
+  qudt:expression "\\(m^2/sr-j\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:SpectralAngularCrossSection ;
+  qudt:iec61360Code "0112/2///62720#UAA756" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "m²/(sr⋅J)" ;
+  qudt:ucumCode "m2.sr-1.J-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D25" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Steradian Joule"@en-us ;
+  rdfs:label "Square Metre per Steradian Joule"@en ;
+.
+unit:M2-PER-V-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^2/v-s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Mobility ;
+  qudt:iec61360Code "0112/2///62720#UAA748" ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "m²/(V⋅s)" ;
+  qudt:ucumCode "m2.V-1.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D26" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter per Volt Second"@en-us ;
+  rdfs:label "Square Metre per Volt Second"@en ;
+.
+unit:M2-SEC-PER-RAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:symbol "m²⋅s/rad" ;
+  qudt:ucumCode "m2.s.rad-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square metre seconds per radian"@en ;
+.
+unit:M2-SR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Square Meter Steradian\" is a unit for  'Area Angle' expressed as \\(m^{2}-sr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{2}-sr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AreaAngle ;
+  qudt:symbol "m²⋅sr" ;
+  qudt:ucumCode "m2.sr"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Meter Steradian"@en-us ;
+  rdfs:label "Square Metre Steradian"@en ;
+.
+unit:M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of volume, equal to 1.0e6 cm3, 1000 liters, 35.3147 ft3, or 1.30795 yd3. A cubic meter holds about 264.17 U.S. liquid gallons or 219.99 British Imperial gallons."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Cubic_metre"^^xsd:anyURI ;
+  qudt:expression "\\(m^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SectionModulus ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA757" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Cubic_metre?oldid=490956678"^^xsd:anyURI ;
+  qudt:symbol "m³" ;
+  qudt:ucumCode "m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MTQ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter"@en-us ;
+  rdfs:label "Cubic Metre"@en ;
+.
+unit:M3-PER-C
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^3/c\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:HallCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAB143" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "m³/C" ;
+  qudt:ucumCode "m3.C-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Coulomb"@en-us ;
+  rdfs:label "Cubic Metre per Coulomb"@en ;
+.
+unit:M3-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA760" ;
+  qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit day" ;
+  qudt:symbol "m³/day" ;
+  qudt:ucumCode "m3.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter Per Day"@en-us ;
+  rdfs:label "Cubic Metre Per Day"@en ;
+.
+unit:M3-PER-HA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumePerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA757" ;
+  qudt:symbol "m^3/ha" ;
+  qudt:ucumCode "m3.har-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Hectare"@en-us ;
+  rdfs:label "Cubic Metre per Hectare"@en ;
+.
+unit:M3-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cubic Meter Per Hour (m3/h) is a unit in the category of Volume flow rate. It is also known as cubic meters per hour, cubic metre per hour, cubic metres per hour, cubic meter/hour, cubic metre/hour, cubic meter/hr, cubic metre/hr, flowrate. Cubic Meter Per Hour (m3/h) has a dimension of L3T-1 where L is length, and T is time. It can be converted to the corresponding standard SI unit m3/s by multiplying its value by a factor of 0.00027777777."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.0002777777777777778 ;
+  qudt:expression "\\(m^{3}/h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:iec61360Code "0112/2///62720#UAA763" ;
+  qudt:symbol "m³/hr" ;
+  qudt:ucumCode "m3.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MQH" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Hour"@en-us ;
+  rdfs:label "Cubic Metre per Hour"@en ;
+.
+unit:M3-PER-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m3-per-k\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA758" ;
+  qudt:symbol "m³/K" ;
+  qudt:ucumCode "m3.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Kelvin"@en-us ;
+  rdfs:label "Cubic Metre per Kelvin"@en ;
+.
+unit:M3-PER-KiloGM
+  a qudt:Unit ;
+  dcterms:description "Cubic Meter Per Kilogram (m3/kg) is a unit in the category of Specific volume. It is also known as cubic meters per kilogram, cubic metre per kilogram, cubic metres per kilogram, cubic meter/kilogram, cubic metre/kilogram. This unit is commonly used in the SI unit system. Cubic Meter Per Kilogram (m3/kg) has a dimension of M-1L3 where M is mass, and L is length. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{3}/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA766" ;
+  qudt:symbol "m³/kg" ;
+  qudt:ucumCode "m3.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Kilogram"@en-us ;
+  rdfs:label "Cubic Metre per Kilogram"@en ;
+.
+unit:M3-PER-KiloGM-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{3} kg^{-1} s^{-2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T-2D0 ;
+  qudt:symbol "m³/(kg⋅s²)" ;
+  qudt:ucumCode "m3.(kg.s2)-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3.kg-1.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3/(kg.s2)"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Kilogram Square Second"@en-us ;
+  rdfs:label "Cubic Metre per Kilogram Square Second"@en ;
+.
+unit:M3-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA767" ;
+  qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "m³/m³" ;
+  qudt:ucumCode "m3.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H60" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter Per Cubic Meter"@en-us ;
+  rdfs:label "Cubic Metre Per Cubic Metre"@en ;
+.
+unit:M3-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA768" ;
+  qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit minute" ;
+  qudt:symbol "m³/min" ;
+  qudt:ucumCode "m3.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter Per Minute"@en-us ;
+  rdfs:label "Cubic Metre Per Minute"@en ;
+.
+unit:M3-PER-MOL
+  a qudt:Unit ;
+  dcterms:description "<p>The molar volume, symbol \\(Vm\\), is the volume occupied by one mole of a substance (chemical element or chemical compound) at a given temperature and pressure. It is equal to the molar mass (M) divided by the mass density. It has the SI unit cubic metres per mole \\(m3/mol\\), although it is more practical to use the units cubic decimetres per mole \\(dm3/mol\\) for gases and cubic centimetres per mole \\(cm3/mol\\) for liquids and solids</p>."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{3} mol^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarRefractivity ;
+  qudt:hasQuantityKind quantitykind:MolarVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA771" ;
+  qudt:symbol "m³/mol" ;
+  qudt:ucumCode "m3.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3/mol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "A40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Mole"@en-us ;
+  rdfs:label "Cubic Metre per Mole"@en ;
+.
+unit:M3-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A cubic metre per second (\\(m^{3}s^{-1}, m^{3}/s\\)), cumecs or cubic meter per second in American English) is a derived SI unit of flow rate equal to that of a stere or cube with sides of one metre ( u0303 39.37 in) in length exchanged or moving each second. It is popularly used for water flow, especially in rivers and streams, and fractions for HVAC values measuring air flow."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(m^{3}/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:RecombinationCoefficient ;
+  qudt:hasQuantityKind quantitykind:SoundVolumeVelocity ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:iec61360Code "0112/2///62720#UAA772" ;
+  qudt:symbol "m³/s" ;
+  qudt:ucumCode "m3.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MQS" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Second"@en-us ;
+  rdfs:label "Cubic Metre per Second"@en ;
+.
+unit:M3-PER-SEC2
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Cubic Meter per Square Second}\\) is a C.G.S System unit for  \\(\\textit{Standard Gravitational Parameter}\\) expressed as \\(m^3/s^2\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^3/s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:StandardGravitationalParameter ;
+  qudt:symbol "m³/s²" ;
+  qudt:ucumCode "m3.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "m3/s2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Meter per Square Second"@en-us ;
+  rdfs:label "Cubic Metre per Square Second"@en ;
+.
+unit:M4
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit associated with area moments of inertia."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Quartic_metre"^^xsd:anyURI ;
+  qudt:expression "\\(m^{4}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ;
+  qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ;
+  qudt:symbol "m⁴" ;
+  qudt:ucumCode "m4"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B83" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quartic Meter"@en-us ;
+  rdfs:label "Quartic Metre"@en ;
+.
+unit:M4-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-1D0 ;
+  qudt:symbol "m⁴/s" ;
+  qudt:ucumCode "m4.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Metres to the power four per second"@en ;
+.
+unit:MACH
+  a qudt:DimensionlessUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Mach\" is a unit for  'Dimensionless Ratio' expressed as \\(mach\\)."^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mach"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MachNumber ;
+  qudt:iec61360Code "0112/2///62720#UAB595" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mach?oldid=492058934"^^xsd:anyURI ;
+  qudt:symbol "Mach" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mach"@en ;
+.
+unit:MDOLLAR-PER-FLIGHT
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(\\(M\\$/Flight\\)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:CurrencyPerFlight ;
+  qudt:symbol "$M/flight" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Million US Dollars per Flight"@en ;
+.
+unit:MESH
+  a qudt:Unit ;
+  dcterms:description "\"Mesh\" is a measure of particle size or fineness of a woven product."@en ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Mesh_(scale)"^^xsd:anyURI ;
+  qudt:ucumCode "[mesh_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "57" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mesh"@en ;
+.
+unit:MHO
+  a qudt:Unit ;
+  dcterms:description "\"Mho\" is a C.G.S System unit for  'Electric Conductivity' expressed as \\(mho\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Siemens_%28unit%29"^^xsd:anyURI ;
+  qudt:exactMatch unit:S ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAB200" ;
+  qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/mho> ;
+  qudt:symbol "℧" ;
+  qudt:ucumCode "mho"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "NQ" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mho"@en ;
+  owl:sameAs unit:S ;
+.
+unit:MHO_Stat
+  a qudt:Unit ;
+  dcterms:description "\"StatMHO\" is the unit of conductance, admittance, and susceptance in the C.G.S e.s.u system of units. One \\(statmho\\) is the conductance between two points in a conductor when a constant potential difference of \\(1 \\; statvolt\\) applied between the points produces in the conductor a current of \\(1 \\; statampere\\), the conductor not being the source of any electromotive force, approximately \\(1.1126 \\times 10^{-12} mho\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000011126 ;
+  qudt:exactMatch unit:S_Stat ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricConductivity ;
+  qudt:informativeReference "http://www.sizes.com/units/statmho.htm"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statmho> ;
+  qudt:symbol "stat℧" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statmho"@en ;
+  owl:sameAs unit:S_Stat ;
+.
+unit:MI
+  a qudt:Unit ;
+  dcterms:description "The exact length of the land mile varied slightly among English-speaking countries until the international yard and pound agreement in 1959 established the yard as exactly 0.9144 metres, giving a mile of exactly 1,609.344 metres. The United States adopted this international mile for most purposes, but retained the pre-1959 mile for some land-survey data, terming it the US survey mile. In the US, statute mile formally refers to the survey mile, about 3.219 mm (1/8 inch) longer than the international mile (the international mile is exactly 0.0002% less than the US survey mile)."^^rdf:HTML ;
+  qudt:conversionMultiplier 1609.344 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mile"^^xsd:anyURI ;
+  qudt:symbol "mi" ;
+  qudt:ucumCode "[mi_i]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "mi" ;
+  qudt:uneceCommonCode "SMI" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "International Mile"@en ;
+.
+unit:MI-PER-HR
+  a qudt:Unit ;
+  dcterms:description "Miles per hour is an imperial unit of speed expressing the number of statute miles covered in one hour. It is currently the standard unit used for speed limits, and to express speeds generally, on roads in the United Kingdom and the United States. A common abbreviation is mph or MPH."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.44704 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Miles_per_hour"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(mi/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAB111" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Miles_per_hour?oldid=482840548"^^xsd:anyURI ;
+  qudt:symbol "mi/hr" ;
+  qudt:ucumCode "[mi_i].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[mi_i]/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HM" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mile per Hour"@en ;
+.
+unit:MI-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "Miles per minute is an imperial unit of speed expressing the number of statute miles covered in one minute."^^rdf:HTML ;
+  qudt:conversionMultiplier 26.8224 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(mi/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAB229" ;
+  qudt:symbol "mi/min" ;
+  qudt:ucumCode "[mi_i].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[mi_i]/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M57" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mile per Minute"@en ;
+.
+unit:MI2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The square mile (abbreviated as sq mi and sometimes as mi) is an imperial and US unit of measure for an area equal to the area of a square of one statute mile. It should not be confused with miles square, which refers to the number of miles on each side squared. For instance, 20 miles square (20 × 20 miles) is equal to 400 square miles. One square mile is equivalent to: 4,014,489,600 square inches 27,878,400 square feet, 3,097,600 square yards, 640 acres, 258.9988110336 hectares, 2560 roods, 25,899,881,103.36 square centimetres, 2,589,988.110336 square metres, 2.589988110336 square kilometres When applied to a portion of the earth's surface, which is curved rather than flat, 'square mile' is an informal synonym for section."^^rdf:HTML ;
+  qudt:conversionMultiplier 2589988.11 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(square-mile\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAB050" ;
+  qudt:symbol "mi²" ;
+  qudt:ucumCode "[mi_i]2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[mi_us]2"^^qudt:UCUMcs ;
+  qudt:ucumCode "[smi_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MIK" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Mile"@en ;
+.
+unit:MI3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A cubic mile is an imperial / U.S. customary unit of volume, used in the United States, Canada, and the United Kingdom. It is defined as the volume of a cube with sides of 1 mile in length. "^^rdf:HTML ;
+  qudt:conversionMultiplier 4168181830.0 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(mi^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:symbol "mi³" ;
+  qudt:ucumCode "[mi_i]3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M69" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Mile"@en ;
+.
+unit:MIL
+  a qudt:Unit ;
+  dcterms:description "The Mil unit of plane angle, as defined by NATO to be 1/6400 of a circle."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000490873852 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:symbol "mil{NATO}" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mil Angle (NATO)"@en ;
+.
+unit:MIL_Circ
+  a qudt:Unit ;
+  dcterms:description "A circular mil is a unit of area, equal to the area of a circle with a diameter of one mil (one thousandth of an inch). It is a convenient unit for referring to the area of a wire with a circular cross section, because the area in circular mils can be calculated without reference to pi (\\(\\pi\\)). The area in circular mils, A, of a circle with a diameter of d mils, is given by the formula: Electricians in Canada and the United States are familiar with the circular mil because the National Electrical Code (NEC) uses the circular mil to define wire sizes larger than 0000 AWG. In many NEC publications and uses, large wires may be expressed in thousands of circular mils, which is abbreviated in two different ways: MCM or kcmil. For example, one common wire size used in the NEC has a cross-section of 250,000 circular mils, written as 250 kcmil or 250 MCM, which is the first size larger than 0000 AWG used within the NEC. "^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000005067075 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAB207" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/circularMil> ;
+  qudt:symbol "cmil" ;
+  qudt:ucumCode "[cml_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Circular Mil"@en ;
+.
+unit:MIN
+  a qudt:Unit ;
+  dcterms:description "A minute is a unit of measurement of time. The minute is a unit of time equal to 1/60 (the first sexagesimal fraction of an hour or 60 seconds. In the UTC time scale, a minute on rare occasions has 59 or 61 seconds; see leap second. The minute is not an SI unit; however, it is accepted for use with SI units. The SI symbol for minute or minutes is min (for time measurement) or the prime symbol after a number, e.g. 5' (for angle measurement, even if it is informally used for time)."^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 60.0 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA842" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time> ;
+  qudt:symbol "min" ;
+  qudt:ucumCode "min"^^qudt:UCUMcs ;
+  qudt:udunitsCode "min" ;
+  qudt:uneceCommonCode "MIN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Minute"@en ;
+.
+unit:MIN_Angle
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0002908882 ;
+  qudt:exactMatch unit:ARCMIN ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA097" ;
+  qudt:symbol "'" ;
+  qudt:ucumCode "'"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Minute Angle"@en ;
+  owl:sameAs unit:ARCMIN ;
+.
+unit:MIN_Sidereal
+  a qudt:Unit ;
+  dcterms:description "Sidereal time is a time-keeping system astronomers use to keep track of the direction to point their telescopes to view a given star in the night sky. A mean sidereal day is about \\(23 h 56 m 4.1 s\\) in length. However, due to variations in the rotation rate of the Earth, the rate of an ideal sidereal clock deviates from any simple multiple of a civil clock. In practice, the difference is kept track of by the difference UTC-UT1, which is measured by radio telescopes and kept on file and available to the public at the IERS and at the United States Naval Observatory. A Sidereal Minute is \\(1/60^{th}\\) of a Sidereal Hour, which is \\(1/24^{th}\\) of a Sidereal Day."^^qudt:LatexString ;
+  qudt:conversionMultiplier 59.83617 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sidereal_time"^^xsd:anyURI ;
+  qudt:isScalingOf unit:HR_Sidereal ;
+  qudt:symbol "min{sidereal}" ;
+  qudt:ucumCode "min"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sidereal Minute"@en ;
+.
+unit:MI_N
+  a qudt:Unit ;
+  dcterms:description "A unit of distance used primarily at sea and in aviation. The nautical mile is defined to be the average distance on the Earth's surface represented by one minute of latitude.  In 1929 an international conference in Monaco redefined the nautical mile to be exactly 1852 meters or 6076.115 49 feet, a distance known as the international nautical mile. The international nautical mile equals about 1.1508 statute miles. There are usually 3 nautical miles in a league. The unit is designed to equal 1/60 degree, although actual degrees of latitude vary from about 59.7 to 60.3 nautical miles. (Note: using data from the Geodetic Reference System 1980, the \"true\" length of a nautical mile would be 1852.216 meters.)"^^rdf:HTML ;
+  qudt:conversionMultiplier 1852.0 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB065" ;
+  qudt:symbol "nmi" ;
+  qudt:ucumCode "[nmi_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "NMI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nautical Mile"@en ;
+.
+unit:MI_N-PER-HR
+  a qudt:Unit ;
+  dcterms:description "The knot is a unit of speed equal to one nautical mile (1.852 km) per hour, approximately 1.151 mph. The abbreviation kn is preferred by the International Hydrographic Organization (IHO), which includes every major seafaring nation; but the abbreviations kt (singular) and kts (plural) are also widely used conflicting with the SI symbol for kilotonne which is also \"kt\". The knot is a non-SI unit accepted for use with the International System of Units (SI). Worldwide, the knot is used in meteorology, and in maritime and air navigation-for example, a vessel travelling at 1 knot along a meridian travels one minute of geographic latitude in one hour. "^^rdf:HTML ;
+  qudt:conversionMultiplier 0.514444 ;
+  qudt:exactMatch unit:KN ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:symbol "nmi/hr" ;
+  qudt:ucumCode "[nmi_i].h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[nmi_i]/h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nautical Mile per Hour"@en ;
+  owl:sameAs unit:KN ;
+.
+unit:MI_N-PER-MIN
+  a qudt:Unit ;
+  dcterms:description """The SI derived unit for speed is the meter/second.
+1 meter/second is equal to 0.0323974082073 nautical mile per minute. """^^rdf:HTML ;
+  qudt:expression "\\(nmi/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:symbol "nmi/min" ;
+  qudt:ucumCode "[nmi_i].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[nmi_i]/min"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nautical Mile per Minute"@en ;
+.
+unit:MI_US
+  a qudt:Unit ;
+  dcterms:description "The exact length of the land mile varied slightly among English-speaking countries until the international yard and pound agreement in 1959 established the yard as exactly 0.9144 metres, giving a mile of exactly 1,609.344 metres. The United States adopted this international mile for most purposes, but retained the pre-1959 mile for some land-survey data, terming it the US survey mile. In the US, statute mile formally refers to the survey mile, about 3.219 mm (1/8 inch) longer than the international mile (the international mile is exactly 0.0002\\% less than the US survey mile)."^^rdf:HTML ;
+  qudt:conversionMultiplier 1609.347 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mile"^^xsd:anyURI ;
+  qudt:symbol "mi{US}" ;
+  qudt:ucumCode "[mi_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mile US Statute"@en ;
+.
+unit:MO
+  a qudt:Unit ;
+  dcterms:description "A unit of time corresponding approximately to one cycle of the moon's phases, or about 30 days or 4 weeks. Also known as the 'Synodic Month' and calculated as 29.53059 days."^^rdf:HTML ;
+  qudt:conversionMultiplier 2551442.976 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Month"^^xsd:anyURI ;
+  qudt:exactMatch unit:MO_Synodic ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA880" ;
+  qudt:informativeReference "http://www.thefreedictionary.com/Synodal+month"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Month"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/month> ;
+  qudt:symbol "mo" ;
+  qudt:ucumCode "mo"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MON" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Month"@en ;
+  owl:sameAs unit:MO_Synodic ;
+.
+unit:MOHM
+  a qudt:Unit ;
+  dcterms:description "A unit of mechanical mobility for sound waves, being the reciprocal of the mechanical ohm unit of impedance, i.e., for an acoustic medium, the ratio of the flux or volumic speed (area times particle speed) of the resulting waves through it to the effective sound pressure (i.e. force) causing them, the unit being qualified, according to the units used, as m.k.s. or c.g.s. The mechanical ohm is equivalent to \\(1\\,dyn\\cdot\\,s\\cdot cm^{-1}\\) or \\(10^{-3} N\\cdot s\\cdot m^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:expression "\\(mohm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:MechanicalMobility ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-914"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(1\\:{mohm_{cgs}} = 1\\:\\frac {cm} {dyn.s}\\: (=\\:1\\:\\frac s g \\:in\\:base\\:c.g.s.\\:terms)\\)"^^qudt:LatexString ;
+  qudt:latexDefinition "\\(1\\:{mohm_{mks}} = 10^{3}\\:\\frac m {N.s}\\:(=\\:10^{3}\\:   \\frac s {kg}\\:in\\:base\\:m.k.s.\\:terms)\\)"^^qudt:LatexString ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mohm"@en ;
+.
+unit:MOL
+  a qudt:Unit ;
+  dcterms:description "The mole is a unit of measurement used in chemistry to express amounts of a chemical substance. The official definition, adopted as part of the SI system in 1971, is that one mole of a substance contains just as many elementary entities (atoms, molecules, ions, or other kinds of particles) as there are atoms in 12 grams of carbon-12 (carbon-12 is the most common atomic form of carbon, consisting of atoms having 6 protons and 6 neutrons).  This corresponds to a value of \\(6.02214179(30) \\times 10^{23}\\) elementary entities of the substance. It is one of the base units in the International System of Units, and has the unit symbol \\(mol\\). A Mole is the SI base unit of the amount of a substance (as distinct from its mass or weight). Moles measure the actual number of atoms or molecules in an object. An earlier name is gram molecular weight, because one mole of a chemical compound is the same number of grams as the molecular weight of a molecule of that compound measured in atomic mass units."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mole_%28unit%29"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstance ;
+  qudt:hasQuantityKind quantitykind:ExtentOfReaction ;
+  qudt:iec61360Code "0112/2///62720#UAA882" ;
+  qudt:iec61360Code "0112/2///62720#UAD716" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mole_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/mole> ;
+  qudt:symbol "mol" ;
+  qudt:ucumCode "mol"^^qudt:UCUMcs ;
+  qudt:udunitsCode "mol" ;
+  qudt:uneceCommonCode "C34" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole"@en ;
+.
+unit:MOL-DEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Mole Degree Celsius} is a C.G.S System unit for 'Temperature Amount Of Substance' expressed as \\(mol-degC\\)."^^qudt:LatexString ;
+  qudt:expression "\\(mol-deg-c\\)"^^qudt:LatexString ;
+  qudt:expression "\\(mol-degC\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:TemperatureAmountOfSubstance ;
+  qudt:symbol "mol⋅°C" ;
+  qudt:ucumCode "mol.Cel"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Degree Celsius"@en ;
+.
+unit:MOL-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "<p><strong>Mole Kelvin</strong> is a unit for \\textit{'Temperature Amount Of Substance'} expressed as \\(mol-K\\)</p>."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:TemperatureAmountOfSubstance ;
+  qudt:symbol "mol⋅K" ;
+  qudt:ucumCode "mol.K"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Kelvin"@en ;
+.
+unit:MOL-PER-DeciM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:iec61360Code "0112/2///62720#UAA883" ;
+  qudt:plainTextDescription "SI base unit mol divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "mol/dm³" ;
+  qudt:ucumCode "mol.dm-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Per Cubic Decimeter"@en-us ;
+  rdfs:label "Mole Per Cubic Decimetre"@en ;
+.
+unit:MOL-PER-GM-HR
+  a qudt:Unit ;
+  dcterms:description "SI unit of the quantity of matter per SI unit of mass per unit of time expressed in hour."@en ;
+  qudt:conversionMultiplier 0.277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ;
+  qudt:symbol "mol/(g⋅hr)" ;
+  qudt:ucumCode "mol.g-1.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per gram per hour"@en ;
+.
+unit:MOL-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000277778 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MolarFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA884" ;
+  qudt:plainTextDescription "SI base unit mole divided by the unit for time hour" ;
+  qudt:symbol "mol/hr" ;
+  qudt:ucumCode "mol.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Per Hour"@en ;
+.
+unit:MOL-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mole Per Kilogram (\\(mol/kg\\)) is a unit of Molality"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(mol/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:hasQuantityKind quantitykind:IonicStrength ;
+  qudt:hasQuantityKind quantitykind:MolalityOfSolute ;
+  qudt:symbol "mol/kg" ;
+  qudt:ucumCode "mol.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mol/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mol per Kilogram"@en ;
+.
+unit:MOL-PER-KiloGM-PA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mole Per Kilogram Pascal (\\(mol/kg-pa\\)) is a unit of Molar Mass variation due to Pressure."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(mol/(kg.pa)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L1I0M-2H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMassPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB317" ;
+  qudt:symbol "mol/(kg⋅Pa)" ;
+  qudt:ucumCode "mol.kg-1.Pa-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole per Kilogram Pascal"@en ;
+.
+unit:MOL-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:iec61360Code "0112/2///62720#UAA888" ;
+  qudt:plainTextDescription "SI base unit mol divided by the unit litre" ;
+  qudt:symbol "mol/L" ;
+  qudt:ucumCode "mol.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mol/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Per Liter"@en-us ;
+  rdfs:label "Mole Per Litre"@en ;
+.
+unit:MOL-PER-M2
+  a qudt:Unit ;
+  dcterms:description "SI unit of quantity of matter per SI unit area."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T0D0 ;
+  qudt:symbol "mol/m²" ;
+  qudt:ucumCode "mol.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per square metre"@en ;
+.
+unit:MOL-PER-M2-DAY
+  a qudt:Unit ;
+  dcterms:description "quantity of matter per unit area per unit of time."@en ;
+  qudt:conversionMultiplier 0.0000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "mol/(m²⋅day)" ;
+  qudt:ucumCode "mol.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per square metre per day" ;
+.
+unit:MOL-PER-M2-SEC
+  a qudt:Unit ;
+  dcterms:description "SI unit of quantity of matter per SI unit area per SI unit of time."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "mol/(m²⋅s)" ;
+  qudt:ucumCode "mol.m-2.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per square metre per second"@en ;
+.
+unit:MOL-PER-M2-SEC-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "mol/(m²⋅s⋅m)" ;
+  qudt:ucumCode "mol.m-2.s-1.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per square metre per second per metre"@en ;
+.
+unit:MOL-PER-M2-SEC-M-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "mol/(m²⋅s⋅m⋅sr)" ;
+  qudt:ucumCode "mol.m-2.s-1.m-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per square metre per second per metre per steradian"@en ;
+.
+unit:MOL-PER-M2-SEC-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "mol/(m²⋅s⋅sr)" ;
+  qudt:ucumCode "mol.m-2.s-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per square metre per second per steradian"@en ;
+.
+unit:MOL-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI derived unit for amount-of-substance concentration is the mole/cubic meter."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(mol/m^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstanceConcentrationOfB ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:iec61360Code "0112/2///62720#UAA891" ;
+  qudt:symbol "mol/m³" ;
+  qudt:ucumCode "mol.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "mol/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole per Cubic Meter"@en-us ;
+  rdfs:label "Mole per Cubic Metre"@en ;
+.
+unit:MOL-PER-M3-SEC
+  a qudt:Unit ;
+  dcterms:description "SI unit of quantity of matter per SI unit volume per SI unit of time."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "mol/(m³⋅s)" ;
+  qudt:ucumCode "mol.m-3.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per cubic metre per second"@en ;
+.
+unit:MOL-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.016666667 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MolarFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA894" ;
+  qudt:plainTextDescription "SI base unit mole divided by the unit for time minute" ;
+  qudt:symbol "mol/min" ;
+  qudt:ucumCode "mol.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Per Minute"@en ;
+.
+unit:MOL-PER-MOL
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:symbol "mol/mol" ;
+  qudt:ucumCode "mol.mol-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moles per mole"@en ;
+.
+unit:MOL-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MolarFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA895" ;
+  qudt:plainTextDescription "SI base unit mol divided by the SI base unit second" ;
+  qudt:symbol "mol/s" ;
+  qudt:ucumCode "mol.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mol/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mole Per Second"@en ;
+.
+unit:MO_MeanGREGORIAN
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html#iso1000"^^xsd:anyURI ;
+  qudt:ucumCode "mo_g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MON" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mean Gregorian Month"@en ;
+.
+unit:MO_MeanJulian
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html#iso1000"^^xsd:anyURI ;
+  qudt:ucumCode "mo_j"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mean Julian Month"@en ;
+.
+unit:MO_Synodic
+  a qudt:Unit ;
+  dcterms:description "A unit of time corresponding approximately to one cycle of the moon's phases, or about 30 days or 4 weeks and calculated as 29.53059 days."^^rdf:HTML ;
+  qudt:exactMatch unit:MO ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "http://www.thefreedictionary.com/Synodal+month"^^xsd:anyURI ;
+  qudt:ucumCode "mo_s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Synodic month"@en ;
+  owl:sameAs unit:MO ;
+.
+unit:MX
+  a qudt:Unit ;
+  dcterms:description "\"Maxwell\" is a C.G.S System unit for  'Magnetic Flux' expressed as \\(Mx\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Maxwell"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:iec61360Code "0112/2///62720#UAB155" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Maxwell?oldid=478391976"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell> ;
+  qudt:symbol "Mx" ;
+  qudt:ucumCode "Mx"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B65" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Maxwell"@en ;
+.
+unit:MalagasyAriary
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Madagascar"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Malagasy_ariary"^^xsd:anyURI ;
+  qudt:expression "\\(MGA\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Malagasy_ariary?oldid=489551279"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Malagasy Ariary"@en ;
+.
+unit:MalawiKwacha
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Malawi"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(MWK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Malawi Kwacha"@en ;
+.
+unit:MalaysianRinggit
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Malaysia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Malaysian_ringgit"^^xsd:anyURI ;
+  qudt:expression "\\(MYR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Malaysian_ringgit?oldid=494417091"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Malaysian Ringgit"@en ;
+.
+unit:MalteseLira
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Malta"^^rdf:HTML ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Maltese_lira"^^xsd:anyURI ;
+  qudt:expression "\\(MTL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Maltese_lira?oldid=493810797"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Maltese Lira"@en ;
+.
+unit:Manat
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Turkmenistan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Manat"^^xsd:anyURI ;
+  qudt:expression "\\(TMM\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Manat?oldid=486967490"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Manat"@en ;
+.
+unit:MauritiusRupee
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mauritius"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritian_rupee"^^xsd:anyURI ;
+  qudt:expression "\\(MUR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritian_rupee?oldid=487629200"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mauritius Rupee"@en ;
+.
+unit:MebiBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The mebibyte is a multiple of the unit byte for digital information equivalent to \\(1024^{2} bytes\\) or \\(2^{20} bytes\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 5814539.984022601702139868711921 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Mebi ;
+  qudt:symbol "MiB" ;
+  qudt:uneceCommonCode "E63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mebibyte"@en ;
+.
+unit:MegaA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA202" ;
+  qudt:isScalingOf unit:A ;
+  qudt:plainTextDescription "1 000 000-fold of the SI base unit ampere" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MA" ;
+  qudt:ucumCode "MA"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megaampere"@en ;
+.
+unit:MegaA-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA203" ;
+  qudt:plainTextDescription "1 000 000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "mol/m²" ;
+  qudt:ucumCode "MA.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B66" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megaampere Per Square Meter"@en-us ;
+  rdfs:label "Megaampere Per Square Metre"@en ;
+.
+unit:MegaBAR
+  a qudt:Unit ;
+  dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to \\(100,000 Pa = 1 bar \\approx 750.0616827 Torr\\). Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ;
+  qudt:conversionMultiplier 100000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BAR ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "Mbar" ;
+  qudt:ucumCode "Mbar"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megabar"@en ;
+.
+unit:MegaBIT-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A megabit per second (Mbit/s or Mb/s; not to be confused with mbit/s which means millibit per second, or with Mbitps which means megabit picosecond) is a unit of data transfer rate equal to 1,000,000 bits per second or 1,000 kilobits per second or 125,000 bytes per second or 125 kilobytes per second."^^rdf:HTML ;
+  qudt:conversionMultiplier 693147.18055994530941723212145818 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DataRate ;
+  qudt:iec61360Code "0112/2///62720#UAA226" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:KiloBIT-PER-SEC ;
+  qudt:symbol "mbps" ;
+  qudt:ucumCode "MBd"^^qudt:UCUMcs ;
+  qudt:ucumCode "Mbit/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megabit per Second"@en ;
+.
+unit:MegaBQ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA205" ;
+  qudt:isScalingOf unit:BQ ;
+  qudt:plainTextDescription "1 000 000-fold of the derived unit becquerel" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MBq" ;
+  qudt:ucumCode "MBq"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4N" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megabecquerel"@en ;
+.
+unit:MegaBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The megabyte is defined here as one million Bytes. Also, see unit:MebiBYTE."^^qudt:LatexString ;
+  qudt:conversionMultiplier 5545177.44447956 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Megabyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Megabyte?oldid=487094486"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MB" ;
+  qudt:ucumCode "MBy"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4L" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega byte"@en ;
+.
+unit:MegaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A MegaCoulomb is \\(10^{6} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier "1000000"^^xsd:decimal ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA206" ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MC" ;
+  qudt:ucumCode "MC"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D77" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MegaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:MegaC-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA207" ;
+  qudt:plainTextDescription "1 000 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "MC/m²" ;
+  qudt:ucumCode "MC.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B70" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megacoulomb Per Square Meter"@en-us ;
+  rdfs:label "Megacoulomb Per Square Metre"@en ;
+.
+unit:MegaC-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA208" ;
+  qudt:plainTextDescription "1 000 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "MC/m³" ;
+  qudt:ucumCode "MC.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B69" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megacoulomb Per Cubic Meter"@en-us ;
+  rdfs:label "Megacoulomb Per Cubic Metre"@en ;
+.
+unit:MegaEV
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Mega Electron Volt} is a unit for  'Energy And Work' expressed as \\(MeV\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:symbol "MeV" ;
+  qudt:ucumCode "MeV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Electron Volt"@en ;
+.
+unit:MegaEV-FemtoM
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Mega Electron Volt Femtometer} is a unit for  'Length Energy' expressed as \\(MeV fm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000000000000001602176634 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:LengthEnergy ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MeV⋅fm" ;
+  qudt:ucumCode "MeV.fm"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Electron Volt Femtometer"@en-us ;
+  rdfs:label "Mega Electron Volt Femtometre"@en ;
+.
+unit:MegaEV-PER-CentiM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Mega Electron Volt per Centimeter\" is a unit for  'Linear Energy Transfer' expressed as \\(MeV/cm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000001602176634 ;
+  qudt:expression "\\(MeV/cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:LinearEnergyTransfer ;
+  qudt:symbol "MeV/cm" ;
+  qudt:ucumCode "MeV.cm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Electron Volt per Centimeter"@en-us ;
+  rdfs:label "Mega Electron Volt per Centimetre"@en ;
+.
+unit:MegaEV-PER-SpeedOfLight
+  a qudt:Unit ;
+  dcterms:description "\"Mega Electron Volt per Speed of Light\" is a unit for  'Linear Momentum' expressed as \\(MeV/c\\)."^^qudt:LatexString ;
+  qudt:expression "\\(MeV/c\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:LinearMomentum ;
+  qudt:symbol "MeV/c" ;
+  qudt:ucumCode "MeV.[c]-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Electron Volt per Speed of Light"@en ;
+.
+unit:MegaGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA228" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "Mg" ;
+  qudt:ucumCode "Mg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2U" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megagram"@en ;
+.
+unit:MegaGM-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA229" ;
+  qudt:plainTextDescription "1 000-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "Mg/m³" ;
+  qudt:ucumCode "Mg.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megagram Per Cubic Meter"@en-us ;
+  rdfs:label "Megagram Per Cubic Metre"@en ;
+.
+unit:MegaHZ
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Megahertz\" is a C.G.S System unit for  'Frequency' expressed as \\(MHz\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA209" ;
+  qudt:isScalingOf unit:HZ ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MHz" ;
+  qudt:ucumCode "MHz"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MHZ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megahertz"@en ;
+.
+unit:MegaHZ-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Speed ;
+  qudt:iec61360Code "0112/2///62720#UAA210" ;
+  qudt:plainTextDescription "product of the 1 000 000-fold of the SI derived unit hertz and the 1 000-fold of the SI base unit metre" ;
+  qudt:symbol "MHz⋅m" ;
+  qudt:ucumCode "MHz.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megahertz Meter"@en-us ;
+  rdfs:label "Megahertz Metre"@en ;
+.
+unit:MegaHZ-PER-K
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Mega Hertz per Kelvin} is a unit for 'Inverse Time Temperature' expressed as \\(MHz K^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:expression "\\(MHz K^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T-1D0 ;
+  qudt:hasQuantityKind quantitykind:InverseTimeTemperature ;
+  qudt:symbol "MHz/K" ;
+  qudt:ucumCode "MHz.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Hertz per Kelvin"@en ;
+.
+unit:MegaHZ-PER-T
+  a qudt:Unit ;
+  dcterms:description "\"Mega Hertz per Tesla\" is a unit for  'Electric Charge Per Mass' expressed as \\(MHz T^{-1}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:expression "\\(MHz T^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:symbol "MHz/T" ;
+  qudt:ucumCode "MHz.T-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Hertz per Tesla"@en ;
+.
+unit:MegaJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA211" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "1,000,000-fold of the derived unit joule" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MJ" ;
+  qudt:ucumCode "MJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "3B" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megajoule"@en ;
+.
+unit:MegaJ-PER-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "MegaJoule Per Kelvin (MegaJ/K) is a unit in the category of Entropy."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:expression "\\(MegaJ/K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:HeatCapacity ;
+  qudt:symbol "MJ/K" ;
+  qudt:ucumCode "MJ.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MegaJoule per Kelvin"@en ;
+.
+unit:MegaJ-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB093" ;
+  qudt:plainTextDescription "1,000,000-fold of the derived SI unit joule divided by the SI base unit kilogram" ;
+  qudt:symbol "MJ/kg" ;
+  qudt:ucumCode "MJ.kg-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "JK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megajoule Per Kilogram"@en ;
+.
+unit:MegaJ-PER-M2
+  a qudt:Unit ;
+  dcterms:description "MegaJoule Per Square Meter (\\(MegaJ/m^2\\)) is a unit in the category of Energy density."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "MJ/m²" ;
+  qudt:ucumCode "MJ.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megajoule Per Square Meter"@en-us ;
+  rdfs:label "Megajoule Per Square Metre"@en ;
+.
+unit:MegaJ-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA212" ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "MJ/m³" ;
+  qudt:ucumCode "MJ.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "JM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megajoule Per Cubic Meter"@en-us ;
+  rdfs:label "Megajoule Per Cubic Metre"@en ;
+.
+unit:MegaJ-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAB177" ;
+  qudt:plainTextDescription "quotient of the 1,000,000-fold of the derived SI unit joule divided by the SI base unit second" ;
+  qudt:symbol "MJ/s" ;
+  qudt:ucumCode "MJ.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D78" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megajoule Per Second"@en ;
+.
+unit:MegaL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB112" ;
+  qudt:plainTextDescription "1 000 000-fold of the unit litre" ;
+  qudt:symbol "ML" ;
+  qudt:ucumCode "ML"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MAL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megalitre"@en ;
+  rdfs:label "Megalitre"@en-us ;
+.
+unit:MegaLB_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4448.222 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pound-force"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pound-force?oldid=453191483"^^xsd:anyURI ;
+  qudt:symbol "Mlbf" ;
+  qudt:ucumCode "M[lbf_av]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mega Pound Force"@en ;
+.
+unit:MegaN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAA213" ;
+  qudt:isScalingOf unit:N ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit newton" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MN" ;
+  qudt:ucumCode "MN"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B73" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meganewton"@en ;
+.
+unit:MegaN-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA214" ;
+  qudt:plainTextDescription "1,000,000-fold of the product of the SI derived unit newton and the SI base unit metre" ;
+  qudt:symbol "MN⋅m" ;
+  qudt:ucumCode "MN.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B74" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Meganewton Meter"@en-us ;
+  rdfs:label "Meganewton Metre"@en ;
+.
+unit:MegaOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA198" ;
+  qudt:isScalingOf unit:OHM ;
+  qudt:plainTextDescription "1,000,000-fold of the derived unit ohm" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MΩ" ;
+  qudt:ucumCode "MOhm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B75" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megaohm"@en ;
+.
+unit:MegaPA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA215" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:plainTextDescription "1,000,000-fold of the derived unit pascal" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MPa" ;
+  qudt:ucumCode "MPa"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MPA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megapascal"@en ;
+.
+unit:MegaPA-L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA218" ;
+  qudt:plainTextDescription "product out of the 1,000,000-fold of the SI derived unit pascal and the unit litre divided by the SI base unit second" ;
+  qudt:symbol "MPa⋅L/s" ;
+  qudt:ucumCode "MPa.L.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F97" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megapascal Liter Per Second"@en-us ;
+  rdfs:label "Megapascal Litre Per Second"@en ;
+.
+unit:MegaPA-M3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA219" ;
+  qudt:plainTextDescription "product out of the 1,000,000-fold of the SI derived unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "MPa⋅m³/s" ;
+  qudt:ucumCode "MPa.m3.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megapascal Cubic Meter Per Second"@en-us ;
+  rdfs:label "Megapascal Cubic Metre Per Second"@en ;
+.
+unit:MegaPA-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA217" ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit pascal divided by the unit bar" ;
+  qudt:symbol "MPa/bar" ;
+  qudt:ucumCode "MPa.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F05" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megapascal Per Bar"@en ;
+.
+unit:MegaPA-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:PressureCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA216" ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit pascal divided by the SI base unit kelvin" ;
+  qudt:symbol "MPa/K" ;
+  qudt:ucumCode "MPa.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megapascal Per Kelvin"@en ;
+.
+unit:MegaS-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA220" ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit siemens divided by the SI base unit metre" ;
+  qudt:symbol "MS/m" ;
+  qudt:ucumCode "MS.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B77" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megasiemens Per Meter"@en-us ;
+  rdfs:label "Megasiemens Per Metre"@en ;
+.
+unit:MegaTOE
+  a qudt:Unit ;
+  dcterms:description """The tonne of oil equivalent (toe) is a unit of energy: the amount of energy released by burning one tonne of crude oil, approximately 42 GJ (as different crude oils have different calorific values, the exact value of the toe is defined by convention; unfortunately there are several slightly different definitions as discussed below). The toe is sometimes used for large amounts of energy, as it can be more intuitive to visualise, say, the energy released by burning 1000 tonnes of oil than 42,000 billion joules (the SI unit of energy).</p>
+<p>Multiples of the toe are used, in particular the megatoe (Mtoe, one million toe) and the gigatoe (Gtoe, one billion toe).</p>"""^^rdf:HTML ;
+  qudt:conversionMultiplier 41868000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tonne_of_oil_equivalent"^^xsd:anyURI ;
+  qudt:symbol "megatoe" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megaton of Oil Equivalent"@en ;
+.
+unit:MegaV
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA221" ;
+  qudt:isScalingOf unit:V ;
+  qudt:plainTextDescription "1,000,000-fold of the derived unit volt" ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "mV" ;
+  qudt:ucumCode "MV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B78" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megavolt"@en ;
+.
+unit:MegaV-A
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ComplexPower ;
+  qudt:iec61360Code "0112/2///62720#UAA222" ;
+  qudt:plainTextDescription "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere" ;
+  qudt:symbol "MV⋅A" ;
+  qudt:ucumCode "MV.A"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MVA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megavolt Ampere"@en ;
+.
+unit:MegaV-A-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:plainTextDescription "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour" ;
+  qudt:symbol "MV⋅A⋅hr" ;
+  qudt:ucumCode "MV.A.h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megavolt Ampere Hour"@en ;
+.
+unit:MegaV-A_Reactive
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ReactivePower ;
+  qudt:iec61360Code "0112/2///62720#UAB199" ;
+  qudt:plainTextDescription "1 000 000-fold of the unit volt ampere reactive" ;
+  qudt:symbol "MV⋅A{Reactive}" ;
+  qudt:ucumCode "MV.A{reactive}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MAR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megavolt Ampere Reactive"@en ;
+.
+unit:MegaV-A_Reactive-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB198" ;
+  qudt:plainTextDescription "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour" ;
+  qudt:symbol "MV⋅A{Reactive}⋅hr" ;
+  qudt:ucumCode "MV.A{reactive}.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MAH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megavolt Ampere Reactive Hour"@en ;
+.
+unit:MegaV-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA223" ;
+  qudt:plainTextDescription "1,000,000-fold of the SI derived unit volt divided by the SI base unit metre" ;
+  qudt:symbol "MV/m" ;
+  qudt:ucumCode "MV.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B79" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megavolt Per Meter"@en-us ;
+  rdfs:label "Megavolt Per Metre"@en ;
+.
+unit:MegaW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:isScalingOf unit:W ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "MW" ;
+  qudt:ucumCode "MW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MAW" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MegaW"@en ;
+.
+unit:MegaW-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA225" ;
+  qudt:plainTextDescription "1 000 000-fold of the product of the SI derived unit watt and the unit hour" ;
+  qudt:symbol "MW⋅hr" ;
+  qudt:ucumCode "MW.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MWH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Megawatt Hour"@en ;
+.
+unit:MegaYR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 31557600000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "https://en.wiktionary.org/wiki/megayear"^^xsd:anyURI ;
+  qudt:isScalingOf unit:YR ;
+  qudt:plainTextDescription "1,000,000-fold of the derived unit year." ;
+  qudt:prefix prefix:Mega ;
+  qudt:symbol "Myr" ;
+  qudt:ucumCode "Ma"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Million Years"@en ;
+  skos:altLabel "Ma" ;
+  skos:altLabel "Mega Year"@en ;
+  skos:altLabel "megannum"@la ;
+.
+unit:Metical
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mozambique"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mozambican_metical"^^xsd:anyURI ;
+  qudt:expression "\\(MZN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mozambican_metical?oldid=488225670"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Metical"@en ;
+.
+unit:MexicanPeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mexico"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mexican_peso"^^xsd:anyURI ;
+  qudt:expression "\\(MXN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mexican_peso?oldid=494829813"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mexican Peso"@en ;
+.
+unit:MexicanUnidadDeInversion
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mexico"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(MXV\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mexican Unidad de Inversion (UDI) (Funds code)"@en ;
+.
+unit:MicroA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA057" ;
+  qudt:isScalingOf unit:A ;
+  qudt:latexSymbol "\\(\\mu A\\)"^^qudt:LatexString ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µA" ;
+  qudt:ucumCode "uA"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B84" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "microampere"@en ;
+.
+unit:MicroATM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.101325 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "µatm" ;
+  qudt:ucumCode "uatm"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microatmospheres"@en ;
+.
+unit:MicroBAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB089" ;
+  qudt:plainTextDescription "0.000001-fold of the unit bar" ;
+  qudt:symbol "μbar" ;
+  qudt:ucumCode "ubar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microbar"@en ;
+.
+unit:MicroBQ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA058" ;
+  qudt:isScalingOf unit:BQ ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit becquerel" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μBq" ;
+  qudt:ucumCode "uBq"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H08" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microbecquerel"@en ;
+.
+unit:MicroBQ-PER-KiloGM
+  a qudt:Unit ;
+  dcterms:description "One radioactive disintegration per hundred thousand seconds from an SI standard unit of mass of sample."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificActivity ;
+  qudt:symbol "µBq/kg" ;
+  qudt:ucumCode "uBq.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microbecquerels per kilogram"@en ;
+.
+unit:MicroBQ-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ActivityConcentration ;
+  qudt:symbol "µBq/L" ;
+  qudt:ucumCode "uBq.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microbecquerels per litre"@en ;
+.
+unit:MicroC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A MicroCoulomb is \\(10^{-6} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA059" ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µC" ;
+  qudt:ucumCode "uC"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:MicroC-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA060" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "μC/m²" ;
+  qudt:ucumCode "uC.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B88" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microcoulomb Per Square Meter"@en-us ;
+  rdfs:label "Microcoulomb Per Square Metre"@en ;
+.
+unit:MicroC-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA061" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "μC/m³" ;
+  qudt:ucumCode "uC.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B87" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microcoulomb Per Cubic Meter"@en-us ;
+  rdfs:label "Microcoulomb Per Cubic Metre"@en ;
+.
+unit:MicroCi
+  a qudt:Unit ;
+  dcterms:description "Another commonly used measure of radioactivity, the microcurie: \\(1 \\micro Ci = 3.7 \\times 10 disintegrations per second = 2.22 \\times 10 disintegrations per minute\\). A radiotherapy machine may have roughly 1000 Ci of a radioisotope such as caesium-137 or cobalt-60. This quantity of radioactivity can produce serious health effects with only a few minutes of close-range, un-shielded exposure. The typical human body contains roughly \\(0.1\\micro Ci\\) of naturally occurring potassium-40. "^^qudt:LatexString ;
+  qudt:conversionMultiplier 37000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Curie"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA062" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Curie?oldid=495080313"^^xsd:anyURI ;
+  qudt:isScalingOf unit:Ci ;
+  qudt:symbol "μCi" ;
+  qudt:ucumCode "uCi"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M5" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroCurie"@en ;
+.
+unit:MicroFARAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The \"microfarad\" (symbolized \\(\\mu F\\)) is a unit of capacitance, equivalent to 0.000001 (10 to the -6th power) farad. The microfarad is a moderate unit of capacitance. In utility alternating-current (AC) and audio-frequency (AF) circuits, capacitors with values on the order of \\(1 \\mu F\\) or more are common. At radio frequencies (RF), a smaller unit, the picofarad (pF), is often used."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:iec61360Code "0112/2///62720#UAA063" ;
+  qudt:isScalingOf unit:FARAD ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µF" ;
+  qudt:ucumCode "uF"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4O" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "microfarad"@en ;
+.
+unit:MicroFARAD-PER-KiloM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:iec61360Code "0112/2///62720#UAA064" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit farad divided by the 1,000-fold of the SI base unit metre" ;
+  qudt:symbol "μF/km" ;
+  qudt:ucumCode "uF.km-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microfarad Per Kilometer"@en-us ;
+  rdfs:label "Microfarad Per Kilometre"@en ;
+.
+unit:MicroFARAD-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:iec61360Code "0112/2///62720#UAA065" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit farad divided by the SI base unit metre" ;
+  qudt:symbol "μF/m" ;
+  qudt:ucumCode "uF.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microfarad Per Meter"@en-us ;
+  rdfs:label "Microfarad Per Metre"@en ;
+.
+unit:MicroG
+  a qudt:Unit ;
+  dcterms:description "\"Microgravity\" is a unit for  'Linear Acceleration' expressed as \\(microG\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000980665 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:latexSymbol "\\(\\mu G\\)"^^qudt:LatexString ;
+  qudt:symbol "µG" ;
+  qudt:ucumCode "u[g]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microgravity"@en ;
+.
+unit:MicroG-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier "0.01"^^xsd:double ;
+  qudt:conversionOffset "0"^^xsd:double ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:plainTextDescription "A unit of mass per area, equivalent to 0.01 grammes per square metre" ;
+  qudt:symbol "µg/cm²" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microgram per square centimetre"@en ;
+.
+unit:MicroGAL-PER-M
+  a qudt:Unit ;
+  dcterms:description "A rate of change of one millionth part of a unit of gravitational acceleration equal to one centimetre per second per second over a distance of one metre."@en ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ;
+  qudt:symbol "µGal/m" ;
+  qudt:ucumCode "uGal.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroGals per metre"@en ;
+.
+unit:MicroGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA082" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "0.000000001-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μg" ;
+  qudt:ucumCode "ug"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MC" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microgram"@en ;
+.
+unit:MicroGM-PER-GM
+  a qudt:Unit ;
+  dcterms:description "One part per 10**6 (million) by mass of the measurand in the matrix."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "µg/g" ;
+  qudt:ucumCode "ug.g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrograms per gram"@en ;
+.
+unit:MicroGM-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA083" ;
+  qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram" ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "μg/kg" ;
+  qudt:ucumCode "ug.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "ug/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microgram Per Kilogram"@en ;
+.
+unit:MicroGM-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA084" ;
+  qudt:plainTextDescription "0.000000001-fold of the SI base unit kilogram divided by the unit litre" ;
+  qudt:symbol "μg/L" ;
+  qudt:ucumCode "ug.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "ug/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microgram Per Liter"@en-us ;
+  rdfs:label "Microgram Per Litre"@en ;
+.
+unit:MicroGM-PER-L-HR
+  a qudt:Unit ;
+  dcterms:description "A rate of change of mass of a measurand equivalent to 10^-9 kilogram (the SI unit of mass) per litre volume of matrix over a period of 1 hour."@en ;
+  qudt:conversionMultiplier 0.000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "µg/(L⋅hr)" ;
+  qudt:ucumCode "ug.L-1.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrograms per litre per hour"@en ;
+.
+unit:MicroGM-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:symbol "µg/(m²⋅day)" ;
+  qudt:ucumCode "ug.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrograms per square metre per day"@en ;
+.
+unit:MicroGM-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA085" ;
+  qudt:plainTextDescription "0.000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "μg/m³" ;
+  qudt:ucumCode "ug.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "ug/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GQ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microgram Per Cubic Meter"@en-us ;
+  rdfs:label "Microgram Per Cubic Metre"@en ;
+.
+unit:MicroGM-PER-M3-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "µg/(m³⋅day)" ;
+  qudt:ucumCode "ug.m-3.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrograms per cubic metre per hour"@en ;
+.
+unit:MicroGM-PER-MilliL
+  a qudt:Unit ;
+  dcterms:description "One 10**6 part of the SI standard unit of mass of the measurand per millilitre volume of matrix."@en ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassConcentration ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "µg/mL" ;
+  qudt:ucumCode "ug.mL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrograms per millilitre"@en ;
+.
+unit:MicroGRAY
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "0.000001 fold of the SI unit of radiation dose. Radiation carries energy, and when it is absorbed by matter the matter receives this energy. The dose is the amount of energy deposited per unit of mass. One gray is defined to be the dose of one joule of energy absorbed per kilogram of matter, or 100 rad. The unit is named for the British physician L. Harold Gray (1905-1965), an authority on the use of radiation in the treatment of cancer."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Grey"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDose ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Grey?oldid=494774160"^^xsd:anyURI ;
+  qudt:isScalingOf unit:GRAY ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gray> ;
+  qudt:prefix prefix:Micro ;
+  qudt:siUnitsExpression "J/kg" ;
+  qudt:symbol "µGy" ;
+  qudt:ucumCode "uGy"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroGray"@en ;
+.
+unit:MicroH
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI derived unit for inductance is the henry. 1 henry is equal to 1000000 microhenry. "^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:iec61360Code "0112/2///62720#UAA066" ;
+  qudt:isScalingOf unit:H ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µH" ;
+  qudt:ucumCode "uH"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B90" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microhenry"@en ;
+.
+unit:MicroH-PER-KiloOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA068" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the 1,000-fold of the SI derived unit ohm" ;
+  qudt:symbol "µH/kΩ" ;
+  qudt:ucumCode "uH.kOhm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microhenry Per Kiloohm"@en ;
+.
+unit:MicroH-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Permeability ;
+  qudt:iec61360Code "0112/2///62720#UAA069" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the SI base unit metre" ;
+  qudt:symbol "μH/m" ;
+  qudt:ucumCode "uH.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microhenry Per Meter"@en-us ;
+  rdfs:label "Microhenry Per Metre"@en ;
+.
+unit:MicroH-PER-OHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA067" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the SI derived unit ohm" ;
+  qudt:symbol "µH/Ω" ;
+  qudt:ucumCode "uH.Ohm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microhenry Per Ohm"@en ;
+.
+unit:MicroIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Microinch\" is an Imperial unit for  'Length' expressed as \\(in^{-6}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000254 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:isScalingOf unit:IN ;
+  qudt:latexSymbol "\\(\\mu in\\)"^^qudt:LatexString ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µin" ;
+  qudt:ucumCode "u[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M7" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microinch"@en ;
+.
+unit:MicroJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit joule" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µJ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micro Joule"@en ;
+  rdfs:label "Micro Joule"@en-us ;
+  rdfs:label "Mikrojoule "@de ;
+.
+unit:MicroL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA088" ;
+  qudt:plainTextDescription "0.000001-fold of the unit litre" ;
+  qudt:symbol "μL" ;
+  qudt:ucumCode "uL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4G" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microlitre"@en ;
+  rdfs:label "Microlitre"@en-us ;
+.
+unit:MicroL-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA089" ;
+  qudt:plainTextDescription "volume ratio as 0.000001-fold of the unit litre divided by the unit litre" ;
+  qudt:symbol "μL/L" ;
+  qudt:ucumCode "uL.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "uL/L"^^qudt:UCUMcs ;
+  qudt:udunitsCode "ppmv" ;
+  qudt:uneceCommonCode "J36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microlitre Per Liter"@en-us ;
+  rdfs:label "Microlitre Per Litre"@en ;
+.
+unit:MicroM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Micrometer\" is a unit for  'Length' expressed as \\(microm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Micrometer"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA090" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Micrometer?oldid=491270437"^^xsd:anyURI ;
+  qudt:isScalingOf unit:M ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µm" ;
+  qudt:ucumCode "um"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4H" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrometer"@en-us ;
+  rdfs:label "Micrometre"@en ;
+.
+unit:MicroM-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA091" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit metre divided by the SI base unit kelvin" ;
+  qudt:symbol "μm/K" ;
+  qudt:ucumCode "um.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micrometer Per Kelvin"@en-us ;
+  rdfs:label "Micrometre Per Kelvin"@en ;
+.
+unit:MicroM-PER-L-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "µm/(L⋅day)" ;
+  qudt:ucumCode "um.L-1.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per litre per day"@en ;
+.
+unit:MicroM-PER-MilliL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:symbol "µm/mL" ;
+  qudt:ucumCode "um2.mL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square microns per millilitre"@en ;
+.
+unit:MicroM-PER-N
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:LinearCompressibility ;
+  qudt:plainTextDescription "Micro metres measured per Newton" ;
+  qudt:symbol "µJ/N" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micro meter per Newton"@en-us ;
+  rdfs:label "Micro metre per Newton"@en ;
+  rdfs:label "Mikrometer pro Newton"@de ;
+.
+unit:MicroM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA092" ;
+  qudt:isScalingOf unit:M2 ;
+  qudt:plainTextDescription "0.000000000001-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μm²" ;
+  qudt:ucumCode "um2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Micrometer"@en-us ;
+  rdfs:label "Square Micrometre"@en ;
+.
+unit:MicroM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:isScalingOf unit:M3 ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µm³" ;
+  qudt:ucumCode "um3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic micrometres (microns)"@en ;
+.
+unit:MicroM3-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:symbol "µm³/m³" ;
+  qudt:ucumCode "um3.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic microns per cubic metre"@en ;
+.
+unit:MicroM3-PER-MilliL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:symbol "µm³/mL" ;
+  qudt:ucumCode "um3.mL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic microns per millilitre"@en ;
+.
+unit:MicroMHO
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAB201" ;
+  qudt:isScalingOf unit:MHO ;
+  qudt:plainTextDescription "0.000001-fold of the obsolete unit mho of the electric conductance" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μmho" ;
+  qudt:ucumCode "umho"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "NR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromho"@en ;
+.
+unit:MicroMOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstance ;
+  qudt:iec61360Code "0112/2///62720#UAA093" ;
+  qudt:isScalingOf unit:MOL ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit mol" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μmol" ;
+  qudt:ucumCode "umol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromole"@en ;
+.
+unit:MicroMOL-PER-GM
+  a qudt:Unit ;
+  dcterms:description "Micromole Per Gram (\\(umol/g\\)) is a unit of Molality"^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:hasQuantityKind quantitykind:IonicStrength ;
+  qudt:hasQuantityKind quantitykind:MolalityOfSolute ;
+  qudt:isScalingOf unit:MOL-PER-KiloGM ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:symbol "µmol/g" ;
+  qudt:ucumCode "umol.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/g"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per gram"@en ;
+.
+unit:MicroMOL-PER-GM-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ;
+  qudt:symbol "µmol/(g⋅h)" ;
+  qudt:ucumCode "umol.g-1.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/g/h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per gram per hour"@en ;
+.
+unit:MicroMOL-PER-GM-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ;
+  qudt:ucumCode "umol.g-1.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/g/s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per gram per second"@en ;
+.
+unit:MicroMOL-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:symbol "µmol/kg" ;
+  qudt:ucumCode "umol.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/kg"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per kilogram"@en ;
+.
+unit:MicroMOL-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:symbol "µmol/L" ;
+  qudt:ucumCode "umol.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/L"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per litre"@en ;
+.
+unit:MicroMOL-PER-L-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "µmol/(L⋅hr)" ;
+  qudt:ucumCode "umol.L-1.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/L/h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per litre per hour"@en ;
+.
+unit:MicroMOL-PER-M2
+  a qudt:Unit ;
+  dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T0D0 ;
+  qudt:symbol "µmol/m²" ;
+  qudt:ucumCode "umol.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/m2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per square metre"@en ;
+.
+unit:MicroMOL-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "µmol/(m²⋅day)" ;
+  qudt:ucumCode "umol.m-2.d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/m2/d"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per square metre per day"@en ;
+.
+unit:MicroMOL-PER-M2-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "µmol/(m²⋅hr)" ;
+  qudt:ucumCode "umol.m-2.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/m2/h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per square metre per hour"@en ;
+.
+unit:MicroMOL-PER-M2-SEC
+  a qudt:Unit ;
+  dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time.  This term is based on the number of photons in a certain waveband incident per unit time (s) on a unit area (m2) divided by the Avogadro constant (6.022 x 1023 mol-1). It is used commonly to describe PAR in the 400-700 nm waveband. Definition Source: Thimijan, Richard W., and Royal D. Heins. 1982. Photometric, Radiometric, and Quantum Light Units of Measure: A Review of Procedures for Interconversion. HortScience 18:818-822."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ;
+  qudt:symbol "µmol/(m²⋅s)" ;
+  qudt:ucumCode "umol.m-2.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/m2/s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per square metre per second"@en ;
+.
+unit:MicroMOL-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:symbol "µmol/mol" ;
+  qudt:ucumCode "umol.mol-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/mol"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per mole"@en ;
+.
+unit:MicroMOL-PER-MicroMOL-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:symbol "µmol/(µmol⋅day)" ;
+  qudt:ucumCode "umol.umol-1.d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/umol/d"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromole per micromole of biomass per day"@en ;
+.
+unit:MicroMOL-PER-SEC
+  a qudt:Unit ;
+  dcterms:description " This unit is used commonly to describe Photosynthetic Photon Flux (PPF) - the total number of photons emitted by a light source each second within the PAR wavelength range. "@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFlux ;
+  qudt:symbol "µmol/s" ;
+  qudt:ucumCode "umol.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "umol/s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micromoles per second"@en ;
+.
+unit:MicroN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAA070" ;
+  qudt:isScalingOf unit:N ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit newton" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μN" ;
+  qudt:ucumCode "uN"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B92" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micronewton"@en ;
+.
+unit:MicroN-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA071" ;
+  qudt:plainTextDescription "0.000001-fold of the product out of the derived SI newton and the SI base unit metre" ;
+  qudt:symbol "μN⋅m" ;
+  qudt:ucumCode "uN.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micronewton Meter"@en-us ;
+  rdfs:label "Micronewton Metre"@en ;
+.
+unit:MicroOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA055" ;
+  qudt:isScalingOf unit:OHM ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit ohm" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μΩ" ;
+  qudt:ucumCode "uOhm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microohm"@en ;
+.
+unit:MicroPA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA073" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit pascal" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μPa" ;
+  qudt:ucumCode "uPa"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micropascal"@en ;
+.
+unit:MicroPOISE
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA072" ;
+  qudt:plainTextDescription "0.000001-fold of the CGS unit of the dynamic viscosity poise" ;
+  qudt:symbol "μP" ;
+  qudt:ucumCode "uP"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Micropoise"@en ;
+.
+unit:MicroRAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:guidance "<p>See NIST section <a href=\"http://physics.nist.gov/Pubs/SP811/sec07.html#7.10\">SP811 section7.10</a></p>"^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA094" ;
+  qudt:isScalingOf unit:RAD ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µrad" ;
+  qudt:ucumCode "urad"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B97" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "microradian"@en ;
+.
+unit:MicroS
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Admittance ;
+  qudt:hasQuantityKind quantitykind:Conductance ;
+  qudt:iec61360Code "0112/2///62720#UAA074" ;
+  qudt:isScalingOf unit:S ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit siemens" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "μS" ;
+  qudt:ucumCode "uS"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microsiemens"@en ;
+.
+unit:MicroS-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA075" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "μS/cm" ;
+  qudt:ucumCode "uS.cm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microsiemens Per Centimeter"@en-us ;
+  rdfs:label "Microsiemens Per Centimetre"@en ;
+.
+unit:MicroS-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA076" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit Siemens divided by the SI base unit metre" ;
+  qudt:symbol "μS/m" ;
+  qudt:ucumCode "uS.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microsiemens Per Meter"@en-us ;
+  rdfs:label "Microsiemens Per Metre"@en ;
+.
+unit:MicroSEC
+  a qudt:Unit ;
+  dcterms:description "\"Microsecond\" is a unit for  'Time' expressed as \\(microsec\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA095" ;
+  qudt:isScalingOf unit:SEC ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µs" ;
+  qudt:ucumCode "us"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B98" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "microsecond"@en ;
+.
+unit:MicroSV
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Although the sievert has the same dimensions as the gray (i.e. joules per kilogram), it measures a different quantity. To avoid any risk of confusion between the absorbed dose and the equivalent dose, the corresponding special units, namely the gray instead of the joule per kilogram for absorbed dose and the sievert instead of the joule per kilogram for the dose equivalent, should be used. 0.000001-fold of the SI derived unit sievert."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalent ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI ;
+  qudt:isScalingOf unit:SV ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/sievert> ;
+  qudt:prefix prefix:Micro ;
+  qudt:siUnitsExpression "J/kg" ;
+  qudt:symbol "µSv" ;
+  qudt:ucumCode "uSv"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroSievert"@en ;
+.
+unit:MicroSV-PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "0.000001-fold of the derived SI unit sievert divided by the unit hour"^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000000277778 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalent ;
+  qudt:iec61360Code "0112/2///62720#UAB466" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/sievert> ;
+  qudt:siUnitsExpression "J/kg" ;
+  qudt:symbol "µSv/hr" ;
+  qudt:ucumCode "uSv.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroSievert per hour"@en ;
+.
+unit:MicroT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA077" ;
+  qudt:isScalingOf unit:T ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit tesla" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µT" ;
+  qudt:ucumCode "uT"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microtesla"@en ;
+.
+unit:MicroTORR
+  a qudt:Unit ;
+  dcterms:description "\"MicroTorr\" is a unit for  'Force Per Area' expressed as \\(microtorr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000133322 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "µTorr" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MicroTorr"@en ;
+.
+unit:MicroV
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA078" ;
+  qudt:isScalingOf unit:V ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit volt" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "µV" ;
+  qudt:ucumCode "uV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D82" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microvolt"@en ;
+.
+unit:MicroV-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA079" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit volt divided by the SI base unit metre" ;
+  qudt:symbol "µV/m" ;
+  qudt:ucumCode "uV.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C3" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microvolt Per Meter"@en-us ;
+  rdfs:label "Microvolt Per Metre"@en ;
+.
+unit:MicroW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA080" ;
+  qudt:isScalingOf unit:W ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit watt" ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "mW" ;
+  qudt:ucumCode "uW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D80" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microwatt"@en ;
+.
+unit:MicroW-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA081" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit watt divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "µW/m²" ;
+  qudt:ucumCode "uW.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Microwatt Per Square Meter"@en-us ;
+  rdfs:label "Microwatt Per Square Metre"@en ;
+.
+unit:MilLength
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Mil Length\" is a C.G.S System unit for  'Length' expressed as \\(mil\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000254 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:symbol "mil" ;
+  qudt:ucumCode "[mil_i]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Mil Length"@en ;
+.
+unit:MilliA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA775" ;
+  qudt:isScalingOf unit:A ;
+  qudt:prefix prefix:Micro ;
+  qudt:symbol "mA" ;
+  qudt:ucumCode "mA"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4K" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MilliAmpere"@en ;
+.
+unit:MilliA-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3.6 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA777" ;
+  qudt:plainTextDescription "product of the 0.001-fold of the SI base unit ampere and the unit hour" ;
+  qudt:symbol "µA⋅hr" ;
+  qudt:ucumCode "mA.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E09" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliampere Hour"@en ;
+.
+unit:MilliA-PER-IN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.03937008 ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAA778" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit ampere divided by the unit inch according to the Anglo-American and the Imperial system of units" ;
+  qudt:symbol "µA/in" ;
+  qudt:ucumCode "mA.[in_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F08" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliampere Per Inch"@en ;
+.
+unit:MilliA-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAA781" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit ampere  divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "mA/mm" ;
+  qudt:ucumCode "mA.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliampere Per Millimeter"@en-us ;
+  rdfs:label "Milliampere Per Millimetre"@en ;
+.
+unit:MilliARCSEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A minute of arc, arcminute, or minute arc (MOA), is a unit of angular measurement equal to one sixtieth (1/60) of one degree (circle/21,600), or \\(\\pi /10,800 radians\\). In turn, a second of arc or arcsecond is one sixtieth (1/60) of one minute of arc. Since one degree is defined as one three hundred and sixtieth (1/360) of a rotation, one minute of arc is 1/21,600 of a rotation.  the milliarcsecond, abbreviated mas, is used in astronomy."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000484813681 ;
+  qudt:exactMatch unit:RAD ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Minute_of_arc"^^xsd:anyURI ;
+  qudt:symbol "mas" ;
+  qudt:ucumCode "m''"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milli ArcSecond"@en ;
+  owl:sameAs unit:RAD ;
+.
+unit:MilliBAR
+  a qudt:Unit ;
+  dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to \\(100,000 Pa = 1 bar \\approx 750.0616827 Torr\\). Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:exactMatch unit:HectoPA ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA810" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BAR ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mbar" ;
+  qudt:ucumCode "mbar"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MBR" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibar"@en ;
+  owl:sameAs unit:HectoPA ;
+.
+unit:MilliBAR-L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA813" ;
+  qudt:plainTextDescription "product out of the 0.001-fold of the unit bar and the unit litre divided by the SI base unit second" ;
+  qudt:symbol "mbar⋅L/s" ;
+  qudt:ucumCode "mbar.L.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibar Liter Per Second"@en-us ;
+  rdfs:label "Millibar Litre Per Second"@en ;
+.
+unit:MilliBAR-M3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA327" ;
+  qudt:plainTextDescription "product of the unit bar and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "mbar⋅m³/s" ;
+  qudt:ucumCode "mbar.m3.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibar Cubic Meter Per Second"@en-us ;
+  rdfs:label "Millibar Cubic Metre Per Second"@en ;
+.
+unit:MilliBAR-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA812" ;
+  qudt:plainTextDescription "0.01-fold of the unit bar divided by the unit bar" ;
+  qudt:symbol "mbar/bar" ;
+  qudt:ucumCode "mbar.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F04" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibar Per Bar"@en ;
+.
+unit:MilliBAR-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ;
+  qudt:iec61360Code "0112/2///62720#UAA811" ;
+  qudt:plainTextDescription "0.001-fold of the unit bar divided by the unit temperature kelvin" ;
+  qudt:symbol "mbar/K" ;
+  qudt:ucumCode "mbar.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F84" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibar Per Kelvin"@en ;
+.
+unit:MilliBQ-PER-GM
+  a qudt:Unit ;
+  dcterms:description "One radioactive disintegration per thousand seconds per 1000th SI unit of sample mass."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificActivity ;
+  qudt:symbol "mBq/g" ;
+  qudt:ucumCode "mBq.g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibecquerels per gram"@en ;
+.
+unit:MilliBQ-PER-KiloGM
+  a qudt:Unit ;
+  dcterms:description "One radioactive disintegration per thousand seconds from an SI standard unit of mass of sample."@en ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificActivity ;
+  qudt:symbol "mBq/kg" ;
+  qudt:ucumCode "mBq.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibecquerels per kilogram"@en ;
+.
+unit:MilliBQ-PER-L
+  a qudt:Unit ;
+  dcterms:description "One radioactive disintegration per second from the SI unit of volume (cubic metre). Equivalent to Becquerels per cubic metre."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ActivityConcentration ;
+  qudt:symbol "mBq/L" ;
+  qudt:ucumCode "mBq.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibecquerels per litre"@en ;
+.
+unit:MilliBQ-PER-M2-DAY
+  a qudt:Unit ;
+  dcterms:description "One radioactive disintegration per thousand seconds in material passing through an area of one square metre during a period of one day (86400 seconds)."@en ;
+  qudt:conversionMultiplier 0.0000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-2D0 ;
+  qudt:symbol "mBq/(m²⋅day)" ;
+  qudt:ucumCode "mBq.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millibecquerels per square metre per day"@en ;
+.
+unit:MilliC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A MilliCoulomb is \\(10^{-3} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA782" ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mC" ;
+  qudt:ucumCode "mC"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MilliCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:MilliC-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:iec61360Code "0112/2///62720#UAA783" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the SI base unit kilogram" ;
+  qudt:symbol "mC/kg" ;
+  qudt:ucumCode "mC.kg-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C8" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millicoulomb Per Kilogram"@en ;
+.
+unit:MilliC-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA784" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "mC/m²" ;
+  qudt:ucumCode "mC.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millicoulomb Per Square Meter"@en-us ;
+  rdfs:label "Millicoulomb Per Square Metre"@en ;
+.
+unit:MilliC-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA785" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "mC/m³" ;
+  qudt:ucumCode "mC.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D88" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millicoulomb Per Cubic Meter"@en-us ;
+  rdfs:label "Millicoulomb Per Cubic Metre"@en ;
+.
+unit:MilliCi
+  a qudt:Unit ;
+  qudt:conversionMultiplier 37000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Activity ;
+  qudt:iec61360Code "0112/2///62720#UAA786" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit curie" ;
+  qudt:symbol "mCi" ;
+  qudt:ucumCode "mCi"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MCU" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millicurie"@en ;
+.
+unit:MilliDEG_C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(Millidegree Celsius is a scaled unit of measurement for temperature.\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:conversionOffset 273.15 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Celsius"^^xsd:anyURI ;
+  qudt:guidance "<p>See NIST section <a href=\"http://physics.nist.gov/Pubs/SP811/sec04.html#4.2.1.1\">SP811 section 4.2.1.1</a></p>"^^rdf:HTML ;
+  qudt:guidance "<p>See NIST section <a href=\"http://physics.nist.gov/Pubs/SP811/sec06.html#6.2.8\">SP811 section 6.2.8</a></p>"^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:BoilingPoint ;
+  qudt:hasQuantityKind quantitykind:FlashPoint ;
+  qudt:hasQuantityKind quantitykind:MeltingPoint ;
+  qudt:hasQuantityKind quantitykind:Temperature ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Celsius?oldid=494152178"^^xsd:anyURI ;
+  qudt:isScalingOf unit:DEG_C ;
+  qudt:latexDefinition "millieDegree Celsius"^^qudt:LatexString ;
+  qudt:symbol "m°C" ;
+  qudt:ucumCode "mCel"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millidegree Celsius"@en ;
+.
+unit:MilliFARAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:iec61360Code "0112/2///62720#UAA787" ;
+  qudt:isScalingOf unit:FARAD ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit farad" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mF" ;
+  qudt:ucumCode "mF"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millifarad"@en ;
+.
+unit:MilliG
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Milligravity\" is a unit for  'Linear Acceleration' expressed as \\(mG\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00980665 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:symbol "mG" ;
+  qudt:ucumCode "m[g]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligravity"@en ;
+.
+unit:MilliGAL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Acceleration ;
+  qudt:iec61360Code "0112/2///62720#UAB043" ;
+  qudt:plainTextDescription "0.001-fold of the unit of acceleration called gal according to the CGS system of units" ;
+  qudt:symbol "mgal" ;
+  qudt:ucumCode "mGal"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligal"@en ;
+.
+unit:MilliGAL-PER-MO
+  a qudt:Unit ;
+  dcterms:description "A rate of change of one millionth part of a unit of gravitational acceleration equal to one centimetre per second per second over a time duration of 30.4375 days or 2629800 seconds."@en ;
+  qudt:conversionMultiplier 0.000000000380257053768347 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-3D0 ;
+  qudt:symbol "mgal/mo" ;
+  qudt:ucumCode "mGal.mo-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MilliGals per month"@en ;
+.
+unit:MilliGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA815" ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mg" ;
+  qudt:ucumCode "mg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MGM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram"@en ;
+.
+unit:MilliGM-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA818" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "mg/cm²" ;
+  qudt:ucumCode "mg.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Square Centimeter"@en-us ;
+  rdfs:label "Milligram Per Square Centimetre"@en ;
+.
+unit:MilliGM-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000000001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA819" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit day" ;
+  qudt:symbol "mg/day" ;
+  qudt:ucumCode "mg.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Day"@en ;
+.
+unit:MilliGM-PER-DeciL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A derived unit for amount-of-substance concentration measured in mg/dL."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:expression "\\(mg/L\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:BloodGlucoseLevel_Mass ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "mg/L" ;
+  qudt:ucumCode "mg.dL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "milligrams per decilitre"@en ;
+  rdfs:label "milligrams per decilitre"@en-us ;
+.
+unit:MilliGM-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA822" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "mg/gm" ;
+  qudt:ucumCode "mg.g-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mg/g"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H64" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Gram"@en ;
+.
+unit:MilliGM-PER-HA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA818" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 10,0000-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:ucumCode "mg.har-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Hectare"@en ;
+.
+unit:MilliGM-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA823" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit hour" ;
+  qudt:symbol "mg/hr" ;
+  qudt:ucumCode "mg.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4M" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Hour"@en ;
+.
+unit:MilliGM-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA826" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit kilogram" ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "mg/kg" ;
+  qudt:ucumCode "mg.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mg/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "NA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Kilogram"@en ;
+.
+unit:MilliGM-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA827" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit litre" ;
+  qudt:symbol "mg/L" ;
+  qudt:ucumCode "mg.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mg/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M1" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Liter"@en-us ;
+  rdfs:label "Milligram Per Litre"@en ;
+.
+unit:MilliGM-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA828" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit metre" ;
+  qudt:symbol "mg/m" ;
+  qudt:ucumCode "mg.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Meter"@en-us ;
+  rdfs:label "Milligram Per Metre"@en ;
+.
+unit:MilliGM-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA829" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "mg/m²" ;
+  qudt:ucumCode "mg.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "mg/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GO" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Square Meter"@en-us ;
+  rdfs:label "Milligram Per Square Metre"@en ;
+.
+unit:MilliGM-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:symbol "mg/(m²⋅day)" ;
+  qudt:ucumCode "mg.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligrams per square metre per day"@en ;
+.
+unit:MilliGM-PER-M2-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:symbol "mg/(m²⋅hr)" ;
+  qudt:ucumCode "mg.m-2.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligrams per square metre per hour"@en ;
+.
+unit:MilliGM-PER-M2-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:symbol "mg/(m²⋅s)" ;
+  qudt:ucumCode "mg.m-2.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligrams per square metre per second"@en ;
+.
+unit:MilliGM-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA830" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "mg/m³" ;
+  qudt:ucumCode "mg.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "mg/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "GP" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Cubic Meter"@en-us ;
+  rdfs:label "Milligram Per Cubic Metre"@en ;
+.
+unit:MilliGM-PER-M3-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "mg/(m³⋅day)" ;
+  qudt:ucumCode "mg.m-3.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligrams per cubic metre per day"@en ;
+.
+unit:MilliGM-PER-M3-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "mg/(m³⋅hr)" ;
+  qudt:ucumCode "mg.m-3.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligrams per cubic metre per hour"@en ;
+.
+unit:MilliGM-PER-M3-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "mg/(m³⋅s)" ;
+  qudt:ucumCode "mg.m-3.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligrams per cubic metre per second"@en ;
+.
+unit:MilliGM-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA833" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit minute" ;
+  qudt:symbol "mg/min" ;
+  qudt:ucumCode "mg/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Minute"@en ;
+.
+unit:MilliGM-PER-MilliL
+  a qudt:Unit ;
+  dcterms:description "A scaled unit of mass concentration."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassConcentration ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit millilitre" ;
+  qudt:ucumCode "mg.mL-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mg/mL"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Milliliter"@en-us ;
+  rdfs:label "Milligram Per Millilitre"@en ;
+.
+unit:MilliGM-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA836" ;
+  qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit second" ;
+  qudt:symbol "mg/s" ;
+  qudt:ucumCode "mg/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligram Per Second"@en ;
+.
+unit:MilliGRAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDose ;
+  qudt:iec61360Code "0112/2///62720#UAA788" ;
+  qudt:isScalingOf unit:GRAY ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit gray" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mGy" ;
+  qudt:ucumCode "mGy"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milligray"@en ;
+.
+unit:MilliH
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A unit of inductance equal to one thousandth of a henry. "^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:iec61360Code "0112/2///62720#UAA789" ;
+  qudt:isScalingOf unit:H ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mH" ;
+  qudt:ucumCode "mH"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C14" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millihenry"@en ;
+.
+unit:MilliH-PER-KiloOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA791" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit henry divided by the 1 000-fold of the SI derived unit ohm" ;
+  qudt:symbol "mH/kΩ" ;
+  qudt:ucumCode "mH.kOhm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H05" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millihenry Per Kiloohm"@en ;
+.
+unit:MilliH-PER-OHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA790" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit henry divided by the SI derived unit ohm" ;
+  qudt:symbol "mH/Ω" ;
+  qudt:ucumCode "mH.Ohm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H06" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millihenry Per Ohm"@en ;
+.
+unit:MilliIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000254 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA841" ;
+  qudt:plainTextDescription "0.001-fold of the unit inch according to the Anglo-American and Imperial system of units" ;
+  qudt:symbol "mil" ;
+  qudt:ucumCode "m[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "77" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milli-inch"@en ;
+  skos:altLabel "mil"@en-us ;
+  skos:altLabel "thou"@en-gb ;
+.
+unit:MilliJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA792" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit joule" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mJ" ;
+  qudt:ucumCode "mJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C15" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millijoule"@en ;
+.
+unit:MilliL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA844" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre" ;
+  qudt:symbol "mL" ;
+  qudt:ucumCode "mL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MLT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre"@en ;
+  rdfs:label "Millilitre"@en-us ;
+.
+unit:MilliL-PER-CentiM2-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00016666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumetricFlux ;
+  qudt:iec61360Code "0112/2///62720#UAA858" ;
+  qudt:plainTextDescription "quotient of the 0.001-fold of the unit litre and the unit minute divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "mL/(cm²⋅min)" ;
+  qudt:ucumCode "mL.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Square Centimeter Minute"@en-us ;
+  rdfs:label "Millilitre Per Square Centimetre Minute"@en ;
+.
+unit:MilliL-PER-CentiM2-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumetricFlux ;
+  qudt:iec61360Code "0112/2///62720#UAB085" ;
+  qudt:plainTextDescription "unit of the volume flow rate millilitre divided by second related to the transfer area as 0.0001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "mL/(cm²⋅s)" ;
+  qudt:ucumCode "mL.cm-2.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Square Centimeter Second"@en-us ;
+  rdfs:label "Millilitre Per Square Centimetre Second"@en ;
+.
+unit:MilliL-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000000001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA847" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre divided by the unit day" ;
+  qudt:symbol "mL/day" ;
+  qudt:ucumCode "mL.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Day"@en ;
+  rdfs:label "Millilitre Per Day"@en-us ;
+.
+unit:MilliL-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA850" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre divided by the unit hour" ;
+  qudt:symbol "mL/hr" ;
+  qudt:ucumCode "mL.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Hour"@en ;
+  rdfs:label "Millilitre Per Hour"@en-us ;
+.
+unit:MilliL-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA845" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre divided by the SI base unit kelvin" ;
+  qudt:symbol "mL/K" ;
+  qudt:ucumCode "mL.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Kelvin"@en ;
+  rdfs:label "Millilitre Per Kelvin"@en-us ;
+.
+unit:MilliL-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificVolume ;
+  qudt:iec61360Code "0112/2///62720#UAB095" ;
+  qudt:plainTextDescription "0.001-fold of the unit of the volume litre divided by the SI base unit kilogram" ;
+  qudt:symbol "mL/kg" ;
+  qudt:ucumCode "mL.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mL/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "KX" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Kilogram"@en ;
+  rdfs:label "Millilitre Per Kilogram"@en-us ;
+.
+unit:MilliL-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA853" ;
+  qudt:plainTextDescription "volume ratio consisting of the 0.001-fold of the unit litre divided by the unit litre" ;
+  qudt:symbol "mL/L" ;
+  qudt:ucumCode "mL.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mL/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Liter"@en-us ;
+  rdfs:label "Millilitre Per Litre"@en ;
+.
+unit:MilliL-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:symbol "mL/(m²⋅day)" ;
+  qudt:ucumCode "mL.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitres per square metre per day"@en ;
+.
+unit:MilliL-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA854" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "mL/m³" ;
+  qudt:ucumCode "mL.m-3"^^qudt:UCUMcs ;
+  qudt:ucumCode "mL/m3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H65" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Cubic Meter"@en-us ;
+  rdfs:label "Millilitre Per Cubic Metre"@en ;
+.
+unit:MilliL-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA855" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre divided by the unit minute" ;
+  qudt:symbol "mL/min" ;
+  qudt:ucumCode "mL.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mL/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Minute"@en ;
+  rdfs:label "Millilitre Per Minute"@en-us ;
+.
+unit:MilliL-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA859" ;
+  qudt:plainTextDescription "0.001-fold of the unit litre divided by the SI base unit second" ;
+  qudt:symbol "mL/s" ;
+  qudt:ucumCode "mL.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millilitre Per Second"@en ;
+  rdfs:label "Millilitre Per Second"@en-us ;
+.
+unit:MilliM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The millimetre (International spelling as used by the International Bureau of Weights and Measures) or millimeter (American spelling) (SI unit symbol mm) is a unit of length in the metric system, equal to one thousandth of a metre, which is the SI base unit of length. It is equal to 1000 micrometres or 1000000 nanometres. A millimetre is equal to exactly 5/127 (approximately 0.039370) of an inch."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Millimetre"^^xsd:anyURI ;
+  qudt:expression "\\(mm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA862" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Millimetre?oldid=493032457"^^xsd:anyURI ;
+  qudt:isScalingOf unit:M ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mm" ;
+  qudt:ucumCode "mm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MMT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter"@en-us ;
+  rdfs:label "Millimetre"@en ;
+  skos:altLabel "mil"@en-gb ;
+.
+unit:MilliM-PER-DAY
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000115741 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:informativeReference "https://www.wmo.int/pages/prog/www/IMOP/CIMO-Guide.html"^^xsd:anyURI ;
+  qudt:plainTextDescription "A measure of change in depth over time for a specific area, typically used to express precipitation intensity or evaporation (the amount of liquid water evaporated per unit of time from the area)" ;
+  qudt:symbol "mm/day" ;
+  qudt:ucumCode "mm.d-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mm/d"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "millimeters per day"@en-us ;
+  rdfs:label "millimetres per day"@en ;
+.
+unit:MilliM-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000002777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA866" ;
+  qudt:plainTextDescription "0001-fold of the SI base unit metre divided by the unit hour" ;
+  qudt:symbol "mm/hr" ;
+  qudt:ucumCode "mm.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mm/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H67" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter Per Hour"@en-us ;
+  rdfs:label "Millimetre Per Hour"@en ;
+.
+unit:MilliM-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAA864" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the SI base unit kelvin" ;
+  qudt:symbol "mm/K" ;
+  qudt:ucumCode "mm.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter Per Kelvin"@en-us ;
+  rdfs:label "Millimetre Per Kelvin"@en ;
+.
+unit:MilliM-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAB378" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the unit minute" ;
+  qudt:symbol "mm/min" ;
+  qudt:ucumCode "mm.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mm/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter Per Minute"@en-us ;
+  rdfs:label "Millimetre Per Minute"@en ;
+.
+unit:MilliM-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA867" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the SI base unit second" ;
+  qudt:symbol "mm/s" ;
+  qudt:ucumCode "mm.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter Per Second"@en-us ;
+  rdfs:label "Millimetre Per Second"@en ;
+.
+unit:MilliM-PER-YR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000000000171 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Velocity ;
+  qudt:iec61360Code "0112/2///62720#UAA868" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the unit year" ;
+  qudt:symbol "mm/yr" ;
+  qudt:ucumCode "mm.a-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mm/a"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H66" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter Per Year"@en-us ;
+  rdfs:label "Millimetre Per Year"@en ;
+.
+unit:MilliM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAA871" ;
+  qudt:isScalingOf unit:M2 ;
+  qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mm²" ;
+  qudt:ucumCode "mm2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MMK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Millimeter"@en-us ;
+  rdfs:label "Square Millimetre"@en ;
+.
+unit:MilliM2-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA872" ;
+  qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 2 divided by the SI base unit second" ;
+  qudt:symbol "mm²/s" ;
+  qudt:ucumCode "mm2.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C17" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Millimeter Per Second"@en-us ;
+  rdfs:label "Square Millimetre Per Second"@en ;
+.
+unit:MilliM3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A metric measure of volume or capacity equal to a cube 1 millimeter on each edge"^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:expression "\\(mm^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA873" ;
+  qudt:isScalingOf unit:M3 ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mm³" ;
+  qudt:ucumCode "mm3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "MMQ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Millimeter"@en-us ;
+  rdfs:label "Cubic Millimetre"@en ;
+.
+unit:MilliM3-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:VolumeFraction ;
+  qudt:iec61360Code "0112/2///62720#UAA874" ;
+  qudt:plainTextDescription "volume ratio consisting of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "mm³/m³" ;
+  qudt:ucumCode "mm3.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Millimeter Per Cubic Meter"@en-us ;
+  rdfs:label "Cubic Millimetre Per Cubic Metre"@en ;
+.
+unit:MilliM4
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ;
+  qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ;
+  qudt:iec61360Code "0112/2///62720#UAA869" ;
+  qudt:isScalingOf unit:M4 ;
+  qudt:plainTextDescription "0.001-fold of the power of the SI base unit metre with the exponent 4" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mm⁴" ;
+  qudt:ucumCode "mm4"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G77" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quartic Millimeter"@en-us ;
+  rdfs:label "Quartic Millimetre"@en ;
+.
+unit:MilliMOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstance ;
+  qudt:iec61360Code "0112/2///62720#UAA877" ;
+  qudt:isScalingOf unit:MOL ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit mol" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mmol" ;
+  qudt:ucumCode "mmol"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimole"@en ;
+.
+unit:MilliMOL-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:hasQuantityKind quantitykind:IonicStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA878" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram" ;
+  qudt:symbol "mmol/g" ;
+  qudt:ucumCode "mmol.g-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H68" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimole Per Gram"@en ;
+.
+unit:MilliMOL-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:hasQuantityKind quantitykind:IonicStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA879" ;
+  qudt:plainTextDescription "0.001-fold of the SI base unit mol divided by the SI base unit kilogram" ;
+  qudt:symbol "mmol/kg" ;
+  qudt:ucumCode "mmol.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mmol/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D87" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimole Per Kilogram"@en ;
+.
+unit:MilliMOL-PER-L
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI derived unit for amount-of-substance concentration is the mmo/L."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(mmo/L\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:BloodGlucoseLevel ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:symbol "mmo/L" ;
+  qudt:ucumCode "mmol.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mmol/L"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "millimoles per litre"@en ;
+  rdfs:label "millimoles per litre"@en-us ;
+.
+unit:MilliMOL-PER-M2
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T0D0 ;
+  qudt:symbol "mmol/m²" ;
+  qudt:ucumCode "mmol.m-2"^^qudt:UCUMcs ;
+  qudt:udunitsCode "DU" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimoles per square metre"@en ;
+.
+unit:MilliMOL-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "mmol/(m²⋅day)" ;
+  qudt:ucumCode "mmol.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimoles per square metre per day"@en ;
+.
+unit:MilliMOL-PER-M2-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "µg/(m²⋅s)" ;
+  qudt:ucumCode "mmol.m-2.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mmol/m2/s1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimoles per square metre per second"@en ;
+.
+unit:MilliMOL-PER-M3
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:symbol "mmol/m³" ;
+  qudt:ucumCode "mmol.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimoles per cubic metre"@en ;
+.
+unit:MilliMOL-PER-M3-DAY
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 0.0000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "mmol/(m³⋅day)" ;
+  qudt:ucumCode "mmol.m-3.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimoles per cubic metre per day"@en ;
+.
+unit:MilliMOL-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:symbol "mmol/mol" ;
+  qudt:ucumCode "mmol.mol-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimoles per mole"@en ;
+.
+unit:MilliM_H2O
+  a qudt:Unit ;
+  qudt:conversionMultiplier 9.80665 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA875" ;
+  qudt:plainTextDescription "unit of pressure - 1 mmH2O is the static pressure exerted by a water column with a height of 1 mm" ;
+  qudt:symbol "mmH₂0" ;
+  qudt:ucumCode "mm[H2O]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "HP" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Conventional Millimeter Of Water"@en-us ;
+  rdfs:label "Conventional Millimetre Of Water"@en ;
+.
+unit:MilliM_HG
+  a qudt:Unit ;
+  dcterms:description "The millimeter of mercury is defined as the pressure exerted at the base of a column of fluid exactly 1 mm high, when the density of the fluid is exactly \\(13.5951 g/cm^{3}\\), at a place where the acceleration of gravity is exactly \\(9.80665 m/s^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 133.322387415 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Torr"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Torr?oldid=495199381"^^xsd:anyURI ;
+  qudt:symbol "mmHg" ;
+  qudt:ucumCode "mm[Hg]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "mmHg" ;
+  qudt:udunitsCode "mm_Hg" ;
+  qudt:udunitsCode "mm_hg" ;
+  qudt:udunitsCode "mmhg" ;
+  qudt:uneceCommonCode "HN" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter of Mercury"@en-us ;
+  rdfs:label "Millimetre of Mercury"@en ;
+.
+unit:MilliM_HGA
+  a qudt:Unit ;
+  dcterms:description "Millimeters of Mercury inclusive of atmospheric pressure"^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "mmHgA" ;
+  qudt:ucumCode "mm[Hg]{absolute}"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millimeter of Mercury - Absolute"@en-us ;
+  rdfs:label "Millimetre of Mercury - Absolute"@en ;
+.
+unit:MilliN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAA793" ;
+  qudt:isScalingOf unit:N ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit newton" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mN" ;
+  qudt:ucumCode "mN"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millinewton"@en ;
+.
+unit:MilliN-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA794" ;
+  qudt:plainTextDescription "0.001-fold of the product of the SI derived unit newton and the SI base unit metre" ;
+  qudt:symbol "mN⋅m" ;
+  qudt:ucumCode "mN.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D83" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millinewton Meter"@en-us ;
+  rdfs:label "Millinewton Metre"@en ;
+.
+unit:MilliN-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA795" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit newton divided by the SI base unit metre" ;
+  qudt:symbol "mN/m" ;
+  qudt:ucumCode "mN.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millinewton Per Meter"@en-us ;
+  rdfs:label "Millinewton Per Metre"@en ;
+.
+unit:MilliOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA741" ;
+  qudt:isScalingOf unit:OHM ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit ohm" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mΩ" ;
+  qudt:ucumCode "mOhm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliohm"@en ;
+.
+unit:MilliPA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA796" ;
+  qudt:isScalingOf unit:PA ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit pascal" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mPa" ;
+  qudt:ucumCode "mPa"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "74" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millipascal"@en ;
+.
+unit:MilliPA-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA797" ;
+  qudt:plainTextDescription "0.001-fold of the product of the SI derived unit pascal and the SI base unit second" ;
+  qudt:symbol "mPa⋅s" ;
+  qudt:ucumCode "mPa.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millipascal Second"@en ;
+.
+unit:MilliPA-SEC-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA799" ;
+  qudt:plainTextDescription "0.001-fold of the product of the SI derived unit pascal and the SI base unit second divided by the unit of the pressure bar" ;
+  qudt:symbol "mPa⋅s/bar" ;
+  qudt:ucumCode "mPa.s.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millipascal Second Per Bar"@en ;
+.
+unit:MilliR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000258 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:iec61360Code "0112/2///62720#UAA898" ;
+  qudt:iec61360Code "0112/2///62720#UAB056" ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Roentgen_(unit)"^^xsd:anyURI ;
+  qudt:plainTextDescription "0.001-fold of the unit roentgen." ;
+  qudt:symbol "mR" ;
+  qudt:ucumCode "mR"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2Y" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliroentgen"@en ;
+.
+unit:MilliRAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:guidance "<http://physics.nist.gov/Pubs/SP811/sec07.html#7.10>"^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA897" ;
+  qudt:isScalingOf unit:RAD ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mrad" ;
+  qudt:ucumCode "mrad"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C25" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "milliradian"@en ;
+.
+unit:MilliRAD_R-PER-HR
+  a qudt:Unit ;
+  dcterms:description "One thousandth part of an absorbed ionizing radiation dose equal to 100 ergs per gram of irradiated material received per hour."@en ;
+  qudt:conversionMultiplier 0.000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ;
+  qudt:symbol "mrad/hr" ;
+  qudt:ucumCode "mRAD.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millirads per hour"@en ;
+.
+unit:MilliR_man
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000258 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalent ;
+  qudt:iec61360Code "0112/2///62720#UAA898" ;
+  qudt:iec61360Code "0112/2///62720#UAB056" ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Roentgen_equivalent_man"^^xsd:anyURI ;
+  qudt:plainTextDescription "The roentgen equivalent man (or rem) is a CGS unit of equivalent dose, effective dose, and committed dose, which are measures of the health effect of low levels of ionizing radiation on the human body." ;
+  qudt:symbol "mrem" ;
+  qudt:ucumCode "mREM"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliroentgen Equivalent Man"@en ;
+.
+unit:MilliS
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Admittance ;
+  qudt:hasQuantityKind quantitykind:Conductance ;
+  qudt:iec61360Code "0112/2///62720#UAA800" ;
+  qudt:isScalingOf unit:S ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit siemens" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mS" ;
+  qudt:ucumCode "mS"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millisiemens"@en ;
+.
+unit:MilliS-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA801" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "mS/cm" ;
+  qudt:ucumCode "mS.cm-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "mS/cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millisiemens Per Centimeter"@en-us ;
+  rdfs:label "Millisiemens Per Centimetre"@en ;
+.
+unit:MilliS-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:symbol "mS/m" ;
+  qudt:ucumCode "mS.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MilliSiemens per metre"@en ;
+.
+unit:MilliSEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Millisecond\" is an Imperial unit for 'Time' expressed as \\(ms\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Millisecond"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA899" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Millisecond?oldid=495102042"^^xsd:anyURI ;
+  qudt:isScalingOf unit:SEC ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "ms" ;
+  qudt:ucumCode "ms"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C26" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "millisecond"@en ;
+.
+unit:MilliSV
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalent ;
+  qudt:iec61360Code "0112/2///62720#UAA802" ;
+  qudt:isScalingOf unit:SV ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit sievert" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mSv" ;
+  qudt:ucumCode "mSv"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C28" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millisievert"@en ;
+.
+unit:MilliT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA803" ;
+  qudt:isScalingOf unit:T ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit tesla" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mT" ;
+  qudt:ucumCode "mT"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millitesla"@en ;
+.
+unit:MilliTORR
+  a qudt:Unit ;
+  dcterms:description "\"MilliTorr\" is a unit for  'Force Per Area' expressed as \\(utorr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.133322 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:symbol "mTorr" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MilliTorr"@en ;
+.
+unit:MilliV
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA804" ;
+  qudt:isScalingOf unit:V ;
+  qudt:plainTextDescription "0,001-fold of the SI derived unit volt" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mV" ;
+  qudt:ucumCode "mV"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2Z" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millivolt"@en ;
+.
+unit:MilliV-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA805" ;
+  qudt:plainTextDescription "0.000001-fold of the SI derived unit volt divided by the SI base unit metre" ;
+  qudt:symbol "mV/m" ;
+  qudt:ucumCode "mV.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millivolt Per Meter"@en-us ;
+  rdfs:label "Millivolt Per Metre"@en ;
+.
+unit:MilliV-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001666667 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA806" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit volt divided by the unit minute" ;
+  qudt:symbol "mV/min" ;
+  qudt:ucumCode "mV.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H62" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Millivolt Per Minute"@en ;
+.
+unit:MilliW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:isScalingOf unit:W ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mW" ;
+  qudt:ucumCode "mW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "MilliW"@en ;
+.
+unit:MilliW-PER-CentiM2-MicroM-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "mW/(cm⋅µm⋅sr)" ;
+  qudt:ucumCode "mW.cm-2.um-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliwatts per square centimetre per micrometre per steradian"@en ;
+.
+unit:MilliW-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA808" ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit weber divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "mW/m²" ;
+  qudt:ucumCode "mW.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliwatt Per Square Meter"@en-us ;
+  rdfs:label "Milliwatt Per Square Metre"@en ;
+.
+unit:MilliW-PER-M2-NanoM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "mW/(cm⋅nm)" ;
+  qudt:ucumCode "mW.m-2.nm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliwatts per square metre per nanometre"@en ;
+.
+unit:MilliW-PER-M2-NanoM-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "mW/(cm⋅nm⋅sr)" ;
+  qudt:ucumCode "mW.m-2.nm-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliwatts per square metre per nanometre per steradian"@en ;
+.
+unit:MilliWB
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:iec61360Code "0112/2///62720#UAA809" ;
+  qudt:isScalingOf unit:WB ;
+  qudt:plainTextDescription "0.001-fold of the SI derived unit weber" ;
+  qudt:prefix prefix:Milli ;
+  qudt:symbol "mWb" ;
+  qudt:ucumCode "mWb"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Milliweber"@en ;
+.
+unit:MillionUSD
+  a qudt:CurrencyUnit ;
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Million US Dollars"@en ;
+.
+unit:MillionUSD-PER-YR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(\\(M\\$/yr\\)\\)"^^qudt:LatexString ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Million US Dollars per Year"@en ;
+.
+unit:MoldovanLeu
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Moldova"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Moldovan_leu"^^xsd:anyURI ;
+  qudt:expression "\\(MDL\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Moldovan_leu?oldid=490027766"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moldovan Leu"@en ;
+.
+unit:MoroccanDirham
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Morocco, Western Sahara"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Moroccan_dirham"^^xsd:anyURI ;
+  qudt:expression "\\(MAD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Moroccan_dirham?oldid=490560557"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Moroccan Dirham"@en ;
+.
+unit:N
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The \"Newton\" is the SI unit of force. A force of one newton will accelerate a mass of one kilogram at the rate of one meter per second per second. The newton is named for Isaac Newton (1642-1727), the British mathematician, physicist, and natural philosopher. He was the first person to understand clearly the relationship between force (F), mass (m), and acceleration (a) expressed by the formula \\(F = m \\cdot a\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Newton"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAA235" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Newton?oldid=488427661"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/newton> ;
+  qudt:symbol "N" ;
+  qudt:ucumCode "N"^^qudt:UCUMcs ;
+  qudt:udunitsCode "N" ;
+  qudt:uneceCommonCode "NEW" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton"@en ;
+.
+unit:N-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA237" ;
+  qudt:plainTextDescription "product of the SI derived unit newton and the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "N⋅cm" ;
+  qudt:ucumCode "N.cm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F88" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Centimeter"@en-us ;
+  rdfs:label "Newton Centimetre"@en ;
+.
+unit:N-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Torque\" is the tendency of a force to cause a rotation, is the product of the force and the distance from the center of rotation to the point where the force is applied. Torque has the same units as work or energy, but it is a different physical concept. To stress the difference, scientists measure torque in newton meters rather than in joules, the SI unit of work. One newton meter is approximately 0.737562 pound foot."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Newton_metre"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:exactMatch unit:J ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MomentOfForce ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:iec61360Code "0112/2///62720#UAA239" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Newton_metre?oldid=493923333"^^xsd:anyURI ;
+  qudt:siUnitsExpression "N.m" ;
+  qudt:symbol "N⋅m" ;
+  qudt:ucumCode "N.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "NU" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Meter"@en-us ;
+  rdfs:label "Newton Metre"@en ;
+  owl:sameAs unit:J ;
+.
+unit:N-M-PER-A
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:iec61360Code "0112/2///62720#UAA241" ;
+  qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit metre divided by the SI base unit ampere" ;
+  qudt:symbol "N⋅m/A" ;
+  qudt:ucumCode "N.m.A-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F90" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Meter Per Ampere"@en-us ;
+  rdfs:label "Newton Metre Per Ampere"@en ;
+.
+unit:N-M-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAB490" ;
+  qudt:plainTextDescription "product of the derived SI unit newton and the SI base unit metre divided by the SI base unit kilogram" ;
+  qudt:symbol "N⋅m/kg" ;
+  qudt:ucumCode "N.m.kg-1"^^qudt:UCUMcs ;
+  qudt:udunitsCode "gp" ;
+  qudt:uneceCommonCode "G19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Meter Per Kilogram"@en-us ;
+  rdfs:label "Newton Metre Per Kilogram"@en ;
+.
+unit:N-M-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TorquePerLength ;
+  qudt:plainTextDescription "This is the SI unit for the rolling resistance, which is equivalent to drag force in newton" ;
+  qudt:symbol "N⋅m/m" ;
+  qudt:uneceCommonCode "Q27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton meter per meter"@en-us ;
+  rdfs:label "Newton metre per metre"@en ;
+  rdfs:label "Newtonmeter pro Meter"@de ;
+.
+unit:N-M-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA244" ;
+  qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit metre divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "N⋅m/m²" ;
+  qudt:ucumCode "N.m.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Meter Per Square Meter"@en-us ;
+  rdfs:label "Newton Metre Per Square Metre"@en ;
+.
+unit:N-M-PER-RAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:TorquePerAngle ;
+  qudt:plainTextDescription "Newton Meter per Radian is the SI unit for Torsion Constant" ;
+  qudt:symbol "N⋅m/rad" ;
+  qudt:uneceCommonCode "M93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton meter per radian"@en-us ;
+  rdfs:label "Newton metre per radian"@en ;
+  rdfs:label "Newtonmeter pro Radian"@de ;
+.
+unit:N-M-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI derived unit of angular momentum. "^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Newton_metre"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularImpulse ;
+  qudt:hasQuantityKind quantitykind:AngularMomentum ;
+  qudt:iec61360Code "0112/2///62720#UAA245" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/SI_derived_unit"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
+  qudt:siUnitsExpression "N.m.sec" ;
+  qudt:symbol "N⋅m⋅s" ;
+  qudt:ucumCode "N.m.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Meter Second"@en-us ;
+  rdfs:label "Newton Metre Second"@en ;
+.
+unit:N-M-SEC-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:LinearMomentum ;
+  qudt:plainTextDescription "Newton metre seconds measured per metre" ;
+  qudt:symbol "N⋅m⋅s/m" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton meter seconds per meter"@en-us ;
+  rdfs:label "Newton metre seconds per metre"@en ;
+  rdfs:label "Newtonmetersekunden pro Meter"@de ;
+.
+unit:N-M-SEC-PER-RAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularMomentumPerAngle ;
+  qudt:plainTextDescription "Newton metre seconds measured per radian" ;
+  qudt:symbol "N⋅m⋅s/rad" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton meter seconds per radian"@en-us ;
+  rdfs:label "Newton metre seconds per radian"@en ;
+  rdfs:label "Newtonmetersekunden pro Radian"@de ;
+.
+unit:N-M2-PER-A
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:exactMatch unit:WB-M ;
+  qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
+  qudt:symbol "N⋅m²/A" ;
+  qudt:ucumCode "N.m2.A-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "N.m2/A"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Meter Squared per Ampere"@en-us ;
+  rdfs:label "Newton Metre Squared per Ampere"@en ;
+  owl:sameAs unit:WB-M ;
+.
+unit:N-M2-PER-KiloGM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T-2D0 ;
+  qudt:iec61360Code "0112/2///62720#UAB491" ;
+  qudt:plainTextDescription "unit of gravitational constant as product of the derived SI unit newton, the power of the SI base unit metre with the exponent 2 divided by the power of the SI base unit kilogram with the exponent 2" ;
+  qudt:symbol "N⋅m²/kg²" ;
+  qudt:ucumCode "N.m.kg-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Square Meter Per Square Kilogram"@en-us ;
+  rdfs:label "Newton Square Metre Per Square Kilogram"@en ;
+.
+unit:N-PER-A
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxPerUnitLength ;
+  qudt:iec61360Code "0112/2///62720#UAA236" ;
+  qudt:plainTextDescription "SI derived unit newton divided by the SI base unit ampere" ;
+  qudt:symbol "N/A" ;
+  qudt:ucumCode "N.A-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Per Ampere"@en ;
+.
+unit:N-PER-C
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Newton Per Coulomb ( N/C) is a unit in the category of Electric field strength. It is also known as newtons/coulomb. Newton Per Coulomb ( N/C) has a dimension of MLT-3I-1 where M is mass, L is length, T is time, and I is electric current. It essentially the same as the corresponding standard SI unit V/m."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(N/C\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerElectricCharge ;
+  qudt:symbol "N/C" ;
+  qudt:ucumCode "N.C-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton per Coulomb"@en ;
+.
+unit:N-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA238" ;
+  qudt:plainTextDescription "SI derived unit newton divided by the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "N/cm" ;
+  qudt:ucumCode "N.cm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Per Centimeter"@en-us ;
+  rdfs:label "Newton Per Centimetre"@en ;
+.
+unit:N-PER-CentiM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB183" ;
+  qudt:plainTextDescription "derived SI unit newton divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ;
+  qudt:symbol "N/cm²" ;
+  qudt:ucumCode "N.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E01" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Per Square Centimeter"@en-us ;
+  rdfs:label "Newton Per Square Centimetre"@en ;
+.
+unit:N-PER-KiloGM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Gravitational field strength at a point is the gravitational force per unit mass at that point. It is a vector and its S.I. unit is N kg-1."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(N/kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ThrustToMassRatio ;
+  qudt:symbol "N/kg" ;
+  qudt:ucumCode "N.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton per Kilogram"@en ;
+.
+unit:N-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Newton Per Meter (N/m) is a unit in the category of Surface tension. It is also known as newtons per meter, newton per metre, newtons per metre, newton/meter, newton/metre. This unit is commonly used in the SI unit system. Newton Per Meter (N/m) has a dimension of MT-2 where M is mass, and T is time. This unit is the standard SI unit in this category."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(N/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA246" ;
+  qudt:symbol "N/m" ;
+  qudt:ucumCode "N.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "N/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4P" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton per Meter"@en-us ;
+  rdfs:label "Newton per Metre"@en ;
+.
+unit:N-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of pressure. The pascal is the standard pressure unit in the MKS metric system, equal to one newton per square meter or one \"kilogram per meter per second per second.\" The unit is named for Blaise Pascal (1623-1662), French philosopher and mathematician, who was the first person to use a barometer to measure differences in altitude."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ;
+  qudt:exactMatch unit:KiloGM-PER-M-SEC2 ;
+  qudt:exactMatch unit:PA ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pascal?oldid=492989202"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
+  qudt:siUnitsExpression "N/m^2" ;
+  qudt:symbol "N/m²" ;
+  qudt:ucumCode "N.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newtons Per Square Meter"@en-us ;
+  rdfs:label "Newtons Per Square Metre"@en ;
+  owl:sameAs unit:KiloGM-PER-M-SEC2 ;
+  owl:sameAs unit:PA ;
+.
+unit:N-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ;
+  qudt:symbol "N/m³" ;
+  qudt:ucumCode "N.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newtons per cubic metre"@en ;
+.
+unit:N-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA249" ;
+  qudt:plainTextDescription "SI derived unit newton divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "N/mm" ;
+  qudt:ucumCode "N.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Per Millimeter"@en-us ;
+  rdfs:label "Newton Per Millimetre"@en ;
+.
+unit:N-PER-MilliM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA250" ;
+  qudt:plainTextDescription "SI derived unit newton divided by the 0.000001-fold of the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "N/mm²" ;
+  qudt:ucumCode "N.mm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Per Square Millimeter"@en-us ;
+  rdfs:label "Newton Per Square Millimetre"@en ;
+.
+unit:N-PER-RAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAngle ;
+  qudt:plainTextDescription "A one-newton force applied for one angle/torsional torque" ;
+  qudt:symbol "N/rad" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton per radian"@en ;
+  rdfs:label "Newton per radian"@en-us ;
+  rdfs:label "Newton pro Radian"@de ;
+.
+unit:N-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:LinearMomentum ;
+  qudt:iec61360Code "0112/2///62720#UAA251" ;
+  qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit second" ;
+  qudt:symbol "N⋅s" ;
+  qudt:ucumCode "N.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C57" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Second"@en ;
+.
+unit:N-SEC-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:expression "\\(N-s/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA252" ;
+  qudt:plainTextDescription "Newton second measured per metre" ;
+  qudt:symbol "N⋅s/m" ;
+  qudt:ucumCode "N.s.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton Second per Meter"@en-us ;
+  rdfs:label "Newton Second per Metre"@en ;
+  rdfs:label "Newtonsekunden pro Meter"@de ;
+.
+unit:N-SEC-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of specific acoustic impedance. When sound waves pass through any physical substance the pressure of the waves causes the particles of the substance to move. The sound specific impedance is the ratio between the sound pressure and the particle velocity it produces. The specific impedance is \\(1 N \\cdot s \\cdot m^{-3} \\) if unit pressure produces unit velocity."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:expression "\\(N \\cdot s \\cdot m^{-3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificAcousticImpedance ;
+  qudt:latexSymbol "\\(N \\cdot s \\cdot m^{-3}\\)"^^qudt:LatexString ;
+  qudt:symbol "N⋅s/m³" ;
+  qudt:ucumCode "N.s.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton second per Cubic Meter"@en-us ;
+  rdfs:label "Newton second per Cubic Metre"@en ;
+.
+unit:N-SEC-PER-RAD
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:conversionOffset 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MomentumPerAngle ;
+  qudt:plainTextDescription "Newton seconds measured per radian" ;
+  qudt:symbol "N⋅s/rad" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Newton seconds per radian"@en ;
+  rdfs:label "Newton seconds per radian"@en-us ;
+  rdfs:label "Newtonsekunden pro Radian"@de ;
+.
+unit:NAT
+  a qudt:Unit ;
+  dcterms:description "A nat is a logarithmic unit of information or entropy, based on natural logarithms and powers of e, rather than the powers of 2 and base 2 logarithms which define the bit. The nat is the natural unit for information entropy. Physical systems of natural units which normalize Boltzmann's constant to 1 are effectively measuring thermodynamic entropy in nats."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Nat"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nat?oldid=474010287"^^xsd:anyURI ;
+  qudt:symbol "nat" ;
+  qudt:uneceCommonCode "Q16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nat"@en ;
+.
+unit:NAT-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Nat per Second\" is information rate in natural units."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(nat-per-sec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:InformationFlowRate ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nat?oldid=474010287"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
+  qudt:symbol "nat/s" ;
+  qudt:uneceCommonCode "Q19" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nat per Second"@en ;
+.
+unit:NP
+  a qudt:DimensionlessUnit ;
+  a qudt:LogarithmicUnit ;
+  a qudt:Unit ;
+  dcterms:description "The neper is a logarithmic unit for ratios of measurements of physical field and power quantities, such as gain and loss of electronic signals. It has the unit symbol Np. The unit's name is derived from the name of John Napier, the inventor of logarithms. As is the case for the decibel and bel, the neper is not a unit in the International System of Units (SI), but it is accepted for use alongside the SI. Like the decibel, the neper is a unit in a logarithmic scale. While the bel uses the decadic (base-10) logarithm to compute ratios, the neper uses the natural logarithm, based on Euler's number"^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Neper"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:iec61360Code "0112/2///62720#UAA253" ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Neper"^^xsd:anyURI ;
+  qudt:symbol "Np" ;
+  qudt:ucumCode "Np"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Neper"@en ;
+.
+unit:NTU
+  a qudt:Unit ;
+  dcterms:description "\"Nephelometry Turbidity Unit\" is a C.G.S System unit for  'Turbidity' expressed as \\(NTU\\)."^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Turbidity ;
+  qudt:symbol "NTU" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nephelometry Turbidity Unit"@en ;
+.
+unit:NUM
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Number\" is a unit for  'Dimensionless' expressed as (\\#\\)."^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:ChargeNumber ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:hasQuantityKind quantitykind:FrictionCoefficient ;
+  qudt:hasQuantityKind quantitykind:HyperfineStructureQuantumNumber ;
+  qudt:hasQuantityKind quantitykind:IonTransportNumber ;
+  qudt:hasQuantityKind quantitykind:Landau-GinzburgNumber ;
+  qudt:hasQuantityKind quantitykind:MagneticQuantumNumber ;
+  qudt:hasQuantityKind quantitykind:MassNumber ;
+  qudt:hasQuantityKind quantitykind:NeutronNumber ;
+  qudt:hasQuantityKind quantitykind:NuclearSpinQuantumNumber ;
+  qudt:hasQuantityKind quantitykind:NucleonNumber ;
+  qudt:hasQuantityKind quantitykind:OrbitalAngularMomentumQuantumNumber ;
+  qudt:hasQuantityKind quantitykind:Population ;
+  qudt:hasQuantityKind quantitykind:PrincipalQuantumNumber ;
+  qudt:hasQuantityKind quantitykind:QuantumNumber ;
+  qudt:hasQuantityKind quantitykind:ReynoldsNumber ;
+  qudt:hasQuantityKind quantitykind:SpinQuantumNumber ;
+  qudt:hasQuantityKind quantitykind:StoichiometricNumber ;
+  qudt:hasQuantityKind quantitykind:TotalAngularMomentumQuantumNumber ;
+  qudt:symbol "#" ;
+  qudt:ucumCode "1"^^qudt:UCUMcs ;
+  qudt:ucumCode "{#}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number"@en ;
+.
+unit:NUM-PER-CentiM-KiloYR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000316880878140289 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T-1D0 ;
+  qudt:symbol "/(cm⋅1000 yr)" ;
+  qudt:ucumCode "{#}.cm-2.ka-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per square centimetre per thousand years"@en ;
+.
+unit:NUM-PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ;
+  qudt:symbol "/g" ;
+  qudt:ucumCode "{#}.g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per gram"@en ;
+.
+unit:NUM-PER-HA
+  a qudt:Unit ;
+  dcterms:description "Count of an entity or phenomenon's occurrence in 10,000 times the SI unit area (square metre)."@en ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ParticleFluence ;
+  qudt:symbol "/ha" ;
+  qudt:ucumCode "{#}.har-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per hectare"@en ;
+.
+unit:NUM-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "/hr" ;
+  qudt:ucumCode "{#}.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per hour"@en ;
+  rdfs:label "Number per individual per hour"@en ;
+.
+unit:NUM-PER-HectoGM
+  a qudt:Unit ;
+  dcterms:description "Count of an entity or phenomenon occurrence in one 10th of the SI unit of mass (kilogram)."@en ;
+  qudt:conversionMultiplier 10.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ;
+  qudt:symbol "/hg" ;
+  qudt:ucumCode "{#}.hg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per 100 grams"@en ;
+.
+unit:NUM-PER-KiloM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ParticleFluence ;
+  qudt:symbol "/km²" ;
+  qudt:ucumCode "{#}.km-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per square kilometre"@en ;
+.
+unit:NUM-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:NumberDensity ;
+  qudt:symbol "/L" ;
+  qudt:ucumCode "{#}.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per litre"@en ;
+.
+unit:NUM-PER-M
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:symbol "/m" ;
+  qudt:ucumCode "{#}.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per metre"@en ;
+.
+unit:NUM-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ParticleFluence ;
+  qudt:symbol "/m²" ;
+  qudt:ucumCode "{#}.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per square metre"@en ;
+.
+unit:NUM-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Flux ;
+  qudt:symbol "/(m²⋅day)" ;
+  qudt:ucumCode "{#}.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per square metre per day"@en ;
+.
+unit:NUM-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:NumberDensity ;
+  qudt:symbol "/m³" ;
+  qudt:ucumCode "{#}.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per cubic metre"@en ;
+.
+unit:NUM-PER-MicroL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:NumberDensity ;
+  qudt:symbol "/µL" ;
+  qudt:ucumCode "{#}.uL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per microlitre"@en ;
+.
+unit:NUM-PER-MilliGM
+  a qudt:Unit ;
+  dcterms:description "Count of an entity or phenomenon occurrence in one millionth of the SI unit of mass (kilogram)."@en ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ;
+  qudt:symbol "/mg" ;
+  qudt:ucumCode "{#}.mg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per milligram"@en ;
+.
+unit:NUM-PER-NanoL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 2147483647.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:NumberDensity ;
+  qudt:symbol "/nL" ;
+  qudt:ucumCode "{#}.nL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per nanolitre"@en ;
+.
+unit:NUM-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "/s" ;
+  qudt:ucumCode "{#}.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Counts per second"@en ;
+.
+unit:NUM-PER-YR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Number per Year\" is a unit for  'Frequency' expressed as \\(\\#/yr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000003168808781402895023702689684893655 ;
+  qudt:expression "\\(\\#/yr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "#/yr" ;
+  qudt:ucumCode "{#}.a-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Number per Year"@en ;
+.
+unit:Naira
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Nigeria"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Nigerian_naira"^^xsd:anyURI ;
+  qudt:expression "\\(NGN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nigerian_naira?oldid=493462003"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Naira"@en ;
+.
+unit:Nakfa
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Eritrea"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Nakfa"^^xsd:anyURI ;
+  qudt:expression "\\(ERN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nakfa?oldid=415286274"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nakfa"@en ;
+.
+unit:NamibianDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Namibia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Namibian_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(NAD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Namibian_dollar?oldid=495250023"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Namibian Dollar"@en ;
+.
+unit:NanoA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA901" ;
+  qudt:isScalingOf unit:A ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nA" ;
+  qudt:ucumCode "nA"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C39" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "nanoampere"@en ;
+.
+unit:NanoBQ-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ActivityConcentration ;
+  qudt:symbol "nBq/L" ;
+  qudt:ucumCode "nBq.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanobecquerels per litre"@en ;
+.
+unit:NanoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A NanoCoulomb is \\(10^{-9} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA902" ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nC" ;
+  qudt:ucumCode "nC"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C40" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "NanoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:NanoFARAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A common metric unit of electric capacitance equal to \\(10^{-9} farad\\). This unit was previously called the \\(millimicrofarad\\)."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:iec61360Code "0112/2///62720#UAA903" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI ;
+  qudt:isScalingOf unit:FARAD ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nF" ;
+  qudt:ucumCode "nF"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C41" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanofarad"@en ;
+.
+unit:NanoFARAD-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:iec61360Code "0112/2///62720#UAA904" ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit farad divided by the SI base unit metre" ;
+  qudt:symbol "nF/m" ;
+  qudt:ucumCode "nF.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanofarad Per Meter"@en-us ;
+  rdfs:label "Nanofarad Per Metre"@en ;
+.
+unit:NanoGM
+  a qudt:Unit ;
+  dcterms:description "10**-9 grams or one 10**-12 of the SI standard unit of mass (kilogram)."@en ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "ng" ;
+  qudt:ucumCode "ng"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanograms"@en ;
+.
+unit:NanoGM-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:symbol "ng/day" ;
+  qudt:ucumCode "ng.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanograms per day"@en ;
+.
+unit:NanoGM-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA911" ;
+  qudt:plainTextDescription "mass ratio consisting of the 0.000000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram" ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "ng/Kg" ;
+  qudt:ucumCode "ng.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "ng/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanogram Per Kilogram"@en ;
+.
+unit:NanoGM-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "ng/L" ;
+  qudt:ucumCode "ng.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanograms per litre"@en ;
+.
+unit:NanoGM-PER-M3
+  a qudt:Unit ;
+  dcterms:description "\"0.000000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3\""^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "ng/m³" ;
+  qudt:ucumCode "ng.m-3"^^qudt:UCUMcs ;
+  rdfs:comment "\"Derived from GM-PER-M3 which exists in QUDT\"" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanogram Per Cubic Meter"@en-us ;
+  rdfs:label "Nanogram Per Cubic Metre"@en ;
+.
+unit:NanoGM-PER-MicroL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "ng/µL" ;
+  qudt:ucumCode "ng.uL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanograms per microlitre"@en ;
+.
+unit:NanoGM-PER-MilliL
+  a qudt:Unit ;
+  dcterms:description "One 10**12 part of the SI standard unit of mass of the measurand per millilitre volume of matrix."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassConcentration ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "ng/mL" ;
+  qudt:ucumCode "ng.mL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanograms per millilitre"@en ;
+.
+unit:NanoH
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:hasQuantityKind quantitykind:Permeance ;
+  qudt:iec61360Code "0112/2///62720#UAA905" ;
+  qudt:isScalingOf unit:H ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit henry" ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nH" ;
+  qudt:ucumCode "nH"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanohenry"@en ;
+.
+unit:NanoH-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Permeability ;
+  qudt:iec61360Code "0112/2///62720#UAA906" ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit henry divided by the SI base unit metre" ;
+  qudt:symbol "nH/m" ;
+  qudt:ucumCode "nH.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanohenry Per Meter"@en-us ;
+  rdfs:label "Nanohenry Per Metre"@en ;
+.
+unit:NanoL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:plainTextDescription "0.000000001-fold of the unit litre" ;
+  qudt:symbol "nL" ;
+  qudt:ucumCode "nL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanolitre"@en ;
+  rdfs:label "Nanolitre"@en-us ;
+.
+unit:NanoM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA912" ;
+  qudt:isScalingOf unit:M ;
+  qudt:plainTextDescription "0.000000001-fold of the SI base unit metre" ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nM" ;
+  qudt:ucumCode "nm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanometer"@en-us ;
+  rdfs:label "Nanometre"@en ;
+.
+unit:NanoM-PER-CentiM-PSI
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000145037738 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:StressOpticCoefficient ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:siUnitsExpression "nm/cm/PSI" ;
+  qudt:symbol "nm/(cm⋅PSI)" ;
+  qudt:ucumCode "nm.cm-1.PSI-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanometer Per Centimeter PSI"@en ;
+.
+unit:NanoM-PER-MilliM-MegaPA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:StressOpticCoefficient ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:siUnitsExpression "nm/mm/MPa" ;
+  qudt:symbol "nm/(mm⋅MPa)" ;
+  qudt:ucumCode "nm.mm-1.MPa-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanometer Per Millimeter Megapascal"@en ;
+.
+unit:NanoM2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000000001 ;
+  qudt:expression "\\(sqnm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:hasQuantityKind quantitykind:NuclearQuadrupoleMoment ;
+  qudt:isScalingOf unit:M2 ;
+  qudt:plainTextDescription "A unit of area equal to that of a square, of sides 1nm" ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nm²" ;
+  qudt:ucumCode "nm2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Nanometer"@en-us ;
+  rdfs:label "Square Nanometre"@en ;
+.
+unit:NanoMOL-PER-CentiM3-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "nmol/(cm³⋅hr)" ;
+  qudt:ucumCode "nmol.cm-3.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per cubic centimetre per hour"@en ;
+.
+unit:NanoMOL-PER-GM-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ;
+  qudt:ucumCode "nmol.g-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per gram per second"@en ;
+.
+unit:NanoMOL-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:symbol "nmol/kg" ;
+  qudt:ucumCode "nmol.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per kilogram"@en ;
+.
+unit:NanoMOL-PER-L
+  a qudt:Unit ;
+  dcterms:description "A scaled unit of amount-of-substance concentration."@en ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:ucumCode "nmol.L-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "nmol/L"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per litre"@en ;
+.
+unit:NanoMOL-PER-L-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "nmol/(L⋅day)" ;
+  qudt:ucumCode "nmol.L-1.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per litre per day"@en ;
+.
+unit:NanoMOL-PER-L-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "nmol/(L⋅hr)" ;
+  qudt:ucumCode "nmol.L-1.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per litre per hour"@en ;
+.
+unit:NanoMOL-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ;
+  qudt:symbol "nmol/(m²⋅day)" ;
+  qudt:ucumCode "nmol.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per square metre per day"@en ;
+.
+unit:NanoMOL-PER-MicroGM-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ;
+  qudt:symbol "nmol/(µg⋅hr)" ;
+  qudt:ucumCode "nmol.ug-1.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per microgram per hour"@en ;
+.
+unit:NanoMOL-PER-MicroMOL
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ;
+  qudt:symbol "nmol/µmol" ;
+  qudt:ucumCode "nmol.umol-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per micromole"@en ;
+.
+unit:NanoMOL-PER-MicroMOL-DAY
+  a qudt:Unit ;
+  dcterms:description "Unavailable."@en ;
+  qudt:conversionMultiplier 0.0000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:symbol "nmol/(µmol⋅day)" ;
+  qudt:ucumCode "nmol.umol-1.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanomoles per micromole per day"@en ;
+.
+unit:NanoS-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA907" ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit Siemens by the 0.01 fol of the SI base unit metre" ;
+  qudt:symbol "nS/cm" ;
+  qudt:ucumCode "nS.cm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanosiemens Per Centimeter"@en-us ;
+  rdfs:label "Nanosiemens Per Centimetre"@en ;
+.
+unit:NanoS-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA908" ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit Siemens divided by the SI base unit metre" ;
+  qudt:symbol "nS/m" ;
+  qudt:ucumCode "nS.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanosiemens Per Meter"@en-us ;
+  rdfs:label "Nanosiemens Per Metre"@en ;
+.
+unit:NanoSEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A nanosecond is a SI unit of time equal to one billionth of a second (10-9 or 1/1,000,000,000 s). One nanosecond is to one second as one second is to 31.69 years. The word nanosecond is formed by the prefix nano and the unit second."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Nanosecond"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA913" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nanosecond?oldid=919778950"^^xsd:anyURI ;
+  qudt:isScalingOf unit:SEC ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "ns" ;
+  qudt:ucumCode "ns"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C47" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "nanosecond"@en ;
+.
+unit:NanoT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA909" ;
+  qudt:isScalingOf unit:T ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit tesla" ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nT" ;
+  qudt:ucumCode "nT"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C48" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanotesla"@en ;
+.
+unit:NanoW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA910" ;
+  qudt:isScalingOf unit:W ;
+  qudt:plainTextDescription "0.000000001-fold of the SI derived unit watt" ;
+  qudt:prefix prefix:Nano ;
+  qudt:symbol "nW" ;
+  qudt:ucumCode "nW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nanowatt"@en ;
+.
+unit:NepaleseRupee
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Nepal"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Nepalese_rupee"^^xsd:anyURI ;
+  qudt:expression "\\(NPR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Nepalese_rupee?oldid=476894226"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nepalese Rupee"@en ;
+.
+unit:NetherlandsAntillianGuilder
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Netherlands Antilles"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Netherlands_Antillean_guilder"^^xsd:anyURI ;
+  qudt:expression "\\(ANG\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Netherlands_Antillean_guilder?oldid=490030382"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Netherlands Antillian Guilder"@en ;
+.
+unit:NewIsraeliShekel
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Israel"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Israeli_new_sheqel"^^xsd:anyURI ;
+  qudt:expression "\\(ILS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Israeli_new_sheqel?oldid=316213924"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "New Israeli Shekel"@en ;
+.
+unit:NewTaiwanDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Taiwan and other islands that are under the effective control of the Republic of China (ROC)"^^rdf:HTML ;
+  qudt:currencyExponent 1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/New_Taiwan_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(TWD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/New_Taiwan_dollar?oldid=493996933"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "New Taiwan Dollar"@en ;
+.
+unit:NewTurkishLira
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Turkey"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Turkish_lira"^^xsd:anyURI ;
+  qudt:expression "\\(TRY\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Turkish_lira?oldid=494097764"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "New Turkish Lira"@en ;
+.
+unit:NewZealandDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cook Islands, New Zealand, Niue, Pitcairn, Tokelau"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/New_Zealand_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(NZD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/New_Zealand_dollar?oldid=495487722"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "New Zealand Dollar"@en ;
+.
+unit:Ngultrum
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Bhutan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Bhutanese_ngultrum"^^xsd:anyURI ;
+  qudt:expression "\\(BTN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Bhutanese_ngultrum?oldid=491579260"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ngultrum"@en ;
+.
+unit:NorthKoreanWon
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "North Korea"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/North_Korean_won"^^xsd:anyURI ;
+  qudt:expression "\\(KPW\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/North_Korean_won?oldid=495081686"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "North Korean Won"@en ;
+.
+unit:NorwegianKrone
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Norway"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Norwegian_krone"^^xsd:anyURI ;
+  qudt:expression "\\(NOK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Norwegian_krone?oldid=495283934"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Norwegian Krone"@en ;
+.
+unit:NuevoSol
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Peru"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Peruvian_nuevo_sol"^^xsd:anyURI ;
+  qudt:expression "\\(PEN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Peruvian_nuevo_sol?oldid=494237249"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Nuevo Sol"@en ;
+.
+unit:OCT
+  a qudt:DimensionlessUnit ;
+  a qudt:LogarithmicUnit ;
+  a qudt:Unit ;
+  dcterms:description "An octave is a doubling or halving of a frequency.  One oct is the logarithmic frequency interval between \\(f1\\) and \\(f2\\) when \\(f2/f1 = 2\\)."^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Octave"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Octave_(electronics)"^^xsd:anyURI ;
+  qudt:symbol "oct" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Oct"@en ;
+.
+unit:OERSTED
+  a qudt:Unit ;
+  dcterms:description "Oersted (abbreviated as Oe) is the unit of magnetizing field (also known as H-field, magnetic field strength or intensity) in the CGS system of units."^^rdf:HTML ;
+  qudt:conversionMultiplier 79.5774715 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Oersted"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ;
+  qudt:iec61360Code "0112/2///62720#UAB134" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Oersted?oldid=491396460"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/oersted> ;
+  qudt:symbol "Oe" ;
+  qudt:ucumCode "Oe"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Oe" ;
+  qudt:uneceCommonCode "66" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Oersted"@en ;
+  prov:wasDerivedFrom unit:Gs ;
+.
+unit:OERSTED-CentiM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Oersted Centimeter\" is a C.G.S System unit for  'Magnetomotive Force' expressed as \\(Oe-cm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.795774715 ;
+  qudt:expression "\\(Oe-cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MagnetomotiveForce ;
+  qudt:symbol "Oe⋅cm" ;
+  qudt:ucumCode "Oe.cm"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Oersted Centimeter"@en-us ;
+  rdfs:label "Oersted Centimetre"@en ;
+.
+unit:OHM
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The \\textit{ohm} is the SI derived unit of electrical resistance, named after German physicist Georg Simon Ohm. \\(\\Omega \\equiv\\ \\frac{\\text{V}}{\\text{A}}\\ \\equiv\\ \\frac{\\text{volt}}{\\text{amp}}\\ \\equiv\\ \\frac{\\text{W}}{\\text {A}^{2}}\\ \\equiv\\ \\frac{\\text{watt}}{\\text{amp}^{2}}\\ \\equiv\\ \\frac{\\text{H}}{\\text {s}}\\ \\equiv\\ \\frac{\\text{henry}}{\\text{second}}\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ohm"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Impedance ;
+  qudt:hasQuantityKind quantitykind:ModulusOfImpedance ;
+  qudt:hasQuantityKind quantitykind:Reactance ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA017" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ohm?oldid=494685555"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/ohm> ;
+  qudt:siUnitsExpression "V/A" ;
+  qudt:symbol "Ω" ;
+  qudt:ucumCode "Ohm"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Ω" ;
+  qudt:uneceCommonCode "OHM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ohm"@en ;
+.
+unit:OHM-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ResidualResistivity ;
+  qudt:hasQuantityKind quantitykind:Resistivity ;
+  qudt:iec61360Code "0112/2///62720#UAA020" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "Ω⋅m" ;
+  qudt:ucumCode "Ohm.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ohm Meter"@en-us ;
+  rdfs:label "Ohm Metre"@en ;
+.
+unit:OHM-M2-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistivity ;
+  qudt:symbol "Ω⋅m²/m" ;
+  qudt:ucumCode "Ohm2.m.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ohm Square Meter per Meter"@en-us ;
+  rdfs:label "Ohm Square Metre per Metre"@en ;
+.
+unit:OHM_Ab
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{abohm}\\) is the basic unit of electrical resistance in the emu-cgs system of units. One abohm is equal to \\(10^{-9} ohms\\) in the SI system of units; one abohm is a nano ohm."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Abohm"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Abohm?oldid=480725336"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abohm> ;
+  qudt:symbol "abΩ" ;
+  qudt:ucumCode "nOhm"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abohm"@en ;
+.
+unit:OHM_Stat
+  a qudt:Unit ;
+  dcterms:description "\"StatOHM\" is the unit of resistance, reactance, and impedance in the electrostatic C.G.S system of units, equal to the resistance between two points of a conductor when a constant potential difference of 1 statvolt between these points produces a current of 1 statampere; it is equal to approximately \\(8.9876 \\times 10^{11} ohms\\). The statohm is an extremely large unit of resistance. In fact, an object with a resistance of 1 stat W would make an excellent insulator or dielectric . In practical applications, the ohm, the kilohm (k W ) and the megohm (M W or M) are most often used to quantify resistance."^^qudt:LatexString ;
+  qudt:conversionMultiplier 898760000000.0 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:informativeReference "http://whatis.techtarget.com/definition/statohm-stat-W"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(stat\\Omega\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statohm> ;
+  qudt:symbol "statΩ" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statohm"@en ;
+.
+unit:OZ
+  a qudt:Unit ;
+  dcterms:description "An ounce of mass is 1/16th of a pound of mass, based on the international standard definition of the pound as exactly 0.45359237 kg."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.028349523125 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "oz" ;
+  qudt:ucumCode "[oz_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "ONZ" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce Mass"@en ;
+.
+unit:OZ-FT
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0086409 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthMass ;
+  qudt:iec61360Code "0112/2///62720#UAB133" ;
+  qudt:plainTextDescription "unit of the unbalance as a product of avoirdupois ounce according to  the avoirdupois system of units and foot according to the Anglo-American and Imperial system of units" ;
+  qudt:symbol "oz⋅ft" ;
+  qudt:ucumCode "[oz_av].[ft_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4R" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Foot"@en ;
+.
+unit:OZ-IN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000694563 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LengthMass ;
+  qudt:iec61360Code "0112/2///62720#UAB132" ;
+  qudt:plainTextDescription "unit of the unbalance as a product of avoirdupois ounce according to  the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units" ;
+  qudt:symbol "oz⋅in" ;
+  qudt:ucumCode "[oz_av].[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4Q" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Inch"@en ;
+.
+unit:OZ-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000032812 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA919" ;
+  qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time day" ;
+  qudt:symbol "oz/day" ;
+  qudt:ucumCode "[oz_av].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Day"@en ;
+.
+unit:OZ-PER-FT2
+  a qudt:Unit ;
+  dcterms:description "\"Ounce per Square Foot\" is an Imperial unit for  'Mass Per Area' expressed as \\(oz/ft^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.305151727 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "oz/ft^{2}" ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:symbol "oz/ft²{US}" ;
+  qudt:ucumCode "[oz_av].[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Mass Ounce per Square Foot"@en ;
+.
+unit:OZ-PER-GAL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Ounce per Gallon\" is an Imperial unit for  'Density' expressed as \\(oz/gal\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6.23602329 ;
+  qudt:expression "oz/gal" ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "oz/gal{US}" ;
+  qudt:ucumCode "[oz_av].[gal_br]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Mass Ounce per Gallon"@en ;
+.
+unit:OZ-PER-GAL_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 6.2360 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA923" ;
+  qudt:plainTextDescription "unit of the density according to the Imperial system of units" ;
+  qudt:symbol "oz/gal{UK}" ;
+  qudt:ucumCode "[oz_av].[gal_br]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L37" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Gallon (UK)"@en ;
+.
+unit:OZ-PER-GAL_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 7.8125 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA924" ;
+  qudt:informativeReference "https://cdd.iec.ch/cdd/iec61360/iec61360.nsf/Units/0112-2---62720%23UAA924"^^xsd:anyURI ;
+  qudt:plainTextDescription "unit of the density according to the Anglo-American system of units" ;
+  qudt:symbol "oz/gal{US}" ;
+  qudt:ucumCode "[oz_av].[gal_us]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L38" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Gallon (US)"@en ;
+.
+unit:OZ-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000787487 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA920" ;
+  qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time hour" ;
+  qudt:symbol "oz/hr" ;
+  qudt:ucumCode "[oz_av].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Hour"@en ;
+.
+unit:OZ-PER-IN3
+  a qudt:Unit ;
+  dcterms:description "\"Ounce per Cubic Inch\" is an Imperial unit for  'Density' expressed as \\(oz/in^{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1729.99404 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "oz/in^{3}" ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "oz/in³{US}" ;
+  qudt:ucumCode "[oz_av].[cin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L39" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Mass Ounce per Cubic Inch"@en ;
+.
+unit:OZ-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000472492 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA921" ;
+  qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time minute" ;
+  qudt:symbol "oz/min" ;
+  qudt:ucumCode "[oz_av].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Minute"@en ;
+.
+unit:OZ-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.02834952 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA922" ;
+  qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the SI base unit second" ;
+  qudt:symbol "oz/s" ;
+  qudt:ucumCode "[oz_av].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Second"@en ;
+.
+unit:OZ-PER-YD2
+  a qudt:Unit ;
+  dcterms:description "\"Ounce per Square Yard\" is an Imperial unit for  'Mass Per Area' expressed as \\(oz/yd^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0339057474748823 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "oz/yd^{2}" ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:symbol "oz/yd³{US}" ;
+  qudt:ucumCode "[oz_av].[syd_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Mass Ounce per Square Yard"@en ;
+.
+unit:OZ-PER-YD3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0370798 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA918" ;
+  qudt:plainTextDescription "unit ounce  according to the avoirdupois system of units divided by the power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3" ;
+  qudt:symbol "oz/yd³" ;
+  qudt:ucumCode "[oz_av].[cyd_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (avoirdupois) Per Cubic Yard"@en ;
+.
+unit:OZ_F
+  a qudt:Unit ;
+  dcterms:description "\"Ounce Force\" is an Imperial unit for  'Force' expressed as \\(ozf\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.278013875 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:symbol "ozf" ;
+  qudt:ucumCode "[ozf_av]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "ozf" ;
+  qudt:uneceCommonCode "L40" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Ounce Force"@en ;
+.
+unit:OZ_F-IN
+  a qudt:Unit ;
+  dcterms:description "\"Ounce Force Inch\" is an Imperial unit for  'Torque' expressed as \\(ozf-in\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0706155243 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Torque ;
+  qudt:symbol "ozf⋅in" ;
+  qudt:ucumCode "[ozf_av].[in_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L41" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Ounce Force Inch"@en ;
+.
+unit:OZ_TROY
+  a qudt:Unit ;
+  dcterms:description "An obsolete unit of mass; the Troy Ounce is 1/12th of a Troy Pound. Based on the international definition of a Troy Pound as 5760 grains, the Troy Ounce is exactly 480 grains, or 0.0311034768 kg."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0311034768 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:symbol "oz{Troy}" ;
+  qudt:ucumCode "[oz_tr]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "APZ" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce Troy"@en ;
+.
+unit:OZ_VOL_UK
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Imperial Ounce}\\) is an Imperial unit for 'Liquid Volume' expressed as \\(oz\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000284130625 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA431" ;
+  qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units" ;
+  qudt:symbol "oz{UK}" ;
+  qudt:ucumCode "[foz_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "OZI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Fluid Ounce (UK)"@en ;
+.
+unit:OZ_VOL_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000787487 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA432" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time day" ;
+  qudt:symbol "oz{UK}/day" ;
+  qudt:ucumCode "[foz_br].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (UK Fluid) Per Day"@en ;
+.
+unit:OZ_VOL_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000787487 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA433" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time hour" ;
+  qudt:symbol "oz{UK}/hr" ;
+  qudt:ucumCode "[foz_br].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (UK Fluid) Per Hour"@en ;
+.
+unit:OZ_VOL_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00472492 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA434" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time minute" ;
+  qudt:symbol "oz{UK}/min" ;
+  qudt:ucumCode "[foz_br].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J97" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (UK Fluid) Per Minute"@en ;
+.
+unit:OZ_VOL_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000284 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA435" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "oz{UK}/s" ;
+  qudt:ucumCode "[foz_br].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (UK Fluid) Per Second"@en ;
+.
+unit:OZ_VOL_US
+  a qudt:Unit ;
+  dcterms:description "\"US Liquid Ounce\" is a unit for  'Liquid Volume' expressed as \\(oz\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000295735296 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:symbol "fl oz{US}" ;
+  qudt:ucumCode "[foz_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "fl oz" ;
+  qudt:uneceCommonCode "OZA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Liquid Ounce"@en ;
+.
+unit:OZ_VOL_US-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000342286 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA436" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by unit for time day" ;
+  qudt:symbol "oz{US}/day" ;
+  qudt:ucumCode "[foz_us].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (US Fluid) Per Day"@en ;
+.
+unit:OZ_VOL_US-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000008214869 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA437" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the unit for time hour" ;
+  qudt:symbol "oz{US}/hr" ;
+  qudt:ucumCode "[foz_us].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (US Fluid) Per Hour"@en ;
+.
+unit:OZ_VOL_US-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000492892 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA438" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the unit for time minute" ;
+  qudt:symbol "oz{US}/min" ;
+  qudt:ucumCode "[foz_us].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (US Fluid) Per Minute"@en ;
+.
+unit:OZ_VOL_US-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000295735296 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA439" ;
+  qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "oz{US}/s" ;
+  qudt:ucumCode "[foz_us].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ounce (US Fluid) Per Second"@en ;
+.
+unit:OmaniRial
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Oman"^^rdf:HTML ;
+  qudt:currencyExponent 3 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Omani_rial"^^xsd:anyURI ;
+  qudt:expression "\\(OMR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Omani_rial?oldid=491748879"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rial Omani"@en ;
+.
+unit:Ouguiya
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mauritania"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritanian_ouguiya"^^xsd:anyURI ;
+  qudt:expression "\\(MRO\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritanian_ouguiya?oldid=490027072"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ouguiya"@en ;
+.
+unit:PA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of pressure. The pascal is the standard pressure unit in the MKS metric system, equal to one newton per square meter or one \"kilogram per meter per second per second.\" The unit is named for Blaise Pascal (1623-1662), French philosopher and mathematician, who was the first person to use a barometer to measure differences in altitude."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ;
+  qudt:exactMatch unit:KiloGM-PER-M-SEC2 ;
+  qudt:exactMatch unit:N-PER-M2 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:BulkModulus ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:Fugacity ;
+  qudt:hasQuantityKind quantitykind:ModulusOfElasticity ;
+  qudt:hasQuantityKind quantitykind:ShearModulus ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAA258" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pascal?oldid=492989202"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/pascal> ;
+  qudt:siUnitsExpression "N/m^2" ;
+  qudt:symbol "Pa" ;
+  qudt:ucumCode "Pa"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Pa" ;
+  qudt:uneceCommonCode "PAL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal"@en ;
+  owl:sameAs unit:KiloGM-PER-M-SEC2 ;
+  owl:sameAs unit:N-PER-M2 ;
+.
+unit:PA-L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA261" ;
+  qudt:plainTextDescription "product out of the SI derived unit pascal and the unit litre divided by the SI base unit second" ;
+  qudt:symbol "Pa⋅L/s" ;
+  qudt:ucumCode "Pa.L.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Liter Per Second"@en-us ;
+  rdfs:label "Pascal Litre Per Second"@en ;
+.
+unit:PA-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:symbol "Pa⋅m" ;
+  qudt:ucumCode "Pa.m"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal metres"@en ;
+.
+unit:PA-M-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:symbol "Pa⋅m/s" ;
+  qudt:ucumCode "Pa.m.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal metres per second"@en ;
+.
+unit:PA-M-PER-SEC2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-4D0 ;
+  qudt:symbol "Pa⋅m/s²" ;
+  qudt:ucumCode "Pa.m.s-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal metres per square second"@en ;
+.
+unit:PA-M3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA264" ;
+  qudt:plainTextDescription "product out of the SI derived unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "Pa⋅m³/s" ;
+  qudt:ucumCode "Pa.m3.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G01" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Cubic Meter Per Second"@en-us ;
+  rdfs:label "Pascal Cubic Metre Per Second"@en ;
+.
+unit:PA-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA260" ;
+  qudt:plainTextDescription "SI derived unit pascal divided by the unit bar" ;
+  qudt:symbol "Pa/bar" ;
+  qudt:ucumCode "Pa.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F07" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Per Bar"@en ;
+.
+unit:PA-PER-HR
+  a qudt:Unit ;
+  dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one hour."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000277777778 ;
+  qudt:expression "\\(P / hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:isScalingOf unit:PA-PER-MIN ;
+  qudt:symbol "P/hr" ;
+  qudt:ucumCode "Pa.h-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal per Hour"@en ;
+.
+unit:PA-PER-K
+  a qudt:Unit ;
+  qudt:expression "\\(pascal-per-kelvin\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ;
+  qudt:hasQuantityKind quantitykind:PressureCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA259" ;
+  qudt:symbol "P/K" ;
+  qudt:ucumCode "Pa.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C64" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal per Kelvin"@en ;
+.
+unit:PA-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA262" ;
+  qudt:plainTextDescription "SI derived unit pascal divided by the SI base unit metre" ;
+  qudt:symbol "Pa/m" ;
+  qudt:ucumCode "Pa.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Pa/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Per Meter"@en-us ;
+  rdfs:label "Pascal Per Metre"@en ;
+.
+unit:PA-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one minute."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0166666667 ;
+  qudt:expression "\\(P / min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:isScalingOf unit:PA-PER-SEC ;
+  qudt:symbol "P/min" ;
+  qudt:ucumCode "Pa.min-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal per Minute"@en ;
+.
+unit:PA-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one second."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(P / s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:symbol "P/s" ;
+  qudt:ucumCode "Pa.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "Pa/s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal per Second"@en ;
+.
+unit:PA-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of dynamic viscosity, equal to 10 poises or 1000 centipoises. "^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(Pa-s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA265" ;
+  qudt:siUnitsExpression "Pa.s" ;
+  qudt:symbol "Pa⋅s" ;
+  qudt:ucumCode "Pa.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C65" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Second"@en ;
+.
+unit:PA-SEC-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA267" ;
+  qudt:plainTextDescription "product out of the SI derived unit pascal and the SI base unit second divided by the unit bar" ;
+  qudt:symbol "Pa⋅s/bar" ;
+  qudt:ucumCode "Pa.s.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H07" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Second Per Bar"@en ;
+.
+unit:PA-SEC-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Pascal Second Per Meter (\\(Pa-s/m\\)) is a unit in the category of Specific acoustic impedance. It is also known as pascal-second/meter. Pascal Second Per Meter has a dimension of \\(ML^2T^{-1}\\) where M is mass, L is length, and T is time. It essentially the same as the corresponding standard SI unit \\(kg/m2\\cdot s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Pa-s/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AcousticImpedance ;
+  qudt:iec61360Code "0112/2///62720#UAA268" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_acoustic_impedance--pascal_second_per_meter.cfm"^^xsd:anyURI ;
+  qudt:siUnitsExpression "Pa.s/m" ;
+  qudt:symbol "Pa⋅s/m" ;
+  qudt:ucumCode "P.s.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C67" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Second Per Meter"@en-us ;
+  rdfs:label "Pascal Second Per Metre"@en ;
+.
+unit:PA-SEC-PER-M3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Pascal Second Per Cubic Meter}\\) (\\(Pa-s/m^3\\)) is a unit in the category of Acoustic impedance. It is also known as \\(\\textit{pascal-second/cubic meter}\\). It has a dimension of \\(ML^{-4}T^{-1}\\) where \\(M\\) is mass, \\(L\\) is length, and \\(T\\) is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Pa-s/m3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-4I0M1H0T-1D0 ;
+  qudt:iec61360Code "0112/2///62720#UAA263" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--acoustic_impedance--pascal_second_per_cubic_meter.cfm"^^xsd:anyURI ;
+  qudt:siUnitsExpression "Pa.s/m3" ;
+  qudt:symbol "Pa⋅s/m³" ;
+  qudt:ucumCode "Pa.s.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C66" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pascal Second Per Cubic Meter"@en-us ;
+  rdfs:label "Pascal Second Per Cubic Metre"@en ;
+.
+unit:PA2-PER-SEC2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M2H0T-6D0 ;
+  qudt:symbol "Pa²⋅m/s²" ;
+  qudt:ucumCode "Pa2.s-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square pascal per square second"@en ;
+.
+unit:PA2-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Square Pascal Second (\\(Pa^2\\cdot s\\)) is a unit in the category of sound exposure."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Pa2-s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M2H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:SoundExposure ;
+  qudt:iec61360Code "0112/2///62720#UAB339" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_acoustic_impedance--pascal_second_per_meter.cfm"^^xsd:anyURI ;
+  qudt:siUnitsExpression "Pa2.s" ;
+  qudt:symbol "Pa²⋅s" ;
+  qudt:ucumCode "Pa2.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Pascal Second"@en ;
+.
+unit:PAB
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Panama"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Balboa"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Balboa?oldid=482550791"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Balboa"@en ;
+.
+unit:PARSEC
+  a qudt:Unit ;
+  dcterms:description "The parsec (parallax of one arcsecond; symbol: pc) is a unit of length, equal to just under 31 trillion (\\(31 \\times 10^{12}\\)) kilometres (about 19 trillion miles), 206265 AU, or about 3.26 light-years. The parsec measurement unit is used in astronomy. It is defined as the length of the adjacent side of an imaginary right triangle in space. The two dimensions that specify this triangle are the parallax angle (defined as 1 arcsecond) and the opposite side (defined as 1 astronomical unit (AU), the distance from the Earth to the Sun). Given these two measurements, along with the rules of trigonometry, the length of the adjacent side (the parsec) can be found."^^qudt:LatexString ;
+  qudt:conversionMultiplier 30856780000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB067" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/parsec> ;
+  qudt:symbol "pc" ;
+  qudt:ucumCode "pc"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parsec"@en ;
+.
+unit:PCA
+  a qudt:Unit ;
+  dcterms:description "A pica is a typographic unit of measure corresponding to 1/72 of its respective foot, and therefore to 1/6 of an inch. The pica contains 12 point units of measure. Notably, Adobe PostScript promoted the pica unit of measure that is the standard in contemporary printing, as in home computers and printers. Usually, pica measurements are represented with an upper-case 'P' with an upper-right-to-lower-left virgule (slash) starting in the upper right portion of the 'P' and ending at the lower left of the upright portion of the 'P'; essentially drawing a virgule (/) through a 'P'.  Note that these definitions are different from a typewriter's pica setting, which denotes a type size of ten characters per horizontal inch."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0042333 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pica"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB606" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pica?oldid=458102937"^^xsd:anyURI ;
+  qudt:symbol "pc" ;
+  qudt:ucumCode "[pca]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "R1" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pica"@en ;
+.
+unit:PDL
+  a qudt:Unit ;
+  dcterms:description "The poundal is a unit of force that is part of the foot-pound-second system of units, in Imperial units introduced in 1877, and is from the specialized subsystem of English absolute (a coherent system). The poundal is defined as the force necessary to accelerate 1 pound-mass to 1 foot per second per second. \\(1 pdl = 0.138254954376 N\\) exactly."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.138254954376 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Poundal"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAB233" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Poundal?oldid=494626458"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/poundal> ;
+  qudt:symbol "pdl" ;
+  qudt:ucumCode "[lb_av].[ft_i].s-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M76" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Poundal"@en ;
+.
+unit:PDL-PER-FT2
+  a qudt:Unit ;
+  dcterms:description "Poundal Per Square Foot (\\(pdl/ft^2\\)) is a unit in the category of Pressure. It is also known as poundals per square foot, poundal/square foot. This unit is commonly used in the UK, US unit systems. Poundal Per Square Foot has a dimension of \\(ML^{-1}T^{-2}\\), where M is mass, L is length, and T is time. It can be converted to the corresponding standard SI unit \\si{Pa} by multiplying its value by a factor of 1.488163944."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.48816443 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(pdl/ft^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB243" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--pressure--poundal_per_square_foot.cfm"^^xsd:anyURI ;
+  qudt:symbol "pdl/ft²" ;
+  qudt:ucumCode "[lb_av].[ft_i].s-2.[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N21" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Poundal per Square Foot"@en ;
+.
+unit:PER-ANGSTROM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:iec61360Code "0112/2///62720#UAB058" ;
+  qudt:plainTextDescription "reciprocal of the unit angstrom" ;
+  qudt:symbol "/Å" ;
+  qudt:ucumCode "Ao-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal ångström"@en ;
+.
+unit:PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:Compressibility ;
+  qudt:hasQuantityKind quantitykind:InversePressure ;
+  qudt:iec61360Code "0112/2///62720#UAA328" ;
+  qudt:plainTextDescription "reciprocal of the metrical unit with the name bar" ;
+  qudt:symbol "/bar" ;
+  qudt:ucumCode "bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Bar"@en ;
+.
+unit:PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:iec61360Code "0112/2///62720#UAA382" ;
+  qudt:plainTextDescription "reciprocal of the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "/cm" ;
+  qudt:ucumCode "/cm"^^qudt:UCUMcs ;
+  qudt:ucumCode "cm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E90" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Centimeter"@en-us ;
+  rdfs:label "Reciprocal Centimetre"@en ;
+.
+unit:PER-CentiM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA383" ;
+  qudt:plainTextDescription "reciprocal of the 0.000001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "/cm³" ;
+  qudt:ucumCode "cm-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Centimeter"@en-us ;
+  rdfs:label "Reciprocal Cubic Centimetre"@en ;
+.
+unit:PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001157407 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA408" ;
+  qudt:plainTextDescription "reciprocal of the unit day" ;
+  qudt:symbol "/day" ;
+  qudt:ucumCode "/d"^^qudt:UCUMcs ;
+  qudt:ucumCode "d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Day"@en ;
+.
+unit:PER-FT3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 35.31466 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA453" ;
+  qudt:plainTextDescription "reciprocal value of the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3" ;
+  qudt:symbol "/ft³" ;
+  qudt:ucumCode "[cft_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Foot"@en ;
+.
+unit:PER-GM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ;
+  qudt:symbol "/g" ;
+  qudt:ucumCode "g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal gram"@en ;
+.
+unit:PER-GigaEV2
+  a qudt:Unit ;
+  dcterms:description "Per Square Giga Electron Volt Unit is a denominator unit with dimensions \\(/GeV^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 38956440500000000000.0 ;
+  qudt:expression "\\(/GeV^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-4I0M-2H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:InverseSquareEnergy ;
+  qudt:symbol "/GeV²" ;
+  qudt:ucumCode "GeV-2"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Square Giga Electron Volt Unit"@en ;
+.
+unit:PER-H
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T2D0 ;
+  qudt:symbol "/H" ;
+  qudt:ucumCode "H-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Henry"@en ;
+.
+unit:PER-HR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A reciprocal unit of time for \\(\\textit{reciprocal hour}\\) or \"inverse hour\"."^^qudt:LatexString ;
+  qudt:conversionMultiplier 360.0 ;
+  qudt:expression "\\(m^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "/hr" ;
+  qudt:ucumCode "/h"^^qudt:UCUMcs ;
+  qudt:ucumCode "h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Hour"@en ;
+.
+unit:PER-IN3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 61023.76 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA546" ;
+  qudt:plainTextDescription "reciprocal value of the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3" ;
+  qudt:symbol "/in³" ;
+  qudt:ucumCode "[cin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Inch"@en ;
+.
+unit:PER-J-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(j^{-1}-m^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyDensityOfStates ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "/(J⋅m³)" ;
+  qudt:ucumCode "J-1.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C90" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Joule Cubic Meter"@en-us ;
+  rdfs:label "Reciprocal Joule Cubic Metre"@en ;
+.
+unit:PER-K
+  a qudt:Unit ;
+  dcterms:description "Per Kelvin Unit is a denominator unit with dimensions \\(/k\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(/K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:ExpansionRatio ;
+  qudt:hasQuantityKind quantitykind:InverseTemperature ;
+  qudt:hasQuantityKind quantitykind:RelativePressureCoefficient ;
+  qudt:symbol "/K" ;
+  qudt:ucumCode "K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C91" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Kelvin"@en ;
+.
+unit:PER-KiloM
+  a qudt:Unit ;
+  dcterms:description "Per Kilometer Unit is a denominator unit with dimensions \\(/km\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(per-kilometer\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ;
+  qudt:hasQuantityKind quantitykind:AttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:CurvatureFromRadius ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearIonization ;
+  qudt:hasQuantityKind quantitykind:PhaseCoefficient ;
+  qudt:hasQuantityKind quantitykind:PropagationCoefficient ;
+  qudt:symbol "/km" ;
+  qudt:ucumCode "/km"^^qudt:UCUMcs ;
+  qudt:ucumCode "km-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Kilometer"@en-us ;
+  rdfs:label "Reciprocal Kilometre"@en ;
+.
+unit:PER-KiloV-A-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:InverseEnergy ;
+  qudt:iec61360Code "0112/2///62720#UAA098" ;
+  qudt:plainTextDescription "reciprocal of the 1,000-fold of the product of the SI derived unit volt and the SI base unit ampere and the unit hour" ;
+  qudt:symbol "/(kV⋅A⋅hr)" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Kilovolt Ampere Hour"@en ;
+.
+unit:PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA667" ;
+  qudt:plainTextDescription "reciprocal value of the unit litre" ;
+  qudt:symbol "/L" ;
+  qudt:ucumCode "L-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Liter"@en-us ;
+  rdfs:label "Reciprocal Litre"@en ;
+.
+unit:PER-M
+  a qudt:Unit ;
+  dcterms:description "Per Meter Unit is a denominator unit with dimensions \\(/m\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(per-meter\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ;
+  qudt:hasQuantityKind quantitykind:AttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:CurvatureFromRadius ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearIonization ;
+  qudt:hasQuantityKind quantitykind:PhaseCoefficient ;
+  qudt:hasQuantityKind quantitykind:PropagationCoefficient ;
+  qudt:symbol "/m" ;
+  qudt:ucumCode "/m"^^qudt:UCUMcs ;
+  qudt:ucumCode "m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C92" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Meter"@en-us ;
+  rdfs:label "Reciprocal Metre"@en ;
+.
+unit:PER-M-K
+  a qudt:Unit ;
+  dcterms:description "Per Meter Kelvin Unit is a denominator unit with dimensions \\(/m.k\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(/m.k\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseLengthTemperature ;
+  qudt:symbol "/(m⋅K)" ;
+  qudt:ucumCode "m-1.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Meter Kelvin"@en-us ;
+  rdfs:label "Reciprocal Metre Kelvin"@en ;
+.
+unit:PER-M-NanoM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:symbol "/(m⋅nm)" ;
+  qudt:ucumCode "m-1.nm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal metre per nanometre"@en ;
+.
+unit:PER-M-NanoM-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:symbol "/(m⋅nm⋅sr)" ;
+  qudt:ucumCode "m-1.nm-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal metre per nanometre per steradian"@en ;
+.
+unit:PER-M-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T-1D0 ;
+  qudt:symbol "/(m⋅s)" ;
+  qudt:ucumCode "m-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal metre per second"@en ;
+.
+unit:PER-M-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:symbol "/(m⋅sr)" ;
+  qudt:ucumCode "m-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal metre per steradian"@en ;
+.
+unit:PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Per Square Meter\" is a denominator unit with dimensions \\(/m^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ParticleFluence ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "/m²" ;
+  qudt:ucumCode "/m2"^^qudt:UCUMcs ;
+  qudt:ucumCode "m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Square Meter"@en-us ;
+  rdfs:label "Reciprocal Square Metre"@en ;
+.
+unit:PER-M2-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^{-2}-s^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Flux ;
+  qudt:hasQuantityKind quantitykind:ParticleFluenceRate ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "/(m²⋅s)" ;
+  qudt:ucumCode "m-2.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "B81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Square Meter Second"@en-us ;
+  rdfs:label "Reciprocal Square Metre Second"@en ;
+  rdfs:label "Reciprocal square metre per second"@en ;
+.
+unit:PER-M3
+  a qudt:Unit ;
+  dcterms:description "\"Per Cubic Meter\" is a denominator unit with dimensions \\(/m^3\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(/m^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:hasQuantityKind quantitykind:NumberDensity ;
+  qudt:symbol "/m³" ;
+  qudt:ucumCode "/m3"^^qudt:UCUMcs ;
+  qudt:ucumCode "m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Meter"@en-us ;
+  rdfs:label "Reciprocal Cubic Metre"@en ;
+.
+unit:PER-M3-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(m^{-3}-s^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:ParticleSourceDensity ;
+  qudt:hasQuantityKind quantitykind:Slowing-DownDensity ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
+  qudt:symbol "/(m³⋅s)" ;
+  qudt:ucumCode "m-3.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C87" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Meter Second"@en-us ;
+  rdfs:label "Reciprocal Cubic Metre Second"@en ;
+  rdfs:label "Reciprocal cubic metre per second"@en ;
+.
+unit:PER-MILLE-PER-PSI
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000001450377 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:Compressibility ;
+  qudt:hasQuantityKind quantitykind:InversePressure ;
+  qudt:hasQuantityKind quantitykind:IsothermalCompressibility ;
+  qudt:iec61360Code "0112/2///62720#UAA016" ;
+  qudt:plainTextDescription "thousandth divided by the composed unit for pressure (pound-force per square inch)" ;
+  qudt:symbol "/ksi" ;
+  qudt:uneceCommonCode "J12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Mille Per Psi"@en ;
+.
+unit:PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A reciprocal unit of time for \\(\\textit{reciprocal minute}\\) or \\(\\textit{inverse minute}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 60.0 ;
+  qudt:expression "\\(m^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "/min" ;
+  qudt:ucumCode "/min"^^qudt:UCUMcs ;
+  qudt:ucumCode "min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Minute"@en ;
+.
+unit:PER-MO
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000391935077 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA881" ;
+  qudt:plainTextDescription "reciprocal of the unit month" ;
+  qudt:symbol "/month" ;
+  qudt:ucumCode "mo-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Month"@en ;
+.
+unit:PER-MOL
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "<p><strong>Per Mole Unit</strong> is a denominator unit with dimensions \\(mol^{-1}\\)</p>."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(/mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseAmountOfSubstance ;
+  qudt:symbol "/mol" ;
+  qudt:ucumCode "mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Mole"@en ;
+.
+unit:PER-MicroM
+  a qudt:Unit ;
+  dcterms:description "Per Micrometer Unit is a denominator unit with dimensions \\(/microm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(per-micrometer\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ;
+  qudt:hasQuantityKind quantitykind:AttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:CurvatureFromRadius ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearIonization ;
+  qudt:hasQuantityKind quantitykind:PhaseCoefficient ;
+  qudt:hasQuantityKind quantitykind:PropagationCoefficient ;
+  qudt:symbol "/µm" ;
+  qudt:ucumCode "/um"^^qudt:UCUMcs ;
+  qudt:ucumCode "um-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Micrometer"@en-us ;
+  rdfs:label "Reciprocal Micrometre"@en ;
+.
+unit:PER-MicroMOL-L
+  a qudt:Unit ;
+  dcterms:description "Units used to describe the sensitivity of detection of a spectrophotometer."@en ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A-1E0L-3I0M0H0T0D0 ;
+  qudt:symbol "/(mmol⋅L)" ;
+  qudt:ucumCode "umol-1.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal micromole per litre"@en ;
+.
+unit:PER-MilliM
+  a qudt:Unit ;
+  dcterms:description "Per Millimeter Unit is a denominator unit with dimensions \\(/mm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(per-millimeter\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ;
+  qudt:hasQuantityKind quantitykind:AttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:CurvatureFromRadius ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearIonization ;
+  qudt:hasQuantityKind quantitykind:PhaseCoefficient ;
+  qudt:hasQuantityKind quantitykind:PropagationCoefficient ;
+  qudt:symbol "/mm" ;
+  qudt:ucumCode "/mm"^^qudt:UCUMcs ;
+  qudt:ucumCode "mm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Millimeter"@en-us ;
+  rdfs:label "Reciprocal Millimetre"@en ;
+.
+unit:PER-MilliM3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:iec61360Code "0112/2///62720#UAA870" ;
+  qudt:plainTextDescription "reciprocal value of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "/mm³" ;
+  qudt:ucumCode "mm-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L20" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Millimeter"@en-us ;
+  rdfs:label "Reciprocal Cubic Millimetre"@en ;
+.
+unit:PER-MilliSEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "/ms" ;
+  qudt:ucumCode "ms-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal millisecond"@en ;
+.
+unit:PER-NanoM
+  a qudt:Unit ;
+  dcterms:description "Per Nanometer Unit is a denominator unit with dimensions \\(/nm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(per-nanometer\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ;
+  qudt:hasQuantityKind quantitykind:AttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:CurvatureFromRadius ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearIonization ;
+  qudt:hasQuantityKind quantitykind:PhaseCoefficient ;
+  qudt:hasQuantityKind quantitykind:PropagationCoefficient ;
+  qudt:symbol "/nm" ;
+  qudt:ucumCode "/nm"^^qudt:UCUMcs ;
+  qudt:ucumCode "nm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Nanometer"@en-us ;
+  rdfs:label "Reciprocal Nanometre"@en ;
+.
+unit:PER-PA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ;
+  qudt:expression "\\(/Pa\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:Compressibility ;
+  qudt:hasQuantityKind quantitykind:InversePressure ;
+  qudt:hasQuantityKind quantitykind:IsentropicCompressibility ;
+  qudt:hasQuantityKind quantitykind:IsothermalCompressibility ;
+  qudt:hasQuantityKind quantitykind:StressOpticCoefficient ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pascal?oldid=492989202"^^xsd:anyURI ;
+  qudt:siUnitsExpression "m^2/N" ;
+  qudt:symbol "/Pa" ;
+  qudt:ucumCode "Pa-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Pascal"@en ;
+.
+unit:PER-PA-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ;
+  qudt:symbol "/(Pa⋅s)" ;
+  qudt:ucumCode "Pa-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Pascal per second"@en ;
+.
+unit:PER-PSI
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0001450377 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:InversePressure ;
+  qudt:hasQuantityKind quantitykind:StressOpticCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAA709" ;
+  qudt:plainTextDescription "reciprocal value of the composed unit for pressure (pound-force per square inch)" ;
+  qudt:symbol "/psi" ;
+  qudt:ucumCode "[psi]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Psi"@en ;
+.
+unit:PER-PicoM
+  a qudt:Unit ;
+  dcterms:description "Per Picoometer Unit is a denominator unit with dimensions \\(/pm\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000000.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(per-picoometer\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ;
+  qudt:hasQuantityKind quantitykind:AttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:CurvatureFromRadius ;
+  qudt:hasQuantityKind quantitykind:InverseLength ;
+  qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ;
+  qudt:hasQuantityKind quantitykind:LinearIonization ;
+  qudt:hasQuantityKind quantitykind:PhaseCoefficient ;
+  qudt:hasQuantityKind quantitykind:PropagationCoefficient ;
+  qudt:symbol "/pm" ;
+  qudt:ucumCode "/pm"^^qudt:UCUMcs ;
+  qudt:ucumCode "pm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Picometer"@en-us ;
+  rdfs:label "Reciprocal Picometre"@en ;
+.
+unit:PER-PlanckMass2
+  a qudt:Unit ;
+  dcterms:description "In physics, the Planck mass, denoted by \\(m_P\\), is the unit of mass in the system of natural units known as Planck units. It is defined so that \\(\\approx  1.2209 \\times 10 GeV/c_0 = 2.17651(13) \\times 10 kg\\), (or \\(21.7651 \\mu g\\)), where \\(c_0\\) is the speed of light in a vacuum, \\(G\\) is the gravitational constant, and \\(\\hbar\\) is the reduced Planck constant. Particle physicists and cosmologists often use the reduced Planck mass, which is \\(\\approx  4.341 \\times 10 kg = 2.435  \\times 10 GeV/c\\). The added factor of \\(1/{\\sqrt{8\\pi}}\\) simplifies a number of equations in general relativity. Quantum effects are typified by the magnitude of Planck's constant."^^qudt:LatexString ;
+  qudt:conversionMultiplier 2111089000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M-2H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseSquareMass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_mass?oldid=493648632"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(m_P = \\sqrt{\\frac{ \\hbar c^3}{G}} \\approx 1.2209 \\times 10^{19} GeV/c^2 = 2.17651(13) \\times 10^{-8}\\), where \\(c\\) is the speed of light in a vacuum, \\(\\hbar\\) is the reduced Planck's constant, and \\(G\\) is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ;
+  qudt:symbol "/mₚ²" ;
+  qudt:unitOfSystem sou:PLANCK ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Inverse Square Planck Mass"@en ;
+.
+unit:PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A reciprical unit of time for \\(\\textit{reciprocal second}\\) or \\(\\textit{inverse second}\\). The \\(\\textit{Per Second}\\) is a unit of rate."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:exactMatch unit:HZ ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "/s" ;
+  qudt:ucumCode "/s"^^qudt:UCUMcs ;
+  qudt:ucumCode "s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C97" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Second"@en ;
+  owl:sameAs unit:HZ ;
+.
+unit:PER-SEC-M2
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Per Second Square Meter}\\) is a measure of flux with dimensions \\(/sec-m^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(per-sec-m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Flux ;
+  qudt:symbol "/s⋅m²" ;
+  qudt:ucumCode "/(s1.m2)"^^qudt:UCUMcs ;
+  qudt:ucumCode "s-1.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Second Square Meter"@en-us ;
+  rdfs:label "Reciprocal Second Square Metre"@en ;
+.
+unit:PER-SEC-M2-SR
+  a qudt:Unit ;
+  dcterms:description "Per Second Square Meter Steradian is a denominator unit with dimensions \\(/sec-m^2-sr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(/sec-m^2-sr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:PhotonRadiance ;
+  qudt:symbol "/s⋅m²⋅sr" ;
+  qudt:ucumCode "/(s.m2.sr)"^^qudt:UCUMcs ;
+  qudt:ucumCode "s-1.m-2.sr-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D2" ;
+  rdfs:comment "It is not clear this unit is ever used. [Editor]" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Second Square Meter Steradian"@en-us ;
+  rdfs:label "Reciprocal Second Square Metre Steradian"@en ;
+.
+unit:PER-SEC-SR
+  a qudt:Unit ;
+  dcterms:description "Per Second Steradian Unit is a denominator unit with dimensions \\(/sec-sr\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(/sec-sr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:PhotonIntensity ;
+  qudt:hasQuantityKind quantitykind:TemporalSummationFunction ;
+  qudt:symbol "/s⋅sr" ;
+  qudt:ucumCode "/(s.sr)"^^qudt:UCUMcs ;
+  qudt:ucumCode "s-1.sr-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D1" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Second Steradian"@en ;
+.
+unit:PER-SEC2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ;
+  qudt:symbol "/s²" ;
+  qudt:ucumCode "s-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal square second"@en ;
+.
+unit:PER-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:symbol "/sr" ;
+  qudt:ucumCode "sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal steradian"@en ;
+.
+unit:PER-T-M
+  a qudt:Unit ;
+  dcterms:description "Per Tesla Meter Unit is a denominator unit with dimensions \\(/m .\\cdot T\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L-1I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticReluctivity ;
+  qudt:latexSymbol "\\(m^{-1} \\cdot T^{-1}\\)"^^qudt:LatexString ;
+  qudt:symbol "/t⋅m" ;
+  qudt:ucumCode "T-1.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Tesla Meter"@en-us ;
+  rdfs:label "Reciprocal Tesla Metre"@en ;
+.
+unit:PER-T-SEC
+  a qudt:Unit ;
+  dcterms:description "Per Tesla Second Unit is a denominator unit with dimensions \\(/s . T\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(/s . T\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:symbol "/T⋅s" ;
+  qudt:ucumCode "T-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Tesla Second Unit"@en ;
+.
+unit:PER-WB
+  a qudt:Unit ;
+  qudt:expression "\\(Wb^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:InverseMagneticFlux ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "/Wb" ;
+  qudt:ucumCode "Wb-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Weber"@en ;
+.
+unit:PER-WK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001653439 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA099" ;
+  qudt:plainTextDescription "reciprocal of the unit week" ;
+  qudt:symbol "/week" ;
+  qudt:ucumCode "wk-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Week"@en ;
+.
+unit:PER-YD3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.307951 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:InverseVolume ;
+  qudt:iec61360Code "0112/2///62720#UAB033" ;
+  qudt:plainTextDescription "reciprocal value of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3" ;
+  qudt:symbol "/yd³" ;
+  qudt:ucumCode "[cyd_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Cubic Yard"@en ;
+.
+unit:PER-YR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000031709792 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAB027" ;
+  qudt:plainTextDescription "reciprocal of the unit year" ;
+  qudt:symbol "/yr" ;
+  qudt:ucumCode "/a"^^qudt:UCUMcs ;
+  qudt:ucumCode "a-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H09" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reciprocal Year"@en ;
+.
+unit:PERCENT
+  a qudt:Unit ;
+  dcterms:description "\"Percent\" is a unit for  'Dimensionless Ratio' expressed as \\(\\%\\)."^^qudt:LatexString ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Percentage"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:hasQuantityKind quantitykind:LengthPercentage ;
+  qudt:hasQuantityKind quantitykind:PressurePercentage ;
+  qudt:hasQuantityKind quantitykind:Prevalence ;
+  qudt:hasQuantityKind quantitykind:RelativeHumidity ;
+  qudt:hasQuantityKind quantitykind:RelativeLuminousFlux ;
+  qudt:hasQuantityKind quantitykind:RelativePartialPressure ;
+  qudt:hasQuantityKind quantitykind:ResistancePercentage ;
+  qudt:hasQuantityKind quantitykind:TimePercentage ;
+  qudt:hasQuantityKind quantitykind:VoltagePercentage ;
+  qudt:iec61360Code "0112/2///62720#UAA000" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Percentage?oldid=495284540"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/percent> ;
+  qudt:symbol "%" ;
+  qudt:ucumCode "%"^^qudt:UCUMcs ;
+  qudt:udunitsCode "%" ;
+  qudt:uneceCommonCode "P1" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Percent"@en ;
+.
+unit:PERCENT-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "%/day" ;
+  qudt:ucumCode "%.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Percent per day"@en ;
+.
+unit:PERCENT-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "%/day" ;
+  qudt:ucumCode "%.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Percent per hour"@en ;
+.
+unit:PERCENT-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:symbol "%/m" ;
+  qudt:ucumCode "%.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Percent per metre"@en ;
+.
+unit:PERCENT-PER-WK
+  a qudt:Unit ;
+  dcterms:description "A rate of change in percent over a period of 7 days"@en ;
+  qudt:conversionMultiplier 0.00000165343915343915 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "%/wk" ;
+  qudt:ucumCode "%.wk-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Percent per week"@en ;
+.
+unit:PERCENT_RH
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:RelativeHumidity ;
+  qudt:plainTextDescription "Percent relative humidity is the ratio of the partial pressure of water vapor to the equilibrium vapor pressure of water at a given temperature, expressed as a percentage." ;
+  qudt:symbol "%RH" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Percent Relative Humidity"@en ;
+.
+unit:PERMEABILITY_EM_REL
+  a qudt:Unit ;
+  dcterms:description "Relative permeability, denoted by the symbol \\(\\mu _T\\), is the ratio of the permeability of a specific medium to the permeability of free space \\(\\mu _0\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_permeability"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:ElectromagneticPermeabilityRatio ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(\\mu\\,T\\)"^^qudt:LatexString ;
+  qudt:symbol "μₜ" ;
+  qudt:ucumCode "[mu_0]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Relative Electromagnetic Permeability"@en ;
+.
+unit:PERMEABILITY_REL
+  a qudt:Unit ;
+  dcterms:description "In multiphase flow in porous media, the relative permeability of a phase is a dimensionless measure of the effective permeability of that phase. It is the ratio of the effective permeability of that phase to the absolute permeability. It can be viewed as an adaptation of Darcy's law to multiphase flow. For two-phase flow in porous media given steady-state conditions, we can write where is the flux, is the pressure drop, is the viscosity."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000125663706 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_permeability"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PermeabilityRatio ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ;
+  qudt:symbol "kᵣ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Relative Permeability"@en ;
+.
+unit:PERMITTIVITY_REL
+  a qudt:Unit ;
+  dcterms:description """The \\(\\textit{relative permittivity}\\) of a material under given conditions reflects the extent to which it concentrates electrostatic lines of flux. In technical terms, it is the ratio of the amount of electrical energy stored in a material by an applied voltage, relative to that stored in a vacuum. Likewise, it is also the ratio of the capacitance of a capacitor using that material as a dielectric, compared to a similar capacitor that has a vacuum as its dielectric. Relative permittivity is a dimensionless number that is in general complex. The imaginary portion of the permittivity corresponds to a phase shift of the polarization P relative to E and leads to the attenuation of electromagnetic waves passing through the medium.</p>
+<p>\\(\\epsilon_r(w) = \\frac{\\epsilon(w)}{\\epsilon_O}\\)\\ where \\(\\epsilon_r(w)\\) is the complex frequency-dependent absolute permittivity of the material, and \\(\\epsilon_O\\) is the vacuum permittivity."""^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000008854187817 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_static_permittivity"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permittivity?oldid=489664437"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_static_permittivity?oldid=334224492"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.ncert.nic.in/html/learning_basket/electricity/electricity/charges%20&%20fields/absolute_permittivity.htm"^^xsd:anyURI ;
+  qudt:qkdvDenominator qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:qkdvNumerator qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:symbol "εᵣ" ;
+  qudt:ucumCode "[eps_0]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Relative Permittivity"@en ;
+.
+unit:PH
+  a qudt:Unit ;
+  dcterms:description "the negative decadic logarithmus of the concentration of free protons (or hydronium ions) expressed in 1 mol/l."@en ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:symbol "pH" ;
+  qudt:ucumCode "[pH]"^^qudt:UCUMcs ;
+  rdfs:comment "Unsure about dimensionality of pH; conversion requires a log function not just a multiplier"@en ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Acidity"@en ;
+.
+unit:PHOT
+  a qudt:Unit ;
+  dcterms:description "A phot (ph) is a photometric unit of illuminance, or luminous flux through an area. It is not an SI unit, but rather is associated with the older centimetre gram second system of units.  Metric dimensions: \\(illuminance = luminous intensity \\times solid angle / length\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Phot"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:CGS ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LuminousFluxPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB255" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Phot?oldid=477198725"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/phot> ;
+  qudt:symbol "ph" ;
+  qudt:ucumCode "ph"^^qudt:UCUMcs ;
+  qudt:udunitsCode "ph" ;
+  qudt:uneceCommonCode "P26" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Phot"@en ;
+.
+unit:PINT
+  a qudt:Unit ;
+  dcterms:description "\"Imperial Pint\" is an Imperial unit for  'Volume' expressed as \\(pint\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00056826125 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:symbol "pt" ;
+  qudt:ucumCode "[pt_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "PTI" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Imperial Pint"@en ;
+.
+unit:PINT_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0005682613 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA952" ;
+  qudt:plainTextDescription "unit of the volume (both for fluids and for dry measures) according to the Imperial system of units" ;
+  qudt:symbol "pt{UK}" ;
+  qudt:ucumCode "[pt_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "PTI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (UK)"@en ;
+.
+unit:PINT_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000006577098 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA953" ;
+  qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day" ;
+  qudt:symbol "pt{UK}/day" ;
+  qudt:ucumCode "[pt_br].d"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (UK) Per Day"@en ;
+.
+unit:PINT_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000001578504 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA954" ;
+  qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour" ;
+  qudt:symbol "pt{UK}/hr" ;
+  qudt:ucumCode "[pt_br].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (UK) Per Hour"@en ;
+.
+unit:PINT_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000009471022 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA955" ;
+  qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute" ;
+  qudt:symbol "pt{UK}/min" ;
+  qudt:ucumCode "[pt_br].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (UK) Per Minute"@en ;
+.
+unit:PINT_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0005682613 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA956" ;
+  qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "pt{UK}/s" ;
+  qudt:ucumCode "[pt_br].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (UK) Per Second"@en ;
+.
+unit:PINT_US
+  a qudt:Unit ;
+  dcterms:description "\"US Liquid Pint\" is a unit for  'Liquid Volume' expressed as \\(pt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0004731765 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:symbol "pt{US}" ;
+  qudt:ucumCode "[pt_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "pt" ;
+  qudt:uneceCommonCode "PTL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Liquid Pint"@en ;
+.
+unit:PINT_US-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000000547658 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA958" ;
+  qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time day" ;
+  qudt:symbol "pt{US}/day" ;
+  qudt:ucumCode "[pt_us].d-1"^^qudt:UCUMcs ;
+  qudt:udunitsCode "kg" ;
+  qudt:uneceCommonCode "L57" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (US Liquid) Per Day"@en ;
+.
+unit:PINT_US-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000001314379 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA959" ;
+  qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time hour" ;
+  qudt:symbol "pt{US}/hr" ;
+  qudt:ucumCode "[pt_us].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L58" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (US Liquid) Per Hour"@en ;
+.
+unit:PINT_US-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000007886275 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA960" ;
+  qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time minute" ;
+  qudt:symbol "pt{US}/min" ;
+  qudt:ucumCode "[pt_us].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L59" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (US Liquid) Per Minute"@en ;
+.
+unit:PINT_US-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0004731765 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA961" ;
+  qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "pt{US}/s" ;
+  qudt:ucumCode "[pt_us].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L60" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pint (US Liquid) Per Second"@en ;
+.
+unit:PINT_US_DRY
+  a qudt:Unit ;
+  dcterms:description "\"US Dry Pint\" is a C.G.S System unit for  'Dry Volume' expressed as \\(dry_pt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000550610471 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:symbol "pt{US Dry}" ;
+  qudt:ucumCode "[dpt_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "PTD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Dry Pint"@en ;
+.
+unit:PK_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.009092181 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA939" ;
+  qudt:plainTextDescription "unit of the volume according to the Imperial system of units" ;
+  qudt:symbol "peck{UK}" ;
+  qudt:ucumCode "[pk_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (UK)"@en ;
+.
+unit:PK_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000105233576 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA940" ;
+  qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time day" ;
+  qudt:symbol "peck{UK}/day" ;
+  qudt:ucumCode "[pk_br].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (UK) Per Day"@en ;
+.
+unit:PK_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000002525605833 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA941" ;
+  qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time hour" ;
+  qudt:symbol "peck{UK}/hr" ;
+  qudt:ucumCode "[pk_br].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (UK) Per Hour"@en ;
+.
+unit:PK_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00015153635 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA942" ;
+  qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time minute" ;
+  qudt:symbol "peck{UK}/min" ;
+  qudt:ucumCode "[pk_br].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L46" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (UK) Per Minute"@en ;
+.
+unit:PK_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.009092181 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA943" ;
+  qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "peck{UK}/s" ;
+  qudt:ucumCode "[pk_br].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (UK) Per Second"@en ;
+.
+unit:PK_US_DRY
+  a qudt:Unit ;
+  dcterms:description "A peck is an imperial and U.S. customary unit of dry volume, equivalent to 2 gallons or 8 dry quarts or 16 dry pints. Two pecks make a kenning (obsolete), and four pecks make a bushel. In Scotland, the peck was used as a dry measure until the introduction of imperial units as a result of the Weights and Measures Act of 1824. The peck was equal to about 9 litres (in the case of certain crops, such as wheat, peas, beans and meal) and about 13 litres (in the case of barley, oats and malt). A firlot was equal to 4 pecks and the peck was equal to 4 lippies or forpets. "^^rdf:HTML ;
+  qudt:conversionMultiplier 0.00880976754 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:symbol "peck{US Dry}" ;
+  qudt:ucumCode "[pk_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "pk" ;
+  qudt:uneceCommonCode "PY" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Peck"@en ;
+.
+unit:PK_US_DRY-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000101964902 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA944" ;
+  qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time day" ;
+  qudt:symbol "peck{US}/day" ;
+  qudt:ucumCode "[pk_us].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L48" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (US Dry) Per Day"@en ;
+.
+unit:PK_US_DRY-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000002447157651 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA945" ;
+  qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time hour" ;
+  qudt:symbol "peck{US}/hr" ;
+  qudt:ucumCode "[pk_us].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L49" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (US Dry) Per Hour"@en ;
+.
+unit:PK_US_DRY-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000146829459067 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA946" ;
+  qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time minute" ;
+  qudt:symbol "peck{US}/min" ;
+  qudt:ucumCode "[pk_us].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (US Dry) Per Minute"@en ;
+.
+unit:PK_US_DRY-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00880976754 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA947" ;
+  qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "peck{US}/s" ;
+  qudt:ucumCode "[pk_us].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peck (US Dry) Per Second"@en ;
+.
+unit:POISE
+  a qudt:Unit ;
+  dcterms:description "The poise is the unit of dynamic viscosity in the centimetre gram second system of units. It is named after Jean Louis Marie Poiseuille."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Poise"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:derivedUnitOfSystem sou:CGS-GAUSS ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA255" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Poise?oldid=487835641"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/poise> ;
+  qudt:symbol "P" ;
+  qudt:ucumCode "P"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Poise"@en ;
+.
+unit:POISE-PER-BAR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA257" ;
+  qudt:plainTextDescription "CGS unit poise divided by the unit bar" ;
+  qudt:symbol "P/bar" ;
+  qudt:ucumCode "P.bar-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F06" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Poise Per Bar"@en ;
+.
+unit:PPB
+  a qudt:Unit ;
+  dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as \\(ug/l\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html#section-Derived-Unit-Atoms"^^xsd:anyURI ;
+  qudt:symbol "PPB" ;
+  qudt:ucumCode "[ppb]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per billion"@en ;
+.
+unit:PPM
+  a qudt:Unit ;
+  dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as \\(ug/l\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html#section-Derived-Unit-Atoms"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion> ;
+  qudt:symbol "PPM" ;
+  qudt:ucumCode "[ppm]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "59" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per million"@en ;
+.
+unit:PPM-PER-K
+  a qudt:Unit ;
+  dcterms:description "Unit for expansion ratios expressed as parts per million per Kelvin."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:expression "\\(PPM/K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:ExpansionRatio ;
+  qudt:symbol "PPM/K" ;
+  qudt:ucumCode "ppm.K-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts Per Million per Kelvin"@en ;
+.
+unit:PPTH
+  a qudt:Unit ;
+  dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as \\(ug/l\\)."^^qudt:LatexString ;
+  qudt:abbreviation "‰" ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html#section-Derived-Unit-Atoms"^^xsd:anyURI ;
+  qudt:literal "‰" ;
+  qudt:symbol "‰" ;
+  qudt:ucumCode "[ppth]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "NX" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per thousand"@en ;
+  skos:altLabel "per mil" ;
+.
+unit:PPTH-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:symbol "‰/hr" ;
+  qudt:ucumCode "[ppth].h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per thousand per hour"@en ;
+.
+unit:PPTM
+  a qudt:Unit ;
+  dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as \\(ug/l\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:symbol "PPTM" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per Ten Million"@en ;
+.
+unit:PPTM-PER-K
+  a qudt:Unit ;
+  dcterms:description "Unit for expansion ratios expressed as parts per ten million per Kelvin."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000001 ;
+  qudt:expression "\\(PPM/K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:ExpansionRatio ;
+  qudt:symbol "PPM/K" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts Per Ten Million per Kelvin"@en ;
+.
+unit:PPTR
+  a qudt:Unit ;
+  dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as \\(ug/l\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html#section-Derived-Unit-Atoms"^^xsd:anyURI ;
+  qudt:symbol "PPTR" ;
+  qudt:ucumCode "[pptr]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per trillion"@en ;
+.
+unit:PPTR_VOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:symbol "pptr" ;
+  qudt:ucumCode "[pptr]{vol}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Parts per trillion by volume"@en ;
+.
+unit:PSI
+  a qudt:Unit ;
+  qudt:conversionMultiplier 6894.75789 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:LB_F-PER-IN2 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:plainTextDescription "Pounds of force per square inch, the unit for pressure as a compounded unit pound-force according to the Anglo-American system of units divided by the power of the unit Inch according to the Anglo-American and Imperial system of units by exponent 2" ;
+  qudt:symbol "psi" ;
+  qudt:ucumCode "[psi]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "psi" ;
+  qudt:uneceCommonCode "PS" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PSI"@en ;
+  owl:sameAs unit:LB_F-PER-IN2 ;
+.
+unit:PSI-IN3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1129848 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA703" ;
+  qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (cubic inch per second)" ;
+  qudt:symbol "psi⋅in³/s" ;
+  qudt:ucumCode "[psi].[cin_i].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K87" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Psi Cubic Inch Per Second"@en ;
+.
+unit:PSI-L-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 6.894757 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA704" ;
+  qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (litre per second)" ;
+  qudt:symbol "psi⋅L³/s" ;
+  qudt:ucumCode "[psi].L.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K88" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Psi Liter Per Second"@en-us ;
+  rdfs:label "Psi Litre Per Second"@en ;
+.
+unit:PSI-M3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 6894.757 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA705" ;
+  qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (cubic metre per second)" ;
+  qudt:symbol "psi⋅m³/s" ;
+  qudt:ucumCode "[psi].m3.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K89" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PSI Cubic Meter Per Second"@en-us ;
+  rdfs:label "PSI Cubic Metre Per Second"@en ;
+.
+unit:PSI-PER-PSI
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:PressureRatio ;
+  qudt:iec61360Code "0112/2///62720#UAA951" ;
+  qudt:plainTextDescription "composed unit for pressure (pound-force per square inch) divided by the composed unit for pressure (pound-force per square inch)" ;
+  qudt:symbol "psi/psi" ;
+  qudt:ucumCode "[psi].[psi]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Psi Per Psi"@en ;
+.
+unit:PSI-YD3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 5271.42 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA706" ;
+  qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the square inch) and the composed unit for volume flow (cubic yard per second)" ;
+  qudt:symbol "psi⋅yd³/s" ;
+  qudt:ucumCode "[psi].[cyd_i].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K90" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Psi Cubic Yard Per Second"@en ;
+.
+unit:PSU
+  a qudt:Unit ;
+  dcterms:description "Practical salinity scale 1978 (PSS-78) is used for ionic content of seawater determined by electrical conductivity. Salinities measured using PSS-78 do not have units, but are approximately scaled to parts-per-thousand for the valid range. The suffix psu or PSU (denoting practical salinity unit) is sometimes added to PSS-78 measurement values. The addition of PSU as a unit after the value is \"formally incorrect and strongly discouraged\"." ;
+  dcterms:source <https://unesdoc.unesco.org/ark:/48223/pf0000047932> ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:symbol "PSU" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Practical salinity unit" ;
+  rdfs:seeAlso unit:PPTH ;
+  rdfs:seeAlso <https://en.wikipedia.org/wiki/Salinity#PSU> ;
+.
+unit:PT
+  a qudt:Unit ;
+  dcterms:description "In typography, a point is the smallest unit of measure, being a subdivision of the larger pica. It is commonly abbreviated as pt. The point has long been the usual unit for measuring font size and leading and other minute items on a printed page."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0000254 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB605" ;
+  qudt:symbol "pt" ;
+  qudt:ucumCode "[pnt]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N3" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Point"@en ;
+.
+unit:Paanga
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Tonga"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tongan_pa%CA%BBanga"^^xsd:anyURI ;
+  qudt:expression "\\(TOP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tongan_paʻanga?oldid=482738012"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pa'anga"@en ;
+.
+unit:PakistanRupee
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Pakistan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pakistani_rupee"^^xsd:anyURI ;
+  qudt:expression "\\(PKR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pakistani_rupee?oldid=494937873"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pakistan Rupee"@en ;
+.
+unit:Palladium-OunceTroy
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(XPD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:ucumCode "[oz_tr]{Pd}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Palladium (one Troy ounce)"@en ;
+.
+unit:Pataca
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Macau Special Administrative Region"^^rdf:HTML ;
+  qudt:currencyExponent 1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pataca"^^xsd:anyURI ;
+  qudt:expression "\\(MOP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pataca?oldid=482490442"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pataca"@en ;
+.
+unit:PebiBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The pebibyte is a standards-based binary multiple (prefix pebi, symbol Pi) of the byte, a unit of digital information storage. The pebibyte unit symbol is PiB. 1 pebibyte =  1125899906842624bytes = 1024 tebibytes The pebibyte is closely related to the petabyte, which is defined as \\(10^{15} bytes = 1,000,000,000,000,000 bytes\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6243314768165359.2088811673338586 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pebibyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAA274" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pebibyte?oldid=492685015"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Pebi ;
+  qudt:symbol "PiB" ;
+  qudt:uneceCommonCode "E60" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PebiByte"@en ;
+.
+unit:Pennyweight
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001555174 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB182" ;
+  qudt:plainTextDescription "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg" ;
+  qudt:symbol "dwt" ;
+  qudt:ucumCode "[pwt_tr]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "DWT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pennyweight"@en ;
+.
+unit:PetaBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "A petabyte is a unit of information equal to one quadrillion bytes, or 1024 terabytes. The unit symbol for the petabyte is PB. The prefix peta (P) indicates the fifth power to 1000: 1 PB = 1000000000000000B, 1 million gigabytes = 1 thousand terabytes The pebibyte (PiB), using a binary prefix, is the corresponding power of 1024, which is more than \\(12\\% \\)greater (\\(2^{50} bytes = 1,125,899,906,842,624 bytes\\))."^^qudt:LatexString ;
+  qudt:conversionMultiplier 5545177444479562.4753378569716654 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Petabyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAB187" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Petabyte?oldid=494735969"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Peta ;
+  qudt:symbol "PB" ;
+  qudt:ucumCode "PBy"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E36" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PetaByte"@en ;
+.
+unit:PetaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A PetaCoulomb is \\(10^{15} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000000000.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Peta ;
+  qudt:symbol "PC" ;
+  qudt:ucumCode "PC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PetaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:PetaJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAB123" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "1,000,000,000,000,000-fold of the derived SI unit joule" ;
+  qudt:prefix prefix:Peta ;
+  qudt:symbol "PJ" ;
+  qudt:ucumCode "PJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C68" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Petajoule"@en ;
+.
+unit:PhilippinePeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Philippines"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Philippine_peso"^^xsd:anyURI ;
+  qudt:expression "\\(PHP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Philippine_peso?oldid=495411811"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Philippine Peso"@en ;
+.
+unit:PicoA
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:iec61360Code "0112/2///62720#UAA928" ;
+  qudt:isScalingOf unit:A ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pA" ;
+  qudt:ucumCode "pA"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C70" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "picoampere"@en ;
+.
+unit:PicoA-PER-MicroMOL-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.001 ;
+  qudt:hasDimensionVector qkdv:A-1E1L-3I0M0H0T0D0 ;
+  qudt:symbol "pA/(mmol⋅L)" ;
+  qudt:ucumCode "pA.umol-1.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picoamps per micromole per litre"@en ;
+.
+unit:PicoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A PicoCoulomb is \\(10^{-12} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA929" ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pC" ;
+  qudt:ucumCode "pC"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PicoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:PicoFARAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"PicoF\" is a common unit of electric capacitance equal to \\(10^{-12} farad\\). This unit was formerly called the micromicrofarad."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Capacitance ;
+  qudt:iec61360Code "0112/2///62720#UAA930" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI ;
+  qudt:isScalingOf unit:FARAD ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pF" ;
+  qudt:ucumCode "pF"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4T" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picofarad"@en ;
+.
+unit:PicoFARAD-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ;
+  qudt:hasQuantityKind quantitykind:Permittivity ;
+  qudt:iec61360Code "0112/2///62720#UAA931" ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI derived unit farad divided by the SI base unit metre" ;
+  qudt:symbol "pF/m" ;
+  qudt:ucumCode "pF.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picofarad Per Meter"@en-us ;
+  rdfs:label "Picofarad Per Metre"@en ;
+.
+unit:PicoGM
+  a qudt:Unit ;
+  dcterms:description "10**-12 grams or one 10**-15 of the SI standard unit of mass (kilogram)."@en ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:isScalingOf unit:KiloGM ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pg" ;
+  qudt:ucumCode "pg"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picograms"@en ;
+.
+unit:PicoGM-PER-GM
+  a qudt:Unit ;
+  dcterms:description "One part per 10**12 (trillion) by mass of the measurand in the matrix."@en ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "pg/g" ;
+  qudt:ucumCode "pg.g-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picograms per gram"@en ;
+.
+unit:PicoGM-PER-KiloGM
+  a qudt:Unit ;
+  dcterms:description "One part per 10**15 by mass of the measurand in the matrix."@en ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:MassRatio ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:symbol "pg/kg" ;
+  qudt:ucumCode "pg.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picograms per kilogram"@en ;
+.
+unit:PicoGM-PER-L
+  a qudt:Unit ;
+  dcterms:description "One 10**15 part of the SI standard unit of mass of the measurand per litre volume of matrix.."@en ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "pg/L" ;
+  qudt:ucumCode "pg.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picofarad Per Meter"@en-us ;
+  rdfs:label "Picofarad Per Metre"@en ;
+  rdfs:label "Picograms per litre"@en ;
+.
+unit:PicoGM-PER-MilliL
+  a qudt:Unit ;
+  dcterms:description "One 10**15 part of the SI standard unit of mass of the measurand per millilitre volume of matrix."@en ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassConcentration ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:symbol "pg/mL" ;
+  qudt:ucumCode "pg.mL-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picograms per millilitre"@en ;
+.
+unit:PicoH
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Inductance ;
+  qudt:iec61360Code "0112/2///62720#UAA932" ;
+  qudt:isScalingOf unit:H ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI derived unit henry" ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pH" ;
+  qudt:ucumCode "pH"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C73" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picohenry"@en ;
+.
+unit:PicoL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:plainTextDescription "0.000000000001-fold of the unit litre" ;
+  qudt:symbol "pL" ;
+  qudt:ucumCode "pL"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picolitre"@en ;
+  rdfs:label "Picolitre"@en-us ;
+.
+unit:PicoM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA949" ;
+  qudt:isScalingOf unit:M ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI base unit metre" ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pM" ;
+  qudt:ucumCode "pm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picometer"@en-us ;
+  rdfs:label "Picometre"@en ;
+.
+unit:PicoMOL-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitMass ;
+  qudt:symbol "pmol/kg" ;
+  qudt:ucumCode "pmol.kg-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per kilogram"@en ;
+.
+unit:PicoMOL-PER-L
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:symbol "pmol/L" ;
+  qudt:ucumCode "pmol.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per litre"@en ;
+.
+unit:PicoMOL-PER-L-DAY
+  a qudt:Unit ;
+  dcterms:description "A change in the quantity of matter of 10^-12 moles in the SI unit of volume scaled by 10^-3 over a period of 86400 seconds."@en ;
+  qudt:conversionMultiplier 0.0000000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ;
+  qudt:symbol "pmol/day" ;
+  qudt:ucumCode "pmol.L-1.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per litre per day"@en ;
+.
+unit:PicoMOL-PER-L-HR
+  a qudt:Unit ;
+  dcterms:description "A change in the quantity of matter of 10^-12 moles in the SI unit of volume scaled by 10^-3 over a period of 3600 seconds."@en ;
+  qudt:conversionMultiplier 0.000000000000277777777777778 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "pmol/(L⋅hr)" ;
+  qudt:ucumCode "pmol.L-1.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per litre per hour"@en ;
+.
+unit:PicoMOL-PER-M-W-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M-1H0T2D0 ;
+  qudt:symbol "pmol/(m⋅W⋅s)" ;
+  qudt:ucumCode "pmol.m-1.W-1.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per metre per watt per second"@en ;
+.
+unit:PicoMOL-PER-M2-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000000000000115740740740741 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "pmol/(m²⋅day)" ;
+  qudt:ucumCode "pmol.m-2.d-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per square metre per day"@en ;
+.
+unit:PicoMOL-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstancePerUnitVolume ;
+  qudt:hasQuantityKind quantitykind:Solubility_Water ;
+  qudt:symbol "pmol/m³" ;
+  qudt:ucumCode "pmol.m-3"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per cubic metre"@en ;
+.
+unit:PicoMOL-PER-M3-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ;
+  qudt:symbol "pmol/(m³⋅s)" ;
+  qudt:ucumCode "pmol.m-3.s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picomoles per cubic metre per second"@en ;
+.
+unit:PicoPA-PER-KiloM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:hasQuantityKind quantitykind:ForcePerLength ;
+  qudt:iec61360Code "0112/2///62720#UAA933" ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI derived unit pascal divided by the 1 000-fold of the SI base unit metre" ;
+  qudt:symbol "pPa/km" ;
+  qudt:ucumCode "pPa.km-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H69" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picopascal Per Kilometer"@en-us ;
+  rdfs:label "Picopascal Per Kilometre"@en ;
+.
+unit:PicoS-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA934" ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI derived unit Siemens divided by the SI base unit metre" ;
+  qudt:symbol "pS/m" ;
+  qudt:ucumCode "pS.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picosiemens Per Meter"@en-us ;
+  rdfs:label "Picosiemens Per Metre"@en ;
+.
+unit:PicoSEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA950" ;
+  qudt:isScalingOf unit:SEC ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI base unit second" ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "ps" ;
+  qudt:ucumCode "ps"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H70" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picosecond"@en ;
+.
+unit:PicoW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA935" ;
+  qudt:isScalingOf unit:W ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI derived unit watt" ;
+  qudt:prefix prefix:Pico ;
+  qudt:symbol "pW" ;
+  qudt:ucumCode "pW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C75" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picowatt"@en ;
+.
+unit:PicoW-PER-CentiM2-L
+  a qudt:Unit ;
+  dcterms:description "The power (scaled by 10^-12) per SI unit of area (scaled by 10^-4) produced per SI unit of volume (scaled by 10^-3)."@en ;
+  qudt:conversionMultiplier 0.00001 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-3D0 ;
+  qudt:symbol "pW/(cm²⋅L)" ;
+  qudt:ucumCode "pW.cm-2.L-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picowatts per square centimetre per litre"@en ;
+.
+unit:PicoW-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000000001 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAA936" ;
+  qudt:plainTextDescription "0.000000000001-fold of the SI derived unit watt divided by the power of the SI base unit metre with the exponent 2" ;
+  qudt:symbol "pW/m²" ;
+  qudt:ucumCode "pW.m-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C76" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Picowatt Per Square Meter"@en-us ;
+  rdfs:label "Picowatt Per Square Metre"@en ;
+.
+unit:PlanckArea
+  a qudt:Unit ;
+  qudt:conversionMultiplier "0.000000000000000000000000000000000000000000000000000000000000000000000261223"^^xsd:double ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:symbol "planckarea" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Area"@en ;
+.
+unit:PlanckCharge
+  a qudt:Unit ;
+  dcterms:description "In physics, the Planck charge, denoted by, is one of the base units in the system of natural units called Planck units. It is a quantity of electric charge defined in terms of fundamental physical constants. The Planck charge is defined as: coulombs, where: is the speed of light in the vacuum, is Planck's constant, is the reduced Planck constant, is the permittivity of free space is the elementary charge = (137.03599911) is the fine structure constant. The Planck charge is times greater than the elementary charge \\(e\\) carried by an electron."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000000000000187554587 ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(Q_P\\)"^^qudt:LatexString ;
+  qudt:symbol "planckcharge" ;
+  qudt:unitOfSystem sou:PLANCK ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Charge"@en ;
+.
+unit:PlanckCurrent
+  a qudt:Unit ;
+  dcterms:description "The Planck current is the unit of electric current, denoted by IP, in the system of natural units known as Planck units. \\(\\approx 3.479 \\times 10 A\\), where:  the Planck time is the permittivity in vacuum and the reduced Planck constant G is the gravitational constant c is the speed of light in vacuum. The Planck current is that current which, in a conductor, carries a Planck charge in Planck time. Alternatively, the Planck current is that constant current which, if maintained in two straight parallel conductors of infinite length and negligible circular cross-section, and placed a Planck length apart in vacuum, would produce between these conductors a force equal to a Planck force per Planck length."^^qudt:LatexString ;
+  qudt:conversionMultiplier 34789000000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_current"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrent ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_current?oldid=493640689"^^xsd:anyURI ;
+  qudt:symbol "planckcurrent" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Current"@en ;
+.
+unit:PlanckCurrentDensity
+  a qudt:Unit ;
+  qudt:conversionMultiplier "133177400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0"^^xsd:double ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ;
+  qudt:symbol "planckcurrentdensity" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Current Density"@en ;
+.
+unit:PlanckDensity
+  a qudt:Unit ;
+  dcterms:description "The Planck density is the unit of density, denoted by \\(\\rho_P\\), in the system of natural units known as Planck units. \\(1\\  \\rho_P \\ is \\approx 5.155 \\times 10^{96} kg/m^3\\). This is a unit which is very large, about equivalent to \\(10^{23}\\) solar masses squeezed into the space of a single atomic nucleus. At one unit of Planck time after the Big Bang, the mass density of the universe is thought to have been approximately one unit of Planck density."^^qudt:LatexString ;
+  qudt:conversionMultiplier "5155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0"^^xsd:double ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_density"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_density?oldid=493642128"^^xsd:anyURI ;
+  qudt:symbol "planckdensity" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Density"@en ;
+.
+unit:PlanckEnergy
+  a qudt:Unit ;
+  dcterms:description "In physics, the unit of energy in the system of natural units known as Planck units is called the Planck energy, denoted by \\(E_P\\). \\(E_P\\) is a derived, as opposed to basic, Planck unit. An equivalent definition is:\\(E_P = \\hbar / T_P\\) where \\(T_P\\) is the Planck time. Also: \\(E_P = m_P c^2\\) where \\(m_P\\) is the Planck mass."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1956100000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_energy"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_energy?oldid=493639955"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(E_\\rho = \\sqrt{\\frac{ \\hbar c^5}{G}} \\approx 1.936 \\times 10^9 J \\approx 1.22 \\times 10^{28} eV \\approx 0.5433 MWh\\), where  \\(c\\) is the speed of light in a vacuum, \\(\\hbar\\) is the reduced Planck's constant, and \\(G\\) is the gravitational constant."^^qudt:LatexString ;
+  qudt:symbol "Eᵨ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Energy"@en ;
+.
+unit:PlanckForce
+  a qudt:Unit ;
+  dcterms:description "Planck force is the derived unit of force resulting from the definition of the base Planck units for time, length, and mass. It is equal to the natural unit of momentum divided by the natural unit of time."^^rdf:HTML ;
+  qudt:conversionMultiplier 121027000000000000000000000000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_force"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_force?oldid=493643031"^^xsd:anyURI ;
+  qudt:symbol "planckforce" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Force"@en ;
+.
+unit:PlanckFrequency
+  a qudt:Unit ;
+  qudt:conversionMultiplier 18548700000000000000000000000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_angular_frequency"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_angular_frequency?oldid=493641308"^^xsd:anyURI ;
+  qudt:symbol "planckfrequency" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Frequency"@en ;
+.
+unit:PlanckFrequency_Ang
+  a qudt:Unit ;
+  qudt:conversionMultiplier 18548700000000000000000000000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_angular_frequency"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "planckangularfrequency" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Angular Frequency"@en ;
+.
+unit:PlanckImpedance
+  a qudt:Unit ;
+  dcterms:description "The Planck impedance is the unit of electrical resistance, denoted by ZP, in the system of natural units known as Planck units. The Planck impedance is directly coupled to the impedance of free space, Z0, and differs in value from Z0 only by a factor of \\(4\\pi\\). If the Planck charge were instead defined to normalize the permittivity of free space, \\(\\epsilon_0\\), rather than the Coulomb constant, \\(1/(4\\pi\\epsilon_0)\\), then the Planck impedance would be identical to the characteristic impedance of free space."^^qudt:LatexString ;
+  qudt:conversionMultiplier 29.9792458 ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_impedance"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(Z_P = \\frac{V_P}{I_P}= \\frac{1}{4\\pi\\epsilon_0c}=\\frac{\\mu_oc}{4\\pi}=\\frac{Z_0}{4\\pi}=29.9792458\\Omega\\)\\where \\(V_P\\) is the Planck voltage, \\(I_P\\) is the Planck current, \\(c\\) is the speed of light in a vacuum, \\(\\epsilon_0\\) is the permittivity of free space, \\(\\mu_0\\) is the permeability of free space, and \\(Z_0\\) is the impedance of free space."^^qudt:LatexString ;
+  qudt:symbol "Zₚ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Impedance"@en ;
+.
+unit:PlanckLength
+  a qudt:Unit ;
+  dcterms:description "In physics, the Planck length, denoted \\(\\ell_P\\), is a unit of length, equal to \\(1.616199(97)×10^{-35}\\) metres. It is a base unit in the system of Planck units. The Planck length can be defined from three fundamental physical constants: the speed of light in a vacuum, Planck's constant, and the gravitational constant. "^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000000000000000000000000000001616252 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_length"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_length?oldid=495093067"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(\\ell_P = \\sqrt{\\frac{ \\hbar G}{c^3}} \\approx 1.616199(97)) \\times 10^{-35} m\\), where \\(c\\) is the speed of light in a vacuum, \\(\\hbar\\) is the reduced Planck's constant, and \\(G\\) is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ;
+  qudt:latexSymbol "\\(\\ell_P\\)"^^qudt:LatexString ;
+  qudt:symbol "plancklength" ;
+  qudt:unitOfSystem sou:PLANCK ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Length"@en ;
+.
+unit:PlanckMass
+  a qudt:Unit ;
+  dcterms:description "In physics, the Planck mass, denoted by \\(m_P\\), is the unit of mass in the system of natural units known as Planck units. It is defined so that \\(\\approx  1.2209 \\times 10 GeV/c_0 = 2.17651(13) \\times 10 kg\\), (or \\(21.7651 \\mu g\\)), where \\(c_0\\) is the speed of light in a vacuum, \\(G\\) is the gravitational constant, and \\(\\hbar\\) is the reduced Planck constant. Particle physicists and cosmologists often use the reduced Planck mass, which is \\(\\approx  4.341 \\times 10 kg = 2.435  \\times 10 GeV/c\\). The added factor of \\(1/{\\sqrt{8\\pi}}\\) simplifies a number of equations in general relativity. Quantum effects are typified by the magnitude of Planck's constant."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000217644 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_mass?oldid=493648632"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(m_P = \\sqrt{\\frac{ \\hbar c^3}{G}} \\approx 1.2209 \\times 10^{19} GeV/c^2 = 2.17651(13) \\times 10^{-8}\\), where \\(c\\) is the speed of light in a vacuum, \\(\\hbar\\) is the reduced Planck's constant, and \\(G\\) is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ;
+  qudt:latexSymbol "\\(m_P\\)"^^qudt:LatexString ;
+  qudt:symbol "planckmass" ;
+  qudt:unitOfSystem sou:PLANCK ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Mass"@en ;
+.
+unit:PlanckMomentum
+  a qudt:Unit ;
+  dcterms:description "Planck momentum is the unit of momentum in the system of natural units known as Planck units. It has no commonly used symbol of its own, but can be denoted by, where is the Planck mass and is the speed of light in a vacuum. Then where is the reduced Planck's constant, is the Planck length, is the gravitational constant. In SI units Planck momentum is \\(\\approx 6.5 kg m/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6.52485 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_momentum"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:LinearMomentum ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_momentum?oldid=493644981"^^xsd:anyURI ;
+  qudt:symbol "planckmomentum" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Momentum"@en ;
+.
+unit:PlanckPower
+  a qudt:Unit ;
+  dcterms:description "The Planck energy divided by the Planck time is the Planck power \\(P_p \\), equal to about \\(3.62831 \\times 10^{52} W\\). This is an extremely large unit; even gamma-ray bursts, the most luminous phenomena known, have output on the order of \\(1 \\times 10^{45} W\\), less than one ten-millionth of the Planck power."^^qudt:LatexString ;
+  qudt:conversionMultiplier 36283100000000000000000000000000000000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_power"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_power?oldid=493642483"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(P_p = {\\frac{ c^5}{G}}\\), where \\(c\\) is the speed of light in a vacuum, and \\(G\\) is the gravitational constant."^^qudt:LatexString ;
+  qudt:symbol "planckpower" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Power"@en ;
+.
+unit:PlanckPressure
+  a qudt:Unit ;
+  qudt:conversionMultiplier "463309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0"^^xsd:double ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_pressure"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_pressure?oldid=493640883"^^xsd:anyURI ;
+  qudt:symbol "planckpressure" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Pressure"@en ;
+.
+unit:PlanckTemperature
+  a qudt:Unit ;
+  qudt:conversionMultiplier 141678400000000000000000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ;
+  qudt:hasQuantityKind quantitykind:BoilingPoint ;
+  qudt:hasQuantityKind quantitykind:FlashPoint ;
+  qudt:hasQuantityKind quantitykind:MeltingPoint ;
+  qudt:hasQuantityKind quantitykind:Temperature ;
+  qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
+  qudt:symbol "plancktemperature" ;
+  qudt:unitOfSystem sou:PLANCK ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "PlanckTemperature"@en ;
+.
+unit:PlanckTime
+  a qudt:Unit ;
+  dcterms:description "In physics, the Planck time, denoted by \\(t_P\\), is the unit of time in the system of natural units known as Planck units. It is the time required for light to travel, in a vacuum, a distance of 1 Planck length. The unit is named after Max Planck, who was the first to propose it. \\( \\\\ t_P \\equiv  \\sqrt{\\frac{\\hbar G}{c^5}} \\approx 5.39106(32) \\times 10^{-44} s\\) where, \\(c\\) is the speed of light in a vacuum, \\(\\hbar\\) is the reduced Planck's constant (defined as \\(\\hbar = \\frac{h}{2 \\pi}\\) and \\(G\\) is the gravitational constant. The two digits between parentheses denote the standard error of the estimated value."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0000000000000000000000000000000000000000000539124 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_time"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_time?oldid=495362103"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(t_P\\)"^^qudt:LatexString ;
+  qudt:symbol "tₚ" ;
+  qudt:unitOfSystem sou:PLANCK ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Time"@en ;
+.
+unit:PlanckVolt
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1042950000000000000000000000.0 ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:symbol "Vₚ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Volt"@en ;
+.
+unit:PlanckVolume
+  a qudt:Unit ;
+  qudt:conversionMultiplier "0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000422419"^^xsd:double ;
+  qudt:derivedUnitOfSystem sou:PLANCK ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:symbol "l³ₚ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Planck Volume"@en ;
+.
+unit:Platinum-OunceTroy
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(XPT\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:ucumCode "[oz_tr]{Pt}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Platinum (one Troy ounce)"@en ;
+.
+unit:PoundSterling
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "United Kingdom"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_sterling"^^xsd:anyURI ;
+  qudt:expression "\\(GBP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_sterling?oldid=495524329"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pound Sterling"@en ;
+.
+unit:Pula
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Botswana"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Pula"^^xsd:anyURI ;
+  qudt:expression "\\(BWP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Pula?oldid=495207177"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Pula"@en ;
+.
+unit:QT_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0011365225 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA963" ;
+  qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units" ;
+  qudt:symbol "qt{UK}" ;
+  qudt:ucumCode "[qt_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "QTI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (UK)"@en ;
+.
+unit:QT_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000000131542 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA710" ;
+  qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time day" ;
+  qudt:symbol "qt{UK}/day" ;
+  qudt:ucumCode "[qt_br].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (UK Liquid) Per Day"@en ;
+.
+unit:QT_UK-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0000003157007 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA711" ;
+  qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time hour" ;
+  qudt:symbol "qt{UK}/hr" ;
+  qudt:ucumCode "[qt_br].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (UK Liquid) Per Hour"@en ;
+.
+unit:QT_UK-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001894205 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA712" ;
+  qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time minute" ;
+  qudt:symbol "qt{UK}/min" ;
+  qudt:ucumCode "[qt_br].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (UK Liquid) Per Minute"@en ;
+.
+unit:QT_UK-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0011365225 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA713" ;
+  qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the SI base unit second" ;
+  qudt:symbol "qt{UK}/s" ;
+  qudt:ucumCode "[qt_br].h-1.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K97" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (UK Liquid) Per Second"@en ;
+.
+unit:QT_US
+  a qudt:Unit ;
+  dcterms:description "\"US Liquid Quart\" is a unit for  'Liquid Volume' expressed as \\(qt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000946353 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:LiquidVolume ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:symbol "qt" ;
+  qudt:ucumCode "[qt_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "QTL" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Liquid Quart"@en ;
+.
+unit:QT_US-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000001095316 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA714" ;
+  qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time day" ;
+  qudt:symbol "qt{US}/day" ;
+  qudt:ucumCode "[qt_us].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (US Liquid) Per Day"@en ;
+.
+unit:QT_US-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000000262875833 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA715" ;
+  qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time hour" ;
+  qudt:symbol "qt{US}/hr" ;
+  qudt:ucumCode "[qt_us].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "K99" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (US Liquid) Per Hour"@en ;
+.
+unit:QT_US-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00001577255 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA716" ;
+  qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time minute" ;
+  qudt:symbol "qt{US}/min" ;
+  qudt:ucumCode "[qt_us].min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (US Liquid) Per Minute"@en ;
+.
+unit:QT_US-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.000946353 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA717" ;
+  qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the SI base unit second" ;
+  qudt:symbol "qt{US}/s" ;
+  qudt:ucumCode "[qt_us].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quart (US Liquid) Per Second"@en ;
+.
+unit:QT_US_DRY
+  a qudt:Unit ;
+  dcterms:description "\"US Dry Quart\" is a unit for  'Dry Volume' expressed as \\(dry_qt\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.001101220942715 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:DryVolume ;
+  qudt:symbol "qt{US Dry}" ;
+  qudt:ucumCode "[dqt_us]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "QTD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Dry Quart"@en ;
+.
+unit:QUAD
+  a qudt:Unit ;
+  dcterms:description "A quad is a unit of energy equal to \\(10 BTU\\), or \\(1.055 \\times \\SI{10}{\\joule}\\), which is \\(1.055 exajoule\\) or \\(EJ\\) in SI units. The unit is used by the U.S. Department of Energy in discussing world and national energy budgets. Some common types of an energy carrier approximately equal 1 quad are: 8,007,000,000 Gallons (US) of gasoline 293,083,000,000 Kilowatt-hours (kWh) 36,000,000 Tonnes of coal 970,434,000,000 Cubic feet of natural gas 5,996,000,000 UK gallons of diesel oil 25,200,000 Tonnes of oil 252,000,000 tonnes of TNT or five times the energy of the Tsar Bomba nuclear test."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1055000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Quad"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Quad?oldid=492086827"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/quad> ;
+  qudt:symbol "quad" ;
+  qudt:uneceCommonCode "N70" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quad"@en ;
+.
+unit:QatariRial
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Qatar"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Qatari_riyal"^^xsd:anyURI ;
+  qudt:expression "\\(QAR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Qatari_riyal?oldid=491747452"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Qatari Rial"@en ;
+.
+unit:Quarter_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 12.70058636 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB202" ;
+  qudt:plainTextDescription "unit of the mass according to the avoirdupois system of units: 1 qr. l. = 28 lb" ;
+  qudt:symbol "quarter" ;
+  qudt:ucumCode "28.[lb_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "QTR" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quarter (UK)"@en ;
+.
+unit:Quetzal
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Guatemala"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Quetzal"^^xsd:anyURI ;
+  qudt:expression "\\(GTQ\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Quetzal?oldid=489813522"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Quetzal"@en ;
+.
+unit:R
+  a qudt:Unit ;
+  dcterms:description "Not to be confused with roentgen equivalent man or roentgen equivalent physical. The roentgen (symbol R) is an obsolete unit of measurement for the kerma of X-rays and gamma rays up to 3 MeV."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000258 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Roentgen"^^xsd:anyURI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
+  qudt:iec61360Code "0112/2///62720#UAA275" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Roentgen?oldid=491213233"^^xsd:anyURI ;
+  qudt:symbol "R" ;
+  qudt:ucumCode "R"^^qudt:UCUMcs ;
+  qudt:udunitsCode "R" ;
+  qudt:uneceCommonCode "2C" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Roentgen"@en ;
+.
+unit:RAD
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The radian is the standard unit of angular measure, used in many areas of mathematics. It describes the plane angle subtended by a circular arc as the length of the arc divided by the radius of the arc. In the absence of any symbol radians are assumed, and when degrees are meant the symbol \\(^{\\ circ}\\) is used. "^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Radian"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:exactMatch unit:MilliARCSEC ;
+  qudt:guidance "<p>See NIST section <a href=\"http://physics.nist.gov/Pubs/SP811/sec07.html#7.10\">SP811 section7.10</a></p>"^^rdf:HTML ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAA966" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Radian?oldid=492309312"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/radian> ;
+  qudt:plainTextDescription "The radian is the standard unit of angular measure, used in many areas of mathematics. It describes the plane angle subtended by a circular arc as the length of the arc divided by the radius of the arc. The unit was formerly a SI supplementary unit, but this category was abolished in 1995 and the radian is now considered a SI derived unit. The SI unit of solid angle measurement is the steradian.  The radian is represented by the symbol \"rad\" or, more rarely, by the superscript c (for \"circular measure\"). For example, an angle of 1.2 radians would be written as \"1.2 rad\" or \"1.2c\" (the second symbol is often mistaken for a degree: \"1.2u00b0\"). As the ratio of two lengths, the radian is a \"pure number\" that needs no unit symbol, and in mathematical writing the symbol \"rad\" is almost always omitted. In the absence of any symbol radians are assumed, and when degrees are meant the symbol u00b0 is used. [Wikipedia]" ;
+  qudt:symbol "rad" ;
+  qudt:ucumCode "rad"^^qudt:UCUMcs ;
+  qudt:udunitsCode "rad" ;
+  qudt:uneceCommonCode "C81" ;
+  rdfs:comment "The radian and steradian are special names for the number one that may be used to convey information about the quantity concerned. In practice the symbols rad and sr are used where appropriate, but the symbol for the derived unit one is generally omitted in specifying the values of dimensionless quantities." ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian"@en ;
+  owl:sameAs unit:MilliARCSEC ;
+.
+unit:RAD-M2-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(rad m^2 / kg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificOpticalRotatoryPower ;
+  qudt:iec61360Code "0112/2///62720#UAB162" ;
+  qudt:symbol "rad⋅m²/kg" ;
+  qudt:ucumCode "rad.m2.kg-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C83" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian Square Meter per Kilogram"@en-us ;
+  rdfs:label "Radian Square Metre per Kilogram"@en ;
+.
+unit:RAD-M2-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(rad m^2 / mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MolarOpticalRotatoryPower ;
+  qudt:iec61360Code "0112/2///62720#UAB161" ;
+  qudt:symbol "rad⋅m²/mol" ;
+  qudt:ucumCode "rad.m-2.mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C82" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian Square Meter per Mole"@en-us ;
+  rdfs:label "Radian Square Metre per Mole"@en ;
+.
+unit:RAD-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\"Radian per Hour\" is a unit for  'Angular Velocity' expressed as \\(rad/h\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:expression "\\(rad/h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "rad/h" ;
+  qudt:ucumCode "rad.h-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "rad/h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian per Hour"@en ;
+.
+unit:RAD-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(rad/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:AngularWavenumber ;
+  qudt:hasQuantityKind quantitykind:DebyeAngularWavenumber ;
+  qudt:hasQuantityKind quantitykind:FermiAngularWavenumber ;
+  qudt:iec61360Code "0112/2///62720#UAA967" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "rad/m" ;
+  qudt:ucumCode "rad.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C84" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian per Meter"@en-us ;
+  rdfs:label "Radian per Metre"@en ;
+.
+unit:RAD-PER-MIN
+  a qudt:Unit ;
+  dcterms:description "Radian Per Minute (rad/min) is a unit in the category of Angular velocity. It is also known as radians per minute, radian/minute. Radian Per Minute (rad/min) has a dimension of aT-1 where T is time. It can be converted to the corresponding standard SI unit rad/s by multiplying its value by a factor of 0.0166666666667. "^^rdf:HTML ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 60.0 ;
+  qudt:expression "\\(rad/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "rad/min" ;
+  qudt:ucumCode "rad.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "rad/min"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian per Minute"@en ;
+.
+unit:RAD-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Radian per Second\" is the SI unit of rotational speed (angular velocity), and, also the unit of angular frequency. The radian per second is defined as the change in the orientation of an object, in radians, every second."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(rad/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:iec61360Code "0112/2///62720#UAA968" ;
+  qudt:symbol "rad/s" ;
+  qudt:ucumCode "rad.s-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "rad/s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2A" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "radian per second"@en ;
+.
+unit:RAD-PER-SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Angular acceleration is the rate of change of angular velocity. In SI units, it is measured in radians per Square second (\\(rad/s^2\\)), and is usually denoted by the Greek letter \\(\\alpha\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(rad/s2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AngularAcceleration ;
+  qudt:iec61360Code "0112/2///62720#UAA969" ;
+  qudt:symbol "rad/s²" ;
+  qudt:ucumCode "rad.s-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "rad/s2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "2B" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Radian per Square Second"@en ;
+.
+unit:RAD_R
+  a qudt:Unit ;
+  dcterms:description "The \\(rad\\) is a deprecated unit of absorbed radiation dose, defined as \\(1 rad = 0.01\\,Gy = 0.01 J/kg\\). It was originally defined in CGS units in 1953 as the dose causing 100 ergs of energy to be absorbed by one gram of matter. It has been replaced by the gray in most of the world. A related unit, the \\(roentgen\\), was formerly used to quantify the number of rad deposited into a target when it was exposed to radiation. The F-factor can used to convert between rad and roentgens. The material absorbing the radiation can be human tissue or silicon microchips or any other medium (for example, air, water, lead shielding, etc.)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/RAD"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDose ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/RAD?oldid=493716376"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/rad> ;
+  qudt:symbol "rad" ;
+  qudt:ucumCode "RAD"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "C80" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rad"@en ;
+.
+unit:RAYL
+  a qudt:Unit ;
+  dcterms:description "dcterms:description \"\\(\\textbf{Rayl}\\) is one of two units of specific acoustic impedance. When sound waves pass through any physical substance the pressure of the waves causes the particles of the substance to move. The sound specific impedance is the ratio between the sound pressure and the particle velocity it produces. The specific impedance is one rayl if unit pressure produces unit velocity. It is defined as follows: \\(1\\; rayl = 1 dyn\\cdot s\\cdot cm^{-3}\\) Or in SI as: \\(1 \\; rayl = 10^{-1}Pa\\cdot s\\cdot m^{-1}\\), which equals \\(10\\,N \\cdot s\\cdot m^{-3}\\).\"\"\"^^qudt:LatexString ;" ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Rayl"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:SpecificAcousticImpedance ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Rayl?oldid=433570842"^^xsd:anyURI ;
+  qudt:symbol "rayl" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rayl"@en ;
+.
+unit:REM
+  a qudt:Unit ;
+  dcterms:description "A Rem is a deprecated unit used to measure the biological effects of ionizing radiation. The rem is defined as equal to 0.01 sievert, which is the more commonly used unit outside of the United States. Equivalent dose, effective dose, and committed dose can all be measured in units of rem. These quantities are products of the absorbed dose in rads and weighting factors. These factors must be selected for each exposure situation; there is no universally applicable conversion constant from rad to rem. A rem is a large dose of radiation, so the millirem (mrem), which is one thousandth of a rem, is often used for the dosages commonly encountered, such as the amount of radiation received from medical x-rays and background sources."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.01 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalent ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Roentgen_equivalent_man"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/rem> ;
+  qudt:symbol "rem" ;
+  qudt:ucumCode "REM"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D91" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rem"@en ;
+.
+unit:REV
+  a qudt:Unit ;
+  dcterms:description "\"Revolution\" is a unit for  'Plane Angle' expressed as \\(rev\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6.28318531 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Revolution"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Angle ;
+  qudt:iec61360Code "0112/2///62720#UAB206" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Revolution?oldid=494110330"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/revolution> ;
+  qudt:symbol "rev" ;
+  qudt:ucumCode "{#}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Revolution"@en ;
+.
+unit:REV-PER-HR
+  a qudt:Unit ;
+  dcterms:description "\"Revolution per Hour\" is a unit for  'Angular Velocity' expressed as \\(rev/h\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00174532925 ;
+  qudt:expression "\\(rev/h\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "rev/h" ;
+  qudt:ucumCode "{#}.h-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Revolution per Hour"@en ;
+.
+unit:REV-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Revolution per Minute\" is a unit for  'Angular Velocity' expressed as \\(rev/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.104719755 ;
+  qudt:expression "\\(rev/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:iec61360Code "0112/2///62720#UAB231" ;
+  qudt:symbol "rev/min" ;
+  qudt:ucumCode "{#}.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M46" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Revolution per Minute"@en ;
+.
+unit:REV-PER-SEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Revolution per Second\" is a unit for  'Angular Velocity' expressed as \\(rev/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6.28318531 ;
+  qudt:expression "\\(rev/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:AngularVelocity ;
+  qudt:symbol "rev/s" ;
+  qudt:ucumCode "{#}.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "RPS" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Revolution per Second"@en ;
+.
+unit:REV-PER-SEC2
+  a qudt:Unit ;
+  dcterms:description "\"Revolution per Square Second\" is a C.G.S System unit for  'Angular Acceleration' expressed as \\(rev-per-s^2\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 6.28318531 ;
+  qudt:expression "\\(rev/s2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:AngularAcceleration ;
+  qudt:symbol "rev/s²" ;
+  qudt:ucumCode "{#}.s-2"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Revolution per Square Second"@en ;
+.
+unit:ROD
+  a qudt:Unit ;
+  dcterms:description "A unit of distance equal to 5.5 yards (16 feet 6 inches)."^^rdf:HTML ;
+  qudt:conversionMultiplier 5.02921 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Rod"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(rd\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAA970" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Rod?oldid=492590086"^^xsd:anyURI ;
+  qudt:symbol "rod" ;
+  qudt:ucumCode "[rd_br]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "F49" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rod"@en ;
+.
+unit:RPK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:hasQuantityKind quantitykind:GeneFamilyAbundance ;
+  qudt:informativeReference "https://learn.gencore.bio.nyu.edu/metgenomics/shotgun-metagenomics/functional-analysis/"^^xsd:anyURI ;
+  qudt:plainTextDescription "RPK (Reads Per Kilobases) are obtained by dividing read counts by gene lengths (expressed in kilo-nucleotides)." ;
+  qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:symbol "RPK" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Reads Per Kilobase"@en ;
+  skos:altLabel "RPK" ;
+.
+unit:RT
+  a qudt:Unit ;
+  dcterms:description "The register ton is a unit of volume used for the cargo capacity of a ship, defined as 100 cubic feet (roughly 2.83 cubic metres)."^^rdf:HTML ;
+  qudt:conversionMultiplier 2.8316846592 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Tonnage#Tonnage_measurements"^^xsd:anyURI ;
+  qudt:symbol "RT" ;
+  qudt:ucumCode "100.[cft_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M70" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Register Ton"@en ;
+  rdfs:seeAlso unit:GT ;
+.
+unit:Riel
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cambodia"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Riel"^^xsd:anyURI ;
+  qudt:expression "\\(KHR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Riel?oldid=473309240"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Riel"@en ;
+.
+unit:RomanianNeLeu
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Romania"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(RON\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Romanian New Leu"@en ;
+.
+unit:Rufiyaa
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Maldives"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Maldivian_rufiyaa"^^xsd:anyURI ;
+  qudt:expression "\\(MVR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Maldivian_rufiyaa?oldid=491578728"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rufiyaa"@en ;
+.
+unit:Rupiah
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Indonesia"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Indonesian_rupiah"^^xsd:anyURI ;
+  qudt:expression "\\(IDR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Indonesian_rupiah?oldid=489729458"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rupiah"@en ;
+.
+unit:RussianRuble
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Russia, Abkhazia, South Ossetia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Russian_ruble"^^xsd:anyURI ;
+  qudt:expression "\\(RUB\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Russian_ruble?oldid=494336467"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Russian Ruble"@en ;
+.
+unit:RwandaFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Rwanda"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Rwandan_franc"^^xsd:anyURI ;
+  qudt:expression "\\(RWF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Rwandan_franc?oldid=489727903"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Rwanda Franc"@en ;
+.
+unit:S
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Siemens}\\) is the SI unit of electric conductance, susceptance, and admittance. The most important property of a conductor is the amount of current it will carry when a voltage is applied. Current flow is opposed by resistance in all circuits, and by also by reactance and impedance in alternating current circuits. Conductance, susceptance, and admittance are the inverses of resistance, reactance, and impedance, respectively. To measure these properties, the siemens is the reciprocal of the ohm. In other words, the conductance, susceptance, or admittance, in siemens, is simply 1 divided by the resistance, reactance or impedance, respectively, in ohms. The unit is named for the German electrical engineer Werner von Siemens (1816-1892). \\(\\  \\text{Siemens}\\equiv\\frac{\\text{A}}{\\text{V}}\\equiv\\frac{\\text{amp}}{\\text{volt}}\\equiv\\frac{\\text{F}}{\\text {s}}\\equiv\\frac{\\text{farad}}{\\text{second}}\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:exactMatch unit:MHO ;
+  qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Admittance ;
+  qudt:hasQuantityKind quantitykind:Conductance ;
+  qudt:iec61360Code "0112/2///62720#UAA277" ;
+  qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Siemens_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/siemens> ;
+  qudt:siUnitsExpression "A/V" ;
+  qudt:symbol "S" ;
+  qudt:ucumCode "S"^^qudt:UCUMcs ;
+  qudt:udunitsCode "S" ;
+  qudt:uneceCommonCode "SIE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Siemens"@en ;
+  owl:sameAs unit:MHO ;
+.
+unit:S-M2-PER-MOL
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(s-m2-per-mol\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:MolarConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA280" ;
+  qudt:symbol "s⋅m²/mol" ;
+  qudt:ucumCode "S.m2.mol-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Siemens Square meter per mole"@en-us ;
+  rdfs:label "Siemens Square metre per mole"@en ;
+.
+unit:S-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA278" ;
+  qudt:plainTextDescription "SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "S/cm" ;
+  qudt:ucumCode "S.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Siemens Per Centimeter"@en-us ;
+  rdfs:label "Siemens Per Centimetre"@en ;
+.
+unit:S-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(s-per-m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:Conductivity ;
+  qudt:hasQuantityKind quantitykind:ElectrolyticConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA279" ;
+  qudt:plainTextDescription "SI derived unit siemens divided by the SI base unit metre" ;
+  qudt:symbol "s/m" ;
+  qudt:ucumCode "S.m-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "S/m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D10" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Siemens Per Meter"@en-us ;
+  rdfs:label "Siemens Per Metre"@en ;
+.
+unit:SAMPLE-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "The number of discrete samples of some thing per second."^^rdf:HTML ;
+  qudt:expression "\\(sample-per-sec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:symbol "sample/s" ;
+  qudt:ucumCode "s-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sample per second"@en ;
+.
+unit:SEC
+  a qudt:Unit ;
+  dcterms:description """The \\(Second\\) (symbol: \\(s\\)) is the base unit of time in the International System of Units (SI) and is also a unit of time in other systems of measurement. Between the years1000 (when al-Biruni used seconds) and 1960 the second was defined as \\(1/86400\\) of a mean solar day (that definition still applies in some astronomical and legal contexts). Between 1960 and 1967, it was defined in terms of the period of the Earth's orbit around the Sun in 1900, but it is now defined more precisely in atomic terms.
+Under the International System of Units (via the International Committee for Weights and Measures, or CIPM), since 1967 the second has been defined as the duration of \\({9192631770}\\) periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the caesium 133 atom.In 1997 CIPM added that the periods would be defined for a caesium atom at rest, and approaching the theoretical temperature of absolute zero, and in 1999, it included corrections from ambient radiation."""^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Second"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Period ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAA972" ;
+  qudt:iec61360Code "0112/2///62720#UAD722" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Second?oldid=495241006"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time> ;
+  qudt:symbol "s" ;
+  qudt:ucumCode "s"^^qudt:UCUMcs ;
+  qudt:udunitsCode "s" ;
+  qudt:uneceCommonCode "SEC" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Second"@en ;
+.
+unit:SEC-FT2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Second Square Foot\" is an Imperial unit for  'Area Time' expressed as \\(s-ft^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.09290304 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(s-ft^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:AreaTime ;
+  qudt:symbol "s⋅ft²" ;
+  qudt:ucumCode "s.[ft_i]2"^^qudt:UCUMcs ;
+  qudt:ucumCode "s.[sft_i]"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Second Square Foot"@en ;
+.
+unit:SEC-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ;
+  qudt:symbol "s/m" ;
+  qudt:ucumCode "s.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Seconds per metre"@en ;
+.
+unit:SEC-PER-RAD-M3
+  a qudt:Unit ;
+  qudt:expression "\\(sec/rad-m^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:DensityOfStates ;
+  qudt:iec61360Code "0112/2///62720#UAB352" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "s/rad⋅m³" ;
+  qudt:ucumCode "s.rad-1.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q22" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Second per Radian Cubic Meter"@en-us ;
+  rdfs:label "Second per Radian Cubic Metre"@en ;
+.
+unit:SEC2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Square Second\" is a unit for  'Square Time' expressed as \\(s^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(s^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T2D0 ;
+  qudt:hasQuantityKind quantitykind:TimeSquared ;
+  qudt:symbol "s²" ;
+  qudt:ucumCode "s2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Second"@en ;
+.
+unit:SH
+  a qudt:Unit ;
+  dcterms:description "A shake is an informal unit of time equal to 10 nanoseconds. It has applications in nuclear physics, helping to conveniently express the timing of various events in a nuclear explosion. The typical time required for one step in the chain reaction (i.e. the typical time for each neutron to cause a fission event which releases more neutrons) is of order 1 shake, and the chain reaction is typically complete by 50 to 100 shakes."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Shake"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAB226" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Shake?oldid=494796779"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/shake> ;
+  qudt:symbol "shake" ;
+  qudt:ucumCode "10.ns"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Shake"@en ;
+.
+unit:SHANNON
+  a qudt:Unit ;
+  dcterms:description "The \"Shannon\" is a unit of information."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
+  qudt:expression "\\(Sh\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAB343" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/shannon> ;
+  qudt:symbol "Sh" ;
+  qudt:uneceCommonCode "Q14" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Shannon"@en ;
+.
+unit:SHANNON-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "The \"Shannon per Second\" is a unit of information rate."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(Sh/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:InformationFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB346" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
+  qudt:symbol "Sh/s" ;
+  qudt:uneceCommonCode "Q17" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Shannon per Second"@en ;
+.
+unit:SLUG
+  a qudt:Unit ;
+  dcterms:description "The slug is a unit of mass associated with Imperial units. It is a mass that accelerates by \\(1 ft/s\\) when a force of one pound-force (\\(lbF\\)) is exerted on it. With standard gravity \\(gc = 9.80665 m/s\\), the international foot of \\(0.3048 m\\) and the avoirdupois pound of \\(0.45359237 kg\\), one slug therefore has a mass of approximately \\(32.17405 lbm\\) or \\(14.593903 kg\\). At the surface of the Earth, an object with a mass of 1 slug exerts a force of about \\(32.17 lbF\\) or \\(143 N\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 14.593903 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Slug"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAA978" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Slug?oldid=495010998"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/slug> ;
+  qudt:symbol "slug" ;
+  qudt:uneceCommonCode "F13" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug"@en ;
+.
+unit:SLUG-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00016891087963 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA979" ;
+  qudt:plainTextDescription "unit slug for mass according to an English engineering system divided by the unit day" ;
+  qudt:symbol "slug/day" ;
+  qudt:uneceCommonCode "L63" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug Per Day"@en ;
+.
+unit:SLUG-PER-FT
+  a qudt:Unit ;
+  dcterms:description "\"Slug per Foot\" is an Imperial unit for  'Mass Per Length' expressed as \\(slug/ft\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 47.8802591863517 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(slug/ft\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:symbol "slug/ft" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug per Foot"@en ;
+.
+unit:SLUG-PER-FT-SEC
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Slug per Foot Second} is a unit for  'Dynamic Viscosity' expressed as \\(slug/(ft-s)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 47.8802591863517 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(slug/(ft-s)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:DynamicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA980" ;
+  qudt:symbol "slug/(ft⋅s)" ;
+  qudt:uneceCommonCode "L64" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug per Foot Second"@en ;
+.
+unit:SLUG-PER-FT2
+  a qudt:Unit ;
+  dcterms:description "\"Slug per Square Foot\" is an Imperial unit for  'Mass Per Area' expressed as \\(slug/ft^{2}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 157.08746452215124 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(slug/ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:symbol "slug/ft²" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug per Square Foot"@en ;
+.
+unit:SLUG-PER-FT3
+  a qudt:Unit ;
+  dcterms:description "\"Slug per Cubic Foot\" is an Imperial unit for  'Density' expressed as \\(slug/ft^{3}\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 515.3788206107324 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(slug/ft^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:iec61360Code "0112/2///62720#UAA981" ;
+  qudt:symbol "slug/ft³" ;
+  qudt:uneceCommonCode "L65" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug per Cubic Foot"@en ;
+.
+unit:SLUG-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.004053861111111 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA982" ;
+  qudt:plainTextDescription "unit slug for mass slug according to the English engineering system divided by the unit hour" ;
+  qudt:symbol "slug/hr" ;
+  qudt:uneceCommonCode "L66" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug Per Hour"@en ;
+.
+unit:SLUG-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.243231666666667 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA983" ;
+  qudt:plainTextDescription "unit slug for the mass according to the English engineering system divided by the unit minute" ;
+  qudt:symbol "slug/min" ;
+  qudt:uneceCommonCode "L67" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug Per Minute"@en ;
+.
+unit:SLUG-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "\"Slug per Second\" is an Imperial unit for  'Mass Per Time' expressed as \\(slug/s\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 14.593903 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:expression "\\(slug/s\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:iec61360Code "0112/2///62720#UAA984" ;
+  qudt:symbol "slug/s" ;
+  qudt:uneceCommonCode "L68" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slug per Second"@en ;
+.
+unit:SR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The steradian (symbol: sr) is the SI unit of solid angle. It is used to describe two-dimensional angular spans in three-dimensional space, analogous to the way in which the radian describes angles in a plane. The radian and steradian are special names for the number one that may be used to convey information about the quantity concerned. In practice the symbols rad and sr are used where appropriate, but the symbol for the derived unit one is generally omitted in specifying the values of dimensionless quantities."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:SolidAngle ;
+  qudt:iec61360Code "0112/2///62720#UAA986" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Steradian?oldid=494317847"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/steradian> ;
+  qudt:symbol "sr" ;
+  qudt:ucumCode "sr"^^qudt:UCUMcs ;
+  qudt:udunitsCode "sr" ;
+  qudt:uneceCommonCode "D27" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Steradian"@en ;
+.
+unit:ST
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Stokes (St)}\\) is a unit in the category of Kinematic viscosity. This unit is commonly used in the cgs unit system. Stokes (St) has a dimension of \\(L^2T^{-1}\\) where \\(L\\) is length, and \\(T\\) is time. It can be converted to the corresponding standard SI unit \\(m^2/s\\) by multiplying its value by a factor of 0.0001."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Stokes"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:KinematicViscosity ;
+  qudt:iec61360Code "0112/2///62720#UAA281" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Stokes?oldid=426159512"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--kinematic_viscosity--stokes.cfm"^^xsd:anyURI ;
+  qudt:latexDefinition "\\((cm^2/s\\))"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/stokes> ;
+  qudt:symbol "St" ;
+  qudt:ucumCode "St"^^qudt:UCUMcs ;
+  qudt:udunitsCode "St" ;
+  qudt:uneceCommonCode "91" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Stokes"@en ;
+.
+unit:STILB
+  a qudt:Unit ;
+  dcterms:description "\\(The \\textit{stilb (sb)} is the CGS unit of luminance for objects that are not self-luminous. It is equal to one candela per square centimeter or 10 nits (candelas per square meter). The name was coined by the French physicist A. Blondel around 1920. It comes from the Greek word stilbein meaning 'to glitter'. It was in common use in Europe up to World War I. In North America self-explanatory terms such as candle per square inch and candle per square meter were more common. The unit has since largely been replaced by the SI unit: candela per square meter.\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Stilb"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Luminance ;
+  qudt:iec61360Code "0112/2///62720#UAB260" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Stilb?oldid=375748497"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/stilb> ;
+  qudt:symbol "sb" ;
+  qudt:ucumCode "sb"^^qudt:UCUMcs ;
+  qudt:udunitsCode "sb" ;
+  qudt:uneceCommonCode "P31" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Stilb"@en ;
+.
+unit:STR
+  a qudt:Unit ;
+  dcterms:description "The stere is a unit of volume in the original metric system equal to one cubic metre.  The stere is typically used for measuring large quantities of firewood or other cut wood, while the cubic meter is used for uncut wood. It is not part of the modern metric system (SI). In Dutch there's also a kuub, short for kubieke meter which is similar but different."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/St%C3%A8re"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAA987" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Stère?oldid=393570287"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/stere> ;
+  qudt:symbol "st" ;
+  qudt:ucumCode "st"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "G26" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Stere"@en ;
+.
+unit:SUSCEPTIBILITY_ELEC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:latexDefinition "\\chi_{\\text{e}} = \\frac{{\\mathbf P}}{\\varepsilon_0{\\mathbf E}}"^^qudt:LatexString ;
+  qudt:plainTextDescription "Electric susceptibility is a dimensionless proportionality constant that indicates the degree of polarization of a dielectric material in response to an applied electric field. Here P = epsilon_0 * chi_e * E. Where epsilon_0 is the electric permittivity of free space (electric constant), P is the polarization density of the material chi_e is the electric susceptibility and E is the electric field." ;
+  qudt:symbol "χ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Electric Susceptibility Unit" ;
+.
+unit:SUSCEPTIBILITY_MAG
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:latexDefinition "\\chi_\\text{v} = \\frac{\\mathbf{M}}{\\mathbf{H}}"^^qudt:LatexString ;
+  qudt:plainTextDescription "Magnetic susceptibility is a dimensionless proportionality constant that indicates the degree of magnetization of a material in response to an applied magnetic field. Here M = chi * H. Where M is the magnetization of the material (the magnetic dipole moment per unit volume), measured in amperes per meter, and H is the magnetic field strength, also measured in amperes per meter. Chi is therefore a dimensionless quantity." ;
+  qudt:symbol "χ" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Magnetic Susceptibility Unit" ;
+.
+unit:SV
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Although the sievert has the same dimensions as the gray (i.e. joules per kilogram), it measures a different quantity. To avoid any risk of confusion between the absorbed dose and the equivalent dose, the corresponding special units, namely the gray instead of the joule per kilogram for absorbed dose and the sievert instead of the joule per kilogram for the dose equivalent, should be used."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalent ;
+  qudt:iec61360Code "0112/2///62720#UAA284" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/sievert> ;
+  qudt:siUnitsExpression "J/kg" ;
+  qudt:symbol "Sv" ;
+  qudt:ucumCode "Sv"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Sv" ;
+  qudt:uneceCommonCode "D13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sievert"@en ;
+.
+unit:S_Ab
+  a qudt:Unit ;
+  dcterms:description "The CGS electromagnetic unit of conductance; one absiemen is the conductance at which a potential of one abvolt forces a current of one abampere; equal to \\(10^{9}\\) siemens. One siemen is the conductance at which a potential of one volt forces a current of one ampere and named for Karl Wilhem Siemens."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricConductivity ;
+  qudt:informativeReference "http://wordinfo.info/unit/4266"^^xsd:anyURI ;
+  qudt:symbol "aS" ;
+  qudt:ucumCode "GS"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Absiemen"@en ;
+.
+unit:S_Stat
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The unit of conductance, admittance, and susceptance in the centimeter-gram-second electrostatic system of units."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0000000000011126500561 ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:exactMatch unit:MHO_Stat ;
+  qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricConductivity ;
+  qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/statsiemens.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.sizes.com/units/statmho.htm"^^xsd:anyURI ;
+  qudt:informativeReference "http://www3.wolframalpha.com/input/?i=statsiemens"^^xsd:anyURI ;
+  qudt:symbol "statS" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statsiemens"@en ;
+  owl:sameAs unit:MHO_Stat ;
+  skos:altLabel "statmho" ;
+.
+unit:SaintHelenaPound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Saint Helena"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Saint_Helena_pound"^^xsd:anyURI ;
+  qudt:expression "\\(SHP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Saint_Helena_pound?oldid=490152057"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Saint Helena Pound"@en ;
+.
+unit:SamoanTala
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Samoa"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Samoan_tala"^^xsd:anyURI ;
+  qudt:expression "\\(WST\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Samoan_tala?oldid=423898531"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Samoan Tala"@en ;
+.
+unit:SaudiRiyal
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Saudi Arabia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Saudi_riyal"^^xsd:anyURI ;
+  qudt:expression "\\(SAR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Saudi_riyal?oldid=491092981"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Saudi Riyal"@en ;
+.
+unit:SerbianDinar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Serbia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Serbian_dinar"^^xsd:anyURI ;
+  qudt:expression "\\(RSD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Serbian_dinar?oldid=495146650"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Serbian Dinar"@en ;
+.
+unit:SeychellesRupee
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Seychelles"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Seychellois_rupee"^^xsd:anyURI ;
+  qudt:expression "\\(SCR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Seychellois_rupee?oldid=492242185"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Seychelles Rupee"@en ;
+.
+unit:Silver-OunceTroy
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  qudt:expression "\\(XAG\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:ucumCode "[oz_tr]{Ag}"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Silver (one Troy ounce)"@en ;
+.
+unit:SingaporeDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Singapore"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Singapore_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(SGD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Singapore_dollar?oldid=492228311"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Singapore Dollar"@en ;
+.
+unit:SlovakKoruna
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Slovakia"^^rdf:HTML ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Slovak_koruna"^^xsd:anyURI ;
+  qudt:expression "\\(SKK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Slovak_koruna?oldid=492625951"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Slovak Koruna"@en ;
+.
+unit:SolarMass
+  a qudt:Unit ;
+  dcterms:description "The astronomical unit of mass is the solar mass.The symbol \\(S\\) is often used in astronomy to refer to this unit, although \\(M_{\\odot}\\) is also common. The solar mass, \\(1.98844 \\times 10^{30} kg\\), is a standard way to express mass in astronomy, used to describe the masses of other stars and galaxies. It is equal to the mass of the Sun, about 333,000 times the mass of the Earth or 1,048 times the mass of Jupiter. In practice, the masses of celestial bodies appear in the dynamics of the solar system only through the products GM, where G is the constant of gravitation."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1988435000000000000000000000000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Solar_mass"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Solar_mass?oldid=494074016"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass> ;
+  qudt:symbol "S" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Solar mass"@en ;
+.
+unit:SolomonIslandsDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Solomon Islands"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Solomon_Islands_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(SBD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Solomon_Islands_dollar?oldid=490313285"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Solomon Islands Dollar"@en ;
+.
+unit:Som
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kyrgyzstan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Som"^^xsd:anyURI ;
+  qudt:expression "\\(KGS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Som?oldid=495411674"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Som"@en ;
+.
+unit:SomaliShilling
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Somalia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Somali_shilling"^^xsd:anyURI ;
+  qudt:expression "\\(SOS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Somali_shilling?oldid=494434126"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Somali Shilling"@en ;
+.
+unit:Somoni
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Tajikistan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tajikistani_somoni"^^xsd:anyURI ;
+  qudt:expression "\\(TJS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tajikistani_somoni?oldid=492500781"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Somoni"@en ;
+.
+unit:SouthAfricanRand
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "South Africa"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/South_African_rand"^^xsd:anyURI ;
+  qudt:expression "\\(ZAR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/South_African_rand?oldid=493780395"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "South African Rand"@en ;
+.
+unit:SouthKoreanWon
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "South Korea"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/South_Korean_won"^^xsd:anyURI ;
+  qudt:expression "\\(KRW\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/South_Korean_won?oldid=494404062"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "South Korean Won"@en ;
+.
+unit:SpecialDrawingRights
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "International Monetary Fund"^^rdf:HTML ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Special_Drawing_Rights"^^xsd:anyURI ;
+  qudt:expression "\\(XDR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Special_Drawing_Rights?oldid=467224374"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Special Drawing Rights"@en ;
+.
+unit:SriLankaRupee
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Sri Lanka"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Sri_Lankan_rupee"^^xsd:anyURI ;
+  qudt:expression "\\(LKR\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sri_Lankan_rupee?oldid=495359963"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sri Lanka Rupee"@en ;
+.
+unit:Standard
+  a qudt:Unit ;
+  qudt:conversionMultiplier 4.672 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB116" ;
+  qudt:plainTextDescription "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre" ;
+  qudt:symbol "standard" ;
+  qudt:ucumCode "1980.[bf_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "WSD" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Standard"@en ;
+.
+unit:Stone_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 6.35029318 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB081" ;
+  qudt:plainTextDescription "unit of the mass which is commonly used for the determination of the weight of living beings regarding to the conversion to the avoirdupois system of units: 1 st = 14 lb (av)" ;
+  qudt:symbol "st{UK}" ;
+  qudt:ucumCode "[stone_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "STI" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Stone (UK)"@en ;
+.
+unit:SudanesePound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Sudan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Sudanese_pound"^^xsd:anyURI ;
+  qudt:expression "\\(SDG\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Sudanese_pound?oldid=495263707"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sudanese Pound"@en ;
+.
+unit:SurinamDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Suriname"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Surinamese_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(SRD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Surinamese_dollar?oldid=490316270"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Surinam Dollar"@en ;
+.
+unit:SwedishKrona
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Sweden"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Swedish_krona"^^xsd:anyURI ;
+  qudt:expression "\\(SEK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Swedish_krona?oldid=492703602"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Swedish Krona"@en ;
+.
+unit:SwissFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Switzerland, Liechtenstein"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Swiss_franc"^^xsd:anyURI ;
+  qudt:expression "\\(CHF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Swiss_franc?oldid=492548706"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc> ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Swiss Franc"@en ;
+.
+unit:SyrianPound
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Syria"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Syrian_pound"^^xsd:anyURI ;
+  qudt:expression "\\(SYP\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Syrian_pound?oldid=484294722"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Syrian Pound"@en ;
+.
+unit:T
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of flux density (or field intensity) for magnetic fields (also called the magnetic induction). The intensity of a magnetic field can be measured by placing a current-carrying conductor in the field. The magnetic field exerts a force on the conductor, a force which depends on the amount of the current and on the length of the conductor. One tesla is defined as the field intensity generating one newton of force per ampere of current per meter of conductor. Equivalently, one tesla represents a magnetic flux density of one weber per square meter of area. A field of one tesla is quite strong: the strongest fields available in laboratories are about 20 teslas, and the Earth's magnetic flux density, at its surface, is about 50 microteslas. The tesla, defined in 1958, honors the Serbian-American electrical engineer Nikola Tesla (1856-1943), whose work in electromagnetic induction led to the first practical generators and motors using alternating current. \\(T =  V\\cdot s \\cdot m^{-2} = N\\cdot A^{-1}\\cdot m^{-1} = Wb\\cdot m^{-1} = kg \\cdot  C^{-1}\\cdot s^{-1}\\cdot A^{-1} = kg \\cdot s^{-2}\\cdot A^{-1} = N \\cdot s \\cdot C^{-1}\\cdot m^{-1}\\) where, \\(\\\\\\) \\(A\\) = ampere, \\(C\\)=coulomb, \\(m\\) = meter,  \\(N\\) = newton, \\(s\\) = second, \\(T\\) = tesla, \\(Wb\\) = weber"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tesla"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticField ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA285" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tesla?oldid=481198244"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tesla_(unit)"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1406?rskey=AzXBLd"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/tesla> ;
+  qudt:siUnitsExpression "Wb/m^2" ;
+  qudt:symbol "T" ;
+  qudt:ucumCode "T"^^qudt:UCUMcs ;
+  qudt:udunitsCode "T" ;
+  qudt:uneceCommonCode "D33" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tesla"@en ;
+.
+unit:T-M
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxPerUnitLength ;
+  qudt:symbol "T⋅m" ;
+  qudt:ucumCode "T.m"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "T-M"@en ;
+.
+unit:T-SEC
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerElectricCharge ;
+  qudt:symbol "T⋅s" ;
+  qudt:ucumCode "T.s"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "T-SEC"@en ;
+.
+unit:TBSP
+  a qudt:Unit ;
+  dcterms:description "In the US and parts of Canada, a tablespoon is the largest type of spoon used for eating from a bowl. In the UK and most Commonwealth countries, a tablespoon is a type of large spoon usually used for serving. In countries where a tablespoon is a serving spoon, the nearest equivalent to the US tablespoon is either the dessert spoon or the soup spoon. A tablespoonful, nominally the capacity of one tablespoon, is commonly used as a measure of volume in cooking. It is abbreviated as T, tb, tbs, tbsp, tblsp, or tblspn. The capacity of ordinary tablespoons is not regulated by law and is subject to considerable variation. In most countries one level tablespoon is approximately 15 mL; in Australia it is 20 mL."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0000147867656 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tablespoon"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB006" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tablespoon?oldid=494615208"^^xsd:anyURI ;
+  qudt:symbol "tbsp" ;
+  qudt:ucumCode "[tbs_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Tbl" ;
+  qudt:udunitsCode "Tblsp" ;
+  qudt:udunitsCode "Tbsp" ;
+  qudt:udunitsCode "tblsp" ;
+  qudt:udunitsCode "tbsp" ;
+  qudt:uneceCommonCode "G24" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tablespoon"@en ;
+.
+unit:TEX
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "<p>\\textit{Tex</em> is a unit of measure for the linear mass density of fibers and is defined as the mass in grams per 1000 meters. Tex is more likely to be used in Canada and Continental Europe, while denier remains more common in the United States and United Kingdom. The unit code is 'tex'. The most commonly used unit is actually the decitex, abbreviated dtex, which is the mass in grams per 10,000 meters. When measuring objects that consist of multiple fibers the term 'filament tex' is sometimes used, referring to the mass in grams per 1000 meters of a single filament. Tex is used for measuring fiber size in many products, including cigarette filters, optical cable, yarn, and fabric.}"^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tex"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerLength ;
+  qudt:iec61360Code "0112/2///62720#UAB246" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tex?oldid=457265525"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Units_of_textile_measurement"^^xsd:anyURI ;
+  qudt:symbol "tex" ;
+  qudt:ucumCode "tex"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D34" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tex"@en ;
+.
+unit:THB
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Thailand"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Thai_baht"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Thai_baht?oldid=493286022"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Baht"@en ;
+.
+unit:THM_EEC
+  a qudt:Unit ;
+  qudt:expression "\\(therm-eec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:symbol "thm{EEC}" ;
+  qudt:ucumCode "100000.[Btu_IT]"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "THM_EEC"@en ;
+.
+unit:THM_US
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Therm} (symbol \\(thm\\)) is a non-SI unit of heat energy. It was defined in the United States in 1968 as the energy equivalent of burning 100 cubic feet of natural gas at standard temperature and pressure. In the US gas industry its SI equivalent is defined as exactly \\(100,000 BTU59^\\circ F\\) or \\(105.4804 megajoules\\). Public utilities in the U.S. use the therm unit for measuring customer usage of gas and calculating the monthly bills."^^qudt:LatexString ;
+  qudt:conversionMultiplier 105480400.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:hasQuantityKind quantitykind:ThermalEnergy ;
+  qudt:informativeReference "http://www.convertunits.com/info/therm%2B%5BU.S.%5D"^^xsd:anyURI ;
+  qudt:symbol "thm{US}" ;
+  qudt:ucumCode "100000.[Btu_59]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N72" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Therm US"@en ;
+.
+unit:TOE
+  a qudt:Unit ;
+  dcterms:description "<p>The tonne of oil equivalent (toe) is a unit of energy: the amount of energy released by burning one tonne of crude oil, approximately 42 GJ (as different crude oils have different calorific values, the exact value of the toe is defined by convention; unfortunately there are several slightly different definitions as discussed below). The toe is sometimes used for large amounts of energy, as it can be more intuitive to visualise, say, the energy released by burning 1000 tonnes of oil than 42,000 billion joules (the SI unit of energy). Multiples of the toe are used, in particular the megatoe (Mtoe, one million toe) and the gigatoe (Gtoe, one billion toe).</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 41868000000.0 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tonne_of_oil_equivalent"^^xsd:anyURI ;
+  qudt:symbol "toe" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton of Oil Equivalent"@en ;
+.
+unit:TONNE
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:exactMatch unit:TON_Metric ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:plainTextDescription "1,000-fold of the SI base unit kilogram" ;
+  qudt:symbol "t" ;
+  qudt:ucumCode "t"^^qudt:UCUMcs ;
+  qudt:udunitsCode "t" ;
+  qudt:uneceCommonCode "TNE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne"@en ;
+  owl:sameAs unit:TON_Metric ;
+.
+unit:TONNE-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.011574074074074 ;
+  qudt:exactMatch unit:TON_Metric-PER-DAY ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA991" ;
+  qudt:plainTextDescription "metric unit tonne divided by the unit for time day" ;
+  qudt:symbol "t/day" ;
+  qudt:ucumCode "t.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Day"@en ;
+  owl:sameAs unit:TON_Metric-PER-DAY ;
+.
+unit:TONNE-PER-HA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:exactMatch unit:TON_Metric-PER-HA ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:plainTextDescription "A measure of density equivalent to 1000kg per hectare or one Megagram per hectare, typically used to express a volume of biomass or crop yield." ;
+  qudt:symbol "t/ha" ;
+  qudt:ucumCode "t.har-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "tonne per hectare"@en ;
+  owl:sameAs unit:TON_Metric-PER-HA ;
+.
+unit:TONNE-PER-HA-YR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000000317 ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
+  qudt:plainTextDescription "A measure of density equivalent to 1000kg per hectare per year or one Megagram per hectare per year, typically used to express a volume of biomass or crop yield." ;
+  qudt:symbol "t/ha/year" ;
+  qudt:ucumCode "t.har-1.year-1"^^qudt:UCUMcs ;
+  rdfs:label "tonne per hectare per year"@en ;
+.
+unit:TONNE-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.277777777777778 ;
+  qudt:exactMatch unit:TON_Metric-PER-HR ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB994" ;
+  qudt:plainTextDescription "unit tonne divided by the unit for time hour" ;
+  qudt:symbol "t/hr" ;
+  qudt:ucumCode "t.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Hour"@en ;
+  owl:sameAs unit:TON_Metric-PER-HR ;
+.
+unit:TONNE-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:exactMatch unit:TON_Metric-PER-M3 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA997" ;
+  qudt:plainTextDescription "unit tonne divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "t/m³" ;
+  qudt:ucumCode "t.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Cubic Meter"@en-us ;
+  rdfs:label "Tonne Per Cubic Metre"@en ;
+  owl:sameAs unit:TON_Metric-PER-M3 ;
+.
+unit:TONNE-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 16.666666666666668 ;
+  qudt:exactMatch unit:TON_Metric-PER-MIN ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB000" ;
+  qudt:plainTextDescription "unit tonne divided by the unit for time minute" ;
+  qudt:symbol "t/min" ;
+  qudt:ucumCode "t.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L78" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Minute"@en ;
+  owl:sameAs unit:TON_Metric-PER-MIN ;
+.
+unit:TONNE-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:exactMatch unit:TON_Metric-PER-SEC ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB003" ;
+  qudt:plainTextDescription "unit tonne divided by the SI base unit second" ;
+  qudt:symbol "t/s" ;
+  qudt:ucumCode "t.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Second"@en ;
+  owl:sameAs unit:TON_Metric-PER-SEC ;
+.
+unit:TON_Assay
+  a qudt:Unit ;
+  dcterms:description "In the United States, a unit of mass, approximately \\(29.167\\, grams\\). The number of milligrams of precious metal in one assay ton of the ore being tested is equal to the number of troy ounces of pure precious metal in one 2000-pound ton of the ore. i.e. a bead is obtained that weights 3 milligrams, thus the precious metals in the bead would equal three troy ounces to each ton of ore with the understanding that this varies considerably in the real world as the amount of precious values in each ton of ore varies considerably."^^qudt:LatexString ;
+  qudt:allowedUnitOfSystem sou:SI ;
+  qudt:conversionMultiplier 0.02916667 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://www.assaying.org/assayton.htm"^^xsd:anyURI ;
+  qudt:symbol "AT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Assay Ton"@en ;
+.
+unit:TON_FG
+  a qudt:Unit ;
+  dcterms:description "12000 btu per hour</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 3516.853 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ton_of_refrigeration"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(t/fg\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:HeatFlowRate ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ton_of_refrigeration?oldid=494342824"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfRefrigeration> ;
+  qudt:symbol "t/fg" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton of Refrigeration"@en ;
+.
+unit:TON_F_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 8896.443230521 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Force ;
+  qudt:iec61360Code "0112/2///62720#UAB021" ;
+  qudt:plainTextDescription "unit of the force according to the American system of units" ;
+  qudt:symbol "tonf{us}" ;
+  qudt:ucumCode "[stonf_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L94" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton Force (US Short)"@en ;
+.
+unit:TON_LONG
+  a qudt:Unit ;
+  dcterms:description """Long ton (weight ton or imperial ton) is the name for the unit called the \"ton\" in the avoirdupois or Imperial system of measurements, as used in the United Kingdom and several other Commonwealth countries. One long ton is equal to 2,240 pounds (1,016 kg), 1.12 times as much as a short ton, or 35 cubic feet (0.9911 m3) of salt water with a density of 64 lb/ft3 (1.025 g/ml).</p>
+<p>It has some limited use in the United States, most commonly in measuring the displacement of ships, and was the unit prescribed for warships by the Washington Naval Treaty 1922-for example battleships were limited to a mass of 35,000 long tons (36,000 t; 39,000 short tons).</p>"""^^rdf:HTML ;
+  qudt:conversionMultiplier 1016.0469088 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:exactMatch unit:TON_UK ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Long_ton"^^xsd:anyURI ;
+  qudt:symbol "t{long}" ;
+  qudt:ucumCode "[lton_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "LTN" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Long Ton"@en ;
+  owl:sameAs unit:TON_UK ;
+.
+unit:TON_LONG-PER-YD3
+  a qudt:Unit ;
+  dcterms:description "The long ton per cubic yard density measurement unit is used to measure volume in cubic yards in order to estimate weight or mass in long tons."^^rdf:HTML ;
+  qudt:conversionMultiplier 1328.9391836174336 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:exactMatch unit:TON_UK-PER-YD3 ;
+  qudt:expression "\\(ton/yd^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "t{long}/yd³" ;
+  qudt:ucumCode "[lton_av]/[cyd_i]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L92" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Long Ton per Cubic Yard"@en ;
+  owl:sameAs unit:TON_UK-PER-YD3 ;
+.
+unit:TON_Metric
+  a qudt:Unit ;
+  dcterms:description "The tonne (SI unit symbol: t) is a metric system unit of mass equal to 1,000 kilograms (2,204.6 pounds). It is a non-SI unit accepted for use with SI. To avoid confusion with the ton, it is also known as the metric tonne and metric ton in the United States[3] and occasionally in the United Kingdom. In SI units and prefixes, the tonne is a megagram (Mg), a rarely-used symbol, easily confused with mg, for milligram."^^rdf:HTML ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tonne"^^xsd:anyURI ;
+  qudt:exactMatch unit:TONNE ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tonne?oldid=492526238"^^xsd:anyURI ;
+  qudt:plainTextDescription "1,000-fold of the SI base unit kilogram" ;
+  qudt:symbol "t" ;
+  qudt:ucumCode "t"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "TNE" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Metric Ton"@en ;
+  owl:sameAs unit:TONNE ;
+  skos:altLabel "metric-tonne" ;
+.
+unit:TON_Metric-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.011574074074074 ;
+  qudt:exactMatch unit:TONNE-PER-DAY ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA991" ;
+  qudt:plainTextDescription "metric unit ton divided by the unit for time day" ;
+  qudt:symbol "t/day" ;
+  qudt:ucumCode "t.d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L71" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Day"@en ;
+  owl:sameAs unit:TONNE-PER-DAY ;
+.
+unit:TON_Metric-PER-HA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.1 ;
+  qudt:exactMatch unit:TONNE-PER-HA ;
+  qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassPerArea ;
+  qudt:plainTextDescription "A measure of density equivalent to 1000kg per hectare or one Megagram per hectare, typically used to express a volume of biomass or crop yield." ;
+  qudt:symbol "t/ha" ;
+  qudt:ucumCode "t.har-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "metric tonne per hectare"@en ;
+  owl:sameAs unit:TONNE-PER-HA ;
+.
+unit:TON_Metric-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.277777777777778 ;
+  qudt:exactMatch unit:TONNE-PER-HR ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB994" ;
+  qudt:plainTextDescription "unit tonne divided by the unit for time hour" ;
+  qudt:symbol "t/hr" ;
+  qudt:ucumCode "t.h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Hour"@en ;
+  owl:sameAs unit:TONNE-PER-HR ;
+.
+unit:TON_Metric-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:exactMatch unit:TONNE-PER-M3 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAA997" ;
+  qudt:plainTextDescription "unit tonne divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "t/m³" ;
+  qudt:ucumCode "t.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D41" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Cubic Meter"@en-us ;
+  rdfs:label "Tonne Per Cubic Metre"@en ;
+  owl:sameAs unit:TONNE-PER-M3 ;
+.
+unit:TON_Metric-PER-MIN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 16.666666666666668 ;
+  qudt:exactMatch unit:TONNE-PER-MIN ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB000" ;
+  qudt:plainTextDescription "unit ton divided by the unit for time minute" ;
+  qudt:symbol "t/min" ;
+  qudt:ucumCode "t.min-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L78" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Minute"@en ;
+  owl:sameAs unit:TONNE-PER-MIN ;
+.
+unit:TON_Metric-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:exactMatch unit:TONNE-PER-SEC ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB003" ;
+  qudt:plainTextDescription "unit ton divided by the SI base unit second" ;
+  qudt:symbol "t/s" ;
+  qudt:ucumCode "t.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L81" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tonne Per Second (metric Ton)"@en ;
+  owl:sameAs unit:TONNE-PER-SEC ;
+.
+unit:TON_SHIPPING_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.1326 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB011" ;
+  qudt:plainTextDescription "traditional unit for volume of cargo, especially in shipping" ;
+  qudt:symbol "MTON" ;
+  qudt:uneceCommonCode "L86" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton (US Shipping)"@en ;
+.
+unit:TON_SHORT
+  a qudt:Unit ;
+  dcterms:description "<p>The short ton is a unit of mass equal to 2,000 pounds (907.18474 kg). In the United States it is often called simply ton without distinguishing it from the metric ton (tonne, 1,000 kilograms / 2,204.62262 pounds) or the long ton (2,240 pounds / 1,016.0469088 kilograms); rather, the other two are specifically noted. There are, however, some U.S. applications for which unspecified tons normally means long tons.</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 907.18474 ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:TON_US ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Short_ton"^^xsd:anyURI ;
+  qudt:symbol "ton{short}" ;
+  qudt:ucumCode "[ston_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "STN" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Short Ton"@en ;
+  owl:sameAs unit:TON_US ;
+.
+unit:TON_SHORT-PER-HR
+  a qudt:Unit ;
+  dcterms:description "The short Ton per Hour is a unit used to express a weight processed in a period of time."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.251995761 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:TON_US-PER-HR ;
+  qudt:expression "\\(ton/hr\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:hasQuantityKind quantitykind:MassPerTime ;
+  qudt:symbol "ton/hr" ;
+  qudt:ucumCode "[ston_av].h-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Short Ton per Hour"@en ;
+  owl:sameAs unit:TON_US-PER-HR ;
+.
+unit:TON_SHORT-PER-YD3
+  a qudt:Unit ;
+  dcterms:description "The short ton per cubic yard density measurement unit is used to measure volume in cubic yards in order to estimate weight or mass in short tons."^^rdf:HTML ;
+  qudt:conversionMultiplier 1186.552842515566 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:exactMatch unit:TON_US-PER-YD3 ;
+  qudt:expression "\\(ton/yd^3\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Density ;
+  qudt:symbol "ton{short}/yd³" ;
+  qudt:ucumCode "[ston_av].[cyd_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Short Ton per Cubic Yard"@en ;
+  owl:sameAs unit:TON_US-PER-YD3 ;
+.
+unit:TON_UK
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1016.0 ;
+  qudt:exactMatch unit:TON_LONG ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB008" ;
+  qudt:iec61360Code "0112/2///62720#UAB009" ;
+  qudt:plainTextDescription "traditional Imperial unit for volume of cargo, especially in the shipping sector" ;
+  qudt:symbol "ton{UK}" ;
+  qudt:ucumCode "[lton_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L84" ;
+  qudt:uneceCommonCode "LTN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton (UK)"@en ;
+  owl:sameAs unit:TON_LONG ;
+.
+unit:TON_UK-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.011759259259259 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB010" ;
+  qudt:plainTextDescription "unit British ton according to the Imperial system of units divided by the unit day" ;
+  qudt:symbol "t{long}/day" ;
+  qudt:ucumCode "[lton_av].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L85" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Long Ton (uk) Per Day"@en ;
+.
+unit:TON_UK-PER-YD3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1328.8778292234224 ;
+  qudt:exactMatch unit:TON_LONG-PER-YD3 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB018" ;
+  qudt:plainTextDescription "unit of the density according the Imperial system of units" ;
+  qudt:symbol "t{long}/yd³" ;
+  qudt:ucumCode "[lton_av].[cyd_i]-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Long Ton (UK) Per Cubic Yard"@en ;
+  owl:sameAs unit:TON_LONG-PER-YD3 ;
+.
+unit:TON_US
+  a qudt:Unit ;
+  qudt:conversionMultiplier 907.1847 ;
+  qudt:exactMatch unit:TON_SHORT ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB012" ;
+  qudt:plainTextDescription "unit of the mass according to the Anglo-American system of units" ;
+  qudt:symbol "ton{US}" ;
+  qudt:ucumCode "[ston_av]"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "STN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton (US)"@en ;
+  owl:sameAs unit:TON_SHORT ;
+.
+unit:TON_US-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.010497685185185 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB014" ;
+  qudt:plainTextDescription "unit American ton according to the Anglo-American system of units divided by the unit day" ;
+  qudt:symbol "ton{US}/day" ;
+  qudt:ucumCode "[ston_av].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L88" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Short Ton (us) Per Day"@en ;
+.
+unit:TON_US-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.251944444444444 ;
+  qudt:exactMatch unit:TON_SHORT-PER-HR ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:MassFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAA994" ;
+  qudt:iec61360Code "0112/2///62720#UAB019" ;
+  qudt:plainTextDescription "unit ton divided by the unit for time hour" ;
+  qudt:symbol "ton{US}/hr" ;
+  qudt:ucumCode "[ston_av].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "4W" ;
+  qudt:uneceCommonCode "E18" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton (US) Per Hour"@en ;
+  owl:sameAs unit:TON_SHORT-PER-HR ;
+.
+unit:TON_US-PER-YD3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1186.3112117181538 ;
+  qudt:exactMatch unit:TON_SHORT-PER-YD3 ;
+  qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:MassDensity ;
+  qudt:iec61360Code "0112/2///62720#UAB020" ;
+  qudt:plainTextDescription "unit of the density according to the Anglo-American system of units" ;
+  qudt:symbol "ton{US}/yd³" ;
+  qudt:ucumCode "[ston_av].[cyd_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L93" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Short Ton (US) Per Cubic Yard"@en ;
+  owl:sameAs unit:TON_SHORT-PER-YD3 ;
+.
+unit:TORR
+  a qudt:Unit ;
+  dcterms:description "<p>The \\textit{torr} is a non-SI unit of pressure with the ratio of 760 to 1 standard atmosphere, chosen to be roughly equal to the fluid pressure exerted by a millimeter of mercury, i.e. , a pressure of 1 torr is approximately equal to one millimeter of mercury. Note that the symbol (Torr) is spelled exactly the same as the unit (torr), but the letter case differs. The unit is written lower-case, while the symbol of the unit (Torr) is capitalized (as upper-case), as is customary in metric units derived from names. Thus, it is correctly written either way, and is only incorrect when specification is first made that the word is being used as a unit, or else a symbol of the unit, and then the incorrect letter case for the specified use is employed.</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 133.322 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Torr"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerArea ;
+  qudt:hasQuantityKind quantitykind:VaporPressure ;
+  qudt:iec61360Code "0112/2///62720#UAB022" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Torr?oldid=495199381"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/torr> ;
+  qudt:symbol "Torr" ;
+  qudt:uneceCommonCode "UA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Torr"@en ;
+.
+unit:TSP
+  a qudt:Unit ;
+  dcterms:description "A teaspoon is a unit of volume. In the United States one teaspoon as a unit of culinary measure is \\(1/3\\) tablespoon , that is, \\(\\approx 4.93 mL\\); it is exactly \\(1/6 U.S. fl. oz\\), \\(1/48 \\; cup\\), and \\(1/768 \\; U.S. liquid gallon\\) (see United States customary units for relative volumes of these other measures) and approximately \\(1/3 cubic inch\\). For nutritional labeling on food packages in the U.S., the teaspoon is defined as precisely \\(5 mL\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000492892187 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Teaspoon"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB007" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Teaspoon?oldid=490940468"^^xsd:anyURI ;
+  qudt:symbol "tsp" ;
+  qudt:ucumCode "[tsp_us]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "tsp" ;
+  qudt:uneceCommonCode "G25" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Teaspoon"@en ;
+.
+unit:T_Ab
+  a qudt:Unit ;
+  dcterms:description "The unit of magnetic induction in the cgs system, \\(10^{-4}\\,tesla\\). Also known as the gauss."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0001 ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:exactMatch unit:GAUSS ;
+  qudt:exactMatch unit:Gs ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticField ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxDensity ;
+  qudt:informativeReference "http://www.diracdelta.co.uk/science/source/g/a/gauss/source.html"^^xsd:anyURI ;
+  qudt:symbol "abT" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abtesla"@en ;
+  owl:sameAs unit:GAUSS ;
+  owl:sameAs unit:Gs ;
+.
+unit:TanzanianShilling
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Tanzania"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tanzanian_shilling"^^xsd:anyURI ;
+  qudt:expression "\\(TZS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tanzanian_shilling?oldid=492257527"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tanzanian Shilling"@en ;
+.
+unit:TebiBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The tebibyte is a multiple of the unit byte for digital information. The prefix tebi means 1024^4"^^rdf:HTML ;
+  qudt:conversionMultiplier 6096987078286.4836024230149744713 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tebibyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Tebi ;
+  qudt:symbol "TiB" ;
+  qudt:uneceCommonCode "E61" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "TebiByte"@en ;
+.
+unit:Tenge
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Kazakhstan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Kazakhstani_tenge"^^xsd:anyURI ;
+  qudt:expression "\\(KZT\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Kazakhstani_tenge?oldid=490523058"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tenge"@en ;
+.
+unit:TeraBYTE
+  a qudt:CountingUnit ;
+  a qudt:Unit ;
+  dcterms:description "The terabyte is a multiple of the unit byte for digital information. The prefix tera means 10^12 in the International System of Units (SI), and therefore 1 terabyte is 1000000000000bytes, or 1 trillion bytes, or 1000 gigabytes. 1 terabyte in binary prefixes is 0.9095 tebibytes, or 931.32 gibibytes. The unit symbol for the terabyte is TB or TByte, but not Tb (lower case b) which refers to terabit."^^rdf:HTML ;
+  qudt:conversionMultiplier 5545177444479.5624753378569716654 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Terabyte"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:InformationEntropy ;
+  qudt:iec61360Code "0112/2///62720#UAB186" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Terabyte?oldid=494671550"^^xsd:anyURI ;
+  qudt:isScalingOf unit:BYTE ;
+  qudt:prefix prefix:Tera ;
+  qudt:symbol "TB" ;
+  qudt:ucumCode "TBy"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "E35" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "TeraByte"@en ;
+.
+unit:TeraC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A TeraCoulomb is \\(10^{12} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000000.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Tera ;
+  qudt:symbol "TC" ;
+  qudt:ucumCode "TC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "TeraCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:TeraHZ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAA287" ;
+  qudt:isScalingOf unit:HZ ;
+  qudt:plainTextDescription "1 000 000 000 000-fold of the SI derived unit hertz" ;
+  qudt:prefix prefix:Tera ;
+  qudt:symbol "THz" ;
+  qudt:ucumCode "THz"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D29" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Terahertz"@en ;
+.
+unit:TeraJ
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA288" ;
+  qudt:isScalingOf unit:J ;
+  qudt:plainTextDescription "1 000 000 000 000-fold of the SI derived unit joule" ;
+  qudt:prefix prefix:Tera ;
+  qudt:symbol "TJ" ;
+  qudt:ucumCode "TJ"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D30" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Terajoule"@en ;
+.
+unit:TeraOHM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Resistance ;
+  qudt:iec61360Code "0112/2///62720#UAA286" ;
+  qudt:isScalingOf unit:OHM ;
+  qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit ohm" ;
+  qudt:prefix prefix:Tera ;
+  qudt:symbol "TΩ" ;
+  qudt:ucumCode "TOhm"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Teraohm"@en ;
+.
+unit:TeraW
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA289" ;
+  qudt:isScalingOf unit:W ;
+  qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit watt" ;
+  qudt:prefix prefix:Tera ;
+  qudt:symbol "TW" ;
+  qudt:ucumCode "TW"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D31" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Terawatt"@en ;
+.
+unit:TeraW-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600000000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA290" ;
+  qudt:plainTextDescription "1,000,000,000,000-fold of the product of the SI derived unit watt and the unit hour" ;
+  qudt:symbol "TW⋅hr" ;
+  qudt:ucumCode "TW/h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D32" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Terawatt Hour"@en ;
+.
+unit:TonEnergy
+  a qudt:Unit ;
+  dcterms:description "Energy equivalent of one ton of TNT"^^rdf:HTML ;
+  qudt:conversionMultiplier 4184000000.0 ;
+  qudt:expression "\\(t/lbf\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:symbol "t/lbf" ;
+  qudt:ucumCode "Gcal"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Ton Energy"@en ;
+.
+unit:TrinidadAndTobagoDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Trinidad and Tobago"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Trinidad_and_Tobago_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(TTD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Trinidad_and_Tobago_dollar?oldid=490325306"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Trinidad and Tobago Dollar"@en ;
+.
+unit:Tugrik
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mongolia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Mongolian_t%C3%B6gr%C3%B6g"^^xsd:anyURI ;
+  qudt:expression "\\(MNT\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Mongolian_tögrög?oldid=495408271"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tugrik"@en ;
+.
+unit:TunisianDinar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Tunisia"^^rdf:HTML ;
+  qudt:currencyExponent 3 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Tunisian_dinar"^^xsd:anyURI ;
+  qudt:expression "\\(TND\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Tunisian_dinar?oldid=491218035"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tunisian Dinar"@en ;
+.
+unit:U
+  a qudt:Unit ;
+  dcterms:description "The unified atomic mass unit (symbol: \\(u\\)) or dalton (symbol: \\(Da\\)) is the standard unit that is used for indicating mass on an atomic or molecular scale (atomic mass). It is defined as one twelfth of the mass of an unbound neutral atom of carbon-12 in its nuclear and electronic ground state,[ and has a value of \\(1.660538921(73) \\times 10^{-27} kg\\). One dalton is approximately equal to the mass of one nucleon; an equivalence of saying \\(1 g mol^{-1}\\). The CIPM have categorised it as a 'non-SI unit' because units values in SI units must be obtained experimentally."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_mass_unit"^^xsd:anyURI ;
+  qudt:exactMatch unit:AMU ;
+  qudt:exactMatch unit:Da ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Mass ;
+  qudt:iec61360Code "0112/2///62720#UAB083" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit> ;
+  qudt:symbol "u" ;
+  qudt:ucumCode "u"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D43" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Unified Atomic Mass Unit"@en ;
+  owl:sameAs unit:AMU ;
+  owl:sameAs unit:Da ;
+.
+unit:UAEDirham
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "United Arab Emirates"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/United_Arab_Emirates_dirham"^^xsd:anyURI ;
+  qudt:expression "\\(AED\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/United_Arab_Emirates_dirham?oldid=491806142"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "United Arab Emirates dirham"@en ;
+.
+unit:UICFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "International Union of Railways"^^rdf:HTML ;
+  qudt:expression "\\(XFU\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "UIC franc (special settlement currency)"@en ;
+.
+unit:UNITLESS
+  a qudt:CountingUnit ;
+  a qudt:DimensionlessUnit ;
+  a qudt:Unit ;
+  dcterms:description "An explicit unit to say something has no units."^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Absorptance ;
+  qudt:hasQuantityKind quantitykind:ActivityCoefficient ;
+  qudt:hasQuantityKind quantitykind:AmountOfSubstanceFractionOfB ;
+  qudt:hasQuantityKind quantitykind:AtomScatteringFactor ;
+  qudt:hasQuantityKind quantitykind:AverageLogarithmicEnergyDecrement ;
+  qudt:hasQuantityKind quantitykind:BindingFraction ;
+  qudt:hasQuantityKind quantitykind:BioconcentrationFactor ;
+  qudt:hasQuantityKind quantitykind:CanonicalPartitionFunction ;
+  qudt:hasQuantityKind quantitykind:Chromaticity ;
+  qudt:hasQuantityKind quantitykind:CouplingFactor ;
+  qudt:hasQuantityKind quantitykind:Debye-WallerFactor ;
+  qudt:hasQuantityKind quantitykind:DegreeOfDissociation ;
+  qudt:hasQuantityKind quantitykind:Dimensionless ;
+  qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
+  qudt:hasQuantityKind quantitykind:Dissipance ;
+  qudt:hasQuantityKind quantitykind:DoseEquivalentQualityFactor ;
+  qudt:hasQuantityKind quantitykind:Duv ;
+  qudt:hasQuantityKind quantitykind:EinsteinTransitionProbability ;
+  qudt:hasQuantityKind quantitykind:ElectricSusceptibility ;
+  qudt:hasQuantityKind quantitykind:Emissivity ;
+  qudt:hasQuantityKind quantitykind:EquilibriumConstant ;
+  qudt:hasQuantityKind quantitykind:FastFissionFactor ;
+  qudt:hasQuantityKind quantitykind:FrictionCoefficient ;
+  qudt:hasQuantityKind quantitykind:GFactorOfNucleus ;
+  qudt:hasQuantityKind quantitykind:GeneralizedCoordinate ;
+  qudt:hasQuantityKind quantitykind:GeneralizedForce ;
+  qudt:hasQuantityKind quantitykind:GeneralizedMomentum ;
+  qudt:hasQuantityKind quantitykind:GeneralizedVelocity ;
+  qudt:hasQuantityKind quantitykind:GruneisenParameter ;
+  qudt:hasQuantityKind quantitykind:InternalConversionFactor ;
+  qudt:hasQuantityKind quantitykind:IsentropicExponent ;
+  qudt:hasQuantityKind quantitykind:LandeGFactor ;
+  qudt:hasQuantityKind quantitykind:LeakageFactor ;
+  qudt:hasQuantityKind quantitykind:Lethargy ;
+  qudt:hasQuantityKind quantitykind:LogOctanolAirPartitionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LogOctanolWaterPartitionCoefficient ;
+  qudt:hasQuantityKind quantitykind:LogarithmicFrequencyInterval ;
+  qudt:hasQuantityKind quantitykind:Long-RangeOrderParameter ;
+  qudt:hasQuantityKind quantitykind:LossFactor ;
+  qudt:hasQuantityKind quantitykind:MadelungConstant ;
+  qudt:hasQuantityKind quantitykind:MagneticSusceptability ;
+  qudt:hasQuantityKind quantitykind:MassFraction ;
+  qudt:hasQuantityKind quantitykind:MassFractionOfDryMatter ;
+  qudt:hasQuantityKind quantitykind:MassFractionOfWater ;
+  qudt:hasQuantityKind quantitykind:MassRatioOfWaterToDryMatter ;
+  qudt:hasQuantityKind quantitykind:MassRatioOfWaterVapourToDryGas ;
+  qudt:hasQuantityKind quantitykind:MobilityRatio ;
+  qudt:hasQuantityKind quantitykind:MultiplicationFactor ;
+  qudt:hasQuantityKind quantitykind:NapierianAbsorbance ;
+  qudt:hasQuantityKind quantitykind:NeutronYieldPerAbsorption ;
+  qudt:hasQuantityKind quantitykind:NeutronYieldPerFission ;
+  qudt:hasQuantityKind quantitykind:Non-LeakageProbability ;
+  qudt:hasQuantityKind quantitykind:NumberOfParticles ;
+  qudt:hasQuantityKind quantitykind:OrderOfReflection ;
+  qudt:hasQuantityKind quantitykind:OsmoticCoefficient ;
+  qudt:hasQuantityKind quantitykind:PackingFraction ;
+  qudt:hasQuantityKind quantitykind:PermittivityRatio ;
+  qudt:hasQuantityKind quantitykind:PoissonRatio ;
+  qudt:hasQuantityKind quantitykind:PowerFactor ;
+  qudt:hasQuantityKind quantitykind:QualityFactor ;
+  qudt:hasQuantityKind quantitykind:RadianceFactor ;
+  qudt:hasQuantityKind quantitykind:RatioOfSpecificHeatCapacities ;
+  qudt:hasQuantityKind quantitykind:Reactivity ;
+  qudt:hasQuantityKind quantitykind:Refectance ;
+  qudt:hasQuantityKind quantitykind:Reflectance ;
+  qudt:hasQuantityKind quantitykind:ReflectanceFactor ;
+  qudt:hasQuantityKind quantitykind:RefractiveIndex ;
+  qudt:hasQuantityKind quantitykind:RelativeMassConcentrationOfVapour ;
+  qudt:hasQuantityKind quantitykind:RelativeMassDensity ;
+  qudt:hasQuantityKind quantitykind:RelativeMassExcess ;
+  qudt:hasQuantityKind quantitykind:RelativeMassRatioOfVapour ;
+  qudt:hasQuantityKind quantitykind:ResonanceEscapeProbability ;
+  qudt:hasQuantityKind quantitykind:Short-RangeOrderParameter ;
+  qudt:hasQuantityKind quantitykind:StandardAbsoluteActivity ;
+  qudt:hasQuantityKind quantitykind:StatisticalWeight ;
+  qudt:hasQuantityKind quantitykind:StructureFactor ;
+  qudt:hasQuantityKind quantitykind:ThermalDiffusionFactor ;
+  qudt:hasQuantityKind quantitykind:ThermalDiffusionRatio ;
+  qudt:hasQuantityKind quantitykind:ThermalUtilizationFactor ;
+  qudt:hasQuantityKind quantitykind:TotalIonization ;
+  qudt:hasQuantityKind quantitykind:Transmittance ;
+  qudt:hasQuantityKind quantitykind:TransmittanceDensity ;
+  qudt:hasQuantityKind quantitykind:Turns ;
+  qudt:symbol "unitless" ;
+  qudt:uneceCommonCode "C62" ;
+  qudt:unitOfSystem sou:CGS ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:SI ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Unitless"@en ;
+.
+unit:USDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "American Samoa, British Indian Ocean Territory, Ecuador, El Salvador, Guam, Haiti, Marshall Islands, Micronesia, Northern Mariana Islands, Palau, Panama, Puerto Rico, East Timor, Turks and Caicos Islands, United States, Virgin Islands"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:symbol "US$" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "US Dollar"@en ;
+.
+unit:USDollar-NextDay
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "United States"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(USN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "United States Dollar (next day) (funds code)"@en ;
+.
+unit:USDollar-SameDay
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "United States"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "United States Dollar (same day) (funds code)"@en ;
+.
+unit:UgandaShilling
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Uganda"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Ugandan_shilling"^^xsd:anyURI ;
+  qudt:expression "\\(UGX\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Ugandan_shilling?oldid=495383966"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Uganda Shilling"@en ;
+.
+unit:UnidadDeValorReal
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Colombia"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(COU\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Unidad de Valor Real"@en ;
+.
+unit:UnidadesDeFormento
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Chile"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:expression "\\(CLF\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Unidades de formento (Funds code)"@en ;
+.
+unit:UnitPole
+  a qudt:Unit ;
+  dcterms:description "A magnetic pole is a unit pole if it exerts a force of one dyne on another pole of equal strength at a distance of 1 cm. The strength of any given pole in cgs units is therefore numerically equal to the force in dynes which it exerts on a unit pole 1 cm away."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.0000001256637 ;
+  qudt:expression "\\(U/nWb\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:iec61360Code "0112/2///62720#UAB214" ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/unitPole> ;
+  qudt:symbol "pole" ;
+  qudt:uneceCommonCode "P53" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Unit Pole"@en ;
+.
+unit:UruguayPeso
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Uruguay"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Uruguayan_peso"^^xsd:anyURI ;
+  qudt:expression "\\(UYU\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Uruguayan_peso?oldid=487528781"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Peso Uruguayo"@en ;
+.
+unit:UzbekistanSom
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Uzbekistan"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Uzbekistani_som"^^xsd:anyURI ;
+  qudt:expression "\\(UZS\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Uzbekistani_som?oldid=490522228"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Uzbekistan Som"@en ;
+.
+unit:V
+  a qudt:Unit ;
+  dcterms:description "\\(\\textit{Volt} is the SI unit of electric potential. Separating electric charges creates potential energy, which can be measured in energy units such as joules. Electric potential is defined as the amount of potential energy present per unit of charge. Electric potential is measured in volts, with one volt representing a potential of one joule per coulomb of charge. The name of the unit honors the Italian scientist Count Alessandro Volta (1745-1827), the inventor of the first battery.  The volt also may be expressed with a variety of other units. For example, a volt is also equal to one watt per ampere (W/A) and one joule per ampere per second (J/A/s).\\)"^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Volt"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA296" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Volt?oldid=494812083"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(\\text{V}\\ \\equiv\\ \\text{volt}\\ \\equiv\\ \\frac{\\text{J}}{\\text{C}}\\ \\equiv\\ \\frac{\\text{joule}}{\\text{coulomb}}\\ \\equiv\\ \\frac{\\text{W.s}}{\\text{C}}\\ \\equiv\\ \\frac{\\text{watt.second}}{\\text{coulomb}}\\ \\equiv\\ \\frac{\\text{W}}{\\text{A}}\\ \\equiv\\ \\frac{\\text{watt}}{\\text{amp}}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/volt> ;
+  qudt:siUnitsExpression "W/A" ;
+  qudt:symbol "V" ;
+  qudt:ucumCode "V"^^qudt:UCUMcs ;
+  qudt:udunitsCode "V" ;
+  qudt:uneceCommonCode "VLT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt"@en ;
+.
+unit:V-A
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ComplexPower ;
+  qudt:hasQuantityKind quantitykind:NonActivePower ;
+  qudt:iec61360Code "0112/2///62720#UAA298" ;
+  qudt:plainTextDescription "product of the SI derived unit volt and the SI base unit ampere" ;
+  qudt:symbol "V⋅A" ;
+  qudt:ucumCode "V.A"^^qudt:UCUMcs ;
+  qudt:udunitsCode "VA" ;
+  qudt:uneceCommonCode "D46" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Ampere"@en ;
+.
+unit:V-A-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:plainTextDescription "product of the unit for apparent by ampere and the unit hour" ;
+  qudt:symbol "V⋅A⋅hr" ;
+  qudt:ucumCode "V.A.h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Ampere Hour"@en ;
+.
+unit:V-A_Reactive
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ReactivePower ;
+  qudt:iec61360Code "0112/2///62720#UAB023" ;
+  qudt:plainTextDescription "unit with special name for reactive power" ;
+  qudt:symbol "V⋅A{Reactive}" ;
+  qudt:ucumCode "V.A{reactive}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D44" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Ampere Reactive"@en ;
+.
+unit:V-A_Reactive-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:plainTextDescription "product of the unit volt ampere reactive and the unit hour" ;
+  qudt:symbol "V⋅A{reactive}⋅hr" ;
+  qudt:ucumCode "V.A{reactive}.h"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Ampere Reactive Hour"@en ;
+.
+unit:V-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFlux ;
+  qudt:symbol "V⋅m" ;
+  qudt:ucumCode "V.m"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "V-M"@en ;
+.
+unit:V-PER-CentiM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 100.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAB054" ;
+  qudt:plainTextDescription "derived SI unit volt divided by the 0.01-fold of the SI base unit metre" ;
+  qudt:symbol "V/cm" ;
+  qudt:ucumCode "V.cm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Per Centimeter"@en-us ;
+  rdfs:label "Volt Per Centimetre"@en ;
+.
+unit:V-PER-IN
+  a qudt:Unit ;
+  qudt:conversionMultiplier 39.37007874015748 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA300" ;
+  qudt:plainTextDescription "SI derived unit volt divided by the unit inch according to the Anglo-American and the Imperial system of units" ;
+  qudt:symbol "V/in" ;
+  qudt:ucumCode "V.[in_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H23" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Per Inch"@en ;
+.
+unit:V-PER-K
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(v/k\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:SeebeckCoefficient ;
+  qudt:hasQuantityKind quantitykind:ThomsonCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAB173" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "V/K" ;
+  qudt:ucumCode "V.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D48" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt per Kelvin"@en ;
+.
+unit:V-PER-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Volt Per Meter (V/m) is a unit in the category of Electric field strength. It is also known as volts per meter, volt/meter, volt/metre, volt per metre, volts per metre. This unit is commonly used in the SI unit system. Volt Per Meter (V/m) has a dimension of \\(MLT^{-3}I^{-1}\\) where M is mass, L is length, T is time, and I is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(V/m\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricField ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA301" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_field_strength--volt_per_meter.cfm"^^xsd:anyURI ;
+  qudt:symbol "V/m" ;
+  qudt:ucumCode "V.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt per Meter"@en-us ;
+  rdfs:label "Volt per Metre"@en ;
+.
+unit:V-PER-M2
+  a qudt:Unit ;
+  dcterms:description "The divergence at a particular point in a vector field is (roughly) how much the vector field 'spreads out' from that point. Operationally, we take the partial derivative of each of the field with respect to each of its space variables and add all the derivatives together to get the divergence. Electric field (V/m) differentiated with respect to distance (m) yields \\(V/(m^2)\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(V m^{-2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerAreaElectricCharge ;
+  qudt:informativeReference "http://www.funtrivia.com/en/subtopics/Physical-Quantities-310909.html"^^xsd:anyURI ;
+  qudt:symbol "V/m²" ;
+  qudt:ucumCode "V.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt per Square Meter"@en-us ;
+  rdfs:label "Volt per Square Metre"@en ;
+.
+unit:V-PER-MicroSEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA297" ;
+  qudt:plainTextDescription "SI derived unit volt divided by the 0.000001-fold of the SI base unit second" ;
+  qudt:symbol "V/µs" ;
+  qudt:ucumCode "V.us-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H24" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Per Microsecond"@en ;
+.
+unit:V-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:iec61360Code "0112/2///62720#UAA302" ;
+  qudt:plainTextDescription "SI derived unit volt divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "V/mm" ;
+  qudt:ucumCode "V.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D51" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Per Millimeter"@en-us ;
+  rdfs:label "Volt Per Millimetre"@en ;
+.
+unit:V-PER-SEC
+  a qudt:Unit ;
+  dcterms:description "'Volt per Second' is a unit of magnetic flux equaling one weber. This is the flux passing through a conducting loop and reduced to zero at a uniform rate in one second inducing an electric potential of one volt in the loop. "^^rdf:HTML ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(V / sec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerElectricCharge ;
+  qudt:iec61360Code "0112/2///62720#UAA304" ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1512"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.thefreedictionary.com/Webers"^^xsd:anyURI ;
+  qudt:symbol "V/s" ;
+  qudt:ucumCode "V.s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H46" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt per second"@en ;
+.
+unit:V-SEC-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFluxPerUnitLength ;
+  qudt:hasQuantityKind quantitykind:MagneticVectorPotential ;
+  qudt:hasQuantityKind quantitykind:ScalarMagneticPotential ;
+  qudt:iec61360Code "0112/2///62720#UAA303" ;
+  qudt:plainTextDescription "product of the SI derived unit volt and the SI base unit second divided by the SI base unit metre" ;
+  qudt:symbol "V⋅s/m" ;
+  qudt:ucumCode "V.s.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Volt Second Per Meter"@en-us ;
+  rdfs:label "Volt Second Per Metre"@en ;
+.
+unit:V2-PER-K2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(v^2/k^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-2L4I0M2H-2T-6D0 ;
+  qudt:hasQuantityKind quantitykind:LorenzCoefficient ;
+  qudt:iec61360Code "0112/2///62720#UAB172" ;
+  qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
+  qudt:symbol "V²/K²" ;
+  qudt:ucumCode "V2.K-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D45" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Volt per Square Kelvin"@en ;
+.
+unit:V_Ab
+  a qudt:Unit ;
+  dcterms:description "A unit of electrical potential equal to one hundred millionth of a volt (\\(10^{-8}\\,volts\\)), used in the centimeter-gram-second (CGS) system of units. One abV is the potential difference that exists between two points when the work done to transfer one abcoulomb of charge between them equals: \\(1\\,erg\\cdot\\,1\\,abV\\,=\\,10\\,nV\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Abvolt"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Abvolt?oldid=477198646"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.lexic.us/definition-of/abvolt"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-27"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt> ;
+  qudt:symbol "abV" ;
+  qudt:ucumCode "10.nV"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abvolt"@en ;
+.
+unit:V_Ab-PER-CentiM
+  a qudt:Unit ;
+  dcterms:description "In the electromagnetic centimeter-gram-second system of units, 'abvolt per centimeter' is the unit of electric field strength."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.000001 ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricField ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:informativeReference "http://www.endmemo.com/convert/electric%20field%20strength.php"^^xsd:anyURI ;
+  qudt:symbol "abV/cm" ;
+  qudt:ucumCode "10.nV.cm-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abvolt per centimeter"@en-us ;
+  rdfs:label "Abvolt per centimetre"@en ;
+.
+unit:V_Ab-SEC
+  a qudt:Unit ;
+  dcterms:description "The magnetic flux whose expenditure in 1 second produces 1 abvolt per turn of a linked circuit. Technically defined in a three-dimensional system, it corresponds in the four-dimensional electromagnetic sector of the SI system to 10 nWb, and is an impractically small unit. In use for some years, the name was agreed by the International Electrotechnical Committee in 1930, along with a corresponding practical unit, the pramaxwell (or pro-maxwell) = \\(10^{8}\\) maxwell."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.00000001 ;
+  qudt:derivedUnitOfSystem sou:CGS-EMU ;
+  qudt:expression "\\(abv-sec\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-820"^^xsd:anyURI ;
+  qudt:symbol "abv⋅s" ;
+  qudt:ucumCode "10.nV.s"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Abvolt Second"@en ;
+.
+unit:V_Stat
+  a qudt:Unit ;
+  dcterms:description "\"statvolt\" is a unit of voltage and electrical potential used in the cgs system of units. The conversion to the SI system is \\(1 statvolt = 299.792458 volts\\). The conversion factor 299.792458 is simply the numerical value of the speed of light in m/s divided by 106. The statvolt is also defined in the cgs system as \\(1 erg / esu\\). It is a useful unit for electromagnetism because one statvolt per centimetre is equal in magnitude to one gauss. Thus, for example, an electric field of one statvolt/cm has the same energy density as a magnetic field of one gauss. Likewise, a plane wave propagating in a vacuum has perpendicular electric and magnetic fields such that for every gauss of magnetic field intensity there is one statvolt/cm of electric field intensity. The abvolt is another option for a unit of voltage in the cgs system."^^qudt:LatexString ;
+  qudt:conversionMultiplier 299.792458 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Statvolt"^^xsd:anyURI ;
+  qudt:derivedUnitOfSystem sou:CGS-ESU ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Statvolt"^^xsd:anyURI ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Statvolt?oldid=491769750"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt> ;
+  qudt:symbol "statV" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statvolt"@en ;
+.
+unit:V_Stat-CentiM
+  a qudt:Unit ;
+  qudt:expression "\\(statvolt-centimeter\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricFlux ;
+  qudt:symbol "statV⋅cm" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "V_Stat-CentiM"@en ;
+.
+unit:V_Stat-PER-CentiM
+  a qudt:Unit ;
+  dcterms:description """One statvolt per centimetre is equal in magnitude to one gauss. For example, an electric field of one statvolt/cm has the same energy density as a magnetic field of one gauss. Likewise, a plane wave propagating in a vacuum has perpendicular electric and magnetic fields such that for every gauss of magnetic field intensity there is one statvolt/cm of electric field intensity.
+The abvolt is another option for a unit of voltage in the cgs system."""^^rdf:HTML ;
+  qudt:conversionMultiplier 29979.2458 ;
+  qudt:expression "\\(statv-per-cm\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricField ;
+  qudt:hasQuantityKind quantitykind:ElectricFieldStrength ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Statvolt"^^xsd:anyURI ;
+  qudt:symbol "statV/cm" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Statvolt per Centimeter"@en-us ;
+  rdfs:label "Statvolt per Centimetre"@en ;
+.
+unit:Vatu
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Vanuatu"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Vanuatu_vatu"^^xsd:anyURI ;
+  qudt:expression "\\(VUV\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Vanuatu_vatu?oldid=494667103"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Vatu"@en ;
+.
+unit:VenezuelanBolvar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Venezuela"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(VEB\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Venezuelan bolvar"@en ;
+.
+unit:VietnameseDong
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Vietnam"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:expression "\\(VND\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Vietnamese ??ng"@en ;
+.
+unit:W
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of power. Power is the rate at which work is done, or (equivalently) the rate at which energy is expended. One watt is equal to a power rate of one joule of work per second of time. This unit is used both in mechanics and in electricity, so it links the mechanical and electrical units to one another. In mechanical terms, one watt equals about 0.001 341 02 horsepower (hp) or 0.737 562 foot-pound per second (lbf/s). In electrical terms, one watt is the power produced by a current of one ampere flowing through an electric potential of one volt. The name of the unit honors James Watt (1736-1819), the British engineer whose improvements to the steam engine are often credited with igniting the Industrial Revolution." ;
+  qudt:allowedUnitOfSystem sou:PLANCK ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Watt"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ActivePower ;
+  qudt:hasQuantityKind quantitykind:Power ;
+  qudt:iec61360Code "0112/2///62720#UAA306" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Watt?oldid=494906356"^^xsd:anyURI ;
+  qudt:latexDefinition "\\(\\text{W}\\ \\equiv\\ \\text{watt}\\ \\equiv\\ \\frac{\\text{J}}{\\text{s}}\\ \\equiv\\ \\frac{\\text{joule}}{\\text{second}}\\ \\equiv\\ \\frac{\\text{N.m}}{\\text{s}}\\ \\equiv\\ \\frac{\\text{newton.metre}}{\\text{second}}\\ \\equiv\\ \\text{V.A}\\ \\equiv\\ \\text{volt.amp}\\ \\equiv\\ \\Omega\\text{.A}^{2}\\ \\equiv\\ \\text{ohm.amp}^{2}\\)"^^qudt:LatexString ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/watt> ;
+  qudt:symbol "W" ;
+  qudt:ucumCode "W"^^qudt:UCUMcs ;
+  qudt:udunitsCode "W" ;
+  qudt:uneceCommonCode "WTT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt"@en ;
+.
+unit:W-HR
+  a qudt:Unit ;
+  dcterms:description "The watt hour is a unit of energy, equal to 3,600 joule."^^rdf:HTML ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:symbol "W⋅hr" ;
+  qudt:ucumCode "W.h"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "WHR" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watthour"@en ;
+.
+unit:W-HR-PER-M3
+  a qudt:Unit ;
+  dcterms:description "The watt hour per cubic meter is a unit of energy density, equal to 3,600 joule per cubic meter."^^rdf:HTML ;
+  qudt:conversionMultiplier 3600.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyDensity ;
+  qudt:symbol "W⋅hr/m³" ;
+  qudt:ucumCode "W.h.m-3"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watthour per Cubic meter"@en-us ;
+  rdfs:label "Watthour per Cubic metre"@en ;
+.
+unit:W-M-PER-M2-SR
+  a qudt:Unit ;
+  dcterms:description "The power per unit area of radiation of a given wavenumber illuminating a target at a given incident angle."@en ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-3D0 ;
+  qudt:symbol "W⋅m/m²⋅sr" ;
+  qudt:ucumCode "W.m-2.m.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watts per square metre per inverse metre per steradian"@en ;
+.
+unit:W-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerArea ;
+  qudt:symbol "W⋅m²" ;
+  qudt:ucumCode "W.m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "Q21" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "W-M2"@en ;
+.
+unit:W-M2-PER-SR
+  a qudt:Unit ;
+  qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerAreaPerSolidAngle ;
+  qudt:symbol "W⋅m²/sr" ;
+  qudt:ucumCode "W.m2.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "W-M2-PER-SR"@en ;
+.
+unit:W-PER-CentiM2
+  a qudt:Unit ;
+  dcterms:description "Watt Per Square Centimeter is a unit of heat flux or thermal flux, the rate of heat energy transfer through a given surface."^^rdf:HTML ;
+  qudt:conversionMultiplier 10000.0 ;
+  qudt:expression "\\(W/ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB224" ;
+  qudt:symbol "W/cm²" ;
+  qudt:ucumCode "W.cm-2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N48" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Centimeter"@en-us ;
+  rdfs:label "Watt per Square Centimetre"@en ;
+.
+unit:W-PER-FT2
+  a qudt:Unit ;
+  dcterms:description "Watt Per Square Foot is a unit of heat flux or thermal flux, the rate of heat energy transfer through a given surface."^^rdf:HTML ;
+  qudt:conversionMultiplier 10.7639104 ;
+  qudt:expression "\\(W/ft^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:symbol "W/ft²" ;
+  qudt:ucumCode "W.[sft_i]-1"^^qudt:UCUMcs ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Foot"@en ;
+.
+unit:W-PER-IN2
+  a qudt:Unit ;
+  dcterms:description "Watt Per Square Inch is a unit of heat flux or thermal flux, the rate of heat energy transfer through a given surface."^^rdf:HTML ;
+  qudt:conversionMultiplier 1550.0031 ;
+  qudt:expression "\\(W/in^{2}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:iec61360Code "0112/2///62720#UAB225" ;
+  qudt:symbol "W/in²" ;
+  qudt:ucumCode "W.[sin_i]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "N49" ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Inch"@en ;
+.
+unit:W-PER-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Watt Per Kelvin (\\(W/K\\)) is a unit in the category of Thermal conductivity."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(w-per-K\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductance ;
+  qudt:iec61360Code "0112/2///62720#UAA307" ;
+  qudt:symbol "w/K" ;
+  qudt:ucumCode "W.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D52" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Kelvin"@en ;
+.
+unit:W-PER-KiloGM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ;
+  qudt:iec61360Code "0112/2///62720#UAA316" ;
+  qudt:plainTextDescription "SI derived unit watt divided by the SI base unit kilogram" ;
+  qudt:symbol "W/kg" ;
+  qudt:ucumCode "W.kg-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "W/kg"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "WA" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt Per Kilogram"@en ;
+.
+unit:W-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-3D0 ;
+  qudt:symbol "W/m" ;
+  qudt:ucumCode "W.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H74" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watts per metre"@en ;
+.
+unit:W-PER-M-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(W-per-MK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ThermalConductivity ;
+  qudt:iec61360Code "0112/2///62720#UAA309" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ;
+  qudt:latexSymbol "\\(W \\cdot m^{-1} \\cdot K^{-1}\\)"^^qudt:LatexString ;
+  qudt:symbol "W/(m⋅K)" ;
+  qudt:ucumCode "W.m-1.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D53" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Meter Kelvin"@en-us ;
+  rdfs:label "Watt per Metre Kelvin"@en ;
+.
+unit:W-PER-M2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Watt per Square Meter} is a unit of irradiance defined as the power received per area. This is a unit in the category of Energy flux. It is also known as watts per square meter, watt per square metre, watts per square metre, watt/square meter, watt/square metre. This unit is commonly used in the SI unit system. Watt Per Square Meter (\\(W/m^2\\)) has a dimension of \\(MT^{-3\"\\) where M is mass, and T is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(W/m^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerArea ;
+  qudt:hasQuantityKind quantitykind:PoyntingVector ;
+  qudt:iec61360Code "0112/2///62720#UAA310" ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_flux--watt_per_square_meter.cfm"^^xsd:anyURI ;
+  qudt:symbol "W/m²" ;
+  qudt:ucumCode "W.m-2"^^qudt:UCUMcs ;
+  qudt:ucumCode "W/m2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D54" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Meter"@en-us ;
+  rdfs:label "Watt per Square Metre"@en ;
+.
+unit:W-PER-M2-K
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Watt Per Square Meter Per Kelvin }(\\(W m^{-2} K^{-1}\\)) is a unit in the category of Thermal heat transfer coefficient. It is also known as watt/square meter-kelvin. This unit is commonly used in the SI unit system. Watt Per Square Meter Per Kelvin (\\(W m^{-2} K^{-1}\\)) has a dimension of \\(MT^{-1}Q^{-1}\\) where \\(M\\) is mass, \\(T\\) is time, and \\(Q\\) is temperature. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(W/(m^{2}-K)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ;
+  qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
+  qudt:hasQuantityKind quantitykind:CombinedNonEvaporativeHeatTransferCoefficient ;
+  qudt:hasQuantityKind quantitykind:SurfaceCoefficientOfHeatTransfer ;
+  qudt:iec61360Code "0112/2///62720#UAA311" ;
+  qudt:symbol "W/(m²⋅K)" ;
+  qudt:ucumCode "W.m-2.K-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D55" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Meter Kelvin"@en-us ;
+  rdfs:label "Watt per Square Metre Kelvin"@en ;
+.
+unit:W-PER-M2-K4
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Watt Per Square Meter Per Quartic Kelvin (\\(W/m2\\cdotK4)\\) is a unit in the category of light."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(W/(m^2.K^4)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H-4T-3D0 ;
+  qudt:hasQuantityKind quantitykind:PowerPerAreaQuarticTemperature ;
+  qudt:symbol "W/(m²⋅K⁴)" ;
+  qudt:ucumCode "W.m-2.K-4"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D56" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Meter Quartic Kelvin"@en-us ;
+  rdfs:label "Watt per Square Metre Quartic Kelvin"@en ;
+.
+unit:W-PER-M2-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "W/m²⋅m" ;
+  qudt:ucumCode "W.m-2.m-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watts per square metre per metre"@en ;
+.
+unit:W-PER-M2-M-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "W/m²⋅m⋅sr" ;
+  qudt:ucumCode "W.m-2.m-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watts per square metre per metre per steradian"@en ;
+.
+unit:W-PER-M2-NanoM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "W/m²⋅nm" ;
+  qudt:ucumCode "W.m-2.nm-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watts per square metre per nanometre"@en ;
+.
+unit:W-PER-M2-NanoM-SR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000000000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:symbol "W/m²⋅nm⋅sr" ;
+  qudt:ucumCode "W.m-2.nm-1.sr-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watts per square metre per nanometre per steradian"@en ;
+.
+unit:W-PER-M2-PA
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "Watt Per Square Meter Per Pascal (\\(W/m^2-pa\\)) is a unit of Evaporative Heat Transfer."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:expression "\\(W/(m^2.pa)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:EvaporativeHeatTransferCoefficient ;
+  qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
+  qudt:symbol "W/(m²⋅pa)" ;
+  qudt:ucumCode "W.m-2.Pa-1"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Meter Pascal"@en-us ;
+  rdfs:label "Watt per Square Metre Pascal"@en ;
+.
+unit:W-PER-M2-SR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Watt per steradian per square metre}\\) is the SI unit of radiance (\\(W·sr^{-1}·m^{-2}\\)), while that of spectral radiance in frequency is the watt per steradian per square metre per hertz (\\(W·sr^{-1}·m^{-2}·Hz^{-1}\\)) and that of spectral radiance in wavelength is the watt per steradian per square metre, per metre (\\(W·sr^{-1}·m^{-3}\\)), commonly the watt per steradian per square metre per nanometre (\\(W·sr^{-1}·m^{-2}·nm^{-1}\\)). It has a dimension of \\(ML^{-4}T^{-3}\\) where \\(M\\) is mass, \\(L\\) is length, and \\(T\\) is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(W/(m^2.sr)\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:Radiance ;
+  qudt:informativeReference "http://asd-www.larc.nasa.gov/Instrument/ceres_units.html"^^xsd:anyURI ;
+  qudt:informativeReference "http://www.efunda.com/glossary/units/units--radiance--watt_per_square_meter_per_steradian.cfm"^^xsd:anyURI ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Radiance"^^xsd:anyURI ;
+  qudt:symbol "W/(m²⋅sr)" ;
+  qudt:ucumCode "W.m-2.sr-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D58" ;
+  qudt:unitOfSystem sou:SI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Square Meter Steradian"@en-us ;
+  rdfs:label "Watt per Square Metre Steradian"@en ;
+.
+unit:W-PER-M3
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:ForcePerAreaTime ;
+  qudt:iec61360Code "0112/2///62720#UAA312" ;
+  qudt:plainTextDescription "SI derived unit watt divided by the power of the SI base unit metre with the exponent 3" ;
+  qudt:symbol "W/m³" ;
+  qudt:ucumCode "W.m-3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "H47" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt Per Cubic Meter"@en-us ;
+  rdfs:label "Watt Per Cubic Metre"@en ;
+.
+unit:W-PER-SR
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\\(\\textbf{Watt Per Steradian (W/sr)}\\) is the unit in the category of Radiant intensity. It is also known as watts per steradian. This unit is commonly used in the SI unit system. Watt Per Steradian (W/sr) has a dimension of \\(M\\cdot L^{-2}\\cdot T^{-3}\\) where \\(M\\) is mass, \\(L\\) is length, and \\(T\\) is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:expression "\\(W sr^{-1}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ;
+  qudt:hasQuantityKind quantitykind:RadiantIntensity ;
+  qudt:iec61360Code "0112/2///62720#UAA314" ;
+  qudt:symbol "W/sr" ;
+  qudt:ucumCode "W.sr-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D57" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt per Steradian"@en ;
+.
+unit:W-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:Energy ;
+  qudt:iec61360Code "0112/2///62720#UAA313" ;
+  qudt:plainTextDescription "product of the SI derived unit watt and SI base unit second" ;
+  qudt:symbol "W⋅s" ;
+  qudt:ucumCode "W.s"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "J55" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt Second"@en ;
+.
+unit:W-SEC-PER-M2
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:EnergyPerArea ;
+  qudt:symbol "W⋅s/m²" ;
+  qudt:ucumCode "W.s.m-2"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Watt seconds per square metre"@en ;
+.
+unit:WB
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The SI unit of magnetic flux. \"Flux\" is the rate (per unit of time) at which something crosses a surface perpendicular to the flow. The weber is a large unit, equal to \\(10^{8}\\) maxwells, and practical fluxes are usually fractions of one weber. The weber is the magnetic flux which, linking a circuit of one turn, would produce in it an electromotive force of 1 volt if it were reduced to zero at a uniform rate in 1 second. In SI base units, the dimensions of the weber are \\((kg \\cdot m^2)/(s^2 \\cdot A)\\). The weber is commonly expressed in terms of other derived units as the Tesla-square meter (\\(T \\cdot m^2\\)), volt-seconds (\\(V \\cdot s\\)), or joules per ampere (\\(J/A\\))."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Weber"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:SI ;
+  qudt:derivedCoherentUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticFlux ;
+  qudt:iec61360Code "0112/2///62720#UAA317" ;
+  qudt:informativeReference "https://en.wikipedia.org/wiki/Weber_(unit)"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/weber> ;
+  qudt:siUnitsExpression "V.s" ;
+  qudt:symbol "Wb" ;
+  qudt:ucumCode "Wb"^^qudt:UCUMcs ;
+  qudt:udunitsCode "Wb" ;
+  qudt:uneceCommonCode "WEB" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Weber"@en ;
+.
+unit:WB-M
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:exactMatch unit:N-M2-PER-A ;
+  qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
+  qudt:iec61360Code "0112/2///62720#UAB333" ;
+  qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ;
+  qudt:symbol "Wb⋅m" ;
+  qudt:ucumCode "Wb.m"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "P50" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Weber Meter"@en-us ;
+  rdfs:label "Weber Metre"@en ;
+  owl:sameAs unit:N-M2-PER-A ;
+.
+unit:WB-PER-M
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticVectorPotential ;
+  qudt:iec61360Code "0112/2///62720#UAA318" ;
+  qudt:plainTextDescription "SI derived unit weber divided by the SI base unit metre" ;
+  qudt:symbol "Wb/m" ;
+  qudt:ucumCode "Wb.m-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D59" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Weber Per Meter"@en-us ;
+  rdfs:label "Weber Per Metre"@en ;
+.
+unit:WB-PER-MilliM
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1000.0 ;
+  qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ;
+  qudt:hasQuantityKind quantitykind:MagneticVectorPotential ;
+  qudt:iec61360Code "0112/2///62720#UAB074" ;
+  qudt:plainTextDescription "derived SI unit weber divided by the 0.001-fold of the SI base unit metre" ;
+  qudt:symbol "Wb/mm" ;
+  qudt:ucumCode "Wb.mm-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D60" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Weber Per Millimeter"@en-us ;
+  rdfs:label "Weber Per Millimetre"@en ;
+.
+unit:WIREuro
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Switzerland"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(CHE\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "WIR Euro (complementary currency)"@en ;
+.
+unit:WIRFranc
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Switzerland"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:expression "\\(CHW\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "WIR Franc (complementary currency)"@en ;
+.
+unit:WK
+  a qudt:Unit ;
+  dcterms:description "Mean solar week"^^rdf:HTML ;
+  qudt:conversionMultiplier 604800.0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Week"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAB024" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Week?oldid=493867029"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/week> ;
+  qudt:symbol "wk" ;
+  qudt:ucumCode "wk"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "WEE" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Week"@en ;
+.
+unit:XAF
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Cameroon, Central African Republic, Congo, Chad, Equatorial Guinea, Gabon"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "CFA Franc BEAC"@en ;
+.
+unit:XOF
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Currency of Benin, Burkina Faso, CÔte d'Ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "CFA Franc BCEAO"@en ;
+.
+unit:XPF
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "French Polynesia, New Caledonia, Wallis and Futuna"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "CFP franc"@en ;
+.
+unit:YD
+  a qudt:Unit ;
+  dcterms:description "A yard is a unit of length in several different systems including United States customary units, Imperial units and the former English units. It is equal to 3 feet or 36 inches. Under an agreement in 1959 between Australia, Canada, New Zealand, South Africa, the United Kingdom and the United States, the yard (known as the \"international yard\" in the United States) was legally defined to be exactly 0.9144 metres."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.9144 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Yard"^^xsd:anyURI ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Length ;
+  qudt:iec61360Code "0112/2///62720#UAB030" ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Yard?oldid=492334628"^^xsd:anyURI ;
+  qudt:symbol "yd" ;
+  qudt:ucumCode "[yd_i]"^^qudt:UCUMcs ;
+  qudt:udunitsCode "yd" ;
+  qudt:uneceCommonCode "YRD" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Yard"@en ;
+.
+unit:YD-PER-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.6459200164592 ;
+  qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAB031" ;
+  qudt:plainTextDescription "unit yard according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit" ;
+  qudt:symbol "yd/°F" ;
+  qudt:ucumCode "[yd_i].[degF]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "L98" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Yard Per Degree Fahrenheit"@en ;
+.
+unit:YD2
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "The square yard is an imperial/US customary unit of area, formerly used in most of the English-speaking world but now generally replaced by the square metre outside of the U.S. , Canada and the U.K. It is defined as the area of a square with sides of one yard in length. (Gaj in Hindi)."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.83612736 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(yd^2\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Area ;
+  qudt:iec61360Code "0112/2///62720#UAB034" ;
+  qudt:symbol "sqyd" ;
+  qudt:ucumCode "[syd_i]"^^qudt:UCUMcs ;
+  qudt:ucumCode "[yd_i]2"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "YDK" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Square Yard"@en ;
+.
+unit:YD3
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A cubic yard is an Imperial / U.S. customary unit of volume, used in the United States, Canada, and the UK. It is defined as the volume of a cube with sides of 1 yard in length."^^rdf:HTML ;
+  qudt:conversionMultiplier 0.764554857984 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(yd^{3}\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ;
+  qudt:hasQuantityKind quantitykind:Volume ;
+  qudt:iec61360Code "0112/2///62720#UAB035" ;
+  qudt:symbol "yd³" ;
+  qudt:ucumCode "[cyd_i]"^^qudt:UCUMcs ;
+  qudt:ucumCode "[yd_i]3"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "YDQ" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  qudt:unitOfSystem sou:USCS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Yard"@en ;
+.
+unit:YD3-PER-DAY
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00000884901456 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB037" ;
+  qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day" ;
+  qudt:symbol "yd³/day" ;
+  qudt:ucumCode "[cyd_i].d-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M12" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Yard Per Day"@en ;
+.
+unit:YD3-PER-DEG_F
+  a qudt:Unit ;
+  qudt:conversionMultiplier 1.376198881991088 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ;
+  qudt:iec61360Code "0112/2///62720#UAB036" ;
+  qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit" ;
+  qudt:symbol "yd³/°F" ;
+  qudt:ucumCode "[cyd_i].[degF]-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M11" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Yard Per Degree Fahrenheit"@en ;
+.
+unit:YD3-PER-HR
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.00021237634944 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB038" ;
+  qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for the time hour" ;
+  qudt:symbol "yd³/hr" ;
+  qudt:ucumCode "[cyd_i].h-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M13" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Yard Per Hour"@en ;
+.
+unit:YD3-PER-MIN
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "\"Cubic Yard per Minute\" is an Imperial unit for  'Volume Per Unit Time' expressed as \\(yd^{3}/min\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.0127425809664 ;
+  qudt:definedUnitOfSystem sou:IMPERIAL ;
+  qudt:definedUnitOfSystem sou:USCS ;
+  qudt:expression "\\(yd^{3}/min\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:hasQuantityKind quantitykind:VolumePerUnitTime ;
+  qudt:iec61360Code "0112/2///62720#UAB040" ;
+  qudt:symbol "yd³/min" ;
+  qudt:ucumCode "[cyd_i].min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[cyd_i]/min"^^qudt:UCUMcs ;
+  qudt:ucumCode "[yd_i]3.min-1"^^qudt:UCUMcs ;
+  qudt:ucumCode "[yd_i]3/min"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M15" ;
+  qudt:unitOfSystem sou:IMPERIAL ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Yard per Minute"@en ;
+.
+unit:YD3-PER-SEC
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.764554857984 ;
+  qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
+  qudt:iec61360Code "0112/2///62720#UAB041" ;
+  qudt:plainTextDescription "power of the unit and the Anglo-American and Imperial system of units with the exponent 3 divided by the SI base unit second" ;
+  qudt:symbol "yd³/s" ;
+  qudt:ucumCode "[cyd_i].s-1"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "M16" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Cubic Yard Per Second"@en ;
+.
+unit:YR
+  a qudt:Unit ;
+  dcterms:description "A year is any of the various periods equated with one passage of Earth about the Sun, and hence of roughly 365 days. The familiar calendar has a mixture of 365- and 366-day years, reflecting the fact that the time for one complete passage takes about 365¼ days; the precise value for this figure depends on the manner of defining the year."^^rdf:HTML ;
+  qudt:conversionMultiplier 31557600.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAB026" ;
+  qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1533?rskey=b94Fd6"^^xsd:anyURI ;
+  qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/year> ;
+  qudt:symbol "yr" ;
+  qudt:ucumCode "a"^^qudt:UCUMcs ;
+  qudt:udunitsCode "yr" ;
+  qudt:uneceCommonCode "ANN" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Year"@en ;
+.
+unit:YR_Common
+  a qudt:Unit ;
+  qudt:conversionMultiplier 31536000.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAB025" ;
+  qudt:plainTextDescription "31,536,000-fold of the SI base unit second according a common year with 365 days" ;
+  qudt:symbol "yr" ;
+  qudt:uneceCommonCode "L95" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Common Year"@en ;
+.
+unit:YR_Sidereal
+  a qudt:Unit ;
+  dcterms:description "A sidereal year is the time taken for Sun to return to the same position with respect to the stars of the celestial sphere."^^rdf:HTML ;
+  qudt:conversionMultiplier 31558149.7632 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAB028" ;
+  qudt:symbol "yr{sidereal}" ;
+  qudt:uneceCommonCode "L96" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Sidereal Year"@en ;
+.
+unit:YR_TROPICAL
+  a qudt:Unit ;
+  dcterms:description "<p>A tropical year (also known as a solar year), for general purposes, is the length of time that the Sun takes to return to the same position in the cycle of seasons, as seen from Earth; for example, the time from vernal equinox to vernal equinox, or from summer solstice to summer solstice. Because of the precession of the equinoxes, the seasonal cycle does not remain exactly synchronised with the position of the Earth in its orbit around the Sun. As a consequence, the tropical year is about 20 minutes shorter than the time it takes Earth to complete one full orbit around the Sun as measured with respect to the fixed stars. Since antiquity, astronomers have progressively refined the definition of the tropical year, and currently define it as the time required for the mean Sun's tropical longitude (longitudinal position along the ecliptic relative to its position at the vernal equinox) to increase by 360 degrees (that is, to complete one full seasonal circuit).</p>"^^rdf:HTML ;
+  qudt:conversionMultiplier 31556925.216 ;
+  qudt:exactMatch unit:YR_TROPICAL ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:Time ;
+  qudt:iec61360Code "0112/2///62720#UAB029" ;
+  qudt:symbol "yr{tropical}" ;
+  qudt:ucumCode "a_t"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "D42" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Tropical Year"@en ;
+  skos:altLabel "solar year" ;
+.
+unit:YemeniRial
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Yemen"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Yemeni_rial"^^xsd:anyURI ;
+  qudt:expression "\\(YER\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Yemeni_rial?oldid=494507603"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Yemeni Rial"@en ;
+.
+unit:YoctoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A YoctoCoulomb is \\(10^{-24} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000000000000000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Yocto ;
+  qudt:symbol "yC" ;
+  qudt:ucumCode "yC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "YoctoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:YottaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A YottaCoulomb is \\(10^{24} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000000000000000000.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Yotta ;
+  qudt:symbol "YC" ;
+  qudt:ucumCode "YC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "YottaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:YuanRenminbi
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Mainland China"^^rdf:HTML ;
+  qudt:currencyExponent 1 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Renminbi"^^xsd:anyURI ;
+  qudt:expression "\\(CNY\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Renminbi?oldid=494799454"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Yuan Renminbi"@en ;
+.
+unit:Z
+  a qudt:Unit ;
+  dcterms:description "In chemistry and physics, the atomic number (also known as the proton number) is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. It is conventionally represented by the symbol Z. The atomic number uniquely identifies a chemical element. In an atom of neutral charge, the atomic number is also equal to the number of electrons."^^rdf:HTML ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_number"^^xsd:anyURI ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:AtomicNumber ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_number?oldid=490723437"^^xsd:anyURI ;
+  qudt:symbol "Z" ;
+  qudt:unitOfSystem sou:CGS ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "atomic-number"@en ;
+.
+unit:ZambianKwacha
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Zambia"^^rdf:HTML ;
+  qudt:currencyExponent 0 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Zambian_kwacha"^^xsd:anyURI ;
+  qudt:expression "\\(ZMK\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Zambian_kwacha?oldid=490328608"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Zambian Kwacha"@en ;
+.
+unit:ZeptoC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A ZeptoCoulomb is \\(10^{-21} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 0.000000000000000000001 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Zepto ;
+  qudt:symbol "zC" ;
+  qudt:ucumCode "zC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ZeptoCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:ZettaC
+  a qudt:DerivedUnit ;
+  a qudt:Unit ;
+  dcterms:description "A ZettaCoulomb is \\(10^{21} C\\)."^^qudt:LatexString ;
+  qudt:conversionMultiplier 1000000000000000000000.0 ;
+  qudt:derivedUnitOfSystem sou:SI ;
+  qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ;
+  qudt:hasQuantityKind quantitykind:ElectricCharge ;
+  qudt:isScalingOf unit:C ;
+  qudt:prefix prefix:Zetta ;
+  qudt:symbol "ZC" ;
+  qudt:ucumCode "ZC"^^qudt:UCUMcs ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "ZettaCoulomb"@en ;
+  prov:wasDerivedFrom unit:C ;
+.
+unit:ZimbabweDollar
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Zimbabwe"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Zimbabwean_dollar"^^xsd:anyURI ;
+  qudt:expression "\\(ZWD\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Zimbabwean_dollar?oldid=491532675"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Zimbabwe Dollar"@en ;
+.
+unit:Zloty
+  a qudt:CurrencyUnit ;
+  a qudt:Unit ;
+  dcterms:description "Poland"^^rdf:HTML ;
+  qudt:currencyExponent 2 ;
+  qudt:dbpediaMatch "http://dbpedia.org/resource/Polish_z%C5%82oty"^^xsd:anyURI ;
+  qudt:expression "\\(PLN\\)"^^qudt:LatexString ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ;
+  qudt:hasQuantityKind quantitykind:Currency ;
+  qudt:informativeReference "http://en.wikipedia.org/wiki/Polish_złoty?oldid=492697733"^^xsd:anyURI ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Zloty"@en ;
+.
+unit:failures-in-time
+  a qudt:Unit ;
+  qudt:conversionMultiplier 0.0 ;
+  qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ;
+  qudt:hasQuantityKind quantitykind:Frequency ;
+  qudt:iec61360Code "0112/2///62720#UAB403" ;
+  qudt:plainTextDescription "unit of failure rate" ;
+  qudt:symbol "failures/s" ;
+  qudt:ucumCode "s-1{failures}"^^qudt:UCUMcs ;
+  qudt:uneceCommonCode "FIT" ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "Failures In Time"@en ;
+.
+voag:QUDT-UNITS-VocabCatalogEntry
+  a vaem:CatalogEntry ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "QUDT UNITS Vocab Catalog Entry" ;
+.
+vaem:GMD_QUDT-UNITS-ALL
+  a vaem:GraphMetaData ;
+  dcterms:contributor "Jack Hodges" ;
+  dcterms:contributor "Simon J D Cox" ;
+  dcterms:contributor "Steve Ray" ;
+  dcterms:created "2019-07-30"^^xsd:date ;
+  dcterms:creator "Steve Ray" ;
+  dcterms:modified "2022-10-25T17:45:41.055-04:00"^^xsd:dateTime ;
+  dcterms:rights """
+  This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, a copy of which is available at ​http://unitsofmeasure.org. The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. All rights reserved.
+
+THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+  """ ;
+  dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ;
+  dcterms:subject "Units-All" ;
+  dcterms:title "ALL UNITS Version 2.1.21 Graph Metadata" ;
+  vaem:description "Standard units of measure for all units." ;
+  vaem:graphName "qudt" ;
+  vaem:graphTitle "All Units Ontology Version 2.1.21" ;
+  vaem:hasGraphRole vaem:VocabularyGraph ;
+  vaem:hasOwner <http://www.linkedmodel.org/schema/vaem#QUDT.org> ;
+  vaem:hasSteward <http://www.linkedmodel.org/schema/vaem#QUDT.org> ;
+  vaem:intent "To provide a vocabulary of all units." ;
+  vaem:isMetadataFor <http://qudt.org/2.1/vocab/unit> ;
+  vaem:latestPublishedVersion "https://qudt.org/doc/2022/10/DOC_VOCAB-UNITS-ALL-v2.1.html"^^xsd:anyURI ;
+  vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
+  vaem:namespace "http://qudt.org/vocab/unit/" ;
+  vaem:namespacePrefix "unit" ;
+  vaem:owner "QUDT.org" ;
+  vaem:previousPublishedVersion "https://qudt.org/doc/2022/09/DOC_VOCAB-UNITS-ALL-v2.1.html"^^xsd:anyURI ;
+  vaem:revision "2.1" ;
+  vaem:turtleFileURL "http://qudt.org/2.1/vocab/unit"^^xsd:anyURI ;
+  vaem:usesNonImportedResource dcterms:abstract ;
+  vaem:usesNonImportedResource dcterms:created ;
+  vaem:usesNonImportedResource dcterms:creator ;
+  vaem:usesNonImportedResource dcterms:modified ;
+  vaem:usesNonImportedResource dcterms:title ;
+  rdfs:isDefinedBy <http://qudt.org/2.1/vocab/unit> ;
+  rdfs:label "All Units Ontology Version 2.1.21" ;
+.
diff --git a/fda-units-service/onto/def--geometrie.ttl b/fda-units-service/onto/def--geometrie.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2d7fe7c5a17eeedb26c42c30ede21c1a516be02c
--- /dev/null
+++ b/fda-units-service/onto/def--geometrie.ttl
@@ -0,0 +1,601 @@
+@base <http://data.ign.fr/def/geometrie> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix : <#> .
+@prefix ns: <http://creativecommons.org/ns#> .
+@prefix org: <http://www.w3.org/ns/org#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix time: <http://www.w3.org/2006/time#> .
+@prefix vann: <http://purl.org/vocab/vann/> .
+@prefix terms: <http://purl.org/dc/terms/> .
+
+ns:license
+    a owl:AnnotationProperty .
+
+<>
+    ns:license <http://creativecommons.org/licenses/by/2.0/>, <http://opendatacommons.org/licenses/by/>, <http://www.data.gouv.fr/Licence-Ouverte-Open-Licence> ;
+    terms:contributor <_:genid-nodeid-node1d3jq8du2x108>, <http://data.semanticweb.org/person/bernard-vatant>, <http://recherche.ign.fr/labos/cogit/cv.php?prenom=Bénédicte&nom=Bucher>, <http://www.eurecom.fr/~troncy/> ;
+    terms:creator <_:genid-nodeid-node1d3jq8du2x103>, <http://www.eurecom.fr/~atemezin/> ;
+    terms:description "Ontologie des primitives géométriques représentant la forme et la localisation d'entités topographiques."@fr, "Ontology of geometric primitives representing the shape and location of topographic features."@en ;
+    terms:issued "2013-06-11"^^xsd:date ;
+    terms:modified "2014-08-22"^^xsd:date, "2016-06-28"^^xsd:date, "2019-02-12"^^xsd:date ;
+    terms:publisher <http://fr.dbpedia.org/resource/Institut_national_de_l%27information_g%C3%A9ographique_et_foresti%C3%A8re> ;
+    terms:rights "Copyright 2019, IGN" ;
+    terms:title "Ontologie des primitives géométriques"@fr, "Ontology of geometric primitives"@en ;
+    vann:preferredNamespacePrefix "geom" ;
+    vann:preferredNamespaceUri <#> ;
+    a owl:Ontology ;
+    owl:priorVersion <geometrie/20160628.ttl> ;
+    owl:versionInfo "Version 1.2 - 2019-02-12" .
+
+:Curve
+    a owl:Class ;
+    rdfs:comment "Geometric primitive representing a curve. It is not instantiable. It's specializations are instantiated as an ordered list of points associated with an interpolation function."@en, "Primitive géométrique représentant une courbe. Elle n'est pas instanciable. Ses spécialisations sont instanciées sous la forme d'une liste ordonnée de points associée à une fonction d'interpolation."@fr ;
+    rdfs:label "Courbe"@fr, "Curve"@en ;
+    rdfs:subClassOf :Geometry, <http://www.opengis.net/ont/sf#Curve> .
+
+:Envelope
+    a owl:Class ;
+    rdfs:comment "Geometric primitive representing the minimal envelope of a geometry. An envelope is represented by two points: its maximum coordinate corner and its minimal coordinate corner."@en, "Primitive géométrique représentant l'enveloppe minimale d'une géométrie. Une enveloppe est représentée par deux points: son coin de coordonnées maximales et son coin de coordonnées minimales."@fr ;
+    rdfs:label "Envelope"@en, "Enveloppe"@fr ;
+    rdfs:subClassOf :Geometry ;
+    owl:equivalentClass [
+        a owl:Class ;
+        owl:intersectionOf ([
+                a owl:Restriction ;
+                owl:onClass :Point ;
+                owl:onProperty :lowerCorner ;
+                owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+            ]
+            [
+                a owl:Restriction ;
+                owl:onClass :Point ;
+                owl:onProperty :upperCorner ;
+                owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+            ]
+        )
+    ] .
+
+:Geometry
+    a owl:Class ;
+    rdfs:comment "Non-instantiable geometric primitive, root of the ontology of geometric primitives. Geometry is associated with a coordinate system and only one."@en, "Primitive géométrique non instanciable, racine de l'ontologie des primitives géométriques. Une géométrie est associée à un système de coordonnées et un seul."@fr ;
+    rdfs:label "Geometry"@en, "Géométrie"@fr ;
+    rdfs:subClassOf <http://geovocab.org/geometry#Geometry>, <http://www.opengis.net/ont/sf#Geometry> ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onClass <ignf#CoordinatesSystem> ;
+        owl:onProperty :crs ;
+        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+    ] .
+
+:GeometryCollection
+    a owl:Class ;
+    rdfs:comment "Collection comprenant un ou plusieurs objets géométriques, sans structure interne. Tous les éléments d'une collection de géométries sont définis dans le même système de coordonnées."@fr, "Collection comprising one or more geometric objects, without internal structure. All elements of a collection of geometries are defined in the same coordinate system."@en ;
+    rdfs:label "Collection de géométries"@fr, "Geometry collection"@en ;
+    rdfs:subClassOf :Geometry, <http://www.opengis.net/ont/sf#GeometryCollection> .
+
+:Line
+    a owl:Class ;
+    rdfs:comment "Geometric primitive specializing the primitive Polyline and consisting of only two points."@en, "Primitive géométrique spécialisant la primitive Polyligne et composée de seulement deux points."@fr ;
+    rdfs:label "Ligne"@fr, "Line"@en ;
+    rdfs:subClassOf :LineString, <http://www.opengis.net/ont/sf#Line> ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :points ;
+        owl:someValuesFrom [
+            a owl:Class ;
+            owl:intersectionOf (:PointsList
+                [
+                    a owl:Restriction ;
+                    owl:onProperty rdf:rest ;
+                    owl:someValuesFrom [
+                        a owl:Class ;
+                        owl:intersectionOf (:PointsList
+                            [
+                                a owl:Restriction ;
+                                owl:hasValue rdf:nil ;
+                                owl:onProperty rdf:rest
+                            ]
+                        )
+                    ]
+                ]
+            )
+        ]
+    ] .
+
+:LineString
+    a owl:Class ;
+    rdfs:comment "Geometric primitive specializing the abstract primitive curve. Its points are linked by a linear interpolation function. Each pair of successive points therefore constitutes a straight line segment."@en, "Primitive géométrique spécialisant la primitive abstraite curve. Ses points sont reliés par une fonction d'interpolation linéaire. Chaque paire de points successifs constitue donc un segment de ligne droite."@fr ;
+    rdfs:label "Line string"@en, "Polyligne"@fr ;
+    rdfs:subClassOf :Curve, <http://www.opengis.net/ont/sf#LineString>, [
+        a owl:Restriction ;
+        owl:onClass :PointsList ;
+        owl:onProperty :points ;
+        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+    ] ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :points ;
+        owl:someValuesFrom :PointsList
+    ] .
+
+:LinearRing
+    a owl:Class ;
+    rdfs:comment "Geometric primitive specializing the primitive Polyline. It is a simple, closed curve."@en, "Primitive géométrique spécialisant la primitive Polyligne. C'est une courbe simple et fermée."@fr ;
+    rdfs:label "Anneau"@fr, "Linear ring"@en ;
+    rdfs:subClassOf :LineString, <http://www.opengis.net/ont/sf#LinearRing> ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :points ;
+        owl:someValuesFrom [
+            a owl:Class ;
+            owl:intersectionOf (:PointsList
+                [
+                    a owl:Restriction ;
+                    owl:onClass :Point ;
+                    owl:onProperty :firstAndLast ;
+                    owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+                ]
+            )
+        ]
+    ] .
+
+:MultiCurve
+    a owl:Class ;
+    rdfs:comment "Collection d'objets géométriques de type Courbe. Cette primitive n'est pas instanciable: elle définit des propriétés pour ses sous-classes."@fr, "Collection of geometric objects of type Curve. This primitive is not instantiable: it defines properties for its subclasses."@en ;
+    rdfs:label "Multi curve"@en, "Multicourbe"@fr ;
+    rdfs:subClassOf :GeometryCollection, <http://www.opengis.net/ont/sf#MultiCurve> .
+
+:MultiLineString
+    a owl:Class ;
+    rdfs:comment "Collection d'objets géométriques de type Polyligne. C'est une MultiCourbe dont tous les éléments sont des Polylignes."@fr, "Collection of geometric objects of type Polyline. It's a MultiCurve whose elements are all Polylines."@en ;
+    rdfs:label "Multi line string"@en, "Multipolyligne"@fr ;
+    rdfs:subClassOf :MultiCurve, <http://www.opengis.net/ont/sf#MultiLineString> ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :lineStringMember ;
+        owl:someValuesFrom :LineString
+    ] .
+
+:MultiPoint
+    a owl:Class ;
+    rdfs:comment "Collection d'objets géométriques de type Point, non connectés et non ordonnés. Un multipoint est dit simple si tous ses points sont différents (i.e. ont des coordonnées différentes)."@fr, "Collection of Point geometric objects, unconnected and unordered. A multipoint is said to be simple if all its points are different (i.e. have different coordinates)."@en ;
+    rdfs:label "Multi point"@en, "Multipoint"@fr ;
+    rdfs:subClassOf :GeometryCollection, <http://www.opengis.net/ont/sf#MultiPoint> ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :pointMember ;
+        owl:someValuesFrom :Point
+    ] .
+
+:MultiPolygon
+    a owl:Class ;
+    rdfs:comment "Collection d'objets géométriques de type Polygone. C'est une MultiSurface dont tous les éléments sont des Polygones."@fr, "Collection of geometric objects of type Polygon. It is a MultiSurface whose elements are all Polygons."@en ;
+    rdfs:label "Multi polygon"@en, "Multipolygone"@fr ;
+    rdfs:subClassOf :MultiSurface, <http://www.opengis.net/ont/sf#MultiPolygon> ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :polygonMember ;
+        owl:someValuesFrom :Polygon
+    ] .
+
+:MultiSurface
+    a owl:Class ;
+    rdfs:comment "Collection d'objets géométriques de type Surface. Cette primitive n'est pas instanciable: elle définit des propriétés pour ses sous classes."@fr, "Collection of geometric objects of Surface type. This primitive is not instantiable: it defines properties for its subclasses."@en ;
+    rdfs:label "Multi surface"@en, "Multisurface"@fr ;
+    rdfs:subClassOf :GeometryCollection, <http://www.opengis.net/ont/sf#MultiSurface> .
+
+:Point
+    a owl:Class ;
+    rdfs:comment "Geometric primitive to represent a geographical position. This position is represented via X and Y coordinates expressed in a given coordinate system. If the coordinate system associated with the point allows it, the point may also have Z and M coordinates."@en, "Primitive géométrique permettant de représenter une position géographique. Cette position est représentée via des coordonnées X et Y exprimées dans un système de coordonnées donné. Si le système de coordonnées associé au point le permet, ce dernier peut également avoir des coordonnées Z et M."@fr ;
+    rdfs:label "Point"@en, "Point"@fr ;
+    rdfs:subClassOf :Geometry, <http://www.opengis.net/ont/sf#Point> ;
+    owl:equivalentClass [
+        a owl:Class ;
+        owl:intersectionOf ([
+                a owl:Restriction ;
+                owl:onDataRange xsd:double ;
+                owl:onProperty :coordX ;
+                owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+            ]
+            [
+                a owl:Restriction ;
+                owl:onDataRange xsd:double ;
+                owl:onProperty :coordY ;
+                owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+            ]
+            [
+                a owl:Restriction ;
+                owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                owl:onDataRange xsd:double ;
+                owl:onProperty :coordM
+            ]
+            [
+                a owl:Restriction ;
+                owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                owl:onDataRange xsd:double ;
+                owl:onProperty :coordZ
+            ]
+        )
+    ] .
+
+:PointsList
+    a owl:Class ;
+    rdfs:comment "List of points"@en, "Liste de points."@fr ;
+    rdfs:label "List of points"@en, "Liste de points"@fr ;
+    rdfs:subClassOf [
+        a owl:Class ;
+        owl:intersectionOf (rdf:List
+            [
+                a owl:Restriction ;
+                owl:allValuesFrom :Point ;
+                owl:onProperty rdf:first
+            ]
+            [
+                a owl:Restriction ;
+                owl:allValuesFrom :PointsList ;
+                owl:onProperty rdf:rest
+            ]
+        )
+    ] .
+
+:Polygon
+    a owl:Class ;
+    rdfs:comment "Geometric primitive specializing Surface primitive. It is a flat surface defined by an outer boundary and zero or more interior boundaries. Each inner boundary defines a hole in the polygon."@en, "Primitive géométrique spécialisant la primitive Surface. C'est une surface plane définie par une frontière extérieure et zéro ou plusieurs frontières intérieures. Chaque frontière intérieure définit un trou dans le polygone."@fr ;
+    rdfs:label "Polygon"@en, "Polygone"@fr ;
+    rdfs:subClassOf :Surface, <http://www.opengis.net/ont/sf#Polygon>, [
+        a owl:Class ;
+        owl:intersectionOf ([
+                a owl:Restriction ;
+                owl:onProperty :interior ;
+                owl:someValuesFrom :LinearRing
+            ]
+            [
+                a owl:Restriction ;
+                owl:onClass :LinearRing ;
+                owl:onProperty :exterior ;
+                owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
+            ]
+        )
+    ] ;
+    owl:equivalentClass [
+        a owl:Restriction ;
+        owl:onProperty :exterior ;
+        owl:someValuesFrom :LinearRing
+    ] .
+
+:Surface
+    a owl:Class ;
+    rdfs:comment "Geometric primitive locally representing a continuous image of a region of a plane. It is not instantiable. The outline of a surface is a set of closed curves corresponding to its boundaries."@en, "Primitive géométrique représentant localement une image continue d'une région d'un plan. Elle n'est pas instanciable. Le contour d'une surface est un ensemble de courbes fermées correspondant à ses frontières."@fr ;
+    rdfs:label "Surface"@en, "Surface"@fr ;
+    rdfs:subClassOf :Geometry, <http://www.opengis.net/ont/sf#Surface> .
+
+:boundary
+    a owl:ObjectProperty ;
+    rdfs:comment "Connect a polygon to a ring describing its boundary."@en, "Relie un polygone à un anneau décrivant sa frontière."@fr ;
+    rdfs:domain :Polygon ;
+    rdfs:label "boundary"@en, "frontière"@fr ;
+    rdfs:range :LinearRing .
+
+:centroid
+    a owl:ObjectProperty ;
+    rdfs:comment "Centroid of a geometry"@en, "Centroide d'une géométrie"@fr ;
+    rdfs:domain :Surface ;
+    rdfs:label "centroid"@en, "centroïde"@fr ;
+    rdfs:range :Point .
+
+:coordM
+    a owl:DatatypeProperty ;
+    rdfs:comment "L'interprétation des coordonnées d'un point dépend du système de coordonnées de référence associé à ce point. La coordonnées M d'un point représente une mesure."@fr, "The interpretation of the coordinates of a point depends on the reference coordinate system associated with that point. The coordinate M of a point represents a measurement."@en ;
+    rdfs:domain :Point ;
+    rdfs:label "m"@en, "m"@fr ;
+    rdfs:range xsd:double .
+
+:coordX
+    a owl:DatatypeProperty ;
+    rdfs:comment "L'interprétation des coordonnées d'un point dépend du système de coordonnées de référence associé à ce point. La propriété coordX désigne la coordonnée définie par rapport au premier axe du système de coordonnées."@fr, "The interpretation of the coordinates of a point depends on the reference coordinate system associated with that point. The coordX property is the coordinate defined relative to the first axis of the coordinate system."@en ;
+    rdfs:domain :Point ;
+    rdfs:label "x"@en, "x"@fr ;
+    rdfs:range xsd:double .
+
+:coordY
+    a owl:DatatypeProperty ;
+    rdfs:comment "L'interprétation des coordonnées d'un point dépend du système de coordonnées de référence associé à ce point. La propriété coordY désigne la coordonnée définie par rapport au deuxième axe du système de coordonnées."@fr, "The interpretation of the coordinates of a point depends on the reference coordinate system associated with that point. The coordY property is the coordinate defined relative to the second axis of the coordinate system."@en ;
+    rdfs:domain :Point ;
+    rdfs:label "y"@en, "y"@fr ;
+    rdfs:range xsd:double .
+
+:coordZ
+    a owl:DatatypeProperty ;
+    rdfs:comment "L'interprétation des coordonnées d'un point dépend du système de coordonnées de référence associé à ce point. La propriété coordZ désigne la coordonnée définie par rapport au troisième axe du système de coordonnées. La coordonnées Z d'un point représente typiquement, mais pas nécessairement, l'altitude ou la hauteur de ce point."@fr, "The interpretation of the coordinates of a point depends on the reference coordinate system associated with that point. The coordZ property is the coordinate defined relative to the third axis of the coordinate system. The Z coordinate of a point typically, but not necessarily, represents the altitude or height of that point."@en ;
+    rdfs:domain :Point ;
+    rdfs:label "z"@en, "z"@fr ;
+    rdfs:range xsd:double .
+
+:crs
+    a owl:ObjectProperty ;
+    rdfs:comment "Coordinate system associated with a geometric primitive."@en, "Système de coordonnées associé à une primitive géométrique."@fr ;
+    rdfs:domain :Geometry ;
+    rdfs:label "coordinate reference system"@en, "système de coordonnées"@fr ;
+    rdfs:range <ignf#CRS> .
+
+:envelope
+    a owl:ObjectProperty ;
+    rdfs:comment "Minimal enclosing rectangle of a geometry"@en, "Rectangle englobant minimal d'une géométrie"@fr ;
+    rdfs:domain :Geometry ;
+    rdfs:label "envelope"@en, "enveloppe"@fr ;
+    rdfs:range :Envelope .
+
+:exterior
+    a owl:ObjectProperty ;
+    rdfs:comment "Connect a polygon to a ring describing the outer contour of its surface."@en, "Relie un polygone à un anneau décrivant le contour extérieur de sa surface."@fr ;
+    rdfs:domain :Polygon ;
+    rdfs:label "exterior"@en, "extérieur"@fr ;
+    rdfs:range :LinearRing ;
+    rdfs:subPropertyOf :boundary .
+
+:firstAndLast
+    a owl:ObjectProperty ;
+    rdfs:comment "Désigne le point servant de point initial et de point final à une liste circulaire de points."@fr, "Refers to the point that serves as the start and end point for a circular list of points."@en ;
+    rdfs:domain :PointsList ;
+    rdfs:label "first and last"@en, "premier et dernier"@fr ;
+    rdfs:range :Point ;
+    rdfs:subPropertyOf rdf:first .
+
+:geometry
+    a owl:ObjectProperty ;
+    rdfs:comment "Geometric primitive associated with an object to represent its location and possibly its shape."@en, "Primitive géométrique associée à un objet pour représenter sa localisation et éventuellement sa forme."@fr ;
+    rdfs:label "a pour géométrie"@fr, "has geometry"@en ;
+    rdfs:range :Geometry .
+
+:interior
+    a owl:ObjectProperty ;
+    rdfs:comment "Connect a polygon to a ring describing a hole in its surface."@en, "Relie un polygone à un anneau décrivant un trou dans sa surface."@fr ;
+    rdfs:domain :Polygon ;
+    rdfs:label "interior"@en, "intérieur"@fr ;
+    rdfs:range :LinearRing ;
+    rdfs:subPropertyOf :boundary .
+
+:lineStringMember
+    a owl:ObjectProperty ;
+    rdfs:comment "Links a MultiLineString geometry to the linestrings that compose it."@en, "Relie une géométrie de type MultiLineString aux linestrings qui la composent."@fr ;
+    rdfs:domain :MultiLineString ;
+    rdfs:label "line string member"@en, "polyligne membre"@fr ;
+    rdfs:range :LineString .
+
+:lowerCorner
+    a owl:ObjectProperty ;
+    rdfs:comment "Coin d'une enveloppe correspondant aux valeurs de X et Y les moins élevées."@fr, "The corner of an envelope corresponding to the lowest values of X and Y."@en ;
+    rdfs:domain :Envelope ;
+    rdfs:label "coin inférieur"@fr, "lower corner"@en ;
+    rdfs:range :Point .
+
+:pointMember
+    a owl:ObjectProperty ;
+    rdfs:comment "Connect a MultiPoint geometry to the points that compose it."@en, "Relie une géométrie de type MultiPoint aux points qui la composent."@fr ;
+    rdfs:domain :MultiPoint ;
+    rdfs:label "point member"@en, "point membre"@fr ;
+    rdfs:range :Point .
+
+:points
+    a owl:ObjectProperty ;
+    rdfs:comment "La liste ordonnée des points consitutant une géométrie de type Curve."@fr, "The ordered list of points constituting a Curve geometry."@en ;
+    rdfs:domain :Curve ;
+    rdfs:label "points"@en, "points"@fr ;
+    rdfs:range :PointsList .
+
+:polygonMember
+    a owl:ObjectProperty ;
+    rdfs:comment "Connects a MultiPolygon geometry to the polygons that compose it."@en, "Relie une géométrie de type MultiPolygon aux polygones qui la composent."@fr ;
+    rdfs:domain :MultiPolygon ;
+    rdfs:label "polygon member"@en, "polygone membre"@fr ;
+    rdfs:range :Polygon .
+
+:upperCorner
+    a owl:ObjectProperty ;
+    rdfs:comment "Coin d'une enveloppe correspondant aux valeurs de X et Y les plus élevées."@fr, "Corner of an envelope corresponding to the highest values of X and Y."@en ;
+    rdfs:domain :Envelope ;
+    rdfs:label "coin supérieur"@fr, "upper corner"@en ;
+    rdfs:range :Point .
+
+<ignf#CRS>
+    a owl:Class .
+
+<ignf#CoordinatesSystem>
+    a owl:Class .
+
+<http://data.semanticweb.org/person/bernard-vatant>
+    a owl:NamedIndividual, foaf:Person .
+
+<http://geovocab.org/geometry#Geometry>
+    a owl:Class .
+
+terms:contributor
+    a owl:AnnotationProperty .
+
+terms:creator
+    a owl:AnnotationProperty .
+
+terms:description
+    a owl:AnnotationProperty .
+
+terms:issued
+    a owl:AnnotationProperty .
+
+terms:modified
+    a owl:AnnotationProperty .
+
+terms:publisher
+    a owl:AnnotationProperty .
+
+terms:rights
+    a owl:AnnotationProperty .
+
+terms:title
+    a owl:AnnotationProperty .
+
+vann:preferredNamespacePrefix
+    a owl:AnnotationProperty .
+
+vann:preferredNamespaceUri
+    a owl:AnnotationProperty .
+
+<http://recherche.ign.fr/labos/cogit/cv.php?prenom=Bénédicte&nom=Bucher>
+    a owl:NamedIndividual, foaf:Person .
+
+<http://www.eurecom.fr/~atemezin/>
+    a owl:NamedIndividual, foaf:Person .
+
+<http://www.eurecom.fr/~troncy/>
+    a owl:NamedIndividual, foaf:Person .
+
+<http://www.opengis.net/ont/sf#Curve>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#Geometry>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#GeometryCollection>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#Line>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#LineString>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#LinearRing>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#MultiCurve>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#MultiLineString>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#MultiPoint>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#MultiPolygon>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#MultiSurface>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#Point>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#Polygon>
+    a owl:Class .
+
+<http://www.opengis.net/ont/sf#Surface>
+    a owl:Class .
+
+rdf:List
+    a owl:Class .
+
+rdf:first
+    a owl:ObjectProperty .
+
+rdf:nil
+    a owl:NamedIndividual .
+
+rdf:rest
+    a owl:ObjectProperty .
+
+time:Instant
+    a owl:Class .
+
+time:Interval
+    a owl:Class .
+
+time:hasBeginning
+    a owl:AnnotationProperty .
+
+time:inXSDDateTimeStamp
+    a owl:AnnotationProperty .
+
+org:Membership
+    a owl:Class .
+
+org:Role
+    a owl:Class .
+
+org:hasMembership
+    a owl:AnnotationProperty .
+
+org:memberDuring
+    a owl:AnnotationProperty .
+
+org:organization
+    a owl:AnnotationProperty .
+
+org:role
+    a owl:AnnotationProperty .
+
+foaf:Person
+    a owl:Class .
+
+foaf:family_name
+    a owl:AnnotationProperty .
+
+foaf:firstName
+    a owl:AnnotationProperty .
+
+foaf:mbox
+    a owl:AnnotationProperty .
+
+foaf:name
+    a owl:AnnotationProperty .
+
+foaf:workInfoHomepage
+    a owl:AnnotationProperty .
+
+[]
+    a foaf:Person ;
+    org:hasMembership [
+        a org:Membership ;
+        org:memberDuring [
+            a time:Interval ;
+            time:hasBeginning [
+                a time:Instant ;
+                time:inXSDDateTimeStamp "2005-09-09"^^xsd:dateTimeStamp
+            ]
+        ] ;
+        org:organization <http://recherche.ign.fr/>, <http://www.ign.fr/> ;
+        org:role [
+            a org:Role ;
+            rdfs:label "Chargée de recherche"@fr, "Survey engineer and Scientist"@en
+        ]
+    ] ;
+    foaf:family_name "Abadie" ;
+    foaf:firstName "Nathalie" ;
+    foaf:mbox <mailto:nathalie-f.abadie@ign.fr> ;
+    foaf:name "Nathalie Abadie" ;
+    foaf:workInfoHomepage <http://recherche.ign.fr/labos/cogit/cv.php?prenom=Nathalie&nom=Abadie> .
+
+[]
+    a foaf:Person ;
+    org:hasMembership [
+        a org:Membership ;
+        org:memberDuring [
+            a time:Interval ;
+            time:hasBeginning [
+                a time:Instant ;
+                time:inXSDDateTimeStamp "2014-04-01T00:00:00+08:00"^^xsd:dateTimeStamp
+            ]
+        ] ;
+        org:organization <http://dbpedia.org/resource/JPL>, <https://www.jpl.nasa.gov> ;
+        org:role [
+            a org:Role ;
+            rdfs:label "Data Scientist"
+        ]
+    ] ;
+    foaf:family_name "McGibbney" ;
+    foaf:firstName "Lewis J" ;
+    foaf:mbox <mailto:lewis.j.mcgibbney@jpl.nasa.gov> ;
+    foaf:name "Lewis John McGibbney" .
+
diff --git a/fda-units-service/onto/def--op.nt b/fda-units-service/onto/def--op.nt
new file mode 100644
index 0000000000000000000000000000000000000000..4753d18ace631be46c82878917b06c16e13147ab
--- /dev/null
+++ b/fda-units-service/onto/def--op.nt
@@ -0,0 +1,190 @@
+<http://environment.data.gov.au/def/op#CAS-number> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+<http://environment.data.gov.au/def/op#CAS-number> <http://www.w3.org/2000/01/rdf-schema#label> "CAS Number"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#CAS-number> <http://www.w3.org/2000/01/rdf-schema#comment> "The identifier for a substance provided by the Chemical Abstracts Service"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/vocommons/voaf#Vocabulary> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/creator> <http://people.csiro.au/Jonathan-Yu> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/3.0/> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/creator> "Simon J D Cox"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2000/01/rdf-schema#comment> "This ontology was developed to enable publication of a vocabulary of water quality properties for the Bioregional Assessments and eReefs projects.\r\n\r\nThis ontology extends the QUDT schema. \r\n\r\nSome key classes and properties are linked to SKOS, so that instances of an observable-property vocabulary are implicitly also SKOS concepts, and may be accessed through general purpose vocabulary APIs based on SKOS. "^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/creator> "Jonathan Yu"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/vocab/vann/preferredNamespacePrefix> "op"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/publisher> "CSIRO"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2002/07/owl#imports> <http://qudt.org/1.1/schema/quantity> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/modified> "2016-02-27"^^<http://www.w3.org/2001/XMLSchema#date> .
+<http://environment.data.gov.au/def/op> <http://purl.org/vocab/vann/preferredNamespaceUri> "http://registry.it.csiro.au/ont/op#"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/description> "A general purpose ontology for observable properties. The ontology supports description of both qualitative and quantitative properties. The allowed scale or units of measure may be specified. A property may be linked to substances-or-taxa and to features or realms, if they play a role in the definition. "^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2004/02/skos/core#editorialNote> "fixed range of op:substance to op:Substance 2016-02-27"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/title> "Observable properties"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2004/02/skos/core#historyNote> "Improved documentation and labels 2016-02-27"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/creator> <http://people.csiro.au/Simon-Cox> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2002/07/owl#imports> <http://purl.org/vocab/vann/> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2002/07/owl#imports> <http://purl.org/vocommons/voaf> .
+<http://environment.data.gov.au/def/op> <http://purl.org/vocommons/voaf#extends> <http://qudt.org/schema/qudt> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/created> "2013"^^<http://www.w3.org/2001/XMLSchema#gYear> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2000/01/rdf-schema#label> "Observable-Properties ontology"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/creator> "Bruce A Simons"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op> <http://www.w3.org/2002/07/owl#imports> <http://purl.org/dc/elements/1.1/> .
+<http://environment.data.gov.au/def/op> <http://purl.org/dc/terms/rights> "Copyright \u00A9 2013-2016 CSIRO"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#CAS-number> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:genid2 .
+_:genid2 <http://www.w3.org/2001/XMLSchema#pattern> "[0-9]+\\-[0-9]+\\-[0-9]+"^^<http://www.w3.org/2001/XMLSchema#string> .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
+_:genid1 <http://www.w3.org/2002/07/owl#withRestrictions> _:genid3 .
+_:genid1 <http://www.w3.org/2002/07/owl#onDataType> <http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#CAS-number> <http://www.w3.org/2002/07/owl#equivalentClass> _:genid1 .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/2000/01/rdf-schema#label> "Quality Kind"@en .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/2000/01/rdf-schema#comment> "non-numeric PropertyKind"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://environment.data.gov.au/def/op#PropertyKind> .
+_:genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+<http://qudt.org/schema/qudt#generalization> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2004/02/skos/core#broader> .
+_:genid4 <http://www.w3.org/2002/07/owl#onProperty> <http://qudt.org/schema/qudt#generalization> .
+_:genid4 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://environment.data.gov.au/def/op#QualityKind> .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid4 .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://qudt.org/schema/qudt#QuantityKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#QualityKind> <http://www.w3.org/2002/07/owl#disjointWith> <http://qudt.org/schema/qudt#QuantityKind> .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/2000/01/rdf-schema#label> "Property kind"@en .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/2000/01/rdf-schema#comment> "Superclass of qudt:QuantityKind\nThis class accommodates all kinds of properties, including those (qualities) that are not described by quantities (numeric values). \r\nMay carry constraints, such as substance, objectOfInterest, featureOfInterest, matrix, hostOrganism, to refine the definition of a generalization. property is associated\r\ne.g. tree-height, nitrogen-concentration, concentration-of-zinc-in-the-liver-of-a-specific-fish-taxon-only-males-larger-than-20cm"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://qudt.org/schema/qudt#EnumeratedValue> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://qudt.org/schema/qudt#EnumeratedValue> .
+_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid5 <http://www.w3.org/2002/07/owl#onProperty> <http://qudt.org/schema/qudt#generalization> .
+_:genid5 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid5 .
+<http://environment.data.gov.au/def/op#PropertyKind> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#Substance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#Substance> <http://www.w3.org/2000/01/rdf-schema#label> "Substance"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#Substance> <http://www.w3.org/2000/01/rdf-schema#comment> "type of material\r\n\r\nTypically a chemical substance, with a formal designator from CAS or ChEBI or similar, but may include less formal grouplings or union types when needed"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#Substance> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://environment.data.gov.au/def/op#SubstanceOrTaxon> .
+<http://environment.data.gov.au/def/op#Substance> <http://www.w3.org/2004/02/skos/core#prefLabel> "Substance"@en .
+<http://environment.data.gov.au/def/op#Substance> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/2000/01/rdf-schema#label> "Substance or Taxon"@en .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/2000/01/rdf-schema#comment> "Class of stuff and things, individuals of which identify a class of stuff and things that make observed properties concrete."^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://qudt.org/schema/qudt#EnumeratedValue> .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/2004/02/skos/core#prefLabel> "Substance or Taxon"@en .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#SubstanceOrTaxon> <http://www.w3.org/2004/02/skos/core#altLabel> "Species"@en .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/2000/01/rdf-schema#label> "Scaled Quantity Kind"@en .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/2000/01/rdf-schema#comment> "Scaled quantity kind has one or more unit properties, which indicate valid units of measure for this quantity kind. \r\n\r\nIt is likely that this class is equivalent to qudt:QuantityKind, but has been declared independently for governance of the attached qudt:unit property"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://qudt.org/schema/qudt#QuantityKind> .
+_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid6 <http://www.w3.org/2002/07/owl#onProperty> <http://qudt.org/schema/qudt#unit> .
+_:genid6 <http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid6 .
+_:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid7 <http://www.w3.org/2002/07/owl#onProperty> <http://qudt.org/schema/qudt#unit> .
+<http://qudt.org/schema/qudt#Unit> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2004/02/skos/core#Concept> .
+_:genid7 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://qudt.org/schema/qudt#Unit> .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid7 .
+<http://environment.data.gov.au/def/op#ScaledQuantityKind> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#Taxon> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://environment.data.gov.au/def/op#Taxon> <http://www.w3.org/2000/01/rdf-schema#label> "taxon"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#Taxon> <http://www.w3.org/2000/01/rdf-schema#comment> "type of organism, any rank\r\n\r\nPreferably with a formally recognised designiation such as a latin binomial, or LSID, but may be a less formal grouping when needed."^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#Taxon> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://environment.data.gov.au/def/op#SubstanceOrTaxon> .
+<http://environment.data.gov.au/def/op#Taxon> <http://www.w3.org/2004/02/skos/core#prefLabel> "taxon"@en .
+<http://environment.data.gov.au/def/op#Taxon> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2000/01/rdf-schema#label> "object of interest"@en .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2000/01/rdf-schema#range> <http://environment.data.gov.au/def/op#SubstanceOrTaxon> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2000/01/rdf-schema#comment> "In an observable property definition, this is the substance or taxon whose count, concentration, presence, or other similar property, is of interest. "^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#objectOfInterest> <http://www.w3.org/2002/07/owl#equivalentProperty> <http://environment.data.gov.au/def/op#substance> .
+<http://environment.data.gov.au/def/op#statisticalMeasure> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#statisticalMeasure> <http://www.w3.org/2000/01/rdf-schema#label> "Statistical Measure"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#statisticalMeasure> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#statisticalMeasure> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/2000/01/rdf-schema#label> "host organism"@en .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/2000/01/rdf-schema#range> <http://environment.data.gov.au/def/op#Taxon> .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/2000/01/rdf-schema#comment> "In an observable property definition, the host-organism indicates the host taxon, optionally constrained by sex, age, size etc, for an observable property."^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#hostOrganism> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/2000/01/rdf-schema#label> "constraint"@en .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/2000/01/rdf-schema#comment> "Constraint that refines the definition of an observable property definition. This may include concerns such as realm of application, substance or taxon involved, host organism, matrix, applicable units or vocabulary. "^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#constraint> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#propertyKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#propertyKind> <http://www.w3.org/2000/01/rdf-schema#label> "property kind"@en .
+<http://environment.data.gov.au/def/op#propertyKind> <http://www.w3.org/2000/01/rdf-schema#range> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#propertyKind> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#applicableVocabulary> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#applicableVocabulary> <http://www.w3.org/2000/01/rdf-schema#label> "applicable vocabulary"@en .
+<http://environment.data.gov.au/def/op#applicableVocabulary> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#QualityKind> .
+<http://environment.data.gov.au/def/op#applicableVocabulary> <http://www.w3.org/2000/01/rdf-schema#comment> "In an observable property definition, the applicable vocabulary is the set of terms or concepts from which a nominal value must be drawn. \r\n\r\nCompare with QUDT2 'applicable unit'"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#applicableVocabulary> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#qualityKind> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#qualityKind> <http://www.w3.org/2000/01/rdf-schema#label> "quality kind"@en .
+<http://environment.data.gov.au/def/op#qualityKind> <http://www.w3.org/2000/01/rdf-schema#range> <http://environment.data.gov.au/def/op#QualityKind> .
+<http://environment.data.gov.au/def/op#qualityKind> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#propertyKind> .
+<http://environment.data.gov.au/def/op#qualityKind> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://qudt.org/schema/qudt#quantityKind> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#propertyKind> .
+<http://environment.data.gov.au/def/op#qualityKind> <http://www.w3.org/2002/07/owl#propertyDisjointWith> <http://qudt.org/schema/qudt#quantityKind> .
+<http://environment.data.gov.au/def/op#procedure> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#procedure> <http://www.w3.org/2000/01/rdf-schema#label> "procedure"@en .
+<http://environment.data.gov.au/def/op#procedure> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#procedure> <http://www.w3.org/2000/01/rdf-schema#comment> "The procedure is a description of the procedure, algorithm, protocol or sensor system used in making observation or estimate of property value"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#procedure> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#procedure> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2000/01/rdf-schema#label> "object of interest"@en .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2000/01/rdf-schema#range> <http://environment.data.gov.au/def/op#Substance> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2000/01/rdf-schema#comment> "In an observable property definition, this is the substance whose concentration, presence, or similar is of interest. "^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#substance> <http://www.w3.org/2002/07/owl#equivalentProperty> <http://environment.data.gov.au/def/op#objectOfInterest> .
+<http://environment.data.gov.au/def/op#matrix> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#matrix> <http://www.w3.org/2000/01/rdf-schema#label> "matrix"@en .
+<http://environment.data.gov.au/def/op#matrix> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#matrix> <http://www.w3.org/2000/01/rdf-schema#comment> "In an observable property definition, the matrix is the material context (container feature or medium) for an observable property."^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#matrix> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#matrix> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#featureOfInterest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://environment.data.gov.au/def/op#featureOfInterest> <http://www.w3.org/2000/01/rdf-schema#label> "feature of interest"@en .
+<http://environment.data.gov.au/def/op#featureOfInterest> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#PropertyKind> .
+<http://environment.data.gov.au/def/op#featureOfInterest> <http://www.w3.org/2000/01/rdf-schema#comment> "In an observable property definition, the feature-of-interest constrains the feature realm that the property is associated with."^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#featureOfInterest> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://environment.data.gov.au/def/op#constraint> .
+<http://environment.data.gov.au/def/op#featureOfInterest> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/op#cas-number> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<http://environment.data.gov.au/def/op#cas-number> <http://www.w3.org/2000/01/rdf-schema#label> "CAS Number"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/op#cas-number> <http://www.w3.org/2000/01/rdf-schema#range> <http://environment.data.gov.au/def/op#CAS-number> .
+<http://environment.data.gov.au/def/op#cas-number> <http://www.w3.org/2000/01/rdf-schema#domain> <http://environment.data.gov.au/def/op#Substance> .
+<http://environment.data.gov.au/def/op#cas-number> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2004/02/skos/core#notation> .
+<http://environment.data.gov.au/def/op#cas-number> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://environment.data.gov.au/def/op> .
+<http://qudt.org/schema/qudt#specialization> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2004/02/skos/core#narrower> .
+<http://environment.data.gov.au/def/_op> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/linked-data/registry#RegisterItem> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#notation> "op" .
+<http://environment.data.gov.au/def/_op> <http://purl.org/dc/terms/description> "A general purpose ontology for observable properties. The ontology supports description of both qualitative and quantitative properties. The allowed scale or units of measure may be specified. A property may be linked to substances-or-taxa and to features or realms, if they play a role in the definition. "^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/dc/terms/dateAccepted> "2016-02-15T01:05:23.073Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#itemClass> <http://www.w3.org/2002/07/owl#Ontology> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/dc/terms/dateAccepted> "2016-02-16T04:16:54.215Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
+_:genid8 <http://purl.org/linked-data/registry#sourceGraph> <http://environment.data.gov.au/def/_op:4#graph> .
+_:genid8 <http://purl.org/linked-data/registry#entity> <http://environment.data.gov.au/def/op> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#definition> _:genid8 .
+<http://environment.data.gov.au/def/_op> <http://purl.org/dc/terms/modified> "2016-02-28T06:26:54.954Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#itemClass> <http://purl.org/vocommons/voaf#Vocabulary> .
+<http://environment.data.gov.au/def/_op> <http://www.w3.org/2002/07/owl#versionInfo> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
+_:genid9 <http://xmlns.com/foaf/0.1/accountName> "simon.cox@csiro.au" .
+_:genid9 <http://xmlns.com/foaf/0.1/name> "Simon Cox (email)" .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#submitter> _:genid9 .
+<http://environment.data.gov.au/def/_op> <http://purl.org/dc/terms/dateSubmitted> "2016-02-15T01:05:11.079Z"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
+<http://environment.data.gov.au/def/_op> <http://www.w3.org/2000/01/rdf-schema#label> "Observable-Properties ontology"^^<http://www.w3.org/2001/XMLSchema#string> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#status> <http://purl.org/linked-data/registry#statusStable> .
+<http://environment.data.gov.au/def/_op> <http://purl.org/linked-data/registry#register> <http://environment.data.gov.au/def> .
diff --git a/fda-units-service/onto/iaq.nt b/fda-units-service/onto/iaq.nt
new file mode 100644
index 0000000000000000000000000000000000000000..82ff3e72d561752ece544a251d9c1dca44cedb0d
--- /dev/null
+++ b/fda-units-service/onto/iaq.nt
@@ -0,0 +1,561 @@
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/2002/07/owl#imports> <http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire/ontology.ttl> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/2002/07/owl#imports> <https://w3id.org/bot#> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/2002/07/owl#imports> <https://w3id.org/digitalconstruction/Information> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/elements/1.1/creator> "Kostas Tsatsakis (kostas@suite5.eu)" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/elements/1.1/creator> "Spiros Kousouris (spiros@suite5.eu)" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/terms/abstract> "Indoor Air Quality ontology provides an operational framework for the orchestration of heterogeneous (environmental-, health-, user profile- related) data, in order to support user-oriented behavioral profile that incorporates also health related parameters." .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/terms/contributor> "Seppo Törmä" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/terms/description> "The IAQ Ontology  formalise the model to be considered for IAQ modeling in the building environment." .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/4.0/> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/dc/terms/title> "Digital Construction - IndoorAirQuality" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/vocab/vann/preferredNamespacePrefix> "diciaq" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/digitalconstruction/IndoorAirQuality" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/2000/01/rdf-schema#comment> "The IAQ ontology was created by SUITE5 in the BIM4EEB project (GA 820660), supported through the EU Horizon 2020 Research and Innovation Programme under the topic Building information modelling adapted to efficient renovation (RIA). " .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/2000/01/rdf-schema#label> "Digital construction - IndoorAirQuality" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://w3id.org/digitalconstruction> .
+# 
+# 
+# #################################################################
+# #
+# #    Annotation properties
+# #
+# #################################################################
+# 
+# 
+# http://purl.org/dc/elements/1.1/creator
+<http://purl.org/dc/elements/1.1/creator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
+# 
+# http://purl.org/dc/elements/1.1/rights
+<http://purl.org/dc/elements/1.1/rights> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
+# 
+# 
+# 
+# #################################################################
+# #
+# #    Datatypes
+# #
+# #################################################################
+# 
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Allergy
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Allergy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#CO
+<https://w3id.org/digitalconstruction/IndoorAirQuality#CO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#CO2
+<https://w3id.org/digitalconstruction/IndoorAirQuality#CO2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Disease
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Disease> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#ISO450001
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ISO450001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#NOx
+<https://w3id.org/digitalconstruction/IndoorAirQuality#NOx> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#PM10
+<https://w3id.org/digitalconstruction/IndoorAirQuality#PM10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#PM25
+<https://w3id.org/digitalconstruction/IndoorAirQuality#PM25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#WHO
+<https://w3id.org/digitalconstruction/IndoorAirQuality#WHO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#tVOC
+<https://w3id.org/digitalconstruction/IndoorAirQuality#tVOC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
+# 
+# 
+# 
+# #################################################################
+# #
+# #    Object Properties
+# #
+# #################################################################
+# 
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasActivities
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasActivities> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasActivities> <http://www.w3.org/2000/01/rdf-schema#comment> "relationship of a Zone with the associated activities" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirQualityStation
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirQualityStation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirQualityStation> <http://www.w3.org/2000/01/rdf-schema#comment> "Air Quality Sstation is placed at specific zone/location" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasFunction
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasFunction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasFunction> <http://www.w3.org/2000/01/rdf-schema#comment> "relationship of an IAQ performance with a specific recommendation" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthImpact
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthImpact> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthImpact> <http://www.w3.org/2000/01/rdf-schema#comment> "the condition has a health impact" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthProblem
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthProblem> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthProblem> <http://www.w3.org/2000/01/rdf-schema#comment> "relationship of a situation with a specific health issue" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasImpact
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasImpact> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasImpact> <http://www.w3.org/2000/01/rdf-schema#comment> "An IAQ condition is associated with a health condition" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxAspects
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxAspects> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxAspects> <http://www.w3.org/2000/01/rdf-schema#comment> "the regulation specifies the boundaries for IAQ parameters" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasObservations
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasObservations> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasObservations> <http://www.w3.org/2000/01/rdf-schema#comment> "A class has observations over specific metrics" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasOccupants
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasOccupants> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasOccupants> <http://www.w3.org/2000/01/rdf-schema#comment> "A building zone is assigned with specific occupants" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasProcedure
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasProcedure> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasProcedure> <http://www.w3.org/2000/01/rdf-schema#comment> "relationshipf of an IAQ KPI with a specific calculation procedure" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasSource
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasSource> <http://www.w3.org/2000/01/rdf-schema#comment> "IAQ has a specific source" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasZoneReference
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasZoneReference> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasZoneReference> <http://www.w3.org/2000/01/rdf-schema#comment> "relationship of a regulation with a specific buidling/zone" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#isDefined
+<https://w3id.org/digitalconstruction/IndoorAirQuality#isDefined> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#isDefined> <http://www.w3.org/2000/01/rdf-schema#comment> "the key IAQ metrics/parameters are specified in the regulation" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#isRelated
+<https://w3id.org/digitalconstruction/IndoorAirQuality#isRelated> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#isRelated> <http://www.w3.org/2000/01/rdf-schema#comment> "relationship of an IAQ condition with an activity" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#relatedToPerformance
+<https://w3id.org/digitalconstruction/IndoorAirQuality#relatedToPerformance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#relatedToPerformance> <http://www.w3.org/2000/01/rdf-schema#comment> "the condition has IAQ Performance (KPI values)" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#relatestoConditions
+<https://w3id.org/digitalconstruction/IndoorAirQuality#relatestoConditions> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+# 
+# 
+# 
+# #################################################################
+# #
+# #    Data properties
+# #
+# #################################################################
+# 
+# 
+# http://purl.org/dc/elements/1.1/date
+<http://purl.org/dc/elements/1.1/date> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+# 
+# http://purl.org/dc/elements/1.1/title
+<http://purl.org/dc/elements/1.1/title> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#classificationParameters
+<https://w3id.org/digitalconstruction/IndoorAirQuality#classificationParameters> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirExchangeRate
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirExchangeRate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirExchangeRate> <http://www.w3.org/2000/01/rdf-schema#comment> "The air exchange rate for a specific building zone" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> <http://www.w3.org/2000/01/rdf-schema#comment> "A class has a specific description" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasEffectiveDate
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasEffectiveDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasEffectiveDate> <http://www.w3.org/2000/01/rdf-schema#comment> "A  regulation has an effective date" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasEndTime
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasEndTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasEndTime> <http://www.w3.org/2000/01/rdf-schema#comment> "End time of a process" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#CO> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#CO2> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#NOx> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#PM10> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#PM25> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#tVOC> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> <http://www.w3.org/2000/01/rdf-schema#comment> "IAQ types of interest" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxConstraint
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxConstraint> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxConstraint> <http://www.w3.org/2000/01/rdf-schema#comment> "The value has a max constraint" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasName
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasName> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasName> <http://www.w3.org/2000/01/rdf-schema#comment> "the class has a name" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasPublisher
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasPublisher> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasPublisher> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#ISO450001> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasPublisher> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#WHO> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasPublisher> <http://www.w3.org/2000/01/rdf-schema#comment> "the regulation has an authority responsible for" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasSourceRate
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasSourceRate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasSourceRate> <http://www.w3.org/2000/01/rdf-schema#comment> "The resource rate of a specific IAQ source" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasStartTime
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasStartTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasStartTime> <http://www.w3.org/2000/01/rdf-schema#comment> "The class has a start time" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#hasType
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#Allergy> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasType> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/digitalconstruction/IndoorAirQuality#Disease> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#hasType> <http://www.w3.org/2000/01/rdf-schema#comment> "A health issue has a specific type" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#probabilisticParameters
+<https://w3id.org/digitalconstruction/IndoorAirQuality#probabilisticParameters> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#timeStamp
+<https://w3id.org/digitalconstruction/IndoorAirQuality#timeStamp> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#timeStamp> <http://www.w3.org/2000/01/rdf-schema#comment> "A specific timestamp for an observation" .
+# 
+# 
+# 
+# #################################################################
+# #
+# #    Classes
+# #
+# #################################################################
+# 
+# 
+# http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid1 .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid1 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasSource> .
+_:genid1 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/bot#Element> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid2 .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid2 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#isRelated> .
+_:genid2 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid3 .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid3 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasSourceRate> .
+_:genid3 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#float> .
+# 
+# http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid4 .
+_:genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid4 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasImpact> .
+_:genid4 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid5 .
+_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid5 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#isDefined> .
+_:genid5 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid6 .
+_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid6 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid6 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid7 .
+_:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid7 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasIAQType> .
+_:genid7 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+# 
+# http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualitySensor
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualitySensor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualitySensor> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid8 .
+_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid8 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid8 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualitySensor> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid9 .
+_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid9 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasName> .
+_:genid9 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+# 
+# http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityStation
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityStation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityStation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid10 .
+_:genid10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid10 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid10 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityStation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid11 .
+_:genid11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid11 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid11 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+# 
+# http://www.w3.org/ns/sosa/ObservableProperty
+<http://www.w3.org/ns/sosa/ObservableProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+# 
+# http://www.w3.org/ns/sosa/Procedure
+<http://www.w3.org/ns/sosa/Procedure> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+# 
+# https://w3id.org/bot#Element
+<https://w3id.org/bot#Element> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid12 .
+_:genid12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid12 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid12 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/bot#Element> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid13 .
+_:genid13 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid13 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid13 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/bot#Element> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid14 .
+_:genid14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid14 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasSourceRate> .
+_:genid14 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#float> .
+# 
+# https://w3id.org/bot#Zone
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid15 .
+_:genid15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid15 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/bot#hasElement> .
+_:genid15 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/bot#Element> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid16 .
+_:genid16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid16 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasActivities> .
+_:genid16 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid17 .
+_:genid17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid17 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirQualityStation> .
+_:genid17 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityStation> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid18 .
+_:genid18 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid18 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasOccupants> .
+_:genid18 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://xmlns.com/foaf/0.1/Person> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid19 .
+_:genid19 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid19 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#relatedToPerformance> .
+_:genid19 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid20 .
+_:genid20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid20 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasAirExchangeRate> .
+_:genid20 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#float> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid21 .
+_:genid21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid21 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid21 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/bot#Zone> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid22 .
+_:genid22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid22 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasName> .
+_:genid22 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Activity
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid23 .
+_:genid23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid23 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/bot#hasElement> .
+_:genid23 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/bot#Element> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid24 .
+_:genid24 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid24 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#relatedToPerformance> .
+_:genid24 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid25 .
+_:genid25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid25 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid25 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid26 .
+_:genid26 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid26 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasEndTime> .
+_:genid26 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://www.w3.org/2001/XMLSchema#dateTimeStamp> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid27 .
+_:genid27 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid27 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasStartTime> .
+_:genid27 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://www.w3.org/2001/XMLSchema#dateTimeStamp> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#comment> "An entity representing occupants physical exercise as a main entity of the Occupants Behaviour Ontology" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> <http://www.w3.org/2000/01/rdf-schema#label> "Building related Activity" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/sosa/ObservableProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid28 .
+_:genid28 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid28 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxAspects> .
+_:genid28 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid29 .
+_:genid29 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid29 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasProcedure> .
+_:genid29 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/ns/sosa/Procedure> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid30 .
+_:genid30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid30 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid30 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid31 .
+_:genid31 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid31 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasMaxConstraint> .
+_:genid31 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://www.w3.org/2001/XMLSchema#float> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#comment> "An entity for representing the index levels that correspond to specific air pollutant measurements' ranges." .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> <http://www.w3.org/2000/01/rdf-schema#label> "IAQ Index" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Classification
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Classification> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Classification> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Classification> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid32 .
+_:genid32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid32 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#classificationParameters> .
+_:genid32 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2002/07/owl#rational> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Classification> <http://www.w3.org/2000/01/rdf-schema#comment> "A classification analysis model for the extraction fo IAQ parameters" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/sosa/Procedure> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid33 .
+_:genid33 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid33 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasObservations> .
+_:genid33 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid34 .
+_:genid34 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid34 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/date> .
+_:genid34 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#dateTime> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid35 .
+_:genid35 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid35 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid35 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid36 .
+_:genid36 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid36 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid36 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#comment> "A data  driven approach for the extraction of IAQ KPIs based on existing data" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Device
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Device> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Device> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/bot#Element> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Device> <http://www.w3.org/2000/01/rdf-schema#comment> "Bulding Device and equipment" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.obolibrary.org/obo/BFO_0000016> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid37 .
+_:genid37 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid37 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#relatestoConditions> .
+_:genid37 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityProperty> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid38 .
+_:genid38 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid38 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid38 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid39 .
+_:genid39 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid39 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid39 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid40 .
+_:genid40 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid40 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasType> .
+_:genid40 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#comment> "An entity for representing possible health problems the users may specify in their user profile." .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> <http://www.w3.org/2000/01/rdf-schema#label> "HealthProblem" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.obolibrary.org/obo/BFO_0000015> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/digitalconstruction/IndoorAirQuality#Activity> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> <http://www.w3.org/2000/01/rdf-schema#comment> "Any activity performed indoors." .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IndoorActivity> <http://www.w3.org/2000/01/rdf-schema#label> "IndoorActivity" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Material
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Material> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Material> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/bot#Element> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Material> <http://www.w3.org/2000/01/rdf-schema#comment> "Building Material" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/sosa/Procedure> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid41 .
+_:genid41 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid41 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasObservations> .
+_:genid41 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#AirQualityObservation> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid42 .
+_:genid42 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid42 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/date> .
+_:genid42 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#dateTime> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid43 .
+_:genid43 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid43 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid43 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid44 .
+_:genid44 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid44 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid44 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#ModelDrivenMethod> <http://www.w3.org/2000/01/rdf-schema#comment> "A model driven approach for the extraction of IAQ KPIs based on existing metrics" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Probabilistic
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Probabilistic> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Probabilistic> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/digitalconstruction/IndoorAirQuality#DataDrivenMethod> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Probabilistic> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid45 .
+_:genid45 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid45 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#probabilisticParameters> .
+_:genid45 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2002/07/owl#rational> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Probabilistic> <http://www.w3.org/2000/01/rdf-schema#comment> "A probablistic analysis model for the extraction fo IAQ parameters" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#RecommendMessages
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RecommendMessages> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RecommendMessages> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/digitalconstruction/Information#Recommendation> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RecommendMessages> <http://www.w3.org/2000/01/rdf-schema#comment> "Personalised recommendation for provision, a direct/indirect user may be provided upon request with one or more message, relevant to his/her preferences." .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RecommendMessages> <http://www.w3.org/2000/01/rdf-schema#label> "IndoorAirQualityRecommendation" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/digitalconstruction/Information#RegulatoryOrder> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid46 .
+_:genid46 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid46 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasHealthImpact> .
+_:genid46 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/digitalconstruction/IndoorAirQuality#HealthProblem> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid47 .
+_:genid47 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid47 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasZoneReference> .
+_:genid47 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/bot#Zone> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid48 .
+_:genid48 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid48 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/elements/1.1/title> .
+_:genid48 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid49 .
+_:genid49 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid49 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasDescription> .
+_:genid49 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid50 .
+_:genid50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid50 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasEffectiveDate> .
+_:genid50 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#dateTime> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:genid51 .
+_:genid51 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
+_:genid51 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/digitalconstruction/IndoorAirQuality#hasPublisher> .
+_:genid51 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2001/XMLSchema#string> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#comment> "Regulation and Safety IAQ constrains as set by the respective regulation of each country or at international level" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#RegulationProperty> <http://www.w3.org/2000/01/rdf-schema#label> "IndoorAirQualityRegulation" .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#TipOTheDay
+<https://w3id.org/digitalconstruction/IndoorAirQuality#TipOTheDay> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#TipOTheDay> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/digitalconstruction/Information#Recommendation> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#TipOTheDay> <http://www.w3.org/2000/01/rdf-schema#comment> "A generic tip for the conditions in building premises" .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#TipOTheDay> <http://www.w3.org/2000/01/rdf-schema#label> "IndoorAirQualityTipOfTheDay" .
+# 
+# 
+# 
+# #################################################################
+# #
+# #    Individuals
+# #
+# #################################################################
+# 
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#AQI
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AQI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#AQI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#BILGA
+<https://w3id.org/digitalconstruction/IndoorAirQuality#BILGA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Confinement_Index
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Confinement_Index> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Confinement_Index> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#GAPI
+<https://w3id.org/digitalconstruction/IndoorAirQuality#GAPI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#GAPI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#IAPI
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IAPI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#IAPI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+# 
+# https://w3id.org/digitalconstruction/IndoorAirQuality#Pollution_Index
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Pollution_Index> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
+<https://w3id.org/digitalconstruction/IndoorAirQuality#Pollution_Index> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/digitalconstruction/IndoorAirQuality#AirQualityPerformance> .
+# 
+# Generated by the OWL API (version 5.1.11) https://github.com/owlcs/owlapi/
diff --git a/fda-units-service/us-yml/getconcept.yml b/fda-units-service/us-yml/getconcept.yml
new file mode 100644
index 0000000000000000000000000000000000000000..6def46d690bc053059242fe57259363bd2659bde
--- /dev/null
+++ b/fda-units-service/us-yml/getconcept.yml
@@ -0,0 +1,17 @@
+summary: "Get a list of concepts"
+description: "This is a simple API for returning a list of concepts contained in various ontologies."
+consumes:
+- "application/json"
+produces:
+- "application/json"
+parameters:
+- in: "path"
+  type: "string"
+  name: "cname"
+  description: "Enter a table name or attribute name.´"
+  required: true
+responses:
+  200: 
+    description: "OK"
+  405:
+    description: "Invalid input"