{
  "$id": "https://opcua-modeler.doc.sterfive.com/nodeset2.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema#",
  "title": "NodeSet2 Schema",
  "description": "a schema for human friendly nodeset2",
  "type": "object",
  "required": [
    "namespaceUri"
  ],
  "additionalProperties": false,
  "properties": {
    "documentation": {
      "type": "object",
      "properties": {
        "header": {
          "description": "arbitrary markdown or pandoc header that will be added on top of the document page. for instance\n     \n     header:|\n     -----------------------------\n     $author: $AUTHOR$\n     title:  My Grinder Model\n     subtitle: A wonderful model of my OPCUA based coffee grinder\n     logo1: ./image1.png\n     copyright: copyright joe doe (c)\n     -----------------------------\nor \n       header: \n         title: My Grinder Model\n         logo1: ./image2.png\n         namespaceUri: ${namespaceUri}\n         publicationDate: ${publicationDate}\n\n\nthe following inline tags ${namespaceUri} ${version} ${publicationDate} ${namespaces} ${author} will be replaced by the corresponding value \n",
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "object"
            }
          ]
        },
        "author": {
          "description": "optional author or list of authors\n",
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "array",
              "minItems": 1,
              "items": true
            }
          ]
        },
        "title": {
          "description": "a short string that describe the model",
          "type": "string"
        },
        "description": {
          "description": "a markdown string that contains the description of the model",
          "type": "string"
        },
        "options": {
          "type": "object",
          "additionalProperties": false,
          "description": "various options that control the generation of the markdown files.",
          "properties": {
            "diagrams": {
              "type": "object",
              "additionalProperties": false,
              "description": "options that control the generation of the OPCUA Diagrams.",
              "properties": {
                "showSubType": {
                  "description": "set to true, so a Type OPCUA hierachy diagram also show derived (subtype) Types.",
                  "type": "boolean"
                },
                "imageSuffix": {
                  "type": "string",
                  "description": "specify the text that will be injected after the markdown image link of the OPCUA Diagram.\nThis could be useful to control the size of the image in the product documentation\n\ndefault value: \"\"\n\nexample\n\nsuffix: \"{ width: 66%}\"\n"
                }
              }
            }
          }
        }
      },
      "additionalProperties": false
    },
    "profile": {
      "type": "string",
      "enum": [
        "self-contained"
      ],
      "description": "Declares the self-contained profile: the file is a YAML stream whose first document is this model and whose following documents carry the symbol table and the dependency declarations (see specification/self-contained-profile.md).\n"
    },
    "namespaceUri": {
      "description": "The namespace URI of the Namespace described in this document.\n\nThe format should be a url address which contains the domain of your company and the topic of the model.\n\nFor instance : \n\n    http://acme.com/UA/TemperatureSensor/\n",
      "type": "string"
    },
    "version": {
      "type": "string",
      "default": "1.0.0",
      "description": "the version of this namespace e.g 1.0.0.\n"
    },
    "publicationDate": {
      "type": "string",
      "format": "iso-date-time",
      "default": "2020-01-01T00:00:00.000Z",
      "description": "the publication date of this OPCUA Nodeset2 model in RFC3399 format YY-MM-DDTHH:MM:SSZ\n"
    },
    "namespaces": {
      "description": "contains a list of external namespaces that this Namespace is referring to.\nNote that the order is important. Make sure that dependant namespaces are loaded first.\nFor instance (`adi` depends on `di` so `di` must be loaded before `adi`).\n\nexample:\n\n      - di\n      - adi\n",
      "type": "array",
      "uniqueItems": true,
      "items": {
        "oneOf": [
          {
            "$ref": "#/$defs/NamespaceImportShort",
            "description": "the namespace alias amongst the predefined values [ di, adi, cnc, vision, machinery etc ...]"
          }
        ]
      }
    },
    "imports": {
      "type": "array",
      "description": "nodeset models this document imports - each declares the model's\nnamespace `uri`, the `alias` its nodes are referenced by, and the\n`filename` of the NodeSet2.xml, relative to this file.\n\n@example:\n\n     - uri: https://acme.com/UA/TemperatureSensor/\n       alias: ts\n       filename: ../temperature_sensor.nodeset2.xml\n",
      "uniqueItems": true,
      "items": {
        "oneOf": [
          {
            "$ref": "#/$defs/NamespaceImport",
            "description": "the complete definition of a namespace import"
          }
        ]
      }
    },
    "outputBinaryTypeDictionary": {
      "description": "By default the generated model will conform to the OPC UA 1.04.\nThis flag, when set to true, indicates that the model will be compatible with OPC UA 1.03.\nThe generator will produce the old TypeDictionary Entry ( from 1.03) which are no longer needed in 1.04.\n",
      "type": "boolean",
      "default": false
    },
    "lint": {
      "description": "Control conformance-rule severity per document. This block is the\nauthoritative source of suppressions and severity overrides that must\nbe co-versioned with this YAML model — typically used for vendor /\ncompanion-spec nodesets that intentionally violate a Sterfive\nconformance rule. For everyday muting, prefer the CLI flags\n(`--silence`, `--rule`, `--strict`, `--style`, `--quiet`) or the\nY2M_QUIET / Y2M_STRICT / Y2M_STYLE environment variables.\n\n`silence:` drops the listed diagnostic codes (or code prefixes) entirely.\n`error:`   escalates the listed codes from warning to error.\n\nexample:\n  lint:\n    silence: [DSL-W-NAMING-006]   # this companion spec uses Foo*Type enums\n    error:   [DSL-W-COMPAT-001]   # this repo treats compat regressions as errors\n",
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "silence": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "error": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "objectTypes": {
      "description": "this section contains all object types defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/ObjectType"
      }
    },
    "variableTypes": {
      "description": "this section contains all variable types defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/VariableType"
      }
    },
    "stateMachines": {
      "description": "this section contains all state machines",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/StateMachine"
      }
    },
    "dataTypes": {
      "description": "this section contains all data types defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/DataType"
      }
    },
    "referenceTypes": {
      "description": "this section contains all reference types defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/ReferenceType"
      }
    },
    "interfaceTypes": {
      "description": "this section contains all interface types defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/ObjectType"
      }
    },
    "eventTypes": {
      "description": "this section contains all event types defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/ObjectType"
      }
    },
    "instances": {
      "description": "this section contains the definition of all the object instances defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/Instance"
      }
    },
    "objects": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/Object"
      }
    },
    "references": {
      "description": "this section contains a list of additional semantics reference between nodes defined in the model.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/Reference"
      }
    },
    "initializers": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/Initializer"
      }
    },
    "namespaceMetadatas": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/$defs/Object"
      }
    }
  },
  "$defs": {
    "NamespaceImport": {
      "type": "object",
      "description": "An external NodeSet2.xml this model depends on.\n\nIdentity-first: `uri` (with optional `publicationDate`) says WHAT is\nneeded and means the same thing on every machine; `filename` only says\nwhere to look first, and is verified against the file actually loaded.\nGive at least one of the two. `filename` on its own stays fully\nsupported — air-gapped setups legitimately pin an exact path.\n",
      "required": [
        "alias"
      ],
      "anyOf": [
        {
          "required": [
            "uri"
          ]
        },
        {
          "required": [
            "filename"
          ]
        }
      ],
      "properties": {
        "alias": {
          "description": "the alias (short name) of the imported namespace.\nThe alias will be used when defining browse names or browse path.\nFor example: (with alias `di`)\n     di:DeviceHeathEnumeration\n",
          "type": "string"
        },
        "uri": {
          "description": "The namespace URI the nodeset declares as its ModelUri. This is the\nidentity: it resolves the same way locally, in the SaaS, and offline.\n",
          "type": "string"
        },
        "filename": {
          "description": "Path to the NodeSet2.xml, resolved relative to this document. A hint,\nnot the identity — if it is missing or stale and a `uri` is given,\nresolution falls back to matching the namespace URI.\n",
          "type": "string"
        },
        "publicationDate": {
          "description": "Require a nodeset published on or after this date. This is OPC UA's\nown compatibility rule (PublicationDate >= required), not a semver\nrange — version strings in nodesets are labels, not ordered values.\n",
          "type": "string"
        },
        "sha256": {
          "description": "Optional integrity pin - the sha256 of the exact file expected.",
          "type": "string"
        }
      }
    },
    "NamespaceImportShort": {
      "description": "a list of predefined namespace alias for well-known companion specs.",
      "enum": [
        "adi",
        "amb",
        "autoId",
        "cnc",
        "commercialKitchenEquipment",
        "di",
        "eumabois",
        "gds",
        "glass",
        "i4aas",
        "ia",
        "ijtBase",
        "iolink",
        "iolinkIODD",
        "irdi",
        "isa95JobControl",
        "lads",
        "machinery",
        "machineryJobs",
        "machineryProcessValues",
        "machineryResult",
        "machineTool",
        "machineVision",
        "metalForming",
        "packML",
        "padim",
        "robotics",
        "scales",
        "standard",
        "surfaceTechnologyGeneralTypes",
        "surfaceTechnologyOctMss",
        "tightening",
        "woodworking"
      ]
    },
    "ModellingRule": {
      "enum": [
        "Mandatory",
        "Optional",
        "MandatoryPlaceholder",
        "OptionalPlaceholder",
        false
      ]
    },
    "NodeIdReference": {
      "oneOf": [
        {
          "type": "string"
        }
      ]
    },
    "BaseTypeRef": {
      "oneOf": [
        {
          "type": "string"
        }
      ]
    },
    "DataTypeRef": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "enum": [
            "ua:Double",
            "ua:Float",
            "ua:Int32",
            "ua:Int16",
            "ua:Int64",
            "ua:UInt32",
            "ua:UInt16",
            "ua:UInt64",
            "ua:Number",
            "ua:String",
            "ua:LocalizedText",
            "ua:QualifiedName",
            "ua:ImagePNG",
            "ua:ByteString"
          ]
        }
      ]
    },
    "UnitRef": {
      "type": "string",
      "enum": [
        "'",
        "\"\"",
        "()",
        "(Btuth/°R)/lb",
        "(cm/s)/bar",
        "(cm/s)/K",
        "(ft/s)/°F",
        "(ft/s)/psi",
        "(in/s)/°F",
        "(in/s)/psi",
        "(kcalIT/K)/g",
        "(kg/dm³)/bar",
        "(kg/dm³)/K",
        "(kg/m³)/Pa",
        "(kg/s)/Pa",
        "(kmol/m³)/bar",
        "(kmol/m³)/K",
        "(lb/ft³)/°F",
        "(lb/ft³)/psi",
        "(lb/h)/°F",
        "(lb/h)/psi",
        "(lb/in³)/°F",
        "(lb/in³)/psi",
        "(lb/min)/psi",
        "(lb/s)/°F",
        "(lb/s)/psi",
        "(m/s)/bar",
        "(m/s)/K",
        "(m/s)/Pa",
        "(m²/s)/Pa",
        "(m³/s)/m²",
        "(m³/s)/Pa",
        "(mg/m³)/bar",
        "(mg/m³)/K",
        "(ml/min)/cm²",
        "(mol/kg)/bar",
        "(mol/kg)/K",
        "(mol/kg)/Pa",
        "(mol/l)/bar",
        "(mol/l)/K",
        "(mol/m³)/bar",
        "(mol/m³)/K",
        "(mol/m³)/Pa",
        "(mol/m³)∑νB",
        "(N/m²)·s",
        "(pdl/ft²)·s",
        "(pdl/in²)·s",
        "(t/d)/bar",
        "(t/d)/K",
        "(t/h)/bar",
        "(t/h)/K",
        "(t/m³)/bar",
        "(t/m³)/K",
        "(t/min)/bar",
        "(t/min)/K",
        "(t/s)/bar",
        "(t/s)/K",
        "(ton (US)/h)/psi",
        "(US) shipping ton",
        "(µg/m³)/bar",
        "(µg/m³)/K",
        "%",
        "% or pct",
        "%/°",
        "%/°C",
        "%/100",
        "%/1000",
        "%/10000",
        "%/100000",
        "%/bar",
        "%/daK",
        "%/hbar",
        "%/in",
        "%/K",
        "%/m",
        "%/mm",
        "%/mo",
        "%/V",
        "%/Ω",
        "%/Ω",
        "‰",
        "‰/psi",
        "°",
        "°/m",
        "°/s",
        "°/s²",
        "°API",
        "°Balling",
        "°Bé",
        "°Bé (US heavy)",
        "°Bé (US light)",
        "°Bx",
        "°C",
        "°C/bar",
        "°C/h",
        "°C/K",
        "°C/min",
        "°C/s",
        "°F",
        "°F·h·ft²/BtuIT",
        "°F·h·ft²/Btuth",
        "°F/bar",
        "°F/h",
        "°F/K",
        "°F/min",
        "°F/s",
        "°Oechsle",
        "°P",
        "°R",
        "°R/h",
        "°R/min",
        "°R/s",
        "°Tw",
        "1",
        "1/(Hz·rad·m³)",
        "1/(V·A·s)",
        "1/°F",
        "1/1",
        "1/bar",
        "1/ft³",
        "1/h",
        "1/in",
        "1/in²",
        "1/in³",
        "1/J",
        "1/kVAh",
        "1/l",
        "1/MK",
        "1/mm³",
        "1/mo",
        "1/psi",
        "1/rad",
        "1/V",
        "1/Wb",
        "1/wk",
        "1/y",
        "1/yd³",
        "15 °C calorie",
        "30-day month",
        "8-part cloud cover",
        "a",
        "A",
        "Å",
        "A unit of pressure defining the number of kilopounds force per square inch. Use kip per square inch(common code N20).",
        "A unit of pressure defining the number of kilopounds force per square inch.Use kip per square inch (common code N20).",
        "A·h",
        "A·m²",
        "A·m²/(J·s)",
        "A·min",
        "A·s",
        "A/(m²·K²)",
        "A/cm",
        "A/cm²",
        "A/kg",
        "A/m",
        "A/m²",
        "A/mm",
        "A/mm²",
        "A/Pa",
        "Å⁻¹",
        "A²·s",
        "access line",
        "accounting unit",
        "acre",
        "acre-foot (based on U.S. survey foot)",
        "acre-foot(based on U.S. survey foot)",
        "acre-ft (US survey)",
        "active unit",
        "activity",
        "actual/360",
        "additional minute",
        "aF",
        "air dry metric ton",
        "air dry ton",
        "aJ",
        "alcoholic strength by mass",
        "alcoholic strength by volume",
        "american wire gauge",
        "ampere",
        "ampere hour",
        "ampere minute",
        "ampere per centimetre",
        "ampere per kilogram",
        "ampere per metre",
        "ampere per millimetre",
        "ampere per pascal",
        "ampere per square centimetre",
        "ampere per square metre",
        "ampere per square metre kelvin squared",
        "ampere per square millimetre",
        "ampere second",
        "ampere square metre",
        "ampere square metre per joule second",
        "ampere squared second",
        "angstrom",
        "anti-hemophilic factor(AHF) unit",
        "are",
        "assembly",
        "assortment",
        "astronomical unit",
        "at",
        "at/m",
        "atm",
        "Atm/m",
        "attofarad",
        "attojoule",
        "average minute per call",
        "AWG",
        "b",
        "B",
        "b/(sr·eV)",
        "b/eV",
        "B/m",
        "b/sr",
        "ball",
        "bar",
        "bar [unit of pressure]",
        "bar cubic metre per second",
        "bar litre per second",
        "bar per bar",
        "bar per kelvin",
        "bar·l/s",
        "bar·m³/s",
        "bar[unit of pressure]",
        "bar/bar",
        "bar/K",
        "barn",
        "barn per electronvolt",
        "barn per steradian",
        "barn per steradian electronvolt",
        "barrel (UK petroleum)",
        "barrel (UK petroleum) per day",
        "barrel (UK petroleum) per hour",
        "barrel (UK petroleum) per minute",
        "barrel (UK petroleum) per second",
        "barrel (US petroleum) per hour",
        "barrel (US petroleum) per second",
        "barrel (US)",
        "barrel (US) per day",
        "barrel (US) per minute",
        "barrel (US)/d",
        "barrel (US)/min",
        "barrel(imperial)",
        "barrel(UK petroleum)",
        "barrel(UK petroleum) per day",
        "barrel(UK petroleum) per hour",
        "barrel(UK petroleum) per minute",
        "barrel(UK petroleum) per second",
        "barrel(US petroleum) per hour",
        "barrel(US petroleum) per second",
        "barrel(US)",
        "barrel(US) per day",
        "barrel(US) per minute",
        "base box",
        "batch",
        "batting pound",
        "baud",
        "bbl (UK liq.)",
        "bbl (UK liq.)/d",
        "bbl (UK liq.)/h",
        "bbl (UK liq.)/min",
        "bbl (UK liq.)/s",
        "bbl (US)",
        "bbl (US)/h",
        "bbl (US)/s",
        "Bd",
        "beats per minute",
        "Beaufort",
        "becquerel",
        "becquerel per cubic metre",
        "becquerel per kilogram",
        "bel",
        "bel per metre",
        "Bft",
        "BHP",
        "Bi",
        "big point",
        "billion(EUR)",
        "biot",
        "bit",
        "bit per cubic metre",
        "bit per metre",
        "bit per second",
        "bit per square metre",
        "bit/m",
        "bit/m²",
        "bit/m³",
        "bit/s",
        "blank",
        "board foot",
        "boiler hp",
        "book",
        "bp",
        "BPM",
        "Bq",
        "Bq/kg",
        "Bq/m³",
        "brake horse power",
        "British shipping ton",
        "British thermal unit (39 ºF)",
        "British thermal unit (59 ºF)",
        "British thermal unit (60 ºF)",
        "British thermal unit (international table)",
        "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per second square foot degree Fahrenheit",
        "British thermal unit (international table) per cubic foot",
        "British thermal unit (international table) per degree Fahrenheit",
        "British thermal unit (international table) per degree Rankine",
        "British thermal unit (international table) per hour",
        "British thermal unit (international table) per hour square foot degree Fahrenheit",
        "British thermal unit (international table) per hour square foot degree Rankine",
        "British thermal unit (international table) per minute",
        "British thermal unit (international table) per pound",
        "British thermal unit (international table) per pound degree Fahrenheit",
        "British thermal unit (international table) per pound degree Rankine",
        "British thermal unit (international table) per second",
        "British thermal unit (international table) per second foot degree Rankine",
        "British thermal unit (international table) per second square foot degree Fahrenheit",
        "British thermal unit (international table) per second square foot degree Rankine",
        "British thermal unit (international table) per square foot",
        "British thermal unit (international table) per square foot hour",
        "British thermal unit (international table) per square foot second",
        "British thermal unit (international table) per square inch second",
        "British thermal unit (mean)",
        "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per cubic foot",
        "British thermal unit (thermochemical) per degree Fahrenheit",
        "British thermal unit (thermochemical) per degree Rankine",
        "British thermal unit (thermochemical) per hour",
        "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per minute",
        "British thermal unit (thermochemical) per pound",
        "British thermal unit (thermochemical) per pound degree Fahrenheit",
        "British thermal unit (thermochemical) per pound degree Rankine",
        "British thermal unit (thermochemical) per second",
        "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per square foot",
        "British thermal unit (thermochemical) per square foot hour",
        "British thermal unit (thermochemical) per square foot minute",
        "British thermal unit (thermochemical) per square foot second",
        "British thermal unit(39 ºF)",
        "British thermal unit(59 ºF)",
        "British thermal unit(60 ºF)",
        "British thermal unit(international table)",
        "British thermal unit(international table) foot per hour square foot degree Fahrenheit",
        "British thermal unit(international table) inch per hour square foot degree Fahrenheit",
        "British thermal unit(international table) inch per second square foot degree Fahrenheit",
        "British thermal unit(international table) per cubic foot",
        "British thermal unit(international table) per degree Fahrenheit",
        "British thermal unit(international table) per degree Rankine",
        "British thermal unit(international table) per hour",
        "British thermal unit(international table) per hour square foot degree Fahrenheit",
        "British thermal unit(international table) per hour square foot degree Rankine",
        "British thermal unit(international table) per minute",
        "British thermal unit(international table) per pound",
        "British thermal unit(international table) per pound degree Fahrenheit",
        "British thermal unit(international table) per pound degree Rankine",
        "British thermal unit(international table) per second",
        "British thermal unit(international table) per second foot degree Rankine",
        "British thermal unit(international table) per second square foot degree Fahrenheit",
        "British thermal unit(international table) per second square foot degree Rankine",
        "British thermal unit(international table) per square foot",
        "British thermal unit(international table) per square foot hour",
        "British thermal unit(international table) per square foot second",
        "British thermal unit(international table) per square inch second",
        "British thermal unit(mean)",
        "British thermal unit(thermochemical) foot per hour square foot degree Fahrenheit",
        "British thermal unit(thermochemical) inch per hour square foot degree Fahrenheit",
        "British thermal unit(thermochemical) inch per second square foot degree Fahrenheit",
        "British thermal unit(thermochemical) per cubic foot",
        "British thermal unit(thermochemical) per degree Fahrenheit",
        "British thermal unit(thermochemical) per degree Rankine",
        "British thermal unit(thermochemical) per hour",
        "British thermal unit(thermochemical) per hour square foot degree Fahrenheit",
        "British thermal unit(thermochemical) per minute",
        "British thermal unit(thermochemical) per pound",
        "British thermal unit(thermochemical) per pound degree Fahrenheit",
        "British thermal unit(thermochemical) per pound degree Rankine",
        "British thermal unit(thermochemical) per second",
        "British thermal unit(thermochemical) per second square foot degree Fahrenheit",
        "British thermal unit(thermochemical) per square foot",
        "British thermal unit(thermochemical) per square foot hour",
        "British thermal unit(thermochemical) per square foot minute",
        "British thermal unit(thermochemical) per square foot second",
        "Btu",
        "Btu (39 ºF)",
        "Btu (59 ºF)",
        "Btu (60 ºF)",
        "Btu/IT(lb·°R)",
        "BtuIT",
        "BtuIT·ft/(h·ft²·°F)",
        "BtuIT·in/(h·ft²·°F)",
        "BtuIT·in/(s·ft²·°F)",
        "BtuIT/(ft²·h)",
        "BtuIT/(ft²·s)",
        "BtuIT/(h·ft²·°R)",
        "BtuIT/(h·ft²·ºF)",
        "BtuIT/(in²·s)",
        "BtuIT/(lb·°F)",
        "BtuIT/(s·ft·°R)",
        "BtuIT/(s·ft²·°R)",
        "BtuIT/(s·ft²·ºF)",
        "BtuIT/ft²",
        "BtuIT/ft³",
        "BtuIT/h",
        "BtuIT/lb",
        "BtuIT/min",
        "BtuIT/ºF",
        "BtuIT/ºR",
        "BtuIT/s",
        "Btuth·ft/(h·ft²·°F)",
        "Btuth·in/(h·ft²·°F)",
        "Btuth·in/(s·ft²·°F)",
        "Btuth/(ft²·h)",
        "Btuth/(ft²·min)",
        "Btuth/(ft²·s)",
        "Btuth/(h·ft²·ºF)",
        "Btuth/(lb·°F)",
        "Btuth/(s·ft²·ºF)",
        "Btuth/ft²",
        "Btuth/ft³",
        "Btuth/h",
        "Btuth/lb",
        "Btuth/min",
        "Btuth/ºF",
        "Btuth/ºR",
        "Btuth/s",
        "bu (UK)/d",
        "bu (UK)/h",
        "bu (UK)/min",
        "bu (UK)/s",
        "bu (US dry)/d",
        "bu (US dry)/h",
        "bu (US dry)/min",
        "bu (US dry)/s",
        "bu (US)",
        "bulk pack",
        "bushel (UK)",
        "bushel (UK) per day",
        "bushel (UK) per hour",
        "bushel (UK) per minute",
        "bushel (UK) per second",
        "bushel (US dry) per day",
        "bushel (US dry) per hour",
        "bushel (US dry) per minute",
        "bushel (US dry) per second",
        "bushel (US)",
        "bushel(UK)",
        "bushel(UK) per day",
        "bushel(UK) per hour",
        "bushel(UK) per minute",
        "bushel(UK) per second",
        "bushel(US dry) per day",
        "bushel(US dry) per hour",
        "bushel(US dry) per minute",
        "bushel(US dry) per second",
        "bushel(US)",
        "byte",
        "byte per second",
        "byte/s",
        "C",
        "C·m",
        "C·m²/kg",
        "C·m²/V",
        "C/(kg·s)",
        "C/cm²",
        "C/cm³",
        "C/kg",
        "C/m",
        "C/m²",
        "C/m³",
        "C/mm²",
        "C/mm³",
        "C/mol",
        "cake",
        "cal",
        "cal₁₅",
        "cal₂₀",
        "calIT",
        "calIT/(g·°C)",
        "calIT/(g·K)",
        "calIT/(s·cm·K)",
        "calIT/(s·cm²·K)",
        "calIT/g",
        "call",
        "calorie (20 ºC)",
        "calorie (international table)",
        "calorie (international table) per gram",
        "calorie (international table) per gram degree Celsius",
        "calorie (international table) per gram kelvin",
        "calorie (international table) per second centimetre kelvin",
        "calorie (international table) per second square centimetre kelvin",
        "calorie (mean)",
        "calorie (thermochemical)",
        "calorie (thermochemical) per centimetre second degree Celsius",
        "calorie (thermochemical) per gram",
        "calorie (thermochemical) per gram degree Celsius",
        "calorie (thermochemical) per gram kelvin",
        "calorie (thermochemical) per minute",
        "calorie (thermochemical) per second",
        "calorie (thermochemical) per second centimetre kelvin",
        "calorie (thermochemical) per second square centimetre kelvin",
        "calorie (thermochemical) per square centimetre",
        "calorie (thermochemical) per square centimetre minute",
        "calorie (thermochemical) per square centimetre second",
        "calorie(20 ºC)",
        "calorie(international table)",
        "calorie(international table) per gram",
        "calorie(international table) per gram degree Celsius",
        "calorie(international table) per gram kelvin",
        "calorie(international table) per second centimetre kelvin",
        "calorie(international table) per second square centimetre kelvin",
        "calorie(mean)",
        "calorie(thermochemical)",
        "calorie(thermochemical) per centimetre second degree Celsius",
        "calorie(thermochemical) per gram",
        "calorie(thermochemical) per gram degree Celsius",
        "calorie(thermochemical) per gram kelvin",
        "calorie(thermochemical) per minute",
        "calorie(thermochemical) per second",
        "calorie(thermochemical) per second centimetre kelvin",
        "calorie(thermochemical) per second square centimetre kelvin",
        "calorie(thermochemical) per square centimetre",
        "calorie(thermochemical) per square centimetre minute",
        "calorie(thermochemical) per square centimetre second",
        "calth",
        "calth/(cm·s·°C)",
        "calth/(cm²·min)",
        "calth/(cm²·s)",
        "calth/(g·°C)",
        "calth/(g·K)",
        "calth/(s·cm·K)",
        "calth/(s·cm²·K)",
        "calth/cm²",
        "calth/g",
        "calth/min",
        "calth/s",
        "candela",
        "candela per square foot",
        "candela per square inch",
        "candela per square metre",
        "card",
        "carrying capacity in metric ton",
        "cd",
        "cd/ft²",
        "cd/in²",
        "cd/m²",
        "cental(UK)",
        "centigram",
        "centilitre",
        "centimetre",
        "centimetre of mercury",
        "centimetre of mercury (0 ºC)",
        "centimetre of mercury(0 ºC)",
        "centimetre of water (4 ºC)",
        "centimetre of water(4 ºC)",
        "centimetre per bar",
        "centimetre per hour",
        "centimetre per kelvin",
        "centimetre per second",
        "centimetre per second bar",
        "centimetre per second kelvin",
        "centimetre per second squared",
        "centinewton metre",
        "centipoise",
        "centipoise per bar",
        "centipoise per kelvin",
        "centistokes",
        "cg",
        "ch (UK)",
        "ch (US survey)",
        "chain (based on U.S. survey foot)",
        "chain(based on U.S. survey foot)",
        "cheval vapeur",
        "Ci",
        "Ci/kg",
        "circular mil",
        "cl",
        "clo",
        "cm",
        "cm H₂O",
        "cm Hg",
        "cm/bar",
        "cm/h",
        "cm/K",
        "cm/s",
        "cm/s²",
        "cm⁻¹",
        "cm⁻³",
        "cm²",
        "cm²/(sr·erg)",
        "cm²/erg",
        "cm²/g",
        "cm²/s",
        "cm³",
        "cm³/(d·bar)",
        "cm³/(d·K)",
        "cm³/(h·bar)",
        "cm³/(h·K)",
        "cm³/(min·bar)",
        "cm³/(min·K)",
        "cm³/(s·bar)",
        "cm³/(s·K)",
        "cm³/bar",
        "cm³/d",
        "cm³/h",
        "cm³/K",
        "cm³/m³",
        "cm³/min",
        "cm³/mol",
        "cm³/s",
        "cmH₂O (4 °C)",
        "cmHg (0 ºC)",
        "cmil",
        "cN·m",
        "coil group",
        "common year",
        "content gram",
        "content ton(metric)",
        "conventional centimetre of water",
        "conventional metre of water",
        "conventional millimetre of mercury",
        "conventional millimetre of water",
        "cord",
        "cord (128 ft3)",
        "cord(128 ft3)",
        "coulomb",
        "coulomb metre",
        "coulomb metre squared per volt",
        "coulomb per cubic centimetre",
        "coulomb per cubic metre",
        "coulomb per cubic millimetre",
        "coulomb per kilogram",
        "coulomb per kilogram second",
        "coulomb per metre",
        "coulomb per mole",
        "coulomb per square centimetre",
        "coulomb per square metre",
        "coulomb per square millimetre",
        "coulomb square metre per kilogram",
        "cP",
        "cP/bar",
        "cP/K",
        "credit",
        "cSt",
        "cubic centimetre",
        "cubic centimetre per bar",
        "cubic centimetre per cubic metre",
        "cubic centimetre per day",
        "cubic centimetre per day bar",
        "cubic centimetre per day kelvin",
        "cubic centimetre per hour",
        "cubic centimetre per hour bar",
        "cubic centimetre per hour kelvin",
        "cubic centimetre per kelvin",
        "cubic centimetre per minute",
        "cubic centimetre per minute bar",
        "cubic centimetre per minute kelvin",
        "cubic centimetre per mole",
        "cubic centimetre per second",
        "cubic centimetre per second bar",
        "cubic centimetre per second kelvin",
        "cubic decametre",
        "cubic decimetre",
        "cubic decimetre per cubic metre",
        "cubic decimetre per day",
        "cubic decimetre per hour",
        "cubic decimetre per kilogram",
        "cubic decimetre per minute",
        "cubic decimetre per mole",
        "cubic decimetre per second",
        "cubic foot",
        "cubic foot per day",
        "cubic foot per degree Fahrenheit",
        "cubic foot per hour",
        "cubic foot per minute",
        "cubic foot per minute per square foot",
        "cubic foot per pound",
        "cubic foot per psi",
        "cubic foot per second",
        "cubic hectometre",
        "cubic inch",
        "cubic inch per hour",
        "cubic inch per minute",
        "cubic inch per pound",
        "cubic inch per second",
        "cubic kilometre",
        "cubic metre",
        "cubic metre per bar",
        "cubic metre per coulomb",
        "cubic metre per cubic metre",
        "cubic metre per day",
        "cubic metre per day bar",
        "cubic metre per day kelvin",
        "cubic metre per hour",
        "cubic metre per hour bar",
        "cubic metre per hour kelvin",
        "cubic metre per kelvin",
        "cubic metre per kilogram",
        "cubic metre per minute",
        "cubic metre per minute bar",
        "cubic metre per minute kelvin",
        "cubic metre per mole",
        "cubic metre per pascal",
        "cubic metre per second",
        "cubic metre per second bar",
        "cubic metre per second kelvin",
        "cubic metre per second pascal",
        "cubic metre per second square metre",
        "cubic mile (UK statute)",
        "cubic mile(UK statute)",
        "cubic millimetre",
        "cubic millimetre per cubic metre",
        "cubic yard",
        "cubic yard per day",
        "cubic yard per degree Fahrenheit",
        "cubic yard per hour",
        "cubic yard per minute",
        "cubic yard per psi",
        "cubic yard per second",
        "cup (US)",
        "cup [unit of volume]",
        "cup[unit of volume]",
        "curie",
        "curie per kilogram",
        "CV",
        "cwt (UK)",
        "cwt (US)",
        "cycle",
        "d",
        "d⁻¹",
        "daa",
        "dag",
        "dal",
        "dam",
        "dam²",
        "dam³",
        "daPa",
        "day",
        "dB",
        "dB/km",
        "dB/m",
        "dBm",
        "dBW",
        "deadweight tonnage",
        "dec",
        "decade",
        "decade (logarithmic)",
        "decade(logarithmic)",
        "decagram",
        "decalitre",
        "decametre",
        "decapascal",
        "decare",
        "decibel",
        "decibel per kilometre",
        "decibel per metre",
        "Decibel watt",
        "Decibel-milliwatts",
        "decigram",
        "decilitre",
        "decilitre per gram",
        "decimetre",
        "decinewton metre",
        "decitex",
        "decitonne",
        "deg da",
        "degree [unit of angle]",
        "degree [unit of angle] per second squared",
        "degree API",
        "degree Balling",
        "degree Baume (origin scale)",
        "degree Baume (US heavy)",
        "degree Baume (US light)",
        "degree Baume(origin scale)",
        "degree Baume(US heavy)",
        "degree Baume(US light)",
        "degree Brix",
        "degree Celsius",
        "degree Celsius per bar",
        "degree Celsius per hour",
        "degree Celsius per kelvin",
        "degree Celsius per minute",
        "degree Celsius per second",
        "degree day",
        "degree Fahrenheit",
        "degree Fahrenheit hour per British thermal unit (international table)",
        "degree Fahrenheit hour per British thermal unit (thermochemical)",
        "degree Fahrenheit hour per British thermal unit(international table)",
        "degree Fahrenheit hour per British thermal unit(thermochemical)",
        "degree Fahrenheit hour square foot per British thermal unit (international table)",
        "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
        "degree Fahrenheit hour square foot per British thermal unit(international table)",
        "degree Fahrenheit hour square foot per British thermal unit(international table) inch",
        "degree Fahrenheit hour square foot per British thermal unit(thermochemical)",
        "degree Fahrenheit hour square foot per British thermal unit(thermochemical) inch",
        "degree Fahrenheit per bar",
        "degree Fahrenheit per hour",
        "degree Fahrenheit per kelvin",
        "degree Fahrenheit per minute",
        "degree Fahrenheit per second",
        "degree Fahrenheit second per British thermal unit (international table)",
        "degree Fahrenheit second per British thermal unit (thermochemical)",
        "degree Fahrenheit second per British thermal unit(international table)",
        "degree Fahrenheit second per British thermal unit(thermochemical)",
        "degree Oechsle",
        "degree per metre",
        "degree per second",
        "degree Plato",
        "degree Rankine",
        "degree Rankine per hour",
        "degree Rankine per minute",
        "degree Rankine per second",
        "degree Twaddell",
        "degree[unit of angle]",
        "degree[unit of angle] per second squared",
        "den",
        "denier",
        "dg",
        "digit",
        "dioptre",
        "displacement tonnage",
        "dl",
        "dl/g",
        "dm",
        "dm²",
        "dm³",
        "dm³/d",
        "dm³/h",
        "dm³/kg",
        "dm³/m³",
        "dm³/min",
        "dm³/mol",
        "dm³/s",
        "dN·m",
        "dose",
        "dots per inch",
        "DOZ",
        "dozen",
        "dozen pack",
        "dozen pair",
        "dozen piece",
        "dozen roll",
        "dpi",
        "dpt",
        "dram(UK)",
        "dram(US)",
        "dry barrel (US)",
        "dry barrel(US)",
        "dry gal (US)",
        "dry gallon (US)",
        "dry gallon(US)",
        "dry pint (US)",
        "dry pint(US)",
        "dry pound",
        "dry pt (US)",
        "dry qt (US)",
        "dry quart (US)",
        "dry quart(US)",
        "dry ton",
        "dt",
        "dt or dtn",
        "dtex (g/10km)",
        "dtn",
        "dwt",
        "dyn",
        "dyn·cm",
        "dyn·m",
        "dyn·s/cm",
        "dyn·s/cm³",
        "dyn·s/cm⁵",
        "dyn/cm",
        "dyn/cm²",
        "dyne",
        "dyne centimetre",
        "dyne metre",
        "dyne per centimetre",
        "dyne per square centimetre",
        "dyne second per centimetre",
        "dyne second per centimetre to the fifth power",
        "dyne second per cubic centimetre",
        "E",
        "each",
        "Ebit/s",
        "Eibit/m",
        "Eibit/m²",
        "Eibit/m³",
        "Eibyte",
        "EJ",
        "electric hp",
        "electronic mail box",
        "electronvolt",
        "electronvolt per metre",
        "electronvolt square metre",
        "electronvolt square metre per kilogram",
        "equivalent gallon",
        "erg",
        "erg per centimetre",
        "erg per cubic centimetre",
        "erg per gram",
        "erg per gram second",
        "erg per second",
        "erg per second square centimetre",
        "erg per square centimetre second",
        "erg square centimetre",
        "erg square centimetre per gram",
        "erg·cm²",
        "erg·cm²/g",
        "erg/(cm²·s)",
        "erg/(s·cm²)",
        "erg/cm",
        "erg/cm³",
        "erg/g",
        "erg/g·s",
        "erg/s",
        "erlang",
        "eV",
        "eV·m²",
        "eV·m²/kg",
        "eV/m",
        "eV⁻¹/m³",
        "exabit per second",
        "exajoule",
        "exbibit per cubic metre",
        "exbibit per metre",
        "exbibit per square metre",
        "exbibyte",
        "F",
        "F/km",
        "F/m",
        "failures in time",
        "farad",
        "farad per kilometre",
        "farad per metre",
        "fathom",
        "fbm",
        "femtojoule",
        "femtolitre",
        "femtometre",
        "Fg",
        "fibre metre",
        "FIT",
        "five pack",
        "fixed rate",
        "fJ",
        "fl",
        "fl oz (UK)",
        "fl oz (UK)/d",
        "fl oz (UK)/h",
        "fl oz (UK)/min",
        "fl oz (UK)/s",
        "fl oz (US)",
        "fl oz (US)/d",
        "fl oz (US)/h",
        "fl oz (US)/min",
        "fl oz (US)/s",
        "flake ton",
        "fluid ounce (UK)",
        "fluid ounce (US)",
        "fluid ounce(UK)",
        "fluid ounce(US)",
        "fm",
        "FNU",
        "foot",
        "foot (U.S. survey)",
        "foot of mercury",
        "foot of water",
        "foot of water(39.2 ºF)",
        "foot per degree Fahrenheit",
        "foot per hour",
        "foot per minute",
        "foot per psi",
        "foot per second",
        "foot per second degree Fahrenheit",
        "foot per second psi",
        "foot per second squared",
        "foot per thousand",
        "foot pound-force",
        "foot pound-force per hour",
        "foot pound-force per minute",
        "foot pound-force per second",
        "foot poundal",
        "foot to the fourth power",
        "foot(U.S. survey)",
        "footcandle",
        "footlambert",
        "Formazin nephelometric unit",
        "forty foot container",
        "Fr",
        "franklin",
        "freight ton",
        "French gauge",
        "ft",
        "ft (US survey)",
        "ft H₂O",
        "ft Hg",
        "ft·lbf",
        "ft·lbf/h",
        "ft·lbf/min",
        "ft·lbf/s",
        "ft·pdl",
        "ft/°F",
        "ft/h",
        "ft/min",
        "ft/psi",
        "ft/s",
        "ft/s²",
        "ft²",
        "ft²/h",
        "ft²/s",
        "ft³",
        "ft³/(min/ft²)",
        "ft³/°F",
        "ft³/d",
        "ft³/h",
        "ft³/lb",
        "ft³/min",
        "ft³/psi",
        "ft³/s",
        "ft⁴",
        "ftc",
        "fth",
        "ftH₂O (39",
        "ftL",
        "fur",
        "furlong",
        "g",
        "g·(cm/s)",
        "g·mm",
        "g/(cm·s)",
        "g/(cm³·bar)",
        "g/(cm³·K)",
        "g/(d·bar)",
        "g/(d·K)",
        "g/(dm³·bar)",
        "g/(dm³·K)",
        "g/(h·bar)",
        "g/(h·K)",
        "g/(l·bar)",
        "g/(l·K)",
        "g/(m³·bar)",
        "g/(m³·K)",
        "g/(min·bar)",
        "g/(min·K)",
        "g/(ml·bar)",
        "g/(ml·K)",
        "g/(s·bar)",
        "g/(s·K)",
        "g/bar",
        "g/cm²",
        "g/cm³",
        "g/d",
        "g/dm³",
        "g/h",
        "g/Hz",
        "g/K",
        "g/l",
        "g/m",
        "g/m²",
        "g/m³",
        "g/min",
        "g/ml",
        "g/mm",
        "g/mm²",
        "g/mol",
        "g/s",
        "gal",
        "Gal",
        "gal (UK)",
        "gal (UK) /min",
        "gal (UK)/d",
        "gal (UK)/h",
        "gal (UK)/s",
        "gal (US liq.)/s",
        "gal (US)",
        "gal (US) /min",
        "gal (US)/d",
        "gal/h",
        "gallon (UK)",
        "gallon (UK) per day",
        "gallon (UK) per hour",
        "gallon (UK) per second",
        "gallon (US liquid) per second",
        "gallon (US)",
        "gallon (US) per day",
        "gallon (US) per hour",
        "gallon(UK)",
        "gallon(UK) per day",
        "gallon(UK) per hour",
        "gallon(UK) per second",
        "gallon(US liquid) per second",
        "gallon(US)",
        "gallon(US) per day",
        "gallon(US) per hour",
        "gamma",
        "Gbit",
        "Gbit/s",
        "GBq",
        "Gbyte",
        "Gbyte/s",
        "GC/m³",
        "GeV",
        "gf/cm²",
        "GHz",
        "GHz·m",
        "Gi",
        "gi (UK)",
        "gi (UK)/d",
        "gi (UK)/h",
        "gi (UK)/min",
        "gi (UK)/s",
        "gi (US)",
        "gi (US)/d",
        "gi (US)/h",
        "gi (US)/min",
        "gi (US)/s",
        "gi F/S",
        "gibibit",
        "gibibit per cubic metre",
        "gibibit per metre",
        "gibibit per square metre",
        "gibibyte",
        "Gibit",
        "Gibit/m",
        "Gibit/m²",
        "Gibit/m³",
        "Gibyte",
        "gigabecquerel",
        "gigabit",
        "gigabit per second",
        "gigabyte",
        "gigabyte per second",
        "gigacoulomb per cubic metre",
        "gigaelectronvolt",
        "gigahertz",
        "gigahertz metre",
        "gigajoule",
        "gigaohm",
        "gigaohm metre",
        "gigaohm per metre",
        "gigapascal",
        "gigawatt",
        "gigawatt hour",
        "gilbert",
        "gill (UK)",
        "gill (UK) per day",
        "gill (UK) per hour",
        "gill (UK) per minute",
        "gill (UK) per second",
        "gill (US)",
        "gill (US) per day",
        "gill (US) per hour",
        "gill (US) per minute",
        "gill (US) per second",
        "gill(UK)",
        "gill(UK) per day",
        "gill(UK) per hour",
        "gill(UK) per minute",
        "gill(UK) per second",
        "gill(US)",
        "gill(US) per day",
        "gill(US) per hour",
        "gill(US) per minute",
        "gill(US) per second",
        "GJ",
        "gn",
        "gon",
        "GPa",
        "gr",
        "gr/gal (US)",
        "grade",
        "grain",
        "grain per gallon (US)",
        "grain per gallon(US)",
        "gram",
        "gram centimetre per second",
        "gram millimetre",
        "gram of fissile isotope",
        "gram per bar",
        "gram per centimetre second",
        "gram per cubic centimetre",
        "gram per cubic centimetre bar",
        "gram per cubic centimetre kelvin",
        "gram per cubic decimetre",
        "gram per cubic decimetre bar",
        "gram per cubic decimetre kelvin",
        "gram per cubic metre",
        "gram per cubic metre bar",
        "gram per cubic metre kelvin",
        "gram per day",
        "gram per day bar",
        "gram per day kelvin",
        "gram per hertz",
        "gram per hour",
        "gram per hour bar",
        "gram per hour kelvin",
        "gram per kelvin",
        "gram per litre",
        "gram per litre bar",
        "gram per litre kelvin",
        "gram per metre (gram per 100 centimetres)",
        "gram per metre(gram per 100 centimetres)",
        "gram per millilitre",
        "gram per millilitre bar",
        "gram per millilitre kelvin",
        "gram per millimetre",
        "gram per minute",
        "gram per minute bar",
        "gram per minute kelvin",
        "gram per mole",
        "gram per second",
        "gram per second bar",
        "gram per second kelvin",
        "gram per square centimetre",
        "gram per square metre",
        "gram per square millimetre",
        "gram-force per square centimetre",
        "gram(dry weight)",
        "gram(including container)",
        "gram(including inner packaging)",
        "gray",
        "gray per hour",
        "gray per minute",
        "gray per second",
        "great gross",
        "gross",
        "gross kilogram",
        "group",
        "Gunters chain",
        "GW",
        "GW·h",
        "Gy",
        "Gy/h",
        "Gy/min",
        "Gy/s",
        "GΩ",
        "GΩ",
        "GΩ·m",
        "GΩ·m",
        "GΩ/m",
        "GΩ/m",
        "h",
        "H",
        "H/kΩ",
        "H/kΩ",
        "H/m",
        "H/Ω",
        "H/Ω",
        "H⁻¹",
        "ha",
        "half year(6 months)",
        "hanging container",
        "hank",
        "Hart",
        "Hart/s",
        "hartley",
        "hartley per second",
        "hbar",
        "head",
        "hectare",
        "hectobar",
        "hectogram",
        "hectolitre",
        "hectolitre of pure alcohol",
        "hectometre",
        "hectopascal",
        "hectopascal cubic metre per second",
        "hectopascal litre per second",
        "hectopascal per bar",
        "hectopascal per kelvin",
        "hectopascal per metre",
        "Hefner-Kerze",
        "henry",
        "henry per kiloohm",
        "henry per metre",
        "henry per ohm",
        "hertz",
        "hertz metre",
        "hg",
        "HK",
        "hl",
        "hm",
        "hm²",
        "hm³",
        "horsepower (boiler)",
        "horsepower (electric)",
        "horsepower(boiler)",
        "horsepower(electric)",
        "hour",
        "hPa",
        "hPa·l/s",
        "hPa·m³/s",
        "hPa/bar",
        "hPa/K",
        "hPa/m",
        "hundred",
        "hundred board foot",
        "hundred boxes",
        "hundred count",
        "hundred cubic foot",
        "hundred cubic metre",
        "hundred international unit",
        "hundred kilogram(dry weight)",
        "hundred kilogram(net mass)",
        "hundred leave",
        "hundred metre",
        "hundred pack",
        "hundred pound (cwt) / hundred weight (US)",
        "hundred pound(cwt) / hundred weight (US)",
        "hundred weight (UK)",
        "hundred weight(UK)",
        "hydraulic horse power",
        "Hz",
        "Hz·m",
        "IK",
        "Imperial gallon per minute",
        "in",
        "in·lb",
        "in·pdl",
        "in/°F",
        "in/min",
        "in/psi",
        "in/revolution",
        "in/s",
        "in/s²",
        "in/y",
        "in²",
        "in²/s",
        "in³",
        "in³/h",
        "in³/lb",
        "in³/min",
        "in³/s",
        "in⁴",
        "inch",
        "inch of mercury",
        "inch of mercury (32 ºF)",
        "inch of mercury (60 ºF)",
        "inch of mercury(32 ºF)",
        "inch of mercury(60 ºF)",
        "inch of water",
        "inch of water (60 ºF)",
        "inch of water(39.2 ºF)",
        "inch of water(60 ºF)",
        "inch per degree Fahrenheit",
        "inch per linear foot",
        "inch per minute",
        "inch per psi",
        "inch per second",
        "inch per second degree Fahrenheit",
        "inch per second psi",
        "inch per second squared",
        "inch per two pi radiant",
        "inch per year",
        "inch pound (pound inch)",
        "inch pound(pound inch)",
        "inch poundal",
        "inch to the fourth power",
        "inH₂O",
        "inH₂O (39",
        "inH₂O (60 ºF)",
        "inHg",
        "inHG (32 ºF)",
        "inHg (60 ºF)",
        "international candle",
        "international sugar degree",
        "international unit per gram",
        "J",
        "J·m²",
        "J·m²/kg",
        "J·s",
        "J/(kg·K)",
        "J/(mol·K)",
        "J/cm²",
        "J/d",
        "J/g",
        "J/h",
        "J/K",
        "J/kg",
        "J/m",
        "J/m²",
        "J/m³",
        "J/m⁴",
        "J/min",
        "J/mol",
        "J/s",
        "J/T",
        "J⁻¹/m³",
        "job",
        "joule",
        "joule per cubic metre",
        "joule per day",
        "joule per gram",
        "joule per hour",
        "joule per kelvin",
        "joule per kilogram",
        "joule per kilogram kelvin",
        "joule per metre",
        "joule per metre to the fourth power",
        "joule per minute",
        "joule per mole",
        "joule per mole kelvin",
        "Joule per normalised cubic metre",
        "joule per second",
        "joule per square centimetre",
        "joule per square metre",
        "Joule per standard cubic metre",
        "joule per tesla",
        "joule second",
        "joule square metre",
        "joule square metre per kilogram",
        "K",
        "K·m/W",
        "K/bar",
        "K/h",
        "K/K",
        "K/min",
        "K/Pa",
        "K/s",
        "K/W",
        "K⁻¹",
        "kA",
        "kA·h",
        "kA/m",
        "kA/m²",
        "kat",
        "katal",
        "kbar",
        "kBd",
        "kbit",
        "kbit/s",
        "kBq",
        "kBq/kg",
        "kbyte",
        "kbyte/s",
        "kC",
        "kC/m²",
        "kC/m³",
        "kcal",
        "kcal/(m·h·°C)",
        "kcalIT",
        "kcalth",
        "kcalth/h",
        "kcalth/min",
        "kcalth/s",
        "kcd",
        "kCi",
        "kelvin",
        "kelvin metre per watt",
        "kelvin per bar",
        "kelvin per hour",
        "kelvin per kelvin",
        "kelvin per minute",
        "kelvin per pascal",
        "kelvin per second",
        "kelvin per watt",
        "keV",
        "kF",
        "kft³",
        "kg",
        "kg 90 % sdt",
        "kg C₅ H₁₄ClNO",
        "kg H₂O₂",
        "kg K₂O",
        "kg KOH",
        "kg met.am.",
        "kg N",
        "kg NaOH",
        "kg U",
        "kg WO₃",
        "kg·(cm/s)",
        "kg·cm²",
        "kg·m",
        "kg·m/s",
        "kg·m/s²",
        "kg·m²",
        "kg·m²/s",
        "kg·mm²",
        "kg/(cm³·bar)",
        "kg/(cm³·K)",
        "kg/(d·bar)",
        "kg/(d·K)",
        "kg/(h·bar)",
        "kg/(h·K)",
        "kg/(l·bar)",
        "kg/(l·K)",
        "kg/(m·d)",
        "kg/(m·h)",
        "kg/(m·min)",
        "kg/(m·s)",
        "kg/(m²·Pa·s)",
        "kg/(m²·s)",
        "kg/(m³·bar)",
        "kg/(m³·K)",
        "kg/(min·bar)",
        "kg/(min·K)",
        "kg/(s·bar)",
        "kg/(s·K)",
        "kg/bar",
        "kg/cm²",
        "kg/cm³",
        "kg/d",
        "kg/dm³",
        "kg/h",
        "kg/K",
        "kg/kg",
        "kg/km",
        "kg/kmol",
        "kg/l",
        "kg/L",
        "kg/l or kg/L",
        "kg/m",
        "kg/m²",
        "kg/m³",
        "kg/min",
        "kg/mm",
        "kg/mol",
        "kg/net eda",
        "kg/Pa",
        "kg/s",
        "kgf",
        "kgf·m",
        "kgf·m/cm²",
        "kgf·m/s",
        "kgf/cm²",
        "kgf/m²",
        "kH",
        "kHz",
        "kHz·m",
        "kibibit",
        "kibibit per cubic metre",
        "kibibit per metre",
        "kibibit per square metre",
        "kibibyte",
        "Kibit",
        "Kibit/m",
        "Kibit/m²",
        "Kibit/m³",
        "Kibyte",
        "kiloampere",
        "kiloampere hour (thousand ampere hour)",
        "kiloampere hour(thousand ampere hour)",
        "kiloampere per metre",
        "kiloampere per square metre",
        "kilobar",
        "kilobaud",
        "kilobecquerel",
        "kilobecquerel per kilogram",
        "kilobit",
        "kilobit per second",
        "kilobyte",
        "kilobyte per second",
        "kilocalorie (international table)",
        "kilocalorie (international table) per gram kelvin",
        "kilocalorie (international table) per hour metre degree Celsius",
        "kilocalorie (mean)",
        "kilocalorie (thermochemical)",
        "kilocalorie (thermochemical) per hour",
        "kilocalorie (thermochemical) per minute",
        "kilocalorie (thermochemical) per second",
        "kilocalorie(international table)",
        "kilocalorie(international table) per gram kelvin",
        "kilocalorie(international table) per hour metre degree Celsius",
        "kilocalorie(mean)",
        "kilocalorie(thermochemical)",
        "kilocalorie(thermochemical) per hour",
        "kilocalorie(thermochemical) per minute",
        "kilocalorie(thermochemical) per second",
        "kilocandela",
        "kilocharacter",
        "kilocoulomb",
        "kilocoulomb per cubic metre",
        "kilocoulomb per square metre",
        "kilocurie",
        "kiloelectronvolt",
        "kilofarad",
        "kilogram",
        "kilogram centimetre per second",
        "kilogram drained net weight",
        "kilogram metre",
        "kilogram metre per second",
        "kilogram metre per second squared",
        "kilogram metre squared",
        "kilogram metre squared per second",
        "kilogram named substance",
        "kilogram of choline chloride",
        "kilogram of hydrogen peroxide",
        "kilogram of imported meat(less offal)",
        "kilogram of methylamine",
        "kilogram of nitrogen",
        "kilogram of phosphorus pentoxide(phosphoric anhydride)",
        "kilogram of potassium hydroxide (caustic potash)",
        "kilogram of potassium hydroxide(caustic potash)",
        "kilogram of potassium oxide",
        "kilogram of sodium hydroxide (caustic soda)",
        "kilogram of sodium hydroxide(caustic soda)",
        "kilogram of substance 90 % dry",
        "kilogram of tungsten trioxide",
        "kilogram of uranium",
        "kilogram per bar",
        "kilogram per cubic centimetre",
        "kilogram per cubic centimetre bar",
        "kilogram per cubic centimetre kelvin",
        "kilogram per cubic decimetre",
        "kilogram per cubic decimetre bar",
        "kilogram per cubic decimetre kelvin",
        "kilogram per cubic metre",
        "kilogram per cubic metre bar",
        "kilogram per cubic metre kelvin",
        "kilogram per cubic metre pascal",
        "kilogram per day",
        "kilogram per day bar",
        "kilogram per day kelvin",
        "kilogram per hour",
        "kilogram per hour bar",
        "kilogram per hour kelvin",
        "kilogram per kelvin",
        "kilogram per kilogram",
        "kilogram per kilometre",
        "kilogram per kilomole",
        "kilogram per litre",
        "kilogram per litre bar",
        "kilogram per litre kelvin",
        "kilogram per metre",
        "kilogram per metre day",
        "kilogram per metre hour",
        "kilogram per metre minute",
        "kilogram per metre second",
        "kilogram per millimetre",
        "kilogram per millimetre width",
        "kilogram per minute",
        "kilogram per minute bar",
        "kilogram per minute kelvin",
        "kilogram per mole",
        "kilogram per pascal",
        "kilogram per second",
        "kilogram per second bar",
        "kilogram per second kelvin",
        "kilogram per second pascal",
        "kilogram per square centimetre",
        "kilogram per square metre",
        "kilogram per square metre pascal second",
        "kilogram per square metre second",
        "kilogram square centimetre",
        "kilogram square millimetre",
        "kilogram-force",
        "kilogram-force metre",
        "kilogram-force metre per second",
        "kilogram-force metre per square centimetre",
        "kilogram-force per square centimetre",
        "kilogram-force per square metre",
        "kilogram-force per square millimetre",
        "kilogram(dry weight)",
        "kilogram(including container)",
        "kilogram(including inner packaging)",
        "kilohenry",
        "kilohertz",
        "kilohertz metre",
        "kilojoule",
        "kilojoule per day",
        "kilojoule per gram",
        "kilojoule per hour",
        "kilojoule per kelvin",
        "kilojoule per kilogram",
        "kilojoule per kilogram kelvin",
        "kilojoule per minute",
        "kilojoule per mole",
        "kilojoule per second",
        "kilolitre",
        "kilolitre per hour",
        "kilolux",
        "kilometre",
        "kilometre per hour",
        "kilometre per second",
        "kilometre per second squared",
        "kilomole",
        "kilomole per cubic metre",
        "kilomole per cubic metre bar",
        "kilomole per cubic metre kelvin",
        "kilomole per hour",
        "kilomole per kilogram",
        "kilomole per minute",
        "kilomole per second",
        "kilonewton",
        "kilonewton metre",
        "kilonewton per metre",
        "kilonewton per square metre",
        "kiloohm",
        "kiloohm metre",
        "kilopascal",
        "kilopascal per bar",
        "kilopascal per kelvin",
        "kilopascal per metre",
        "kilopascal per millimetre",
        "kilopascal square metre per gram",
        "kilopond",
        "kilopound per hour",
        "kilopound-force",
        "kiloroentgen",
        "kilosecond",
        "kilosegment",
        "kilosiemens",
        "kilosiemens per metre",
        "kilotesla",
        "kilotonne",
        "kilovar",
        "kilovolt",
        "kilovolt - ampere",
        "kilovolt ampere (reactive)",
        "kilovolt ampere hour",
        "kilovolt ampere reactive demand",
        "kilovolt ampere reactive hour",
        "kilovolt ampere(reactive)",
        "kilovolt per metre",
        "kilovolt-ampere",
        "kilowatt",
        "kilowatt demand",
        "kilowatt hour",
        "kilowatt hour per cubic metre",
        "kilowatt hour per hour",
        "kilowatt hour per kelvin",
        "Kilowatt hour per normalized cubic metre",
        "Kilowatt hour per standard cubic metre",
        "kilowatt per metre degree Celsius",
        "kilowatt per metre kelvin",
        "kilowatt per square metre kelvin",
        "kiloweber",
        "kiloweber per metre",
        "kip",
        "kip per square inch",
        "kit",
        "kJ",
        "kJ/(kg·K)",
        "kJ/d",
        "kJ/g",
        "kJ/h",
        "kJ/K",
        "kJ/kg",
        "kJ/min",
        "kJ/mol",
        "kJ/s",
        "kl",
        "kl/h",
        "klb/h",
        "klbf/in²",
        "klx",
        "km",
        "km/h",
        "km/s",
        "km/s²",
        "km²",
        "km³",
        "km³/d",
        "kmol",
        "kmol/h",
        "kmol/kg",
        "kmol/m³",
        "kmol/min",
        "kmol/s",
        "kn",
        "kN",
        "kN·m",
        "kN/m",
        "KN/m2",
        "knot",
        "kp",
        "kPa",
        "kPa·m²/g",
        "kPa/bar",
        "kPa/K",
        "kPa/m",
        "kPa/mm",
        "kR",
        "ks",
        "kS",
        "kS/m",
        "ksi",
        "kt",
        "kT",
        "kV",
        "kV·A",
        "kV/m",
        "kVAh",
        "kvar",
        "kvar·h",
        "kW",
        "kW·h",
        "kW·h/h",
        "kW·h/K",
        "kW·h/m³",
        "kW/(m·°C)",
        "kW/(m·K)",
        "kW/(m²·K)",
        "kWb",
        "kWb/m",
        "kΩ",
        "kΩ",
        "kΩ·m",
        "kΩ·m",
        "l",
        "l/(d·bar)",
        "l/(d·K)",
        "l/(h·bar)",
        "l/(h·K)",
        "l/(min·bar)",
        "l/(min·K)",
        "l/(s·bar)",
        "l/(s·K)",
        "l/bar",
        "l/d",
        "l/h",
        "l/K",
        "l/kg",
        "l/l",
        "l/min",
        "l/mol",
        "l/s",
        "labour hour",
        "lactic dry material percentage",
        "lactose excess percentage",
        "lambert",
        "langley",
        "layer",
        "lb",
        "Lb",
        "lb·(ft/s)",
        "lb·(in/s)",
        "lb·ft²",
        "lb·in²",
        "lb/(ft·d)",
        "lb/(ft·h)",
        "lb/(ft·min)",
        "lb/(ft·s)",
        "lb/(min·°F)",
        "lb/°F",
        "lb/d",
        "lb/ft",
        "lb/ft²",
        "lb/ft³",
        "lb/gal (UK)",
        "lb/gal (US)",
        "lb/h",
        "lb/in",
        "lb/in²",
        "lb/in³",
        "lb/lb",
        "lb/min",
        "lb/psi",
        "lb/s",
        "lb/yd",
        "lb/yd²",
        "lb/yd³",
        "lbf",
        "lbf·ft",
        "lbf·ft/A",
        "lbf·ft/in",
        "lbf·ft/lb",
        "lbf·in",
        "lbf·in/in",
        "lbf·s/ft²",
        "lbf·s/in²",
        "lbf/ft",
        "lbf/ft²",
        "lbf/in",
        "lbf/in²",
        "lbf/yd",
        "lbmol",
        "lbmol/h",
        "lbmol/lb",
        "lbmol/s",
        "leaf",
        "length",
        "light year",
        "linear foot",
        "linear metre",
        "linear yard",
        "link",
        "liq pt (US)",
        "liq qt (US)",
        "liquid pint (US)",
        "liquid pint(US)",
        "liquid pound",
        "liquid quart (US)",
        "liquid quart(US)",
        "litre",
        "litre of pure alcohol",
        "litre per bar",
        "litre per day",
        "litre per day bar",
        "litre per day kelvin",
        "litre per hour",
        "litre per hour bar",
        "litre per hour kelvin",
        "litre per kelvin",
        "litre per kilogram",
        "litre per litre",
        "litre per minute",
        "litre per minute bar",
        "litre per minute kelvin",
        "litre per mole",
        "litre per second",
        "litre per second bar",
        "litre per second kelvin",
        "lm",
        "lm·h",
        "lm·s",
        "lm/ft²",
        "lm/m²",
        "lm/W",
        "load",
        "lot[unit of procurement]",
        "lot[unit of weight]",
        "lumen",
        "lumen hour",
        "lumen per square foot",
        "lumen per square metre",
        "lumen per watt",
        "lumen second",
        "lump sum",
        "lux",
        "lux hour",
        "lux second",
        "lx",
        "lx·h",
        "lx·s",
        "ly",
        "Ly",
        "m",
        "m·K",
        "m/(°C·m)",
        "m/(V·s)",
        "m/bar",
        "m/h",
        "m/K",
        "m/min",
        "m/Pa",
        "m/rad",
        "m/s",
        "m/s²",
        "m⁻¹",
        "m⁻²",
        "m⁻²/s",
        "m⁻³",
        "m⁻³/s",
        "m²",
        "m²·h·°C/kcal",
        "m²·K/W",
        "m²/(s·bar)",
        "m²/(s·K)",
        "m²/(sr·J)",
        "m²/(V·s)",
        "m²/J",
        "m²/kg",
        "m²/l",
        "m²/mol",
        "m²/N",
        "m²/s",
        "m²/sr",
        "m³",
        "m³/(d·bar)",
        "m³/(d·K)",
        "m³/(h·bar)",
        "m³/(h·K)",
        "m³/(min·bar)",
        "m³/(min·K)",
        "m³/(s·bar)",
        "m³/(s·K)",
        "m³/bar",
        "m³/C",
        "m³/d",
        "m³/h",
        "m³/K",
        "m³/kg",
        "m³/m³",
        "m³/min",
        "m³/mol",
        "m³/Pa",
        "m³/s",
        "m⁴",
        "mA",
        "MA",
        "mA·h",
        "mA/(lbf/in²)",
        "mA/(l·min)",
        "mA/bar",
        "mA/in",
        "MA/m²",
        "mA/mm",
        "manmonth",
        "mbar",
        "mbar·l/s",
        "mbar·m³/s",
        "mbar/bar",
        "mbar/K",
        "MBd",
        "Mbit",
        "Mbit/s",
        "MBq",
        "MBq/kg",
        "MBTU/kft³",
        "Mbyte",
        "Mbyte/s",
        "mC",
        "MC",
        "mC/kg",
        "mC/m²",
        "MC/m²",
        "mC/m³",
        "MC/m³",
        "mcd",
        "mCi",
        "meal",
        "mebibit",
        "mebibit per cubic metre",
        "mebibit per metre",
        "mebibit per square metre",
        "mebibyte",
        "Mega Joule per Normalised cubic Metre",
        "megaampere",
        "megaampere per square metre",
        "megabaud",
        "megabecquerel",
        "megabecquerel per kilogram",
        "megabit",
        "megabit per second",
        "megabyte",
        "megabyte per second",
        "megacoulomb",
        "megacoulomb per cubic metre",
        "megacoulomb per square metre",
        "megaelectronvolt",
        "megagram",
        "megagram per cubic metre",
        "megahertz",
        "megahertz kilometre",
        "megahertz metre",
        "megajoule",
        "megajoule per cubic metre",
        "megajoule per kilogram",
        "megajoule per second",
        "megalitre",
        "megametre",
        "meganewton",
        "meganewton metre",
        "megaohm",
        "megaohm kilometre",
        "megaohm metre",
        "megaohm per kilometre",
        "megaohm per metre",
        "megapascal",
        "megapascal cubic metre per second",
        "megapascal litre per second",
        "megapascal per bar",
        "megapascal per kelvin",
        "megapixel",
        "megasiemens per metre",
        "megavar",
        "megavolt",
        "megavolt - ampere",
        "megavolt ampere reactive hour",
        "megavolt per metre",
        "megavolt-ampere",
        "megawatt",
        "megawatt hour (1000 kW.h)",
        "megawatt hour per hour",
        "megawatt hour(1000 kW.h)",
        "megawatt per hertz",
        "megawatts per minute",
        "mesh",
        "message",
        "metre",
        "metre kelvin",
        "metre per bar",
        "metre per degree Celcius metre",
        "metre per hour",
        "metre per kelvin",
        "metre per minute",
        "metre per pascal",
        "metre per radiant",
        "metre per second",
        "metre per second bar",
        "metre per second kelvin",
        "metre per second pascal",
        "metre per second squared",
        "metre per volt second",
        "metre to the fourth power",
        "metric carat",
        "metric horse power",
        "metric hp",
        "metric ton(including container)",
        "metric ton(including inner packaging)",
        "metric ton(lubricating oil)",
        "MeV",
        "mF",
        "mg",
        "Mg",
        "mg/(d·bar)",
        "mg/(d·K)",
        "mg/(h·bar)",
        "mg/(h·K)",
        "mg/(min·bar)",
        "mg/(min·K)",
        "mg/(s·bar)",
        "mg/(s·K)",
        "mg/bar",
        "mg/cm²",
        "mg/d",
        "mg/g",
        "mg/h",
        "mg/K",
        "mg/kg",
        "mg/l",
        "mg/m",
        "mg/m²",
        "mg/m³",
        "Mg/m³",
        "mg/min",
        "mg/s",
        "mGal",
        "mGy",
        "mGy/h",
        "mGy/min",
        "mGy/s",
        "mH",
        "mH/kΩ",
        "mH/kΩ",
        "mH/Ω",
        "mH/Ω",
        "mH₂O",
        "mho",
        "mHz",
        "MHz",
        "MHz·km",
        "MHz·m",
        "mi (US survey)",
        "mi/min",
        "mi/s",
        "mi/s²",
        "mi²",
        "mi² (US survey)",
        "mi³",
        "Mibit",
        "Mibit/m",
        "Mibit/m²",
        "Mibit/m³",
        "Mibyte",
        "micro-inch",
        "microampere",
        "microbar",
        "microbecquerel",
        "microcoulomb",
        "microcoulomb per cubic metre",
        "microcoulomb per square metre",
        "microcurie",
        "microfarad",
        "microfarad per kilometre",
        "microfarad per metre",
        "microgram",
        "microgram per cubic metre",
        "microgram per cubic metre bar",
        "microgram per cubic metre kelvin",
        "microgram per hectogram",
        "microgram per kilogram",
        "microgram per litre",
        "microgray per hour",
        "microgray per minute",
        "microgray per second",
        "microhenry",
        "microhenry per kiloohm",
        "microhenry per metre",
        "microhenry per ohm",
        "microlitre",
        "microlitre per litre",
        "micrometre (micron)",
        "micrometre per kelvin",
        "micrometre(micron)",
        "micromho",
        "micromole",
        "micronewton",
        "micronewton metre",
        "microohm",
        "microohm metre",
        "micropascal",
        "micropoise",
        "microradian",
        "microsecond",
        "microsiemens",
        "microsiemens per centimetre",
        "microsiemens per metre",
        "microsievert per hour",
        "microsievert per minute",
        "microsievert per second",
        "microtesla",
        "microvolt",
        "microvolt per metre",
        "microwatt",
        "microwatt per square metre",
        "mil",
        "mile",
        "mile (based on U.S. survey foot)",
        "mile (statute mile)",
        "mile (statute mile) per second squared",
        "mile per hour (statute mile)",
        "mile per hour(statute mile)",
        "mile per minute",
        "mile per second",
        "mile(based on U.S. survey foot)",
        "mile(statute mile)",
        "mile(statute mile) per second squared",
        "mile/h",
        "mille",
        "milli-inch",
        "milliampere",
        "milliampere hour",
        "milliampere per bar",
        "milliampere per inch",
        "milliampere per litre minute",
        "milliampere per millimetre",
        "milliampere per pound-force per square inch",
        "milliard",
        "millibar",
        "millibar cubic metre per second",
        "millibar litre per second",
        "millibar per bar",
        "millibar per kelvin",
        "millicandela",
        "millicoulomb",
        "millicoulomb per cubic metre",
        "millicoulomb per kilogram",
        "millicoulomb per square metre",
        "millicurie",
        "milliequivalence caustic potash per gram of product",
        "millifarad",
        "milligal",
        "milligram",
        "milligram per bar",
        "milligram per cubic metre",
        "milligram per cubic metre bar",
        "milligram per cubic metre kelvin",
        "milligram per day",
        "milligram per day bar",
        "milligram per day kelvin",
        "milligram per gram",
        "milligram per hour",
        "milligram per hour bar",
        "milligram per hour kelvin",
        "milligram per kelvin",
        "milligram per kilogram",
        "milligram per litre",
        "milligram per metre",
        "milligram per minute",
        "milligram per minute bar",
        "milligram per minute kelvin",
        "milligram per second",
        "milligram per second bar",
        "milligram per second kelvin",
        "milligram per square centimetre",
        "milligram per square metre",
        "milligray",
        "milligray per hour",
        "milligray per minute",
        "milligray per second",
        "millihenry",
        "millihenry per kiloohm",
        "millihenry per ohm",
        "millihertz",
        "millijoule",
        "millilitre",
        "millilitre per bar",
        "millilitre per cubic metre",
        "millilitre per day",
        "millilitre per day bar",
        "millilitre per day kelvin",
        "millilitre per hour",
        "millilitre per hour bar",
        "millilitre per hour kelvin",
        "millilitre per kelvin",
        "millilitre per kilogram",
        "millilitre per litre",
        "millilitre per minute",
        "millilitre per minute bar",
        "millilitre per minute kelvin",
        "millilitre per second",
        "millilitre per second bar",
        "millilitre per second kelvin",
        "millilitre per square centimetre minute",
        "millilitre per square centimetre second",
        "millimetre",
        "millimetre per bar",
        "millimetre per degree Celcius metre",
        "millimetre per hour",
        "millimetre per kelvin",
        "millimetre per minute",
        "millimetre per second",
        "millimetre per second squared",
        "millimetre per year",
        "millimetre squared per second",
        "millimetre to the fourth power",
        "millimole",
        "millimole per gram",
        "millimole per kilogram",
        "millimole per litre",
        "millinewton",
        "millinewton metre",
        "millinewton per metre",
        "milliohm",
        "milliohm metre",
        "milliohm per metre",
        "million",
        "million Btu per 1000 cubic foot",
        "million Btu(IT) per hour",
        "million cubic metre",
        "million international unit",
        "millipascal",
        "millipascal per metre",
        "millipascal second",
        "millipascal second per bar",
        "millipascal second per kelvin",
        "milliradian",
        "milliroentgen",
        "milliroentgen aequivalent men",
        "millisecond",
        "millisiemens",
        "millisiemens per centimetre",
        "millisievert",
        "millisievert per hour",
        "millisievert per minute",
        "millisievert per second",
        "millitesla",
        "millivolt",
        "millivolt - ampere",
        "millivolt per kelvin",
        "millivolt per metre",
        "millivolt per minute",
        "millivolt-ampere",
        "milliwatt",
        "milliwatt per square metre",
        "milliweber",
        "min",
        "min⁻¹",
        "minute [unit of angle]",
        "minute [unit of time]",
        "minute[unit of angle]",
        "minute[unit of time]",
        "mJ",
        "MJ",
        "MJ/kg",
        "MJ/m³",
        "MJ/s",
        "ml",
        "Ml",
        "ml/(cm²·s)",
        "ml/(d·bar)",
        "ml/(d·K)",
        "ml/(h·bar)",
        "ml/(h·K)",
        "ml/(min·bar)",
        "ml/(min·K)",
        "ml/(s·bar)",
        "ml/(s·K)",
        "ml/bar",
        "ml/d",
        "ml/h",
        "ml/K",
        "ml/kg",
        "ml/l",
        "ml/m³",
        "ml/min",
        "ml/s",
        "mm",
        "Mm",
        "mm H₂O",
        "mm Hg",
        "mm/(°C·m)",
        "mm/bar",
        "mm/h",
        "mm/K",
        "mm/min",
        "mm/s",
        "mm/s²",
        "mm/y",
        "mm²",
        "mm²/s",
        "mm³",
        "Mm³",
        "mm³/m³",
        "mm⁴",
        "mmol",
        "mmol/g",
        "mmol/kg",
        "mmol/l",
        "MMSCF/day",
        "mN",
        "MN",
        "mN·m",
        "MN·m",
        "mN/m",
        "mo",
        "mo (30 days)",
        "module width",
        "mol",
        "mol per cubic metre pascal",
        "mol per kilogram pascal",
        "mol/dm³",
        "mol/h",
        "mol/kg",
        "mol/l",
        "mol/m³",
        "mol/min",
        "mol/s",
        "mol⁻¹",
        "mole",
        "mole per cubic decimetre",
        "mole per cubic metre",
        "mole per cubic metre bar",
        "mole per cubic metre kelvin",
        "mole per cubiv metre to the power sum of stoichiometric numbers",
        "mole per hour",
        "mole per kilogram",
        "mole per kilogram bar",
        "mole per kilogram kelvin",
        "mole per litre",
        "mole per litre bar",
        "mole per litre kelvin",
        "mole per minute",
        "mole per second",
        "monetary value",
        "month",
        "mPa",
        "MPa",
        "MPa·l/s",
        "MPa·m³/s",
        "mPa·s",
        "mPa·s/bar",
        "mPa·s/K",
        "MPa/bar",
        "MPa/K",
        "mPa/m",
        "mR",
        "mrad",
        "mrem",
        "ms",
        "mS",
        "mS/cm",
        "MS/m",
        "mSv",
        "mSv/h",
        "mSv/min",
        "mSv/s",
        "mT",
        "mutually defined",
        "mV",
        "MV",
        "mV·A",
        "MV·A",
        "mV/K",
        "mV/m",
        "MV/m",
        "mV/min",
        "mvar",
        "Mvar·h",
        "mW",
        "MW",
        "MW·h",
        "MW·h/h",
        "MW/Hz",
        "mW/m²",
        "MW/min",
        "mWb",
        "mΩ",
        "mΩ",
        "MΩ",
        "MΩ",
        "MΩ·km",
        "MΩ·km",
        "mΩ·m",
        "mΩ·m",
        "MΩ·m",
        "MΩ·m",
        "MΩ/km",
        "MΩ/km",
        "mΩ/m",
        "mΩ/m",
        "MΩ/m",
        "MΩ/m",
        "N",
        "n mile",
        "N·cm",
        "N·m",
        "N·m·s",
        "N·m·W⁻⁰‧⁵",
        "N·m/A",
        "N·m/kg",
        "N·m/m²",
        "N·m/rad",
        "N·m²/A",
        "N·m²/kg²",
        "N·s",
        "N·s/m",
        "N/A",
        "N/cm",
        "N/cm²",
        "N/m",
        "N/m²",
        "N/mm",
        "N/mm²",
        "nA",
        "nanoampere",
        "nanocoulomb",
        "nanofarad",
        "nanofarad per metre",
        "nanogram per kilogram",
        "nanogray per hour",
        "nanogray per minute",
        "nanogray per second",
        "nanohenry",
        "nanohenry per metre",
        "nanolitre",
        "nanometre",
        "nanomole",
        "nanoohm",
        "nanoohm metre",
        "nanosecond",
        "nanosiemens per centimetre",
        "nanosiemens per metre",
        "nanosievert per hour",
        "nanosievert per minute",
        "nanosievert per second",
        "nanotesla",
        "nanowatt",
        "nat",
        "nat/s",
        "natural unit of information",
        "natural unit of information per second",
        "nautical mile",
        "nC",
        "neper",
        "neper per second",
        "Nephelometric turbidity unit",
        "net kilogram",
        "net ton",
        "newton",
        "newton centimetre",
        "newton metre",
        "newton metre per ampere",
        "newton metre per degree",
        "newton metre per kilogram",
        "newton metre per metre",
        "newton metre per radian",
        "newton metre per square metre",
        "newton metre second",
        "newton metre squared per kilogram squared",
        "newton metre watt to the power minus 0,5",
        "newton per ampere",
        "newton per centimetre",
        "newton per metre",
        "newton per millimetre",
        "newton per square centimetre",
        "newton per square metre",
        "newton per square millimetre",
        "newton second",
        "newton second per metre",
        "newton second per square metre",
        "newton square metre per ampere",
        "nF",
        "nF/m",
        "ng/kg",
        "nGy/h",
        "nGy/min",
        "nGy/s",
        "nH",
        "nH/m",
        "nil",
        "nl",
        "nm",
        "Nm/°",
        "nmol",
        "Normalised cubic metre",
        "Normalized cubic metre per day",
        "Normalized cubic metre per hour",
        "Np",
        "Np/s",
        "ns",
        "nS/cm",
        "nS/m",
        "nSv/h",
        "nSv/min",
        "nSv/s",
        "nT",
        "NTU",
        "number of articles",
        "number of cells",
        "number of international units",
        "number of jewels",
        "number of packs",
        "number of parts",
        "number of words",
        "nW",
        "nΩ",
        "nΩ",
        "nΩ·m",
        "nΩ·m",
        "o",
        "o/min",
        "o/s",
        "octave",
        "octet",
        "octet per second",
        "ODS Grams",
        "ODS Kilograms",
        "ODS Milligrams",
        "ºF·h·ft²/(BtuIT·in)",
        "ºF·h·ft²/(Btuth·in)",
        "ºF/(BtuIT/h)",
        "ºF/(BtuIT/s)",
        "ºF/(Btuth/h)",
        "ºF/(Btuth/s)",
        "ohm",
        "ohm centimetre",
        "ohm circular-mil per foot",
        "ohm kilometre",
        "ohm metre",
        "ohm per kilometre",
        "ohm per metre",
        "ohm per mile (statute mile)",
        "ohm per mile(statute mile)",
        "one",
        "one per one",
        "oscillations per minute",
        "ounce (avoirdupois)",
        "ounce (avoirdupois) per cubic inch",
        "ounce (avoirdupois) per cubic yard",
        "ounce (avoirdupois) per day",
        "ounce (avoirdupois) per gallon (UK)",
        "ounce (avoirdupois) per gallon (US)",
        "ounce (avoirdupois) per hour",
        "ounce (avoirdupois) per minute",
        "ounce (avoirdupois) per second",
        "ounce (avoirdupois) per square inch",
        "ounce (avoirdupois)-force",
        "ounce (avoirdupois)-force inch",
        "ounce (UK fluid) per day",
        "ounce (UK fluid) per hour",
        "ounce (UK fluid) per minute",
        "ounce (UK fluid) per second",
        "ounce (US fluid) per day",
        "ounce (US fluid) per hour",
        "ounce (US fluid) per minute",
        "ounce (US fluid) per second",
        "ounce foot",
        "ounce inch",
        "ounce per square foot",
        "ounce per square yard",
        "ounce(avoirdupois)",
        "ounce(avoirdupois) per cubic inch",
        "ounce(avoirdupois) per cubic yard",
        "ounce(avoirdupois) per day",
        "ounce(avoirdupois) per gallon (UK)",
        "ounce(avoirdupois) per gallon (US)",
        "ounce(avoirdupois) per hour",
        "ounce(avoirdupois) per minute",
        "ounce(avoirdupois) per second",
        "ounce(avoirdupois) per square inch",
        "ounce(avoirdupois)-force",
        "ounce(avoirdupois)-force inch",
        "ounce(UK fluid) per day",
        "ounce(UK fluid) per hour",
        "ounce(UK fluid) per minute",
        "ounce(UK fluid) per second",
        "ounce(US fluid) per day",
        "ounce(US fluid) per hour",
        "ounce(US fluid) per minute",
        "ounce(US fluid) per second",
        "outfit",
        "overtime hour",
        "oz",
        "oz·ft",
        "oz·in",
        "oz/d",
        "oz/ft²",
        "oz/gal (UK)",
        "oz/gal (US)",
        "oz/h",
        "oz/in²",
        "oz/in³",
        "oz/min",
        "oz/s",
        "oz/yd²",
        "oz/yd³",
        "ozf",
        "ozf·in",
        "ozone depletion equivalent",
        "p",
        "P",
        "P/bar",
        "P/K",
        "P/Pa",
        "pA",
        "Pa",
        "Pa.s/K",
        "Pa· s/m",
        "Pa·l/s",
        "Pa·m³/s",
        "Pa·s",
        "Pa·s/bar",
        "Pa·s/l",
        "Pa·s/m³",
        "Pa/(kg/m²)",
        "Pa/bar",
        "Pa/K",
        "Pa/m",
        "Pa⁻¹",
        "Pa²·s",
        "pad",
        "page",
        "page per inch",
        "page-facsimile",
        "page-hardcopy",
        "pair",
        "panel",
        "parsec",
        "part per billion (US)",
        "part per billion(US)",
        "part per hundred thousand",
        "part per million",
        "part per thousand",
        "pascal",
        "pascal cubic metre per second",
        "pascal litre per second",
        "pascal per bar",
        "pascal per kelvin",
        "pascal per metre",
        "pascal second",
        "pascal second per bar",
        "pascal second per cubic metre",
        "pascal second per kelvin",
        "pascal second per litre",
        "pascal second per metre",
        "pascal square metre per kilogram",
        "pascal squared second",
        "pascal to the power sum of stoichiometric numbers",
        "PaΣνB",
        "Pbit",
        "Pbit/s",
        "Pbyte",
        "pc",
        "pC",
        "pct",
        "pdl",
        "pdl/ft²",
        "pdl/in",
        "pdl/in²",
        "pdl·ft",
        "pdl·in",
        "pebibit per cubic metre",
        "pebibit per metre",
        "pebibit per square metre",
        "pebibyte",
        "peck",
        "peck (UK)",
        "peck (UK) per day",
        "peck (UK) per hour",
        "peck (UK) per minute",
        "peck (UK) per second",
        "peck (US dry) per day",
        "peck (US dry) per hour",
        "peck (US dry) per minute",
        "peck (US dry) per second",
        "peck(UK)",
        "peck(UK) per day",
        "peck(UK) per hour",
        "peck(UK) per minute",
        "peck(UK) per second",
        "peck(US dry) per day",
        "peck(US dry) per hour",
        "peck(US dry) per minute",
        "peck(US dry) per second",
        "pen calorie",
        "pen gram(protein)",
        "pennyweight",
        "per mille per psi",
        "percent",
        "percent per bar",
        "percent per decakelvin",
        "percent per degree",
        "percent per degree Celsius",
        "percent per hectobar",
        "percent per hundred",
        "percent per inch",
        "percent per kelvin",
        "percent per metre",
        "percent per millimetre",
        "percent per month",
        "percent per ohm",
        "percent per one hundred thousand",
        "percent per ten thousand",
        "percent per thousand",
        "percent per volt",
        "percent volume",
        "percent weight",
        "perm (0 ºC)",
        "perm (23 ºC)",
        "perm(0 ºC)",
        "perm(23 ºC)",
        "person",
        "petabit",
        "petabit per second",
        "petabyte",
        "petajoule",
        "pF",
        "pF/m",
        "pfd",
        "Pferdestaerke",
        "pfund",
        "ph",
        "pH",
        "pH (potential of Hydrogen)",
        "pH(potential of Hydrogen)",
        "phon",
        "phot",
        "Pibit/m",
        "Pibit/m²",
        "Pibit/m³",
        "Pibyte",
        "pica",
        "picoampere",
        "picocoulomb",
        "picofarad",
        "picofarad per metre",
        "picohenry",
        "picolitre",
        "picometre",
        "picopascal per kilometre",
        "picosecond",
        "picosiemens",
        "picosiemens per metre",
        "picovolt",
        "picowatt",
        "picowatt per square metre",
        "piece",
        "ping",
        "pint (UK)",
        "pint (UK) per day",
        "pint (UK) per hour",
        "pint (UK) per minute",
        "pint (UK) per second",
        "pint (US liquid) per day",
        "pint (US liquid) per hour",
        "pint (US liquid) per minute",
        "pint (US liquid) per second",
        "pint (US)",
        "pint(UK)",
        "pint(UK) per day",
        "pint(UK) per hour",
        "pint(UK) per minute",
        "pint(UK) per second",
        "pint(US dry)",
        "pint(US liquid) per day",
        "pint(US liquid) per hour",
        "pint(US liquid) per minute",
        "pint(US liquid) per second",
        "pint(US)",
        "pipeline joint",
        "pitch",
        "pixel",
        "PJ",
        "pk",
        "pk (UK)",
        "pk (UK)/d",
        "pk (UK)/h",
        "pk (UK)/min",
        "pk (UK)/s",
        "pk (US dry)/d",
        "pk (US dry)/h",
        "pk (US dry)/min",
        "pk (US dry)/s",
        "pk (US)",
        "pl",
        "pm",
        "poise",
        "poise per bar",
        "poise per kelvin",
        "poise per pascal",
        "pond",
        "portion",
        "pound",
        "pound (avoirdupois) per cubic foot degree Fahrenheit",
        "pound (avoirdupois) per cubic foot psi",
        "pound (avoirdupois) per cubic inch degree Fahrenheit",
        "pound (avoirdupois) per cubic inch psi",
        "pound (avoirdupois) per day",
        "pound (avoirdupois) per degree Fahrenheit",
        "pound (avoirdupois) per gallon (UK)",
        "pound (avoirdupois) per hour degree Fahrenheit",
        "pound (avoirdupois) per hour psi",
        "pound (avoirdupois) per minute",
        "pound (avoirdupois) per minute degree Fahrenheit",
        "pound (avoirdupois) per minute psi",
        "pound (avoirdupois) per psi",
        "pound (avoirdupois) per second",
        "pound (avoirdupois) per second degree Fahrenheit",
        "pound (avoirdupois) per second psi",
        "pound (avoirdupois) square foot",
        "pound foot per second",
        "pound inch per second",
        "pound inch squared",
        "pound mole",
        "pound mole per minute",
        "pound mole per pound",
        "pound mole per second",
        "pound per cubic foot",
        "pound per cubic inch",
        "pound per cubic yard",
        "pound per foot",
        "pound per foot day",
        "pound per foot hour",
        "pound per foot minute",
        "pound per foot second",
        "pound per gallon (US)",
        "pound per gallon(US)",
        "pound per hour",
        "pound per inch of length",
        "pound per pound",
        "pound per ream",
        "pound per square foot",
        "pound per square inch absolute",
        "pound per square yard",
        "pound per yard",
        "pound-force",
        "pound-force foot",
        "pound-force foot per ampere",
        "pound-force foot per inch",
        "pound-force foot per pound",
        "pound-force inch",
        "pound-force inch per inch",
        "pound-force per foot",
        "pound-force per inch",
        "pound-force per square foot",
        "pound-force per square inch",
        "pound-force per square inch degree Fahrenheit",
        "pound-force per yard",
        "pound-force second per square foot",
        "pound-force second per square inch",
        "pound(avoirdupois) per cubic foot degree Fahrenheit",
        "pound(avoirdupois) per cubic foot psi",
        "pound(avoirdupois) per cubic inch degree Fahrenheit",
        "pound(avoirdupois) per cubic inch psi",
        "pound(avoirdupois) per day",
        "pound(avoirdupois) per degree Fahrenheit",
        "pound(avoirdupois) per gallon (UK)",
        "pound(avoirdupois) per hour degree Fahrenheit",
        "pound(avoirdupois) per hour psi",
        "pound(avoirdupois) per minute",
        "pound(avoirdupois) per minute degree Fahrenheit",
        "pound(avoirdupois) per minute psi",
        "pound(avoirdupois) per psi",
        "pound(avoirdupois) per second",
        "pound(avoirdupois) per second degree Fahrenheit",
        "pound(avoirdupois) per second psi",
        "pound(avoirdupois) square foot",
        "poundal",
        "poundal foot",
        "poundal inch",
        "poundal per inch",
        "poundal per square foot",
        "poundal per square inch",
        "poundal second per square foot",
        "poundal second per square inch",
        "pPa/km",
        "ppb",
        "ppht",
        "ppi",
        "ppm",
        "print point",
        "proof gallon",
        "proof litre",
        "ps",
        "pS",
        "PS",
        "pS/m",
        "psi cubic inch per second",
        "psi cubic metre per second",
        "psi cubic yard per second",
        "psi litre per second",
        "psi per inch",
        "psi per psi",
        "psi·in³/s",
        "psi·l/s",
        "psi·m³/s",
        "psi·yd³/s",
        "psi/°F",
        "psi/in",
        "psi/psi",
        "pt (UK)",
        "pt (UK)/d",
        "pt (UK)/h",
        "pt (UK)/min",
        "pt (UK)/s",
        "pt (US dry)",
        "pt (US liq.)/d",
        "pt (US liq.)/h",
        "pt (US liq.)/min",
        "pt (US liq.)/s",
        "pt (US)",
        "PTN",
        "pV",
        "pW",
        "pW/m²",
        "qr",
        "Qr (UK)",
        "qt (UK liq.)/d",
        "qt (UK liq.)/h",
        "qt (UK liq.)/min",
        "qt (UK liq.)/s",
        "qt (UK)",
        "qt (US dry)",
        "qt (US liq.)/d",
        "qt (US liq.)/h",
        "qt (US liq.)/min",
        "qt (US liq.)/s",
        "qt (US)",
        "quad",
        "quad (1015 BtuIT)",
        "quad(1015 BtuIT)",
        "quart (UK liquid) per day",
        "quart (UK liquid) per hour",
        "quart (UK liquid) per minute",
        "quart (UK liquid) per second",
        "quart (UK)",
        "quart (US liquid) per day",
        "quart (US liquid) per hour",
        "quart (US liquid) per minute",
        "quart (US liquid) per second",
        "quart (US)",
        "quart(UK liquid) per day",
        "quart(UK liquid) per hour",
        "quart(UK liquid) per minute",
        "quart(UK liquid) per second",
        "quart(UK)",
        "quart(US dry)",
        "quart(US liquid) per day",
        "quart(US liquid) per hour",
        "quart(US liquid) per minute",
        "quart(US liquid) per second",
        "quart(US)",
        "quarter (UK)",
        "quarter(of a year)",
        "quarter(UK)",
        "quire",
        "R",
        "r/min",
        "r/s",
        "R/s",
        "rack unit",
        "rad",
        "rad·m²/kg",
        "rad·m²/mol",
        "rad/m",
        "rad/s",
        "rad/s²",
        "radian",
        "radian per metre",
        "radian per second",
        "radian per second squared",
        "radian square metre per kilogram",
        "radian square metre per mole",
        "rate",
        "ration",
        "rd (US)",
        "ream",
        "reciprocal angstrom",
        "reciprocal bar",
        "reciprocal centimetre",
        "reciprocal cubic centimetre",
        "reciprocal cubic foot",
        "reciprocal cubic inch",
        "reciprocal cubic metre",
        "reciprocal cubic metre per second",
        "reciprocal cubic millimetre",
        "reciprocal cubic yard",
        "reciprocal day",
        "reciprocal degree Fahrenheit",
        "reciprocal electron volt per cubic metre",
        "reciprocal henry",
        "reciprocal hour",
        "reciprocal inch",
        "reciprocal joule",
        "reciprocal joule per cubic metre",
        "reciprocal kelvin or kelvin to the power minus one",
        "reciprocal kilovolt - ampere reciprocal hour",
        "reciprocal kilovolt-ampere reciprocal hour",
        "reciprocal litre",
        "reciprocal megakelvin or megakelvin to the power minus one",
        "reciprocal metre",
        "reciprocal metre squared reciprocal second",
        "reciprocal minute",
        "reciprocal mole",
        "reciprocal month",
        "reciprocal pascal or pascal to the power minus one",
        "reciprocal psi",
        "reciprocal radian",
        "reciprocal second",
        "reciprocal second per cubic metre",
        "reciprocal second per metre squared",
        "reciprocal second per steradian",
        "reciprocal second per steradian metre squared",
        "reciprocal square inch",
        "reciprocal square metre",
        "reciprocal volt",
        "reciprocal volt - ampere reciprocal second",
        "reciprocal volt-ampere reciprocal second",
        "reciprocal week",
        "reciprocal year",
        "rem",
        "rem per second",
        "rem/s",
        "rev",
        "revenue ton mile",
        "revolution",
        "revolution per minute",
        "revolutions per minute",
        "revolutions per second",
        "rhe",
        "rod [unit of distance]",
        "rod[unit of distance]",
        "roentgen",
        "roentgen per second",
        "room",
        "round",
        "RT",
        "RU",
        "run foot",
        "running or operating hour",
        "s",
        "S",
        "S·m²/mol",
        "s/(rad·m³)",
        "S/cm",
        "s/kg",
        "S/m",
        "s/m³",
        "s⁻¹",
        "s⁻¹/(sr·m²)",
        "s⁻¹/m²",
        "s⁻¹/m³",
        "s⁻¹/sr",
        "sb",
        "score",
        "scruple",
        "second [unit of angle]",
        "second [unit of time]",
        "second per cubic metre",
        "second per cubic metre radian",
        "second per kilogramm",
        "second per radian cubic metre",
        "second[unit of angle]",
        "second[unit of time]",
        "segment",
        "service unit",
        "set",
        "Sh",
        "Sh/s",
        "shake",
        "shannon",
        "shannon per second",
        "shares",
        "shipment",
        "shot",
        "sidereal year",
        "siemens",
        "siemens per centimetre",
        "siemens per metre",
        "siemens square metre per mole",
        "sievert",
        "sievert per hour",
        "sievert per minute",
        "sievert per second",
        "sitas",
        "skein",
        "slug",
        "slug per cubic foot",
        "slug per day",
        "slug per foot second",
        "slug per hour",
        "slug per minute",
        "slug per second",
        "slug/(ft·s)",
        "slug/d",
        "slug/ft³",
        "slug/h",
        "slug/min",
        "slug/s",
        "sone",
        "square",
        "square centimetre",
        "square centimetre per erg",
        "square centimetre per gram",
        "square centimetre per second",
        "square centimetre per steradian erg",
        "square decametre",
        "square decimetre",
        "square foot",
        "square foot per hour",
        "square foot per second",
        "square hectometre",
        "square inch",
        "square inch per second",
        "square kilometre",
        "square metre",
        "square metre hour degree Celsius per kilocalorie (international table)",
        "square metre hour degree Celsius per kilocalorie(international table)",
        "square metre kelvin per watt",
        "square metre per joule",
        "square metre per kilogram",
        "square metre per litre",
        "square metre per mole",
        "square metre per newton",
        "square metre per second",
        "square metre per second bar",
        "square metre per second kelvin",
        "square metre per second pascal",
        "square metre per steradian",
        "square metre per steradian joule",
        "square metre per volt second",
        "square micrometre (square micron)",
        "square micrometre(square micron)",
        "square mile (based on U.S. survey foot)",
        "square mile (statute mile)",
        "square mile(based on U.S. survey foot)",
        "square mile(statute mile)",
        "square millimetre",
        "square yard",
        "square(roofing)",
        "sr",
        "st",
        "St",
        "St/bar",
        "St/K",
        "St/Pa",
        "standard",
        "standard acceleration of free fall",
        "standard atmosphere",
        "standard atmosphere per metre",
        "standard cubic foot",
        "Standard cubic metre",
        "Standard cubic metre per day",
        "Standard cubic metre per hour",
        "standard kilolitre",
        "standard litre",
        "std",
        "steradian",
        "stere",
        "stick",
        "stick(cigarette)",
        "stick(military)",
        "stilb",
        "stokes",
        "stokes per bar",
        "stokes per kelvin",
        "stokes per pascal",
        "stone (UK)",
        "stone(UK)",
        "strand",
        "straw",
        "strip",
        "Sv",
        "Sv/h",
        "Sv/min",
        "Sv/s",
        "syringe",
        "t",
        "T",
        "t·km",
        "t/bar",
        "t/d",
        "t/h",
        "t/K",
        "t/m³",
        "t/min",
        "t/mo",
        "t/s",
        "t/y",
        "tablespoon (US)",
        "tablespoon(US)",
        "tablet",
        "TAN",
        "Tbit",
        "Tbit/s",
        "Tbyte",
        "teaspoon (US)",
        "teaspoon(US)",
        "tebibit per cubic metre",
        "tebibit per metre",
        "tebibit per square metre",
        "tebibyte",
        "technical atmosphere",
        "technical atmosphere per metre",
        "teeth per inch",
        "telecommunication line in service",
        "telecommunication line in service average",
        "telecommunication port",
        "ten day",
        "ten pack",
        "ten pair",
        "ten set",
        "ten thousand sticks",
        "terabit",
        "terabit per second",
        "terabyte",
        "terahertz",
        "terajoule",
        "teraohm",
        "terawatt",
        "terawatt hour",
        "tesla",
        "test",
        "TEU",
        "tex",
        "tex (g/km)",
        "theoretical pound",
        "theoretical ton",
        "therm (EC)",
        "therm (U.S.)",
        "therm(EC)",
        "therm(U.S.)",
        "thm (EC)",
        "thm (US)",
        "thousand",
        "thousand board foot",
        "thousand cubic foot",
        "thousand cubic metre",
        "thousand cubic metre per day",
        "thousand piece",
        "thousand square inch",
        "thousand standard brick equivalent",
        "THz",
        "Tibit/m",
        "Tibit/m²",
        "Tibit/m³",
        "Tibyte",
        "TJ",
        "ton (UK long) per cubic yard",
        "ton (UK shipping)",
        "ton (UK)",
        "ton (UK) or long ton (US)",
        "ton (UK)/d",
        "ton (US shipping)",
        "ton (US short) per cubic yard",
        "ton (US)",
        "ton (US) /h",
        "ton (US) or short ton (UK/US)",
        "ton (US) per hour",
        "ton (US)/(h·°F)",
        "ton (US)/°F",
        "ton (US)/d",
        "ton (US)/psi",
        "ton long per day",
        "ton short per day",
        "ton short per degree Fahrenheit",
        "ton short per hour degree Fahrenheit",
        "ton short per hour psi",
        "ton short per psi",
        "ton-force (US short)",
        "ton-force(US short)",
        "ton.l/yd³ (UK)",
        "ton.s/yd³ (US)",
        "ton.sh-force",
        "ton(assay)",
        "ton(register)",
        "ton(UK long) per cubic yard",
        "ton(UK shipping)",
        "ton(UK) or long ton (US)",
        "ton(US shipping)",
        "ton(US short) per cubic yard",
        "ton(US) or short ton (UK/US)",
        "ton(US) per hour",
        "tonne (metric ton)",
        "tonne kilometre",
        "tonne per bar",
        "tonne per cubic metre",
        "tonne per cubic metre bar",
        "tonne per cubic metre kelvin",
        "tonne per day",
        "tonne per day bar",
        "tonne per day kelvin",
        "tonne per hour",
        "tonne per hour bar",
        "tonne per hour kelvin",
        "tonne per kelvin",
        "tonne per minute",
        "tonne per minute bar",
        "tonne per minute kelvin",
        "tonne per month",
        "tonne per second",
        "tonne per second bar",
        "tonne per second kelvin",
        "tonne per year",
        "tonne(metric ton)",
        "torr",
        "Torr",
        "torr per metre",
        "Torr/m",
        "total acid number",
        "TPI",
        "tr oz",
        "treatment",
        "trillion(EUR)",
        "trip",
        "tropical year",
        "troy ounce or apothecary ounce",
        "troy pound(US)",
        "TW",
        "TW·h",
        "twenty foot container",
        "tyre",
        "TΩ",
        "TΩ",
        "u",
        "U",
        "U or RU",
        "ua",
        "unified atomic mass unit",
        "unit pole",
        "US gallon per minute",
        "use",
        "V",
        "V·A",
        "V·A / kg",
        "V·s/m",
        "V/(lbf/in²)",
        "V/(l·min)",
        "V/bar",
        "V/cm",
        "V/in",
        "V/K",
        "V/m",
        "V/mm",
        "V/Pa",
        "V/s",
        "V/µs",
        "V²/K²",
        "var",
        "volt",
        "volt - ampere",
        "volt - ampere per kilogram",
        "volt AC",
        "volt DC",
        "volt per bar",
        "volt per centimetre",
        "volt per inch",
        "volt per kelvin",
        "volt per litre minute",
        "volt per metre",
        "volt per microsecond",
        "volt per millimetre",
        "volt per pascal",
        "volt per second",
        "volt second per metre",
        "volt square inch per pound-force",
        "volt squared per kelvin squared",
        "volt-ampere",
        "volt-ampere per kilogram",
        "W",
        "W·h",
        "W·m²",
        "W·s",
        "W/(m·°C)",
        "W/(m·K)",
        "W/(m²·K)",
        "W/(m²·K⁴)",
        "W/(sr·m²)",
        "W/cm²",
        "W/in²",
        "W/K",
        "W/kg",
        "W/m",
        "W/m²",
        "W/m³",
        "W/sr",
        "water horse power",
        "watt",
        "watt hour",
        "watt per cubic metre",
        "watt per kelvin",
        "watt per kilogram",
        "watt per metre",
        "watt per metre degree Celsius",
        "watt per metre kelvin",
        "watt per square centimetre",
        "watt per square inch",
        "watt per square metre",
        "watt per square metre kelvin",
        "watt per square metre kelvin to the fourth power",
        "watt per steradian",
        "watt per steradian square metre",
        "watt second",
        "watt square metre",
        "Wb",
        "Wb·m",
        "Wb/m",
        "Wb/mm",
        "weber",
        "weber metre",
        "weber per metre",
        "weber per millimetre",
        "weber to the power minus one",
        "week",
        "well",
        "wet kilo",
        "wet pound",
        "wet ton",
        "wine gallon",
        "wk",
        "working day",
        "working month",
        "y",
        "y (360 days)",
        "y (365 days)",
        "y (sidereal)",
        "y (tropical)",
        "yard",
        "yard per degree Fahrenheit",
        "yard per hour",
        "yard per minute",
        "yard per psi",
        "yard per second",
        "yard per second squared",
        "yd",
        "yd/°F",
        "yd/h",
        "yd/min",
        "yd/psi",
        "yd/s",
        "yd/s²",
        "yd²",
        "yd³",
        "yd³/°F",
        "yd³/d",
        "yd³/h",
        "yd³/min",
        "yd³/psi",
        "yd³/s",
        "year",
        "zone",
        "γ",
        "µA",
        "µbar",
        "µBq",
        "µC",
        "µC/m²",
        "µC/m³",
        "µCi",
        "µF",
        "µF/km",
        "µF/m",
        "µg",
        "µg/hg",
        "µg/kg",
        "µg/l",
        "µg/m³",
        "µGy/h",
        "µGy/min",
        "µGy/s",
        "µH",
        "µH/kΩ",
        "µH/kΩ",
        "µH/m",
        "µH/Ω",
        "µH/Ω",
        "µin",
        "µl",
        "µl/l",
        "µm",
        "µm/K",
        "µm²",
        "µmol",
        "µN",
        "µN·m",
        "µP",
        "µPa",
        "µrad",
        "µs",
        "µS",
        "µS/cm",
        "µS/m",
        "µSv/h",
        "µSv/min",
        "µSv/s",
        "µT",
        "µV",
        "µV/m",
        "µW",
        "µW/m²",
        "µΩ",
        "µΩ",
        "µΩ·m",
        "µΩ·m",
        "Ω",
        "Ω",
        "Ω·cm",
        "Ω·cm",
        "Ω·cmil/ft",
        "Ω·km",
        "Ω·km",
        "Ω·m",
        "Ω·m",
        "Ω/km",
        "Ω/km",
        "Ω/m",
        "Ω/m",
        "Ω/mi",
        "Ω/mi"
      ],
      "markdownEnumDescriptions": [
        "minute [unit of angle]",
        "second [unit of angle]",
        "nil",
        "British thermal unit (thermochemical) per pound degree Rankine",
        "centimetre per second bar",
        "centimetre per second kelvin",
        "foot per second degree Fahrenheit",
        "foot per second psi",
        "inch per second degree Fahrenheit",
        "inch per second psi",
        "kilocalorie (international table) per gram kelvin",
        "kilogram per cubic decimetre bar",
        "kilogram per cubic decimetre kelvin",
        "kilogram per cubic metre pascal",
        "kilogram per second pascal",
        "kilomole per cubic metre bar",
        "kilomole per cubic metre kelvin",
        "pound (avoirdupois) per cubic foot degree Fahrenheit",
        "pound (avoirdupois) per cubic foot psi",
        "pound (avoirdupois) per hour degree Fahrenheit",
        "pound (avoirdupois) per hour psi",
        "pound (avoirdupois) per cubic inch degree Fahrenheit",
        "pound (avoirdupois) per cubic inch psi",
        "pound (avoirdupois) per minute psi",
        "pound (avoirdupois) per second degree Fahrenheit",
        "pound (avoirdupois) per second psi",
        "metre per second bar",
        "metre per second kelvin",
        "metre per second pascal",
        "square metre per second pascal",
        "cubic metre per second square metre",
        "cubic metre per second pascal",
        "milligram per cubic metre bar",
        "milligram per cubic metre kelvin",
        "millilitre per square centimetre minute",
        "mole per kilogram bar",
        "mole per kilogram kelvin",
        "mol per kilogram pascal",
        "mole per litre bar",
        "mole per litre kelvin",
        "mole per cubic metre bar",
        "mole per cubic metre kelvin",
        "mol per cubic metre pascal",
        "mole per cubiv metre to the power sum of stoichiometric numbers",
        "newton second per square metre",
        "poundal second per square foot",
        "poundal second per square inch",
        "tonne per day bar",
        "tonne per day kelvin",
        "tonne per hour bar",
        "tonne per hour kelvin",
        "tonne per cubic metre bar",
        "tonne per cubic metre kelvin",
        "tonne per minute bar",
        "tonne per minute kelvin",
        "tonne per second bar",
        "tonne per second kelvin",
        "ton short per hour psi",
        "ton (US shipping)",
        "microgram per cubic metre bar",
        "microgram per cubic metre kelvin",
        "percent",
        "percent",
        "percent per degree",
        "percent per degree Celsius",
        "percent per hundred",
        "percent per thousand",
        "percent per ten thousand",
        "percent per one hundred thousand",
        "percent per bar",
        "percent per decakelvin",
        "percent per hectobar",
        "percent per inch",
        "percent per kelvin",
        "percent per metre",
        "percent per millimetre",
        "percent per month",
        "percent per volt",
        "percent per ohm",
        "percent per ohm",
        "part per thousand",
        "per mille per psi",
        "degree [unit of angle]",
        "degree per metre",
        "degree per second",
        "degree [unit of angle] per second squared",
        "degree API",
        "degree Balling",
        "degree Baume (origin scale)",
        "degree Baume (US heavy)",
        "degree Baume (US light)",
        "degree Brix",
        "degree Celsius",
        "degree Celsius per bar",
        "degree Celsius per hour",
        "degree Celsius per kelvin",
        "degree Celsius per minute",
        "degree Celsius per second",
        "degree Fahrenheit",
        "degree Fahrenheit hour square foot per British thermal unit (international table)",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
        "degree Fahrenheit per bar",
        "degree Fahrenheit per hour",
        "degree Fahrenheit per kelvin",
        "degree Fahrenheit per minute",
        "degree Fahrenheit per second",
        "degree Oechsle",
        "degree Plato",
        "degree Rankine",
        "degree Rankine per hour",
        "degree Rankine per minute",
        "degree Rankine per second",
        "degree Twaddell",
        "one",
        "second per radian cubic metre",
        "reciprocal volt - ampere reciprocal second",
        "reciprocal degree Fahrenheit",
        "one per one",
        "reciprocal bar",
        "reciprocal cubic foot",
        "reciprocal hour",
        "reciprocal inch",
        "reciprocal square inch",
        "reciprocal cubic inch",
        "reciprocal joule",
        "reciprocal kilovolt - ampere reciprocal hour",
        "reciprocal litre",
        "reciprocal megakelvin or megakelvin to the power minus one",
        "reciprocal cubic millimetre",
        "reciprocal month",
        "reciprocal psi",
        "reciprocal radian",
        "reciprocal volt",
        "weber to the power minus one",
        "reciprocal week",
        "reciprocal year",
        "reciprocal cubic yard",
        "15 °C calorie",
        "30-day month",
        "8-part cloud cover - A unit of count defining the number of eighth-parts as a measure of the celestial dome cloud coverage. Synonym: OKTA , OCTA",
        "are",
        "ampere",
        "angstrom",
        "A unit of pressure defining the number of kilopounds force per square inch.Use kip per square inch (common code N20).",
        "A unit of pressure defining the number of kilopounds force per square inch.Use kip per square inch (common code N20).",
        "ampere hour",
        "ampere square metre",
        "ampere square metre per joule second",
        "ampere minute",
        "ampere second",
        "ampere per square metre kelvin squared",
        "ampere per centimetre",
        "ampere per square centimetre",
        "ampere per kilogram",
        "ampere per metre",
        "ampere per square metre",
        "ampere per millimetre",
        "ampere per square millimetre",
        "ampere per pascal",
        "reciprocal angstrom",
        "ampere squared second",
        "access line - A unit of count defining the number of telephone access lines.",
        "accounting unit - A unit of count defining the number of accounting units.",
        "acre",
        "acre-foot (based on U.S. survey foot)",
        "acre-foot (based on U.S. survey foot)",
        "acre-foot (based on U.S. survey foot)",
        "active unit - A unit of count defining the number of active units within a substance.",
        "activity - A unit of count defining the number of activities (activity: a unit of work or action).",
        "actual/360",
        "additional minute - A unit of time defining the number of minutes in addition to the referenced minutes.",
        "attofarad",
        "air dry metric ton - A unit of count defining the number of metric tons of a product, disregarding the water content of the product.",
        "air dry ton - A unit of mass defining the number of tons of a product, disregarding the water content of the product.",
        "attojoule",
        "alcoholic strength by mass - A unit of mass defining the alcoholic strength of a liquid.",
        "alcoholic strength by volume - A unit of volume defining the alcoholic strength of a liquid (e.g. spirit, wine, beer, etc), often at a specific temperature.",
        "american wire gauge",
        "ampere",
        "ampere hour",
        "ampere minute",
        "ampere per centimetre",
        "ampere per kilogram",
        "ampere per metre",
        "ampere per millimetre",
        "ampere per pascal",
        "ampere per square centimetre",
        "ampere per square metre",
        "ampere per square metre kelvin squared",
        "ampere per square millimetre",
        "ampere second",
        "ampere square metre",
        "ampere square metre per joule second",
        "ampere squared second",
        "angstrom",
        "anti-hemophilic factor (AHF) unit - A unit of measure for blood potency (US).",
        "are",
        "assembly - A unit of count defining the number of assemblies (assembly: items that consist of component parts).",
        "assortment - A unit of count defining the number of assortments (assortment: set of items grouped in a mixed collection).",
        "astronomical unit",
        "technical atmosphere",
        "technical atmosphere per metre",
        "standard atmosphere",
        "standard atmosphere per metre",
        "attofarad",
        "attojoule",
        "average minute per call - A unit of count defining the number of minutes for the average interval of a call.",
        "american wire gauge",
        "barn",
        "bel",
        "barn per steradian electronvolt",
        "barn per electronvolt",
        "bel per metre",
        "barn per steradian",
        "ball - A unit of count defining the number of balls (ball: object formed in the shape of sphere).",
        "bar [unit of pressure]",
        "bar [unit of pressure]",
        "bar cubic metre per second",
        "bar litre per second",
        "bar per bar",
        "bar per kelvin",
        "bar litre per second",
        "bar cubic metre per second",
        "bar [unit of pressure]",
        "bar per bar",
        "bar per kelvin",
        "barn",
        "barn per electronvolt",
        "barn per steradian",
        "barn per steradian electronvolt",
        "barrel (UK petroleum)",
        "barrel (UK petroleum) per day",
        "barrel (UK petroleum) per hour",
        "barrel (UK petroleum) per minute",
        "barrel (UK petroleum) per second",
        "barrel (US petroleum) per hour",
        "barrel (US petroleum) per second",
        "barrel (US)",
        "barrel (US) per day",
        "barrel (US) per minute",
        "barrel (US) per day",
        "barrel (US) per minute",
        "barrel, imperial - A unit of volume used to measure beer.  One beer barrel equals 36 imperial gallons.",
        "barrel (UK petroleum)",
        "barrel (UK petroleum) per day",
        "barrel (UK petroleum) per hour",
        "barrel (UK petroleum) per minute",
        "barrel (UK petroleum) per second",
        "barrel (US petroleum) per hour",
        "barrel (US petroleum) per second",
        "barrel (US)",
        "barrel (US) per day",
        "barrel (US) per minute",
        "base box - A unit of area of 112 sheets of tin mil products (tin plate, tin free steel or black plate) 14 by 20 inches, or 31,360 square inches.",
        "batch - A unit of count defining the number of batches (batch: quantity of material produced in one operation or number of animals or persons coming at once).",
        "batting pound - A unit of mass defining the number of pounds of wadded fibre.",
        "baud",
        "barrel (UK petroleum)",
        "barrel (UK petroleum) per day",
        "barrel (UK petroleum) per hour",
        "barrel (UK petroleum) per minute",
        "barrel (UK petroleum) per second",
        "dry barrel (US)",
        "barrel (US petroleum) per hour",
        "barrel (US petroleum) per second",
        "baud",
        "beats per minute",
        "Beaufort",
        "becquerel",
        "becquerel per cubic metre",
        "becquerel per kilogram",
        "bel",
        "bel per metre",
        "Beaufort",
        "brake horse power",
        "biot",
        "big point",
        "billion (EUR) - Synonym: trillion (US) (10¹²)",
        "biot",
        "bit",
        "bit per cubic metre",
        "bit per metre",
        "bit per second",
        "bit per square metre",
        "bit per metre",
        "bit per square metre",
        "bit per cubic metre",
        "bit per second",
        "blank - A unit of count defining the number of blanks.",
        "board foot",
        "horsepower (boiler)",
        "book - A unit of count defining the number of books (book: set of items bound together or written document of a material whole).",
        "big point",
        "beats per minute",
        "becquerel",
        "becquerel per kilogram",
        "becquerel per cubic metre",
        "brake horse power",
        "ton (UK shipping)",
        "British thermal unit (39 ºF)",
        "British thermal unit (59 ºF)",
        "British thermal unit (60 ºF)",
        "British thermal unit (international table)",
        "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per second square foot degree Fahrenheit",
        "British thermal unit (international table) per cubic foot",
        "British thermal unit (international table) per degree Fahrenheit",
        "British thermal unit (international table) per degree Rankine",
        "British thermal unit (international table) per hour",
        "British thermal unit (international table) per hour square foot degree Fahrenheit",
        "British thermal unit (international table) per hour square foot degree Rankine",
        "British thermal unit (international table) per minute",
        "British thermal unit (international table) per pound",
        "British thermal unit (international table) per pound degree Fahrenheit",
        "British thermal unit (international table) per pound degree Rankine",
        "British thermal unit (international table) per second",
        "British thermal unit (international table) per second foot degree Rankine",
        "British thermal unit (international table) per second square foot degree Fahrenheit",
        "British thermal unit (international table) per second square foot degree Rankine",
        "British thermal unit (international table) per square foot",
        "British thermal unit (international table) per square foot hour",
        "British thermal unit (international table) per square foot second",
        "British thermal unit (international table) per square inch second",
        "British thermal unit (mean)",
        "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per cubic foot",
        "British thermal unit (thermochemical) per degree Fahrenheit",
        "British thermal unit (thermochemical) per degree Rankine",
        "British thermal unit (thermochemical) per hour",
        "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per minute",
        "British thermal unit (thermochemical) per pound",
        "British thermal unit (thermochemical) per pound degree Fahrenheit",
        "British thermal unit (thermochemical) per pound degree Rankine",
        "British thermal unit (thermochemical) per second",
        "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per square foot",
        "British thermal unit (thermochemical) per square foot hour",
        "British thermal unit (thermochemical) per square foot minute",
        "British thermal unit (thermochemical) per square foot second",
        "British thermal unit (39 ºF)",
        "British thermal unit (59 ºF)",
        "British thermal unit (60 ºF)",
        "British thermal unit (international table)",
        "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per second square foot degree Fahrenheit",
        "British thermal unit (international table) per cubic foot",
        "British thermal unit (international table) per degree Fahrenheit",
        "British thermal unit (international table) per degree Rankine",
        "British thermal unit (international table) per hour",
        "British thermal unit (international table) per hour square foot degree Fahrenheit",
        "British thermal unit (international table) per hour square foot degree Rankine",
        "British thermal unit (international table) per minute",
        "British thermal unit (international table) per pound",
        "British thermal unit (international table) per pound degree Fahrenheit",
        "British thermal unit (international table) per pound degree Rankine",
        "British thermal unit (international table) per second",
        "British thermal unit (international table) per second foot degree Rankine",
        "British thermal unit (international table) per second square foot degree Fahrenheit",
        "British thermal unit (international table) per second square foot degree Rankine",
        "British thermal unit (international table) per square foot",
        "British thermal unit (international table) per square foot hour",
        "British thermal unit (international table) per square foot second",
        "British thermal unit (international table) per square inch second",
        "British thermal unit (mean)",
        "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per cubic foot",
        "British thermal unit (thermochemical) per degree Fahrenheit",
        "British thermal unit (thermochemical) per degree Rankine",
        "British thermal unit (thermochemical) per hour",
        "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per minute",
        "British thermal unit (thermochemical) per pound",
        "British thermal unit (thermochemical) per pound degree Fahrenheit",
        "British thermal unit (thermochemical) per pound degree Rankine",
        "British thermal unit (thermochemical) per second",
        "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per square foot",
        "British thermal unit (thermochemical) per square foot hour",
        "British thermal unit (thermochemical) per square foot minute",
        "British thermal unit (thermochemical) per square foot second",
        "British thermal unit (mean)",
        "British thermal unit (39 ºF)",
        "British thermal unit (59 ºF)",
        "British thermal unit (60 ºF)",
        "British thermal unit (international table) per pound degree Rankine",
        "British thermal unit (international table)",
        "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
        "British thermal unit (international table) inch per second square foot degree Fahrenheit",
        "British thermal unit (international table) per square foot hour",
        "British thermal unit (international table) per square foot second",
        "British thermal unit (international table) per hour square foot degree Rankine",
        "British thermal unit (international table) per hour square foot degree Fahrenheit",
        "British thermal unit (international table) per square inch second",
        "British thermal unit (international table) per pound degree Fahrenheit",
        "British thermal unit (international table) per second foot degree Rankine",
        "British thermal unit (international table) per second square foot degree Rankine",
        "British thermal unit (international table) per second square foot degree Fahrenheit",
        "British thermal unit (international table) per square foot",
        "British thermal unit (international table) per cubic foot",
        "British thermal unit (international table) per hour",
        "British thermal unit (international table) per pound",
        "British thermal unit (international table) per minute",
        "British thermal unit (international table) per degree Fahrenheit",
        "British thermal unit (international table) per degree Rankine",
        "British thermal unit (international table) per second",
        "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per square foot hour",
        "British thermal unit (thermochemical) per square foot minute",
        "British thermal unit (thermochemical) per square foot second",
        "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per pound degree Fahrenheit",
        "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
        "British thermal unit (thermochemical) per square foot",
        "British thermal unit (thermochemical) per cubic foot",
        "British thermal unit (thermochemical) per hour",
        "British thermal unit (thermochemical) per pound",
        "British thermal unit (thermochemical) per minute",
        "British thermal unit (thermochemical) per degree Fahrenheit",
        "British thermal unit (thermochemical) per degree Rankine",
        "British thermal unit (thermochemical) per second",
        "bushel (UK) per day",
        "bushel (UK) per hour",
        "bushel (UK) per minute",
        "bushel (UK) per second",
        "bushel (US dry) per day",
        "bushel (US dry) per hour",
        "bushel (US dry) per minute",
        "bushel (US dry) per second",
        "bushel (US)",
        "bulk pack",
        "bushel (UK)",
        "bushel (UK) per day",
        "bushel (UK) per hour",
        "bushel (UK) per minute",
        "bushel (UK) per second",
        "bushel (US dry) per day",
        "bushel (US dry) per hour",
        "bushel (US dry) per minute",
        "bushel (US dry) per second",
        "bushel (US)",
        "bushel (UK)",
        "bushel (UK) per day",
        "bushel (UK) per hour",
        "bushel (UK) per minute",
        "bushel (UK) per second",
        "bushel (US dry) per day",
        "bushel (US dry) per hour",
        "bushel (US dry) per minute",
        "bushel (US dry) per second",
        "bushel (US)",
        "byte",
        "byte per second",
        "byte per second",
        "coulomb",
        "coulomb metre",
        "coulomb square metre per kilogram",
        "coulomb metre squared per volt",
        "coulomb per kilogram second",
        "coulomb per square centimetre",
        "coulomb per cubic centimetre",
        "coulomb per kilogram",
        "coulomb per metre",
        "coulomb per square metre",
        "coulomb per cubic metre",
        "coulomb per square millimetre",
        "coulomb per cubic millimetre",
        "coulomb per mole",
        "cake - A unit of count defining the number of cakes (cake: object shaped into a flat, compact mass).",
        "calorie (mean)",
        "15 °C calorie",
        "calorie (20 ºC)",
        "calorie (international table)",
        "calorie (international table) per gram degree Celsius",
        "calorie (international table) per gram kelvin",
        "calorie (international table) per second centimetre kelvin",
        "calorie (international table) per second square centimetre kelvin",
        "calorie (international table) per gram",
        "call - A unit of count defining the number of calls (call: communication session or visitation).",
        "calorie (20 ºC)",
        "calorie (international table)",
        "calorie (international table) per gram",
        "calorie (international table) per gram degree Celsius",
        "calorie (international table) per gram kelvin",
        "calorie (international table) per second centimetre kelvin",
        "calorie (international table) per second square centimetre kelvin",
        "calorie (mean)",
        "calorie (thermochemical)",
        "calorie (thermochemical) per centimetre second degree Celsius",
        "calorie (thermochemical) per gram",
        "calorie (thermochemical) per gram degree Celsius",
        "calorie (thermochemical) per gram kelvin",
        "calorie (thermochemical) per minute",
        "calorie (thermochemical) per second",
        "calorie (thermochemical) per second centimetre kelvin",
        "calorie (thermochemical) per second square centimetre kelvin",
        "calorie (thermochemical) per square centimetre",
        "calorie (thermochemical) per square centimetre minute",
        "calorie (thermochemical) per square centimetre second",
        "calorie (20 ºC)",
        "calorie (international table)",
        "calorie (international table) per gram",
        "calorie (international table) per gram degree Celsius",
        "calorie (international table) per gram kelvin",
        "calorie (international table) per second centimetre kelvin",
        "calorie (international table) per second square centimetre kelvin",
        "calorie (mean)",
        "calorie (thermochemical)",
        "calorie (thermochemical) per centimetre second degree Celsius",
        "calorie (thermochemical) per gram",
        "calorie (thermochemical) per gram degree Celsius",
        "calorie (thermochemical) per gram kelvin",
        "calorie (thermochemical) per minute",
        "calorie (thermochemical) per second",
        "calorie (thermochemical) per second centimetre kelvin",
        "calorie (thermochemical) per second square centimetre kelvin",
        "calorie (thermochemical) per square centimetre",
        "calorie (thermochemical) per square centimetre minute",
        "calorie (thermochemical) per square centimetre second",
        "calorie (thermochemical)",
        "calorie (thermochemical) per centimetre second degree Celsius",
        "calorie (thermochemical) per square centimetre minute",
        "calorie (thermochemical) per square centimetre second",
        "calorie (thermochemical) per gram degree Celsius",
        "calorie (thermochemical) per gram kelvin",
        "calorie (thermochemical) per second centimetre kelvin",
        "calorie (thermochemical) per second square centimetre kelvin",
        "calorie (thermochemical) per square centimetre",
        "calorie (thermochemical) per gram",
        "calorie (thermochemical) per minute",
        "calorie (thermochemical) per second",
        "candela",
        "candela per square foot",
        "candela per square inch",
        "candela per square metre",
        "card - A unit of count defining the number of units of card (card: thick stiff paper or cardboard).",
        "carrying capacity in metric ton - A unit of mass defining the carrying capacity, expressed as the number of metric tons.",
        "candela",
        "candela per square foot",
        "candela per square inch",
        "candela per square metre",
        "cental (UK) - A unit of mass equal to one hundred weight (US). (45,359 237 kg)",
        "centigram",
        "centilitre",
        "centimetre",
        "centimetre of mercury",
        "centimetre of mercury (0 ºC)",
        "centimetre of mercury (0 ºC)",
        "centimetre of water (4 ºC)",
        "centimetre of water (4 ºC)",
        "centimetre per bar",
        "centimetre per hour",
        "centimetre per kelvin",
        "centimetre per second",
        "centimetre per second bar",
        "centimetre per second kelvin",
        "centimetre per second squared",
        "centinewton metre",
        "centipoise",
        "centipoise per bar",
        "centipoise per kelvin",
        "centistokes",
        "centigram",
        "Gunter's chain",
        "chain (based on U.S. survey foot)",
        "chain (based on U.S. survey foot)",
        "chain (based on U.S. survey foot)",
        "cheval vapeur",
        "curie",
        "curie per kilogram",
        "circular mil",
        "centilitre",
        "clo",
        "centimetre",
        "conventional centimetre of water",
        "centimetre of mercury",
        "centimetre per bar",
        "centimetre per hour",
        "centimetre per kelvin",
        "centimetre per second",
        "centimetre per second squared",
        "reciprocal centimetre",
        "reciprocal cubic centimetre",
        "square centimetre",
        "square centimetre per steradian erg",
        "square centimetre per erg",
        "square centimetre per gram",
        "square centimetre per second",
        "cubic centimetre",
        "cubic centimetre per day bar",
        "cubic centimetre per day kelvin",
        "cubic centimetre per hour bar",
        "cubic centimetre per hour kelvin",
        "cubic centimetre per minute bar",
        "cubic centimetre per minute kelvin",
        "cubic centimetre per second bar",
        "cubic centimetre per second kelvin",
        "cubic centimetre per bar",
        "cubic centimetre per day",
        "cubic centimetre per hour",
        "cubic centimetre per kelvin",
        "cubic centimetre per cubic metre",
        "cubic centimetre per minute",
        "cubic centimetre per mole",
        "cubic centimetre per second",
        "centimetre of water (4 ºC)",
        "centimetre of mercury (0 ºC)",
        "circular mil",
        "centinewton metre",
        "coil group - A unit of count defining the number of coil groups (coil group: groups of items arranged by lengths of those items placed in a joined sequence of concentric circles).",
        "common year",
        "content gram - A unit of mass defining the number of grams of a named item in a product.",
        "content ton (metric) - A unit of mass defining the number of metric tons of a named item in a product.",
        "conventional centimetre of water",
        "conventional metre of water",
        "conventional millimetre of mercury",
        "conventional millimetre of water",
        "cord (128 ft3)",
        "cord (128 ft3)",
        "cord (128 ft3)",
        "coulomb",
        "coulomb metre",
        "coulomb metre squared per volt",
        "coulomb per cubic centimetre",
        "coulomb per cubic metre",
        "coulomb per cubic millimetre",
        "coulomb per kilogram",
        "coulomb per kilogram second",
        "coulomb per metre",
        "coulomb per mole",
        "coulomb per square centimetre",
        "coulomb per square metre",
        "coulomb per square millimetre",
        "coulomb square metre per kilogram",
        "centipoise",
        "centipoise per bar",
        "centipoise per kelvin",
        "credit - A unit of count defining the number of entries made to the credit side of an account.",
        "centistokes",
        "cubic centimetre",
        "cubic centimetre per bar",
        "cubic centimetre per cubic metre",
        "cubic centimetre per day",
        "cubic centimetre per day bar",
        "cubic centimetre per day kelvin",
        "cubic centimetre per hour",
        "cubic centimetre per hour bar",
        "cubic centimetre per hour kelvin",
        "cubic centimetre per kelvin",
        "cubic centimetre per minute",
        "cubic centimetre per minute bar",
        "cubic centimetre per minute kelvin",
        "cubic centimetre per mole",
        "cubic centimetre per second",
        "cubic centimetre per second bar",
        "cubic centimetre per second kelvin",
        "cubic decametre",
        "cubic decimetre",
        "cubic decimetre per cubic metre",
        "cubic decimetre per day",
        "cubic decimetre per hour",
        "cubic decimetre per kilogram",
        "cubic decimetre per minute",
        "cubic decimetre per mole",
        "cubic decimetre per second",
        "cubic foot",
        "cubic foot per day",
        "cubic foot per degree Fahrenheit",
        "cubic foot per hour",
        "cubic foot per minute",
        "cubic foot per minute per square foot - Conversion factor required",
        "cubic foot per pound",
        "cubic foot per psi",
        "cubic foot per second",
        "cubic hectometre",
        "cubic inch",
        "cubic inch per hour",
        "cubic inch per minute",
        "cubic inch per pound",
        "cubic inch per second",
        "cubic kilometre",
        "cubic metre",
        "cubic metre per bar",
        "cubic metre per coulomb",
        "cubic metre per cubic metre",
        "cubic metre per day",
        "cubic metre per day bar",
        "cubic metre per day kelvin",
        "cubic metre per hour",
        "cubic metre per hour bar",
        "cubic metre per hour kelvin",
        "cubic metre per kelvin",
        "cubic metre per kilogram",
        "cubic metre per minute",
        "cubic metre per minute bar",
        "cubic metre per minute kelvin",
        "cubic metre per mole",
        "cubic metre per pascal",
        "cubic metre per second",
        "cubic metre per second bar",
        "cubic metre per second kelvin",
        "cubic metre per second pascal",
        "cubic metre per second square metre",
        "cubic mile (UK statute)",
        "cubic mile (UK statute)",
        "cubic millimetre",
        "cubic millimetre per cubic metre",
        "cubic yard",
        "cubic yard per day",
        "cubic yard per degree Fahrenheit",
        "cubic yard per hour",
        "cubic yard per minute",
        "cubic yard per psi",
        "cubic yard per second",
        "cup [unit of volume]",
        "cup [unit of volume]",
        "cup [unit of volume]",
        "curie",
        "curie per kilogram",
        "cheval vapeur",
        "hundred weight (UK)",
        "hundred pound (cwt) / hundred weight (US)",
        "cycle - A unit of count defining the number of cycles (cycle: a recurrent period of definite duration).",
        "day",
        "reciprocal day",
        "decare",
        "decagram",
        "decalitre",
        "decametre",
        "square decametre",
        "cubic decametre",
        "decapascal",
        "day",
        "decibel",
        "decibel per kilometre",
        "decibel per metre",
        "Decibel-milliwatts",
        "Decibel watt",
        "deadweight tonnage",
        "decade (logarithmic)",
        "decade - A unit of count defining the number of decades (decade: quantity equal to 10 or time equal to 10 years).",
        "decade (logarithmic)",
        "decade (logarithmic)",
        "decagram",
        "decalitre",
        "decametre",
        "decapascal",
        "decare",
        "decibel",
        "decibel per kilometre",
        "decibel per metre",
        "Decibel watt",
        "Decibel-milliwatts",
        "decigram",
        "decilitre",
        "decilitre per gram",
        "decimetre",
        "decinewton metre",
        "decitex",
        "decitonne",
        "degree day",
        "degree [unit of angle]",
        "degree [unit of angle] per second squared",
        "degree API",
        "degree Balling",
        "degree Baume (origin scale)",
        "degree Baume (US heavy)",
        "degree Baume (US light)",
        "degree Baume (origin scale)",
        "degree Baume (US heavy)",
        "degree Baume (US light)",
        "degree Brix",
        "degree Celsius",
        "degree Celsius per bar",
        "degree Celsius per hour",
        "degree Celsius per kelvin",
        "degree Celsius per minute",
        "degree Celsius per second",
        "degree day",
        "degree Fahrenheit",
        "degree Fahrenheit hour per British thermal unit (international table)",
        "degree Fahrenheit hour per British thermal unit (thermochemical)",
        "degree Fahrenheit hour per British thermal unit (international table)",
        "degree Fahrenheit hour per British thermal unit (thermochemical)",
        "degree Fahrenheit hour square foot per British thermal unit (international table)",
        "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
        "degree Fahrenheit hour square foot per British thermal unit (international table)",
        "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
        "degree Fahrenheit per bar",
        "degree Fahrenheit per hour",
        "degree Fahrenheit per kelvin",
        "degree Fahrenheit per minute",
        "degree Fahrenheit per second",
        "degree Fahrenheit second per British thermal unit (international table)",
        "degree Fahrenheit second per British thermal unit (thermochemical)",
        "degree Fahrenheit second per British thermal unit (international table)",
        "degree Fahrenheit second per British thermal unit (thermochemical)",
        "degree Oechsle",
        "degree per metre",
        "degree per second",
        "degree Plato",
        "degree Rankine",
        "degree Rankine per hour",
        "degree Rankine per minute",
        "degree Rankine per second",
        "degree Twaddell",
        "degree [unit of angle]",
        "degree [unit of angle] per second squared",
        "denier",
        "denier",
        "decigram",
        "digit - A unit of information defining the quantity of numerals used to form a number.",
        "dioptre",
        "displacement tonnage - A unit of mass defining the volume of sea water a ship displaces, expressed as the number of tons.",
        "decilitre",
        "decilitre per gram",
        "decimetre",
        "square decimetre",
        "cubic decimetre",
        "cubic decimetre per day",
        "cubic decimetre per hour",
        "cubic decimetre per kilogram",
        "cubic decimetre per cubic metre",
        "cubic decimetre per minute",
        "cubic decimetre per mole",
        "cubic decimetre per second",
        "decinewton metre",
        "dose - A unit of count defining the number of doses (dose: a definite quantity of a medicine or drug).",
        "dots per inch",
        "dozen",
        "dozen",
        "dozen pack - A unit of count defining the number of packs in multiples of 12 (pack: standard packaging unit).",
        "dozen pair - A unit of count defining the number of pairs in multiples of 12 (pair: item described by twos).",
        "dozen piece - A unit of count defining the number of pieces in multiples of 12 (piece: a single item, article or exemplar).",
        "dozen roll - A unit of count defining the number of rolls, expressed in twelve roll units.",
        "dots per inch",
        "dioptre",
        "dram (UK) - Synonym: avoirdupois dram (1,771 745 g)",
        "dram (US) - Synonym: drachm (UK), troy dram (3,887 935 g)",
        "dry barrel (US)",
        "dry barrel (US)",
        "dry gallon (US)",
        "dry gallon (US)",
        "dry gallon (US)",
        "dry pint (US)",
        "dry pint (US)",
        "dry pound - A unit of mass defining the number of pounds of a product, disregarding the water content of the product.",
        "dry pint (US)",
        "dry quart (US)",
        "dry quart (US)",
        "dry quart (US)",
        "dry ton - A unit of mass defining the number of tons of a product, disregarding the water content of the product.",
        "decitonne",
        "decitonne",
        "decitex",
        "decitonne",
        "deadweight tonnage",
        "dyne",
        "dyne centimetre",
        "dyne metre",
        "dyne second per centimetre",
        "dyne second per cubic centimetre",
        "dyne second per centimetre to the fifth power",
        "dyne per centimetre",
        "dyne per square centimetre",
        "dyne",
        "dyne centimetre",
        "dyne metre",
        "dyne per centimetre",
        "dyne per square centimetre",
        "dyne second per centimetre",
        "dyne second per centimetre to the fifth power",
        "dyne second per cubic centimetre",
        "erlang",
        "each - A unit of count defining the number of items regarded as separate units.",
        "exabit per second",
        "exbibit per metre",
        "exbibit per square metre",
        "exbibit per cubic metre",
        "exbibyte",
        "exajoule",
        "horsepower (electric)",
        "electronic mail box - A unit of count defining the number of electronic mail boxes.",
        "electronvolt",
        "electronvolt per metre",
        "electronvolt square metre",
        "electronvolt square metre per kilogram",
        "equivalent gallon - A unit of volume defining the number of gallons of product produced from concentrate.",
        "erg",
        "erg per centimetre",
        "erg per cubic centimetre",
        "erg per gram",
        "erg per gram second",
        "erg per second",
        "erg per second square centimetre",
        "erg per square centimetre second",
        "erg square centimetre",
        "erg square centimetre per gram",
        "erg square centimetre",
        "erg square centimetre per gram",
        "erg per square centimetre second",
        "erg per second square centimetre",
        "erg per centimetre",
        "erg per cubic centimetre",
        "erg per gram",
        "erg per gram second",
        "erg per second",
        "erlang",
        "electronvolt",
        "electronvolt square metre",
        "electronvolt square metre per kilogram",
        "electronvolt per metre",
        "reciprocal electron volt per cubic metre",
        "exabit per second",
        "exajoule",
        "exbibit per cubic metre",
        "exbibit per metre",
        "exbibit per square metre",
        "exbibyte",
        "farad",
        "farad per kilometre",
        "farad per metre",
        "failures in time",
        "farad",
        "farad per kilometre",
        "farad per metre",
        "fathom",
        "board foot",
        "femtojoule",
        "femtolitre",
        "femtometre",
        "French gauge",
        "fibre metre - A unit of length defining the number of metres of individual fibre.",
        "failures in time",
        "five pack - A unit of count defining the number of five-packs (five-pack: set of five items packaged together).",
        "fixed rate - A unit of quantity expressed as a predetermined or set rate for usage of a facility or service.",
        "femtojoule",
        "femtolitre",
        "fluid ounce (UK)",
        "ounce (UK fluid) per day",
        "ounce (UK fluid) per hour",
        "ounce (UK fluid) per minute",
        "ounce (UK fluid) per second",
        "fluid ounce (US)",
        "ounce (US fluid) per day",
        "ounce (US fluid) per hour",
        "ounce (US fluid) per minute",
        "ounce (US fluid) per second",
        "flake ton - A unit of mass defining the number of tons of a flaked substance (flake: a small flattish fragment).",
        "fluid ounce (UK)",
        "fluid ounce (US)",
        "fluid ounce (UK)",
        "fluid ounce (US)",
        "femtometre",
        "Formazin nephelometric unit",
        "foot",
        "foot (U.S. survey)",
        "foot of mercury",
        "foot of water",
        "2 ºF)",
        "foot per degree Fahrenheit",
        "foot per hour",
        "foot per minute",
        "foot per psi",
        "foot per second",
        "foot per second degree Fahrenheit",
        "foot per second psi",
        "foot per second squared",
        "foot per thousand - A unit of count defining the number of feet per thousand units. (3,048 x 10⁻⁴ m)",
        "foot pound-force",
        "foot pound-force per hour",
        "foot pound-force per minute",
        "foot pound-force per second",
        "foot poundal",
        "foot to the fourth power",
        "foot (U.S. survey)",
        "footcandle",
        "footlambert",
        "Formazin nephelometric unit",
        "forty foot container - A unit of count defining the number of shipping containers that measure 40 foot in length.",
        "franklin",
        "franklin",
        "freight ton - A unit of information typically used for billing purposes, defined as either the number of metric tons or the number of cubic metres, whichever is the larger.",
        "French gauge",
        "foot",
        "foot (U.S. survey)",
        "foot of water",
        "foot of mercury",
        "foot pound-force",
        "foot pound-force per hour",
        "foot pound-force per minute",
        "foot pound-force per second",
        "foot poundal",
        "foot per degree Fahrenheit",
        "foot per hour",
        "foot per minute",
        "foot per psi",
        "foot per second",
        "foot per second squared",
        "square foot",
        "square foot per hour",
        "square foot per second",
        "cubic foot",
        "cubic foot per minute per square foot - Conversion factor required",
        "cubic foot per degree Fahrenheit",
        "cubic foot per day",
        "cubic foot per hour",
        "cubic foot per pound",
        "cubic foot per minute",
        "cubic foot per psi",
        "cubic foot per second",
        "foot to the fourth power",
        "footcandle",
        "fathom",
        "2 ºF)",
        "footlambert",
        "furlong",
        "furlong",
        "gram",
        "gram centimetre per second",
        "gram millimetre",
        "gram per centimetre second",
        "gram per cubic centimetre bar",
        "gram per cubic centimetre kelvin",
        "gram per day bar",
        "gram per day kelvin",
        "gram per cubic decimetre bar",
        "gram per cubic decimetre kelvin",
        "gram per hour bar",
        "gram per hour kelvin",
        "gram per litre bar",
        "gram per litre kelvin",
        "gram per cubic metre bar",
        "gram per cubic metre kelvin",
        "gram per minute bar",
        "gram per minute kelvin",
        "gram per millilitre bar",
        "gram per millilitre kelvin",
        "gram per second bar",
        "gram per second kelvin",
        "gram per bar",
        "gram per square centimetre",
        "gram per cubic centimetre",
        "gram per day",
        "gram per cubic decimetre",
        "gram per hour",
        "gram per hertz",
        "gram per kelvin",
        "gram per litre",
        "gram per metre (gram per 100 centimetres)",
        "gram per square metre",
        "gram per cubic metre",
        "gram per minute",
        "gram per millilitre",
        "gram per millimetre",
        "gram per square millimetre",
        "gram per mole",
        "gram per second",
        "gal",
        "gal",
        "gallon (UK)",
        "Imperial gallon per minute",
        "gallon (UK) per day",
        "gallon (UK) per hour",
        "gallon (UK) per second",
        "gallon (US liquid) per second",
        "gallon (US)",
        "US gallon per minute",
        "gallon (US) per day",
        "gallon (US) per hour",
        "gallon (UK)",
        "gallon (UK) per day",
        "gallon (UK) per hour",
        "gallon (UK) per second",
        "gallon (US liquid) per second",
        "gallon (US)",
        "gallon (US) per day",
        "gallon (US) per hour",
        "gallon (UK)",
        "gallon (UK) per day",
        "gallon (UK) per hour",
        "gallon (UK) per second",
        "gallon (US liquid) per second",
        "gallon (US)",
        "gallon (US) per day",
        "gallon (US) per hour",
        "gamma",
        "gigabit",
        "gigabit per second",
        "gigabecquerel",
        "gigabyte",
        "gigabyte per second",
        "gigacoulomb per cubic metre",
        "gigaelectronvolt",
        "gram-force per square centimetre",
        "gigahertz",
        "gigahertz metre",
        "gilbert",
        "gill (UK)",
        "gill (UK) per day",
        "gill (UK) per hour",
        "gill (UK) per minute",
        "gill (UK) per second",
        "gill (US)",
        "gill (US) per day",
        "gill (US) per hour",
        "gill (US) per minute",
        "gill (US) per second",
        "gram of fissile isotope",
        "gibibit",
        "gibibit per cubic metre",
        "gibibit per metre",
        "gibibit per square metre",
        "gibibyte",
        "gibibit",
        "gibibit per metre",
        "gibibit per square metre",
        "gibibit per cubic metre",
        "gibibyte",
        "gigabecquerel",
        "gigabit",
        "gigabit per second",
        "gigabyte",
        "gigabyte per second",
        "gigacoulomb per cubic metre",
        "gigaelectronvolt",
        "gigahertz",
        "gigahertz metre",
        "gigajoule",
        "gigaohm",
        "gigaohm metre",
        "gigaohm per metre",
        "gigapascal",
        "gigawatt",
        "gigawatt hour",
        "gilbert",
        "gill (UK)",
        "gill (UK) per day",
        "gill (UK) per hour",
        "gill (UK) per minute",
        "gill (UK) per second",
        "gill (US)",
        "gill (US) per day",
        "gill (US) per hour",
        "gill (US) per minute",
        "gill (US) per second",
        "gill (UK)",
        "gill (UK) per day",
        "gill (UK) per hour",
        "gill (UK) per minute",
        "gill (UK) per second",
        "gill (US)",
        "gill (US) per day",
        "gill (US) per hour",
        "gill (US) per minute",
        "gill (US) per second",
        "gigajoule",
        "standard acceleration of free fall",
        "gon",
        "gigapascal",
        "grain",
        "grain per gallon (US)",
        "gon",
        "grain",
        "grain per gallon (US)",
        "grain per gallon (US)",
        "gram",
        "gram centimetre per second",
        "gram millimetre",
        "gram of fissile isotope",
        "gram per bar",
        "gram per centimetre second",
        "gram per cubic centimetre",
        "gram per cubic centimetre bar",
        "gram per cubic centimetre kelvin",
        "gram per cubic decimetre",
        "gram per cubic decimetre bar",
        "gram per cubic decimetre kelvin",
        "gram per cubic metre",
        "gram per cubic metre bar",
        "gram per cubic metre kelvin",
        "gram per day",
        "gram per day bar",
        "gram per day kelvin",
        "gram per hertz",
        "gram per hour",
        "gram per hour bar",
        "gram per hour kelvin",
        "gram per kelvin",
        "gram per litre",
        "gram per litre bar",
        "gram per litre kelvin",
        "gram per metre (gram per 100 centimetres)",
        "gram per metre (gram per 100 centimetres)",
        "gram per millilitre",
        "gram per millilitre bar",
        "gram per millilitre kelvin",
        "gram per millimetre",
        "gram per minute",
        "gram per minute bar",
        "gram per minute kelvin",
        "gram per mole",
        "gram per second",
        "gram per second bar",
        "gram per second kelvin",
        "gram per square centimetre",
        "gram per square metre",
        "gram per square millimetre",
        "gram-force per square centimetre",
        "gram, dry weight - A unit of mass defining the number of grams of a product, disregarding the water content of the product.",
        "gram, including container - A unit of mass defining the number of grams of a product, including its container.",
        "gram, including inner packaging - A unit of mass defining the number of grams of a product, including its inner packaging materials.",
        "gray",
        "gray per hour",
        "gray per minute",
        "gray per second",
        "great gross - A unit of count defining the number of units in multiples of 1728 (12 x 12 x 12). (1728)",
        "gross",
        "gross kilogram - A unit of mass defining the total number of kilograms before deductions.",
        "group - A unit of count defining the number of groups (group: set of items classified together).",
        "Gunter's chain",
        "gigawatt",
        "gigawatt hour",
        "gray",
        "gray per hour",
        "gray per minute",
        "gray per second",
        "gigaohm",
        "gigaohm",
        "gigaohm metre",
        "gigaohm metre",
        "gigaohm per metre",
        "gigaohm per metre",
        "hour",
        "henry",
        "henry per kiloohm",
        "henry per kiloohm",
        "henry per metre",
        "henry per ohm",
        "henry per ohm",
        "reciprocal henry",
        "hectare",
        "half year (6 months) - A unit of time defining the number of half years (6 months).",
        "hanging container - A unit of count defining the number of hanging containers.",
        "hank - A unit of length, typically for yarn.",
        "hartley",
        "hartley per second",
        "hartley",
        "hartley per second",
        "hectobar",
        "head - A unit of count defining the number of heads (head: a person or animal considered as one of a number).",
        "hectare",
        "hectobar",
        "hectogram",
        "hectolitre",
        "hectolitre of pure alcohol - A unit of volume equal to one hundred litres of pure alcohol.",
        "hectometre",
        "hectopascal",
        "hectopascal cubic metre per second",
        "hectopascal litre per second",
        "hectopascal per bar",
        "hectopascal per kelvin",
        "hectopascal per metre",
        "Hefner-Kerze",
        "henry",
        "henry per kiloohm",
        "henry per metre",
        "henry per ohm",
        "hertz",
        "hertz metre",
        "hectogram",
        "Hefner-Kerze",
        "hectolitre",
        "hectometre",
        "square hectometre",
        "cubic hectometre",
        "horsepower (boiler)",
        "horsepower (electric)",
        "horsepower (boiler)",
        "horsepower (electric)",
        "hour",
        "hectopascal",
        "hectopascal litre per second",
        "hectopascal cubic metre per second",
        "hectopascal per bar",
        "hectopascal per kelvin",
        "hectopascal per metre",
        "hundred - A unit of count defining the number of units in multiples of 100. (100)",
        "hundred board foot - A unit of volume equal to one hundred board foot.",
        "hundred boxes - A unit of count defining the number of boxes in multiples of one hundred box units.",
        "hundred count - A unit of count defining the number of units counted in multiples of 100.",
        "hundred cubic foot - A unit of volume equal to one hundred cubic foot.",
        "hundred cubic metre - A unit of volume equal to one hundred cubic metres.",
        "hundred international unit - A unit of count defining the number of international units in multiples of 100.",
        "hundred kilogram, dry weight - A unit of mass defining the number of hundred kilograms of a product, disregarding the water content of the product.",
        "hundred kilogram, net mass - A unit of mass defining the number of hundred kilograms of a product, after deductions.",
        "hundred leave - A unit of count defining the number of leaves, expressed in units of one hundred leaves.",
        "hundred metre - A unit of count defining the number of 100 metre lengths.",
        "hundred pack - A unit of count defining the number of hundred-packs (hundred-pack: set of one hundred items packaged together).",
        "hundred pound (cwt) / hundred weight (US)",
        "hundred pound (cwt) / hundred weight (US)",
        "hundred weight (UK)",
        "hundred weight (UK)",
        "hydraulic horse power - A unit of power defining the hydraulic horse power delivered by a fluid pump depending on the viscosity of the fluid.",
        "hertz",
        "hertz metre",
        "international candle",
        "Imperial gallon per minute",
        "inch",
        "inch pound (pound inch)",
        "inch poundal",
        "inch per degree Fahrenheit",
        "inch per minute",
        "inch per psi",
        "inch per two pi radiant",
        "inch per second",
        "inch per second squared",
        "inch per year",
        "square inch",
        "square inch per second",
        "cubic inch",
        "cubic inch per hour",
        "cubic inch per pound",
        "cubic inch per minute",
        "cubic inch per second",
        "inch to the fourth power",
        "inch",
        "inch of mercury",
        "inch of mercury (32 ºF)",
        "inch of mercury (60 ºF)",
        "inch of mercury (32 ºF)",
        "inch of mercury (60 ºF)",
        "inch of water",
        "inch of water (60 ºF)",
        "2 ºF)",
        "inch of water (60 ºF)",
        "inch per degree Fahrenheit",
        "inch per linear foot - A unit of length defining the number of inches per linear foot.",
        "inch per minute",
        "inch per psi",
        "inch per second",
        "inch per second degree Fahrenheit",
        "inch per second psi",
        "inch per second squared",
        "inch per two pi radiant",
        "inch per year",
        "inch pound (pound inch)",
        "inch pound (pound inch)",
        "inch poundal",
        "inch to the fourth power",
        "inch of water",
        "2 ºF)",
        "inch of water (60 ºF)",
        "inch of mercury",
        "inch of mercury (32 ºF)",
        "inch of mercury (60 ºF)",
        "international candle",
        "international sugar degree - A unit of measure defining the sugar content of a solution, expressed in degrees.",
        "international unit per gram - A unit of count defining the number of international units per gram.",
        "joule",
        "joule square metre",
        "joule square metre per kilogram",
        "joule second",
        "joule per kilogram kelvin",
        "joule per mole kelvin",
        "joule per square centimetre",
        "joule per day",
        "joule per gram",
        "joule per hour",
        "joule per kelvin",
        "joule per kilogram",
        "joule per metre",
        "joule per square metre",
        "joule per cubic metre",
        "joule per metre to the fourth power",
        "joule per minute",
        "joule per mole",
        "joule per second",
        "joule per tesla",
        "reciprocal joule per cubic metre",
        "job - A unit of count defining the number of jobs.",
        "joule",
        "joule per cubic metre",
        "joule per day",
        "joule per gram",
        "joule per hour",
        "joule per kelvin",
        "joule per kilogram",
        "joule per kilogram kelvin",
        "joule per metre",
        "joule per metre to the fourth power",
        "joule per minute",
        "joule per mole",
        "joule per mole kelvin",
        "Joule per normalised cubic metre - Joule per normalised cubic metre (temperature 0°C and pressure 101325 millibars).",
        "joule per second",
        "joule per square centimetre",
        "joule per square metre",
        "Joule per standard cubic metre - Joule per standard cubic metre (temperature 15°C and pressure 101325 millibars).",
        "joule per tesla",
        "joule second",
        "joule square metre",
        "joule square metre per kilogram",
        "kelvin",
        "kelvin metre per watt",
        "kelvin per bar",
        "kelvin per hour",
        "kelvin per kelvin",
        "kelvin per minute",
        "kelvin per pascal",
        "kelvin per second",
        "kelvin per watt",
        "reciprocal kelvin or kelvin to the power minus one",
        "kiloampere",
        "kiloampere hour (thousand ampere hour)",
        "kiloampere per metre",
        "kiloampere per square metre",
        "katal",
        "katal",
        "kilobar",
        "kilobaud",
        "kilobit",
        "kilobit per second",
        "kilobecquerel",
        "kilobecquerel per kilogram",
        "kilobyte",
        "kilobyte per second",
        "kilocoulomb",
        "kilocoulomb per square metre",
        "kilocoulomb per cubic metre",
        "kilocalorie (mean)",
        "kilocalorie (international table) per hour metre degree Celsius",
        "kilocalorie (international table)",
        "kilocalorie (thermochemical)",
        "kilocalorie (thermochemical) per hour",
        "kilocalorie (thermochemical) per minute",
        "kilocalorie (thermochemical) per second",
        "kilocandela",
        "kilocurie",
        "kelvin",
        "kelvin metre per watt",
        "kelvin per bar",
        "kelvin per hour",
        "kelvin per kelvin",
        "kelvin per minute",
        "kelvin per pascal",
        "kelvin per second",
        "kelvin per watt",
        "kiloelectronvolt",
        "kilofarad",
        "thousand cubic foot",
        "kilogram",
        "kilogram of substance 90 % dry",
        "kilogram of choline chloride",
        "kilogram of hydrogen peroxide",
        "kilogram of potassium oxide",
        "kilogram of potassium hydroxide (caustic potash)",
        "kilogram of methylamine",
        "kilogram of nitrogen",
        "kilogram of sodium hydroxide (caustic soda)",
        "kilogram of uranium",
        "kilogram of tungsten trioxide",
        "kilogram centimetre per second",
        "kilogram square centimetre",
        "kilogram metre",
        "kilogram metre per second",
        "kilogram metre per second squared",
        "kilogram metre squared",
        "kilogram metre squared per second",
        "kilogram square millimetre",
        "kilogram per cubic centimetre bar",
        "kilogram per cubic centimetre kelvin",
        "kilogram per day bar",
        "kilogram per day kelvin",
        "kilogram per hour bar",
        "kilogram per hour kelvin",
        "kilogram per litre bar",
        "kilogram per litre kelvin",
        "kilogram per metre day",
        "kilogram per metre hour",
        "kilogram per metre minute",
        "kilogram per metre second",
        "kilogram per square metre pascal second",
        "kilogram per square metre second",
        "kilogram per cubic metre bar",
        "kilogram per cubic metre kelvin",
        "kilogram per minute bar",
        "kilogram per minute kelvin",
        "kilogram per second bar",
        "kilogram per second kelvin",
        "kilogram per bar",
        "kilogram per square centimetre",
        "kilogram per cubic centimetre",
        "kilogram per day",
        "kilogram per cubic decimetre",
        "kilogram per hour",
        "kilogram per kelvin",
        "kilogram per kilogram",
        "kilogram per kilometre",
        "kilogram per kilomol",
        "kilogram per litre",
        "kilogram per litre",
        "kilogram per litre",
        "kilogram per metre",
        "kilogram per square metre",
        "kilogram per cubic metre",
        "kilogram per minute",
        "kilogram per millimetre",
        "kilogram per mole",
        "kilogram drained net weight",
        "kilogram per pascal",
        "kilogram per second",
        "kilogram-force",
        "kilogram-force metre",
        "kilogram-force per square millimetre",
        "kilogram-force metre per second",
        "kilogram-force per square centimetre",
        "kilogram-force per square metre",
        "kilohenry",
        "kilohertz",
        "kilohertz metre",
        "kibibit",
        "kibibit per cubic metre",
        "kibibit per metre",
        "kibibit per square metre",
        "kibibyte",
        "kibibit",
        "kibibit per metre",
        "kibibit per square metre",
        "kibibit per cubic metre",
        "kibibyte",
        "kiloampere",
        "kiloampere hour (thousand ampere hour)",
        "kiloampere hour (thousand ampere hour)",
        "kiloampere per metre",
        "kiloampere per square metre",
        "kilobar",
        "kilobaud",
        "kilobecquerel",
        "kilobecquerel per kilogram",
        "kilobit",
        "kilobit per second",
        "kilobyte",
        "kilobyte per second",
        "kilocalorie (international table)",
        "kilocalorie (international table) per gram kelvin",
        "kilocalorie (international table) per hour metre degree Celsius",
        "kilocalorie (mean)",
        "kilocalorie (thermochemical)",
        "kilocalorie (thermochemical) per hour",
        "kilocalorie (thermochemical) per minute",
        "kilocalorie (thermochemical) per second",
        "kilocalorie (international table)",
        "kilocalorie (international table) per gram kelvin",
        "kilocalorie (international table) per hour metre degree Celsius",
        "kilocalorie (mean)",
        "kilocalorie (thermochemical)",
        "kilocalorie (thermochemical) per hour",
        "kilocalorie (thermochemical) per minute",
        "kilocalorie (thermochemical) per second",
        "kilocandela",
        "kilocharacter - A unit of information equal to 10³ (1000) characters.",
        "kilocoulomb",
        "kilocoulomb per cubic metre",
        "kilocoulomb per square metre",
        "kilocurie",
        "kiloelectronvolt",
        "kilofarad",
        "kilogram",
        "kilogram centimetre per second",
        "kilogram drained net weight",
        "kilogram metre",
        "kilogram metre per second",
        "kilogram metre per second squared",
        "kilogram metre squared",
        "kilogram metre squared per second",
        "kilogram named substance - A unit of mass equal to one kilogram of a named substance.",
        "kilogram of choline chloride",
        "kilogram of hydrogen peroxide",
        "kilogram of imported meat, less offal - A unit of mass equal to one thousand grams of imported meat, disregarding less valuable by-products such as the entrails.",
        "kilogram of methylamine",
        "kilogram of nitrogen",
        "kilogram of phosphorus pentoxide (phosphoric anhydride) - A unit of mass equal to one thousand grams of phosphorus pentoxide phosphoric anhydride.",
        "kilogram of potassium hydroxide (caustic potash)",
        "kilogram of potassium hydroxide (caustic potash)",
        "kilogram of potassium oxide",
        "kilogram of sodium hydroxide (caustic soda)",
        "kilogram of sodium hydroxide (caustic soda)",
        "kilogram of substance 90 % dry",
        "kilogram of tungsten trioxide",
        "kilogram of uranium",
        "kilogram per bar",
        "kilogram per cubic centimetre",
        "kilogram per cubic centimetre bar",
        "kilogram per cubic centimetre kelvin",
        "kilogram per cubic decimetre",
        "kilogram per cubic decimetre bar",
        "kilogram per cubic decimetre kelvin",
        "kilogram per cubic metre",
        "kilogram per cubic metre bar",
        "kilogram per cubic metre kelvin",
        "kilogram per cubic metre pascal",
        "kilogram per day",
        "kilogram per day bar",
        "kilogram per day kelvin",
        "kilogram per hour",
        "kilogram per hour bar",
        "kilogram per hour kelvin",
        "kilogram per kelvin",
        "kilogram per kilogram",
        "kilogram per kilometre",
        "kilogram per kilomol",
        "kilogram per litre",
        "kilogram per litre bar",
        "kilogram per litre kelvin",
        "kilogram per metre",
        "kilogram per metre day",
        "kilogram per metre hour",
        "kilogram per metre minute",
        "kilogram per metre second",
        "kilogram per millimetre",
        "kilogram per millimetre width (10³ kg/m)",
        "kilogram per minute",
        "kilogram per minute bar",
        "kilogram per minute kelvin",
        "kilogram per mole",
        "kilogram per pascal",
        "kilogram per second",
        "kilogram per second bar",
        "kilogram per second kelvin",
        "kilogram per second pascal",
        "kilogram per square centimetre",
        "kilogram per square metre",
        "kilogram per square metre pascal second",
        "kilogram per square metre second",
        "kilogram square centimetre",
        "kilogram square millimetre",
        "kilogram-force",
        "kilogram-force metre",
        "kilogram-force metre per second",
        "kilogram-force metre per square centimetre",
        "kilogram-force per square centimetre",
        "kilogram-force per square metre",
        "kilogram-force per square millimetre",
        "kilogram, dry weight - A unit of mass defining the number of kilograms of a product, disregarding the water content of the product.",
        "kilogram, including container - A unit of mass defining the number of kilograms of a product, including its container.",
        "kilogram, including inner packaging - A unit of mass defining the number of kilograms of a product, including its inner packaging materials.",
        "kilohenry",
        "kilohertz",
        "kilohertz metre",
        "kilojoule",
        "kilojoule per day",
        "kilojoule per gram",
        "kilojoule per hour",
        "kilojoule per kelvin",
        "kilojoule per kilogram",
        "kilojoule per kilogram kelvin",
        "kilojoule per minute",
        "kilojoule per mole",
        "kilojoule per second",
        "kilolitre",
        "kilolitre per hour",
        "kilolux",
        "kilometre",
        "kilometre per hour",
        "kilometre per second",
        "kilometre per second squared",
        "kilomole",
        "kilomole per cubic metre",
        "kilomole per cubic metre bar",
        "kilomole per cubic metre kelvin",
        "kilomole per hour",
        "kilomole per kilogram",
        "kilomole per minute",
        "kilomole per second",
        "kilonewton",
        "kilonewton metre",
        "kilonewton per metre",
        "kilonewton per square metre",
        "kiloohm",
        "kiloohm metre",
        "kilopascal",
        "kilopascal per bar",
        "kilopascal per kelvin",
        "kilopascal per metre",
        "kilopascal per millimetre",
        "kilopascal square metre per gram",
        "kilopond",
        "kilopound per hour",
        "kilopound-force",
        "kiloroentgen",
        "kilosecond",
        "kilosegment - A unit of information equal to 10³ (1000) segments.",
        "kilosiemens",
        "kilosiemens per metre",
        "kilotesla",
        "kilotonne",
        "kilovar",
        "kilovolt",
        "kilovolt - ampere",
        "kilovolt ampere (reactive)",
        "kilovolt ampere hour",
        "kilovolt ampere reactive demand - A unit of measure defining the reactive power demand equal to one kilovolt ampere of reactive power.",
        "kilovolt ampere reactive hour",
        "kilovolt ampere (reactive)",
        "kilovolt per metre",
        "kilovolt - ampere",
        "kilowatt",
        "kilowatt demand - A unit of measure defining the power load measured at predetermined intervals.",
        "kilowatt hour",
        "kilowatt hour per cubic metre",
        "kilowatt hour per hour",
        "kilowatt hour per kelvin",
        "Kilowatt hour per normalized cubic metre - Kilowatt hour per normalized cubic metre (temperature 0°C and pressure 101325 millibars ).",
        "Kilowatt hour per standard cubic metre - Kilowatt hour per standard cubic metre (temperature 15°C and pressure 101325 millibars).",
        "kilowatt per metre degree Celsius",
        "kilowatt per metre kelvin",
        "kilowatt per square metre kelvin",
        "kiloweber",
        "kiloweber per metre",
        "kilopound-force",
        "kip per square inch",
        "kit - A unit of count defining the number of kits (kit: tub, barrel or pail).",
        "kilojoule",
        "kilojoule per kilogram kelvin",
        "kilojoule per day",
        "kilojoule per gram",
        "kilojoule per hour",
        "kilojoule per kelvin",
        "kilojoule per kilogram",
        "kilojoule per minute",
        "kilojoule per mole",
        "kilojoule per second",
        "kilolitre",
        "kilolitre per hour",
        "kilopound per hour",
        "A unit of pressure defining the number of kilopounds force per square inch.Use kip per square inch (common code N20).",
        "kilolux",
        "kilometre",
        "kilometre per hour",
        "kilometre per second",
        "kilometre per second squared",
        "square kilometre",
        "cubic kilometre",
        "thousand cubic metre per day",
        "kilomole",
        "kilomole per hour",
        "kilomole per kilogram",
        "kilomole per cubic metre",
        "kilomole per minute",
        "kilomole per second",
        "knot",
        "kilonewton",
        "kilonewton metre",
        "kilonewton per metre",
        "kilonewton per square metre",
        "knot",
        "kilopond",
        "kilopascal",
        "kilopascal square metre per gram",
        "kilopascal per bar",
        "kilopascal per kelvin",
        "kilopascal per metre",
        "kilopascal per millimetre",
        "kiloroentgen",
        "kilosecond",
        "kilosiemens",
        "kilosiemens per metre",
        "kip per square inch",
        "kilotonne",
        "kilotesla",
        "kilovolt",
        "kilovolt - ampere",
        "kilovolt per metre",
        "kilovolt ampere hour",
        "kilovar",
        "kilovolt ampere reactive hour",
        "kilowatt",
        "kilowatt hour",
        "kilowatt hour per hour",
        "kilowatt hour per kelvin",
        "kilowatt hour per cubic metre",
        "kilowatt per metre degree Celsius",
        "kilowatt per metre kelvin",
        "kilowatt per square metre kelvin",
        "kiloweber",
        "kiloweber per metre",
        "kiloohm",
        "kiloohm",
        "kiloohm metre",
        "kiloohm metre",
        "litre",
        "litre per day bar",
        "litre per day kelvin",
        "litre per hour bar",
        "litre per hour kelvin",
        "litre per minute bar",
        "litre per minute kelvin",
        "litre per second bar",
        "litre per second kelvin",
        "litre per bar",
        "litre per day",
        "litre per hour",
        "litre per kelvin",
        "litre per kilogram",
        "litre per litre",
        "litre per minute",
        "litre per mole",
        "litre per second",
        "labour hour - A unit of time defining the number of labour hours.",
        "lactic dry material percentage - A unit of proportion defining the percentage of dry lactic material in a product.",
        "lactose excess percentage - A unit of proportion defining the percentage of lactose in a product that exceeds a defined percentage level.",
        "lambert",
        "langley",
        "layer - A unit of count defining the number of layers.",
        "pound",
        "lambert",
        "pound foot per second",
        "pound inch per second",
        "pound (avoirdupois) square foot",
        "pound inch squared",
        "pound per foot day",
        "pound per foot hour",
        "pound per foot minute",
        "pound per foot second",
        "pound (avoirdupois) per minute degree Fahrenheit",
        "pound (avoirdupois) per degree Fahrenheit",
        "pound (avoirdupois) per day",
        "pound per foot",
        "pound per square foot",
        "pound per cubic foot",
        "pound (avoirdupois) per gallon (UK)",
        "pound per gallon (US)",
        "pound per hour",
        "pound per inch of length",
        "pound per square inch absolute",
        "pound per cubic inch",
        "pound per pound",
        "pound (avoirdupois) per minute",
        "pound (avoirdupois) per psi",
        "pound (avoirdupois) per second",
        "pound per yard",
        "pound per square yard",
        "pound per cubic yard",
        "pound-force",
        "pound-force foot",
        "pound-force foot per ampere",
        "pound-force foot per inch",
        "pound-force foot per pound",
        "pound-force inch",
        "pound-force inch per inch",
        "pound-force second per square foot",
        "pound-force second per square inch",
        "pound-force per foot",
        "pound-force per square foot",
        "pound-force per inch",
        "pound-force per square inch",
        "pound-force per yard",
        "pound mole",
        "pound mole per minute",
        "pound mole per pound",
        "pound mole per second",
        "leaf - A unit of count defining the number of leaves.",
        "length - A unit of distance defining the linear extent of an item measured from end to end.",
        "light year",
        "linear foot - A unit of count defining the number of feet (12-inch) in length of a uniform width object.",
        "linear metre - A unit of count defining the number of metres in length of a uniform width object.",
        "linear yard - A unit of count defining the number of 36-inch units in length of a uniform width object.",
        "link - A unit of distance equal to 0.01 chain.",
        "liquid pint (US)",
        "liquid quart (US)",
        "liquid pint (US)",
        "liquid pint (US)",
        "liquid pound - A unit of mass defining the number of pounds of a liquid substance.",
        "liquid quart (US)",
        "liquid quart (US)",
        "litre",
        "litre of pure alcohol - A unit of volume equal to one litre of pure alcohol.",
        "litre per bar",
        "litre per day",
        "litre per day bar",
        "litre per day kelvin",
        "litre per hour",
        "litre per hour bar",
        "litre per hour kelvin",
        "litre per kelvin",
        "litre per kilogram",
        "litre per litre",
        "litre per minute",
        "litre per minute bar",
        "litre per minute kelvin",
        "litre per mole",
        "litre per second",
        "litre per second bar",
        "litre per second kelvin",
        "lumen",
        "lumen hour",
        "lumen second",
        "lumen per square foot",
        "lumen per square metre",
        "lumen per watt",
        "load - A unit of volume defining the number of loads (load: a quantity of items carried or processed at one time).",
        "lot [unit of procurement] - A unit of count defining the number of lots (lot: a collection of associated items).",
        "lot [unit of weight] - A unit of weight equal to about 1/2 ounce or 15 grams.",
        "lumen",
        "lumen hour",
        "lumen per square foot",
        "lumen per square metre",
        "lumen per watt",
        "lumen second",
        "lump sum - A unit of count defining the number of whole or a complete monetary amounts.",
        "lux",
        "lux hour",
        "lux second",
        "lux",
        "lux hour",
        "lux second",
        "light year",
        "langley",
        "metre",
        "metre kelvin",
        "metre per degree Celcius metre",
        "metre per volt second",
        "metre per bar",
        "metre per hour",
        "metre per kelvin",
        "metre per minute",
        "metre per pascal",
        "metre per radiant",
        "metre per second",
        "metre per second squared",
        "reciprocal metre",
        "reciprocal square metre",
        "reciprocal metre squared reciprocal second",
        "reciprocal cubic metre",
        "reciprocal cubic metre per second",
        "square metre",
        "square metre hour degree Celsius per kilocalorie (international table)",
        "square metre kelvin per watt",
        "square metre per second bar",
        "square metre per second kelvin",
        "square metre per steradian joule",
        "square metre per volt second",
        "square metre per joule",
        "square metre per kilogram",
        "square metre per litre",
        "square metre per mole",
        "square metre per newton",
        "square metre per second",
        "square metre per steradian",
        "cubic metre",
        "cubic metre per day bar",
        "cubic metre per day kelvin",
        "cubic metre per hour bar",
        "cubic metre per hour kelvin",
        "cubic metre per minute bar",
        "cubic metre per minute kelvin",
        "cubic metre per second bar",
        "cubic metre per second kelvin",
        "cubic metre per bar",
        "cubic metre per coulomb",
        "cubic metre per day",
        "cubic metre per hour",
        "cubic metre per kelvin",
        "cubic metre per kilogram",
        "cubic metre per cubic metre",
        "cubic metre per minute",
        "cubic metre per mole",
        "cubic metre per pascal",
        "cubic metre per second",
        "metre to the fourth power",
        "milliampere",
        "megaampere",
        "milliampere hour",
        "milliampere per pound-force per square inch",
        "milliampere per litre minute",
        "milliampere per bar",
        "milliampere per inch",
        "megaampere per square metre",
        "milliampere per millimetre",
        "manmonth - A unit of count defining the number of months for a person or persons to perform an undertaking.",
        "millibar",
        "millibar litre per second",
        "millibar cubic metre per second",
        "millibar per bar",
        "millibar per kelvin",
        "megabaud",
        "megabit",
        "megabit per second",
        "megabecquerel",
        "megabecquerel per kilogram",
        "million Btu per 1000 cubic foot",
        "megabyte",
        "megabyte per second",
        "millicoulomb",
        "megacoulomb",
        "millicoulomb per kilogram",
        "millicoulomb per square metre",
        "megacoulomb per square metre",
        "millicoulomb per cubic metre",
        "megacoulomb per cubic metre",
        "millicandela",
        "millicurie",
        "meal - A unit of count defining the number of meals (meal: an amount of food to be eaten on a single occasion).",
        "mebibit",
        "mebibit per cubic metre",
        "mebibit per metre",
        "mebibit per square metre",
        "mebibyte",
        "Mega Joule per Normalised cubic Metre - Energy in Mega Joules per normalised cubic metre for gas (temperature 0°C and pressure 101325 millibars)",
        "megaampere",
        "megaampere per square metre",
        "megabaud",
        "megabecquerel",
        "megabecquerel per kilogram",
        "megabit",
        "megabit per second",
        "megabyte",
        "megabyte per second",
        "megacoulomb",
        "megacoulomb per cubic metre",
        "megacoulomb per square metre",
        "megaelectronvolt",
        "megagram",
        "megagram per cubic metre",
        "megahertz",
        "megahertz kilometre",
        "megahertz metre",
        "megajoule",
        "megajoule per cubic metre",
        "megajoule per kilogram",
        "megajoule per second",
        "megalitre",
        "megametre",
        "meganewton",
        "meganewton metre",
        "megaohm",
        "megaohm kilometre",
        "megaohm metre",
        "megaohm per kilometre",
        "megaohm per metre",
        "megapascal",
        "megapascal cubic metre per second",
        "megapascal litre per second",
        "megapascal per bar",
        "megapascal per kelvin",
        "megapixel - A unit of count equal to 10⁶ (1000000) pixels (picture elements).",
        "megasiemens per metre",
        "megavar",
        "megavolt",
        "megavolt - ampere",
        "megavolt ampere reactive hour",
        "megavolt per metre",
        "megavolt - ampere",
        "megawatt",
        "megawatt hour (1000 kW.h)",
        "megawatt hour per hour",
        "megawatt hour (1000 kW.h)",
        "megawatt per hertz",
        "megawatts per minute",
        "mesh - A unit of count defining the number of strands per inch as a measure of the fineness of a woven product.",
        "message - A unit of count defining the number of messages.",
        "metre",
        "metre kelvin",
        "metre per bar",
        "metre per degree Celcius metre",
        "metre per hour",
        "metre per kelvin",
        "metre per minute",
        "metre per pascal",
        "metre per radiant",
        "metre per second",
        "metre per second bar",
        "metre per second kelvin",
        "metre per second pascal",
        "metre per second squared",
        "metre per volt second",
        "metre to the fourth power",
        "metric carat (200 mg)",
        "metric horse power",
        "metric horse power",
        "metric ton, including container - A unit of mass defining the number of metric tons of a product, including its container.",
        "metric ton, including inner packaging - A unit of mass defining the number of metric tons of a product, including its inner packaging materials.",
        "metric ton, lubricating oil - A unit of mass defining the number of metric tons of lubricating oil.",
        "megaelectronvolt",
        "millifarad",
        "milligram",
        "megagram",
        "milligram per day bar",
        "milligram per day kelvin",
        "milligram per hour bar",
        "milligram per hour kelvin",
        "milligram per minute bar",
        "milligram per minute kelvin",
        "milligram per second bar",
        "milligram per second kelvin",
        "milligram per bar",
        "milligram per square centimetre",
        "milligram per day",
        "milligram per gram",
        "milligram per hour",
        "milligram per kelvin",
        "milligram per kilogram",
        "milligram per litre",
        "milligram per metre",
        "milligram per square metre",
        "milligram per cubic metre",
        "megagram per cubic metre",
        "milligram per minute",
        "milligram per second",
        "milligal",
        "milligray",
        "milligray per hour",
        "milligray per minute",
        "milligray per second",
        "millihenry",
        "millihenry per kiloohm",
        "millihenry per kiloohm",
        "millihenry per ohm",
        "millihenry per ohm",
        "conventional metre of water",
        "mho (S)",
        "millihertz - A unit of frequency equal to 0.001 cycle per second (10-3 Hz)",
        "megahertz",
        "megahertz kilometre",
        "megahertz metre",
        "mile (based on U.S. survey foot)",
        "mile per minute",
        "mile per second",
        "mile (statute mile) per second squared",
        "square mile (statute mile)",
        "square mile (based on U.S. survey foot)",
        "cubic mile (UK statute)",
        "mebibit",
        "mebibit per metre",
        "mebibit per square metre",
        "mebibit per cubic metre",
        "mebibyte",
        "micro-inch",
        "microampere",
        "microbar",
        "microbecquerel",
        "microcoulomb",
        "microcoulomb per cubic metre",
        "microcoulomb per square metre",
        "microcurie",
        "microfarad",
        "microfarad per kilometre",
        "microfarad per metre",
        "microgram",
        "microgram per cubic metre",
        "microgram per cubic metre bar",
        "microgram per cubic metre kelvin",
        "microgram per hectogram",
        "microgram per kilogram",
        "microgram per litre",
        "microgray per hour",
        "microgray per minute",
        "microgray per second",
        "microhenry",
        "microhenry per kiloohm",
        "microhenry per metre",
        "microhenry per ohm",
        "microlitre",
        "microlitre per litre",
        "micrometre (micron)",
        "micrometre per kelvin",
        "micrometre (micron)",
        "micromho (10⁻⁶ S)",
        "micromole",
        "micronewton",
        "micronewton metre",
        "microohm",
        "microohm metre",
        "micropascal",
        "micropoise",
        "microradian",
        "microsecond",
        "microsiemens",
        "microsiemens per centimetre",
        "microsiemens per metre",
        "microsievert per hour",
        "microsievert per minute",
        "microsievert per second",
        "microtesla",
        "microvolt",
        "microvolt per metre",
        "microwatt",
        "microwatt per square metre",
        "mil",
        "mile (statute mile)",
        "mile (based on U.S. survey foot)",
        "mile (statute mile)",
        "mile (statute mile) per second squared",
        "mile per hour (statute mile)",
        "mile per hour (statute mile)",
        "mile per minute",
        "mile per second",
        "mile (based on U.S. survey foot)",
        "mile (statute mile)",
        "mile (statute mile) per second squared",
        "mile per hour (statute mile)",
        "mille - A unit of count defining the number of cigarettes in units of 1000.",
        "milli-inch",
        "milliampere",
        "milliampere hour",
        "milliampere per bar",
        "milliampere per inch",
        "milliampere per litre minute",
        "milliampere per millimetre",
        "milliampere per pound-force per square inch",
        "milliard - Synonym: billion (US) (10⁹)",
        "millibar",
        "millibar cubic metre per second",
        "millibar litre per second",
        "millibar per bar",
        "millibar per kelvin",
        "millicandela",
        "millicoulomb",
        "millicoulomb per cubic metre",
        "millicoulomb per kilogram",
        "millicoulomb per square metre",
        "millicurie",
        "milliequivalence caustic potash per gram of product - A unit of count defining the number of milligrams of potassium hydroxide per gram of product as a measure of the concentration of potassium hydroxide in the product.",
        "millifarad",
        "milligal",
        "milligram",
        "milligram per bar",
        "milligram per cubic metre",
        "milligram per cubic metre bar",
        "milligram per cubic metre kelvin",
        "milligram per day",
        "milligram per day bar",
        "milligram per day kelvin",
        "milligram per gram",
        "milligram per hour",
        "milligram per hour bar",
        "milligram per hour kelvin",
        "milligram per kelvin",
        "milligram per kilogram",
        "milligram per litre",
        "milligram per metre",
        "milligram per minute",
        "milligram per minute bar",
        "milligram per minute kelvin",
        "milligram per second",
        "milligram per second bar",
        "milligram per second kelvin",
        "milligram per square centimetre",
        "milligram per square metre",
        "milligray",
        "milligray per hour",
        "milligray per minute",
        "milligray per second",
        "millihenry",
        "millihenry per kiloohm",
        "millihenry per ohm",
        "millihertz - A unit of frequency equal to 0.001 cycle per second (10-3 Hz)",
        "millijoule",
        "millilitre",
        "millilitre per bar",
        "millilitre per cubic metre",
        "millilitre per day",
        "millilitre per day bar",
        "millilitre per day kelvin",
        "millilitre per hour",
        "millilitre per hour bar",
        "millilitre per hour kelvin",
        "millilitre per kelvin",
        "millilitre per kilogram",
        "millilitre per litre",
        "millilitre per minute",
        "millilitre per minute bar",
        "millilitre per minute kelvin",
        "millilitre per second",
        "millilitre per second bar",
        "millilitre per second kelvin",
        "millilitre per square centimetre minute",
        "millilitre per square centimetre second",
        "millimetre",
        "millimetre per bar",
        "millimetre per degree Celcius metre",
        "millimetre per hour",
        "millimetre per kelvin",
        "millimetre per minute",
        "millimetre per second",
        "millimetre per second squared",
        "millimetre per year",
        "millimetre squared per second",
        "millimetre to the fourth power",
        "millimole",
        "millimole per gram",
        "millimole per kilogram",
        "millimole per litre",
        "millinewton",
        "millinewton metre",
        "millinewton per metre",
        "milliohm",
        "milliohm metre",
        "milliohm per metre",
        "million (10⁶)",
        "million Btu per 1000 cubic foot",
        "million Btu(IT) per hour",
        "million cubic metre",
        "million international unit - A unit of count defining the number of international units in multiples of 10⁶.",
        "millipascal",
        "millipascal per metre",
        "millipascal second",
        "millipascal second per bar",
        "millipascal second per kelvin",
        "milliradian",
        "milliroentgen",
        "milliroentgen aequivalent men",
        "millisecond",
        "millisiemens",
        "millisiemens per centimetre",
        "millisievert",
        "millisievert per hour",
        "millisievert per minute",
        "millisievert per second",
        "millitesla",
        "millivolt",
        "millivolt - ampere",
        "millivolt per kelvin",
        "millivolt per metre",
        "millivolt per minute",
        "millivolt - ampere",
        "milliwatt",
        "milliwatt per square metre",
        "milliweber",
        "minute [unit of time]",
        "reciprocal minute",
        "minute [unit of angle]",
        "minute [unit of time]",
        "minute [unit of angle]",
        "minute [unit of time]",
        "millijoule",
        "megajoule",
        "megajoule per kilogram",
        "Mega Joule per Normalised cubic Metre - Energy in Mega Joules per normalised cubic metre for gas (temperature 0°C and pressure 101325 millibars)",
        "megajoule per second",
        "millilitre",
        "megalitre",
        "millilitre per square centimetre second",
        "millilitre per day bar",
        "millilitre per day kelvin",
        "millilitre per hour bar",
        "millilitre per hour kelvin",
        "millilitre per minute bar",
        "millilitre per minute kelvin",
        "millilitre per second bar",
        "millilitre per second kelvin",
        "millilitre per bar",
        "millilitre per day",
        "millilitre per hour",
        "millilitre per kelvin",
        "millilitre per kilogram",
        "millilitre per litre",
        "millilitre per cubic metre",
        "millilitre per minute",
        "millilitre per second",
        "millimetre",
        "megametre",
        "conventional millimetre of water",
        "conventional millimetre of mercury",
        "millimetre per degree Celcius metre",
        "millimetre per bar",
        "millimetre per hour",
        "millimetre per kelvin",
        "millimetre per minute",
        "millimetre per second",
        "millimetre per second squared",
        "millimetre per year",
        "square millimetre",
        "millimetre squared per second",
        "cubic millimetre",
        "million cubic metre",
        "cubic millimetre per cubic metre",
        "millimetre to the fourth power",
        "millimole",
        "millimole per gram",
        "millimole per kilogram",
        "millimole per litre",
        "MMSCF/day - A unit of volume equal to one million (1000000) cubic feet of gas per day.",
        "millinewton",
        "meganewton",
        "millinewton metre",
        "meganewton metre",
        "millinewton per metre",
        "month",
        "30-day month",
        "module width",
        "mole",
        "mol per cubic metre pascal",
        "mol per kilogram pascal",
        "mole per cubic decimetre",
        "mole per hour",
        "mole per kilogram",
        "mole per litre",
        "mole per cubic metre",
        "mole per minute",
        "mole per second",
        "reciprocal mole",
        "mole",
        "mole per cubic decimetre",
        "mole per cubic metre",
        "mole per cubic metre bar",
        "mole per cubic metre kelvin",
        "mole per cubiv metre to the power sum of stoichiometric numbers",
        "mole per hour",
        "mole per kilogram",
        "mole per kilogram bar",
        "mole per kilogram kelvin",
        "mole per litre",
        "mole per litre bar",
        "mole per litre kelvin",
        "mole per minute",
        "mole per second",
        "monetary value - A unit of measure expressed as a monetary amount.",
        "month",
        "millipascal",
        "megapascal",
        "megapascal litre per second",
        "megapascal cubic metre per second",
        "millipascal second",
        "millipascal second per bar",
        "millipascal second per kelvin",
        "megapascal per bar",
        "megapascal per kelvin",
        "millipascal per metre",
        "milliroentgen",
        "milliradian",
        "milliroentgen aequivalent men",
        "millisecond",
        "millisiemens",
        "millisiemens per centimetre",
        "megasiemens per metre",
        "millisievert",
        "millisievert per hour",
        "millisievert per minute",
        "millisievert per second",
        "millitesla",
        "mutually defined - A unit of measure as agreed in common between two or more parties.",
        "millivolt",
        "megavolt",
        "millivolt - ampere",
        "megavolt - ampere",
        "millivolt per kelvin",
        "millivolt per metre",
        "megavolt per metre",
        "millivolt per minute",
        "megavar",
        "megavolt ampere reactive hour",
        "milliwatt",
        "megawatt",
        "megawatt hour (1000 kW.h)",
        "megawatt hour per hour",
        "megawatt per hertz",
        "milliwatt per square metre",
        "megawatts per minute",
        "milliweber",
        "milliohm",
        "milliohm",
        "megaohm",
        "megaohm",
        "megaohm kilometre",
        "megaohm kilometre",
        "milliohm metre",
        "milliohm metre",
        "megaohm metre",
        "megaohm metre",
        "megaohm per kilometre",
        "megaohm per kilometre",
        "milliohm per metre",
        "milliohm per metre",
        "megaohm per metre",
        "megaohm per metre",
        "newton",
        "nautical mile",
        "newton centimetre",
        "newton metre",
        "newton metre second",
        "newton metre watt to the power minus 0",
        "newton metre per ampere",
        "newton metre per kilogram",
        "newton metre per square metre",
        "newton metre per radian",
        "newton square metre per ampere",
        "newton metre squared per kilogram squared",
        "newton second",
        "newton second per metre",
        "newton per ampere",
        "newton per centimetre",
        "newton per square centimetre",
        "newton per metre",
        "newton per square metre",
        "newton per millimetre",
        "newton per square millimetre",
        "nanoampere",
        "nanoampere",
        "nanocoulomb",
        "nanofarad",
        "nanofarad per metre",
        "nanogram per kilogram",
        "nanogray per hour",
        "nanogray per minute",
        "nanogray per second",
        "nanohenry",
        "nanohenry per metre",
        "nanolitre",
        "nanometre",
        "nanomole - An SI unit of amount of substance equal to 10−9 moles (10⁻9 mol)",
        "nanoohm",
        "nanoohm metre",
        "nanosecond",
        "nanosiemens per centimetre",
        "nanosiemens per metre",
        "nanosievert per hour",
        "nanosievert per minute",
        "nanosievert per second",
        "nanotesla",
        "nanowatt",
        "natural unit of information",
        "natural unit of information per second",
        "natural unit of information",
        "natural unit of information per second",
        "nautical mile",
        "nanocoulomb",
        "neper",
        "neper per second",
        "Nephelometric turbidity unit",
        "net kilogram - A unit of mass defining the total number of kilograms after deductions.",
        "net ton - A unit of mass equal to 2000 pounds, see ton (US).  Refer International Convention on tonnage measurement of Ships.",
        "newton",
        "newton centimetre",
        "newton metre",
        "newton metre per ampere",
        "newton metre per degree",
        "newton metre per kilogram",
        "newton metre per metre",
        "newton metre per radian",
        "newton metre per square metre",
        "newton metre second",
        "newton metre squared per kilogram squared",
        "newton metre watt to the power minus 0",
        "newton per ampere",
        "newton per centimetre",
        "newton per metre",
        "newton per millimetre",
        "newton per square centimetre",
        "newton per square metre",
        "newton per square millimetre",
        "newton second",
        "newton second per metre",
        "newton second per square metre",
        "newton square metre per ampere",
        "nanofarad",
        "nanofarad per metre",
        "nanogram per kilogram",
        "nanogray per hour",
        "nanogray per minute",
        "nanogray per second",
        "nanohenry",
        "nanohenry per metre",
        "nil",
        "nanolitre",
        "nanometre",
        "newton metre per degree",
        "nanomole - An SI unit of amount of substance equal to 10−9 moles (10⁻9 mol)",
        "Normalised cubic metre - Normalised cubic metre (temperature 0°C and pressure 101325 millibars ) (m3)",
        "Normalized cubic metre per day - Normalized cubic metre (temperature 0°C and pressure 101325 millibars ) per day (1.15741 × 10-5 m3/s)",
        "Normalized cubic metre per hour - Normalized cubic metre (temperature 0°C and pressure 101325 millibars ) per hour (2.77778 × 10-4 m3/s)",
        "neper",
        "neper per second",
        "nanosecond",
        "nanosiemens per centimetre",
        "nanosiemens per metre",
        "nanosievert per hour",
        "nanosievert per minute",
        "nanosievert per second",
        "nanotesla",
        "Nephelometric turbidity unit",
        "number of articles - A unit of count defining the number of articles (article: item).",
        "number of cells - A unit of count defining the number of cells (cell: an enclosed or circumscribed space, cavity, or volume).",
        "number of international units - A unit of count defining the number of international units.",
        "number of jewels - A unit of count defining the number of jewels (jewel: precious stone).",
        "number of packs - A unit of count defining the number of packs (pack: a collection of objects packaged together).",
        "number of parts - A unit of count defining the number of parts (part: component of a larger entity).",
        "number of words - A unit of count defining the number of words.",
        "nanowatt",
        "nanoohm",
        "nanoohm",
        "nanoohm metre",
        "nanoohm metre",
        "octet",
        "oscillations per minute",
        "octet per second",
        "octave - A unit used in music to describe the ratio in frequency between notes.",
        "octet",
        "octet per second",
        "ODS Grams - A unit of measure calculated by multiplying the mass of the substance in grams and the ozone-depleting potential for the substance.",
        "ODS Kilograms - A unit of measure calculated by multiplying the mass of the substance in kilograms and the ozone-depleting potential for the substance.",
        "ODS Milligrams - A unit of measure calculated by multiplying the mass of the substance in milligrams and the ozone-depleting potential for the substance.",
        "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
        "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
        "degree Fahrenheit hour per British thermal unit (international table)",
        "degree Fahrenheit second per British thermal unit (international table)",
        "degree Fahrenheit hour per British thermal unit (thermochemical)",
        "degree Fahrenheit second per British thermal unit (thermochemical)",
        "ohm",
        "ohm centimetre",
        "ohm circular-mil per foot",
        "ohm kilometre",
        "ohm metre",
        "ohm per kilometre",
        "ohm per metre",
        "ohm per mile (statute mile)",
        "ohm per mile (statute mile)",
        "one",
        "one per one",
        "oscillations per minute",
        "ounce (avoirdupois)",
        "ounce (avoirdupois) per cubic inch",
        "ounce (avoirdupois) per cubic yard",
        "ounce (avoirdupois) per day",
        "ounce (avoirdupois) per gallon (UK)",
        "ounce (avoirdupois) per gallon (US)",
        "ounce (avoirdupois) per hour",
        "ounce (avoirdupois) per minute",
        "ounce (avoirdupois) per second",
        "ounce (avoirdupois) per square inch",
        "ounce (avoirdupois)-force",
        "ounce (avoirdupois)-force inch",
        "ounce (UK fluid) per day",
        "ounce (UK fluid) per hour",
        "ounce (UK fluid) per minute",
        "ounce (UK fluid) per second",
        "ounce (US fluid) per day",
        "ounce (US fluid) per hour",
        "ounce (US fluid) per minute",
        "ounce (US fluid) per second",
        "ounce foot",
        "ounce inch",
        "ounce per square foot",
        "ounce per square yard",
        "ounce (avoirdupois)",
        "ounce (avoirdupois) per cubic inch",
        "ounce (avoirdupois) per cubic yard",
        "ounce (avoirdupois) per day",
        "ounce (avoirdupois) per gallon (UK)",
        "ounce (avoirdupois) per gallon (US)",
        "ounce (avoirdupois) per hour",
        "ounce (avoirdupois) per minute",
        "ounce (avoirdupois) per second",
        "ounce (avoirdupois) per square inch",
        "ounce (avoirdupois)-force",
        "ounce (avoirdupois)-force inch",
        "ounce (UK fluid) per day",
        "ounce (UK fluid) per hour",
        "ounce (UK fluid) per minute",
        "ounce (UK fluid) per second",
        "ounce (US fluid) per day",
        "ounce (US fluid) per hour",
        "ounce (US fluid) per minute",
        "ounce (US fluid) per second",
        "outfit - A unit of count defining the number of outfits (outfit: a complete set of equipment / materials / objects used for a specific purpose).",
        "overtime hour - A unit of time defining the number of overtime hours.",
        "ounce (avoirdupois)",
        "ounce foot",
        "ounce inch",
        "ounce (avoirdupois) per day",
        "ounce per square foot",
        "ounce (avoirdupois) per gallon (UK)",
        "ounce (avoirdupois) per gallon (US)",
        "ounce (avoirdupois) per hour",
        "ounce (avoirdupois) per square inch",
        "ounce (avoirdupois) per cubic inch",
        "ounce (avoirdupois) per minute",
        "ounce (avoirdupois) per second",
        "ounce per square yard",
        "ounce (avoirdupois) per cubic yard",
        "ounce (avoirdupois)-force",
        "ounce (avoirdupois)-force inch",
        "ozone depletion equivalent - A unit of mass defining the ozone depletion potential in kilograms of a product relative to the calculated depletion for the reference substance, Trichlorofluoromethane (CFC-11).",
        "pond",
        "poise",
        "poise per bar",
        "poise per kelvin",
        "poise per pascal",
        "picoampere",
        "pascal",
        "pascal second per kelvin",
        "pascal second per metre",
        "pascal litre per second",
        "pascal cubic metre per second",
        "pascal second",
        "pascal second per bar",
        "pascal second per litre",
        "pascal second per cubic metre",
        "pascal square metre per kilogram",
        "pascal per bar",
        "pascal per kelvin",
        "pascal per metre",
        "reciprocal pascal or pascal to the power minus one",
        "pascal squared second",
        "pad - A unit of count defining the number of pads (pad: block of paper sheets fastened together at one end).",
        "page - A unit of count defining the number of pages.",
        "page per inch",
        "page - facsimile - A unit of count defining the number of facsimile pages.",
        "page - hardcopy - A unit of count defining the number of hardcopy pages (hardcopy page: a page rendered as printed or written output on paper, film, or other permanent medium).",
        "pair - A unit of count defining the number of pairs (pair: item described by twos). (2)",
        "panel - A unit of count defining the number of panels (panel: a distinct, usually rectangular, section of a surface).",
        "parsec",
        "part per billion (US)",
        "part per billion (US)",
        "part per hundred thousand",
        "part per million",
        "part per thousand",
        "pascal",
        "pascal cubic metre per second",
        "pascal litre per second",
        "pascal per bar",
        "pascal per kelvin",
        "pascal per metre",
        "pascal second",
        "pascal second per bar",
        "pascal second per cubic metre",
        "pascal second per kelvin",
        "pascal second per litre",
        "pascal second per metre",
        "pascal square metre per kilogram",
        "pascal squared second",
        "pascal to the power sum of stoichiometric numbers",
        "pascal to the power sum of stoichiometric numbers",
        "petabit",
        "petabit per second",
        "petabyte",
        "parsec",
        "picocoulomb",
        "percent",
        "poundal",
        "poundal per square foot",
        "poundal per inch",
        "poundal per square inch",
        "poundal foot",
        "poundal inch",
        "pebibit per cubic metre",
        "pebibit per metre",
        "pebibit per square metre",
        "pebibyte",
        "peck",
        "peck (UK)",
        "peck (UK) per day",
        "peck (UK) per hour",
        "peck (UK) per minute",
        "peck (UK) per second",
        "peck (US dry) per day",
        "peck (US dry) per hour",
        "peck (US dry) per minute",
        "peck (US dry) per second",
        "peck (UK)",
        "peck (UK) per day",
        "peck (UK) per hour",
        "peck (UK) per minute",
        "peck (UK) per second",
        "peck (US dry) per day",
        "peck (US dry) per hour",
        "peck (US dry) per minute",
        "peck (US dry) per second",
        "pen calorie - A unit of count defining the number of calories prescribed daily for parenteral/enteral therapy.",
        "pen gram (protein) - A unit of count defining the number of grams of amino acid prescribed for parenteral/enteral therapy.",
        "pennyweight (1,555 174 g)",
        "per mille per psi",
        "percent",
        "percent per bar",
        "percent per decakelvin",
        "percent per degree",
        "percent per degree Celsius",
        "percent per hectobar",
        "percent per hundred",
        "percent per inch",
        "percent per kelvin",
        "percent per metre",
        "percent per millimetre",
        "percent per month",
        "percent per ohm",
        "percent per one hundred thousand",
        "percent per ten thousand",
        "percent per thousand",
        "percent per volt",
        "percent volume - A measure of concentration, typically expressed as the percentage volume of a solute in a solution.",
        "percent weight - A unit of proportion equal to 10⁻². (1 x 10⁻²)",
        "perm (0 ºC)",
        "perm (23 ºC)",
        "perm (0 ºC)",
        "perm (23 ºC)",
        "person - A unit of count defining the number of persons.",
        "petabit",
        "petabit per second",
        "petabyte",
        "petajoule",
        "picofarad",
        "picofarad per metre",
        "pfund",
        "Pferdestaerke",
        "pfund",
        "phot",
        "pH (potential of Hydrogen)",
        "pH (potential of Hydrogen)",
        "pH (potential of Hydrogen)",
        "phon - A unit of subjective sound loudness. A sound has loudness p phons if it seems to the listener to be equal in loudness to the sound of a pure tone of frequency 1 kilohertz and strength p decibels.",
        "phot",
        "pebibit per metre",
        "pebibit per square metre",
        "pebibit per cubic metre",
        "pebibyte",
        "pica - A unit of count defining the number of picas. (pica: typographical length equal to 12 points or 4.22 mm (approx.)). (4,217 518 x 10⁻³ m)",
        "picoampere",
        "picocoulomb",
        "picofarad",
        "picofarad per metre",
        "picohenry",
        "picolitre",
        "picometre",
        "picopascal per kilometre",
        "picosecond",
        "picosiemens",
        "picosiemens per metre",
        "picovolt",
        "picowatt",
        "picowatt per square metre",
        "piece - A unit of count defining the number of pieces (piece: a single item, article or exemplar).",
        "ping - A unit of area equal to 3.3 square metres. (3,305 m²)",
        "pint (UK)",
        "pint (UK) per day",
        "pint (UK) per hour",
        "pint (UK) per minute",
        "pint (UK) per second",
        "pint (US liquid) per day",
        "pint (US liquid) per hour",
        "pint (US liquid) per minute",
        "pint (US liquid) per second",
        "pint (US)",
        "pint (UK)",
        "pint (UK) per day",
        "pint (UK) per hour",
        "pint (UK) per minute",
        "pint (UK) per second",
        "pint (US dry) - Use dry pint (common code PTD) (5,506 105 x 10⁻⁴ m³)",
        "pint (US liquid) per day",
        "pint (US liquid) per hour",
        "pint (US liquid) per minute",
        "pint (US liquid) per second",
        "pint (US)",
        "pipeline joint - A count of the number of pipeline joints.",
        "pitch - A unit of count defining the number of characters that fit in a horizontal inch.",
        "pixel - A unit of count defining the number of pixels (pixel: picture element).",
        "petajoule",
        "bulk pack",
        "peck (UK)",
        "peck (UK) per day",
        "peck (UK) per hour",
        "peck (UK) per minute",
        "peck (UK) per second",
        "peck (US dry) per day",
        "peck (US dry) per hour",
        "peck (US dry) per minute",
        "peck (US dry) per second",
        "peck",
        "picolitre",
        "picometre",
        "poise",
        "poise per bar",
        "poise per kelvin",
        "poise per pascal",
        "pond",
        "portion",
        "pound",
        "pound (avoirdupois) per cubic foot degree Fahrenheit",
        "pound (avoirdupois) per cubic foot psi",
        "pound (avoirdupois) per cubic inch degree Fahrenheit",
        "pound (avoirdupois) per cubic inch psi",
        "pound (avoirdupois) per day",
        "pound (avoirdupois) per degree Fahrenheit",
        "pound (avoirdupois) per gallon (UK)",
        "pound (avoirdupois) per hour degree Fahrenheit",
        "pound (avoirdupois) per hour psi",
        "pound (avoirdupois) per minute",
        "pound (avoirdupois) per minute degree Fahrenheit",
        "pound (avoirdupois) per minute psi",
        "pound (avoirdupois) per psi",
        "pound (avoirdupois) per second",
        "pound (avoirdupois) per second degree Fahrenheit",
        "pound (avoirdupois) per second psi",
        "pound (avoirdupois) square foot",
        "pound foot per second",
        "pound inch per second",
        "pound inch squared",
        "pound mole",
        "pound mole per minute",
        "pound mole per pound",
        "pound mole per second",
        "pound per cubic foot",
        "pound per cubic inch",
        "pound per cubic yard",
        "pound per foot",
        "pound per foot day",
        "pound per foot hour",
        "pound per foot minute",
        "pound per foot second",
        "pound per gallon (US)",
        "pound per gallon (US)",
        "pound per hour",
        "pound per inch of length",
        "pound per pound",
        "pound per ream - A unit of mass for paper, expressed as pounds per ream. (ream: a large quantity of paper, typically 500 sheets).",
        "pound per square foot",
        "pound per square inch absolute",
        "pound per square yard",
        "pound per yard",
        "pound-force",
        "pound-force foot",
        "pound-force foot per ampere",
        "pound-force foot per inch",
        "pound-force foot per pound",
        "pound-force inch",
        "pound-force inch per inch",
        "pound-force per foot",
        "pound-force per inch",
        "pound-force per square foot",
        "pound-force per square inch",
        "pound-force per square inch degree Fahrenheit",
        "pound-force per yard",
        "pound-force second per square foot",
        "pound-force second per square inch",
        "pound (avoirdupois) per cubic foot degree Fahrenheit",
        "pound (avoirdupois) per cubic foot psi",
        "pound (avoirdupois) per cubic inch degree Fahrenheit",
        "pound (avoirdupois) per cubic inch psi",
        "pound (avoirdupois) per day",
        "pound (avoirdupois) per degree Fahrenheit",
        "pound (avoirdupois) per gallon (UK)",
        "pound (avoirdupois) per hour degree Fahrenheit",
        "pound (avoirdupois) per hour psi",
        "pound (avoirdupois) per minute",
        "pound (avoirdupois) per minute degree Fahrenheit",
        "pound (avoirdupois) per minute psi",
        "pound (avoirdupois) per psi",
        "pound (avoirdupois) per second",
        "pound (avoirdupois) per second degree Fahrenheit",
        "pound (avoirdupois) per second psi",
        "pound (avoirdupois) square foot",
        "poundal",
        "poundal foot",
        "poundal inch",
        "poundal per inch",
        "poundal per square foot",
        "poundal per square inch",
        "poundal second per square foot",
        "poundal second per square inch",
        "picopascal per kilometre",
        "part per billion (US)",
        "part per hundred thousand",
        "page per inch",
        "part per million",
        "print point (0,013 8 in (approx))",
        "proof gallon - A unit of volume equal to one gallon of proof spirits, or the alcohol equivalent thereof. Used for measuring the strength of distilled alcoholic liquors, expressed as a percentage of the alcohol content of a standard mixture at a specific temperature.",
        "proof litre - A unit of volume equal to one litre of proof spirits, or the alcohol equivalent thereof. Used for measuring the strength of distilled alcoholic liquors, expressed as a percentage of the alcohol content of a standard mixture at a specific temperature.",
        "picosecond",
        "picosiemens",
        "Pferdestaerke",
        "picosiemens per metre",
        "psi cubic inch per second",
        "psi cubic metre per second",
        "psi cubic yard per second",
        "psi litre per second",
        "psi per inch",
        "psi per psi",
        "psi cubic inch per second",
        "psi litre per second",
        "psi cubic metre per second",
        "psi cubic yard per second",
        "pound-force per square inch degree Fahrenheit",
        "psi per inch",
        "psi per psi",
        "pint (UK)",
        "pint (UK) per day",
        "pint (UK) per hour",
        "pint (UK) per minute",
        "pint (UK) per second",
        "pint (US dry) - Use dry pint (common code PTD) (5,506 105 x 10⁻⁴ m³)",
        "pint (US liquid) per day",
        "pint (US liquid) per hour",
        "pint (US liquid) per minute",
        "pint (US liquid) per second",
        "pint (US)",
        "portion",
        "picovolt",
        "picowatt",
        "picowatt per square metre",
        "quire",
        "quarter (UK)",
        "quart (UK liquid) per day",
        "quart (UK liquid) per hour",
        "quart (UK liquid) per minute",
        "quart (UK liquid) per second",
        "quart (UK)",
        "quart (US dry) - Use dry quart (US) (common code QTD) (1,101 221 x 10⁻³ m³)",
        "quart (US liquid) per day",
        "quart (US liquid) per hour",
        "quart (US liquid) per minute",
        "quart (US liquid) per second",
        "quart (US)",
        "quad (1015 BtuIT)",
        "quad (1015 BtuIT)",
        "quad (1015 BtuIT)",
        "quart (UK liquid) per day",
        "quart (UK liquid) per hour",
        "quart (UK liquid) per minute",
        "quart (UK liquid) per second",
        "quart (UK)",
        "quart (US liquid) per day",
        "quart (US liquid) per hour",
        "quart (US liquid) per minute",
        "quart (US liquid) per second",
        "quart (US)",
        "quart (UK liquid) per day",
        "quart (UK liquid) per hour",
        "quart (UK liquid) per minute",
        "quart (UK liquid) per second",
        "quart (UK)",
        "quart (US dry) - Use dry quart (US) (common code QTD) (1,101 221 x 10⁻³ m³)",
        "quart (US liquid) per day",
        "quart (US liquid) per hour",
        "quart (US liquid) per minute",
        "quart (US liquid) per second",
        "quart (US)",
        "quarter (UK)",
        "quarter (of a year) - A unit of time defining the number of quarters (3 months).",
        "quarter (UK)",
        "quire",
        "roentgen",
        "revolution per minute",
        "revolutions per second",
        "roentgen per second",
        "rack unit",
        "rad",
        "radian square metre per kilogram",
        "radian square metre per mole",
        "radian per metre",
        "radian per second",
        "radian per second squared",
        "radian",
        "radian per metre",
        "radian per second",
        "radian per second squared",
        "radian square metre per kilogram",
        "radian square metre per mole",
        "rate - A unit of quantity expressed as a rate for usage of a facility or service.",
        "ration - A unit of count defining the number of rations (ration: a single portion of provisions).",
        "rod [unit of distance]",
        "ream - A unit of count for paper, expressed as the number of reams (ream: a large quantity of paper sheets, typically 500).",
        "reciprocal angstrom",
        "reciprocal bar",
        "reciprocal centimetre",
        "reciprocal cubic centimetre",
        "reciprocal cubic foot",
        "reciprocal cubic inch",
        "reciprocal cubic metre",
        "reciprocal cubic metre per second",
        "reciprocal cubic millimetre",
        "reciprocal cubic yard",
        "reciprocal day",
        "reciprocal degree Fahrenheit",
        "reciprocal electron volt per cubic metre",
        "reciprocal henry",
        "reciprocal hour",
        "reciprocal inch",
        "reciprocal joule",
        "reciprocal joule per cubic metre",
        "reciprocal kelvin or kelvin to the power minus one",
        "reciprocal kilovolt - ampere reciprocal hour",
        "reciprocal kilovolt - ampere reciprocal hour",
        "reciprocal litre",
        "reciprocal megakelvin or megakelvin to the power minus one",
        "reciprocal metre",
        "reciprocal metre squared reciprocal second",
        "reciprocal minute",
        "reciprocal mole",
        "reciprocal month",
        "reciprocal pascal or pascal to the power minus one",
        "reciprocal psi",
        "reciprocal radian",
        "reciprocal second",
        "reciprocal second per cubic metre (s⁻¹/m³)",
        "reciprocal second per metre squared",
        "reciprocal second per steradian",
        "reciprocal second per steradian metre squared",
        "reciprocal square inch",
        "reciprocal square metre",
        "reciprocal volt",
        "reciprocal volt - ampere reciprocal second",
        "reciprocal volt - ampere reciprocal second",
        "reciprocal week",
        "reciprocal year",
        "rem",
        "rem per second",
        "rem per second",
        "revolution",
        "revenue ton mile - A unit of information typically used for billing purposes, expressed as the number of revenue tons (revenue ton: either a metric ton or a cubic metres, whichever is the larger), moved over a distance of one mile.",
        "revolution",
        "revolution per minute",
        "revolutions per minute",
        "revolutions per second",
        "rhe",
        "rod [unit of distance]",
        "rod [unit of distance]",
        "roentgen",
        "roentgen per second",
        "room - A unit of count defining the number of rooms.",
        "round - A unit of count defining the number of rounds (round: A circular or cylindrical object).",
        "ton",
        "rack unit",
        "run foot - A unit of count defining the number feet per run.",
        "running or operating hour - A unit of time defining the number of hours of operation.",
        "second [unit of time]",
        "siemens",
        "siemens square metre per mole",
        "second per cubic metre radian",
        "siemens per centimetre",
        "second per kilogramm",
        "siemens per metre",
        "second per cubic metre",
        "reciprocal second",
        "reciprocal second per steradian metre squared",
        "reciprocal second per metre squared",
        "reciprocal second per cubic metre (s⁻¹/m³)",
        "reciprocal second per steradian",
        "stilb",
        "score - A unit of count defining the number of units in multiples of 20. (20)",
        "scruple (1,295 982 g)",
        "second [unit of angle]",
        "second [unit of time]",
        "second per cubic metre",
        "second per cubic metre radian",
        "second per kilogramm",
        "second per radian cubic metre",
        "second [unit of angle]",
        "second [unit of time]",
        "segment - A unit of information equal to 64000 bytes.",
        "service unit - A unit of count defining the number of service units (service unit: defined period / property / facility / utility of supply).",
        "set - A unit of count defining the number of sets (set: a number of objects grouped together).",
        "shannon",
        "shannon per second",
        "shake",
        "shannon",
        "shannon per second",
        "shares - A unit of count defining the number of shares (share: a total or portion of the parts into which a business entity’s capital is divided).",
        "shipment - A unit of count defining the number of shipments (shipment: an amount of goods shipped or transported).",
        "shot - A unit of liquid measure, especially related to spirits.",
        "sidereal year",
        "siemens",
        "siemens per centimetre",
        "siemens per metre",
        "siemens square metre per mole",
        "sievert",
        "sievert per hour",
        "sievert per minute",
        "sievert per second",
        "sitas - A unit of area for tin plate equal to a surface area of 100 square metres.",
        "skein - A unit of count defining the number of skeins (skein: a loosely-coiled bundle of yarn or thread).",
        "slug",
        "slug per cubic foot",
        "slug per day",
        "slug per foot second",
        "slug per hour",
        "slug per minute",
        "slug per second",
        "slug per foot second",
        "slug per day",
        "slug per cubic foot",
        "slug per hour",
        "slug per minute",
        "slug per second",
        "sone - A unit of subjective sound loudness. One sone is the loudness of a pure tone of frequency one kilohertz and strength 40 decibels.",
        "square - A unit of count defining the number of squares (square: rectangular shape).",
        "square centimetre",
        "square centimetre per erg",
        "square centimetre per gram",
        "square centimetre per second",
        "square centimetre per steradian erg",
        "square decametre",
        "square decimetre",
        "square foot",
        "square foot per hour",
        "square foot per second",
        "square hectometre",
        "square inch",
        "square inch per second",
        "square kilometre",
        "square metre",
        "square metre hour degree Celsius per kilocalorie (international table)",
        "square metre hour degree Celsius per kilocalorie (international table)",
        "square metre kelvin per watt",
        "square metre per joule",
        "square metre per kilogram",
        "square metre per litre",
        "square metre per mole",
        "square metre per newton",
        "square metre per second",
        "square metre per second bar",
        "square metre per second kelvin",
        "square metre per second pascal",
        "square metre per steradian",
        "square metre per steradian joule",
        "square metre per volt second",
        "square micrometre (square micron)",
        "square micrometre (square micron)",
        "square mile (based on U.S. survey foot)",
        "square mile (statute mile)",
        "square mile (based on U.S. survey foot)",
        "square mile (statute mile)",
        "square millimetre",
        "square yard",
        "square, roofing - A unit of count defining the number of squares of roofing materials, measured in multiples of 100 square feet.",
        "steradian",
        "stere",
        "stokes",
        "stokes per bar",
        "stokes per kelvin",
        "stokes per pascal",
        "standard",
        "standard acceleration of free fall",
        "standard atmosphere",
        "standard atmosphere per metre",
        "standard cubic foot - Use standard (common code WSD) (4,672 m³)",
        "Standard cubic metre - Standard cubic metre (temperature 15°C and pressure 101325 millibars ) (m3)",
        "Standard cubic metre per day - Standard cubic metre (temperature 15°C and pressure 101325 millibars ) per day (1.15741 × 10-5 m3/s)",
        "Standard cubic metre per hour - Standard cubic metre (temperature 15°C and pressure 101325 millibars ) per hour (2.77778 × 10-4 m3/s)",
        "standard kilolitre - A unit of volume defining the number of kilolitres of a product at a temperature of 15 degrees Celsius, especially in relation to hydrocarbon oils.",
        "standard litre - A unit of volume defining the number of litres of a product at a temperature of 15 degrees Celsius, especially in relation to hydrocarbon oils.",
        "standard cubic foot - Use standard (common code WSD) (4,672 m³)",
        "steradian",
        "stere",
        "stick - A unit of count defining the number of sticks (stick: slender and often cylindrical piece of a substance).",
        "stick, cigarette - A unit of count defining the number of cigarettes in the smallest unit for stock-taking and/or duty computation.",
        "stick, military - A unit of count defining the number of military sticks (military stick: bombs or paratroops released in rapid succession from an aircraft).",
        "stilb",
        "stokes",
        "stokes per bar",
        "stokes per kelvin",
        "stokes per pascal",
        "stone (UK)",
        "stone (UK)",
        "strand - A unit of count defining the number of strands (strand: long, thin, flexible, single thread, strip of fibre, constituent filament or multiples of the same, twisted together).",
        "straw - A unit of count defining the number of straws (straw: a slender tube used for sucking up liquids).",
        "strip - A unit of count defining the number of strips (strip: long narrow piece of an object).",
        "sievert",
        "sievert per hour",
        "sievert per minute",
        "sievert per second",
        "syringe - A unit of count defining the number of syringes (syringe: a small device for pumping, spraying and/or injecting liquids through a small aperture).",
        "tonne (metric ton)",
        "tesla",
        "tonne kilometre",
        "tonne per bar",
        "tonne per day",
        "tonne per hour",
        "tonne per kelvin",
        "tonne per cubic metre",
        "tonne per minute",
        "tonne per month",
        "tonne per second",
        "tonne per year",
        "tablespoon (US)",
        "tablespoon (US)",
        "tablet - A unit of count defining the number of tablets (tablet: a small flat or compressed solid object).",
        "total acid number",
        "terabit",
        "terabit per second",
        "terabyte",
        "teaspoon (US)",
        "teaspoon (US)",
        "tebibit per cubic metre",
        "tebibit per metre",
        "tebibit per square metre",
        "tebibyte",
        "technical atmosphere",
        "technical atmosphere per metre",
        "teeth per inch",
        "telecommunication line in service - A unit of count defining the number of lines in service.",
        "telecommunication line in service average - A unit of count defining the average number of lines in service.",
        "telecommunication port - A unit of count defining the number of network access ports.",
        "ten day - A unit of time defining the number of days in multiples of 10.",
        "ten pack - A unit of count defining the number of items in multiples of 10.",
        "ten pair - A unit of count defining the number of pairs in multiples of 10 (pair: item described by twos).",
        "ten set - A unit of count defining the number of sets in multiples of 10 (set: a number of objects grouped together).",
        "ten thousand sticks - A unit of count defining the number of sticks in multiples of 10000 (stick: slender and often cylindrical piece of a substance).",
        "terabit",
        "terabit per second",
        "terabyte",
        "terahertz",
        "terajoule",
        "teraohm",
        "terawatt",
        "terawatt hour",
        "tesla",
        "test - A unit of count defining the number of tests.",
        "TEU - A unit of count defining the number of twenty-foot equivalent units (TEUs) as a measure of containerized cargo capacity.",
        "tex",
        "tex",
        "theoretical pound - A unit of mass defining the expected mass of material expressed as the number of pounds.",
        "theoretical ton - A unit of mass defining the expected mass of material, expressed as the number of tons.",
        "therm (EC)",
        "therm (U.S.)",
        "therm (EC)",
        "therm (U.S.)",
        "therm (EC)",
        "therm (U.S.)",
        "thousand (10³)",
        "thousand board foot - A unit of volume equal to one thousand board foot.",
        "thousand cubic foot",
        "thousand cubic metre - A unit of volume equal to one thousand cubic metres. (10³m³)",
        "thousand cubic metre per day",
        "thousand piece - A unit of count defining the number of pieces in multiples of 1000 (piece: a single item, article or exemplar).",
        "thousand square inch",
        "thousand standard brick equivalent - A unit of count defining the number of one thousand brick equivalent units.",
        "terahertz",
        "tebibit per metre",
        "tebibit per square metre",
        "tebibit per cubic metre",
        "tebibyte",
        "terajoule",
        "ton (UK long) per cubic yard",
        "ton (UK shipping)",
        "ton (UK) or long ton (US)",
        "ton (UK) or long ton (US)",
        "ton long per day",
        "ton (US shipping)",
        "ton (US short) per cubic yard",
        "ton (US) or short ton (UK/US)",
        "ton (US) per hour",
        "ton (US) or short ton (UK/US)",
        "ton (US) per hour",
        "ton short per hour degree Fahrenheit",
        "ton short per degree Fahrenheit",
        "ton short per day",
        "ton short per psi",
        "ton long per day",
        "ton short per day",
        "ton short per degree Fahrenheit",
        "ton short per hour degree Fahrenheit",
        "ton short per hour psi",
        "ton short per psi",
        "ton-force (US short)",
        "ton-force (US short)",
        "ton (UK long) per cubic yard",
        "ton (US short) per cubic yard",
        "ton-force (US short)",
        "ton, assay - Non SI-conforming unit of the mass used in the mineralogy to determine the concentration of precious metals in ore according to the mass of the precious metal in milligrams in a sample of the mass of an assay sound (number of troy ounces in a short ton (1 000 lb)). (2,916 667 x 10⁻² kg)",
        "ton",
        "ton (UK long) per cubic yard",
        "ton (UK shipping)",
        "ton (UK) or long ton (US)",
        "ton (US shipping)",
        "ton (US short) per cubic yard",
        "ton (US) or short ton (UK/US)",
        "ton (US) per hour",
        "tonne (metric ton)",
        "tonne kilometre",
        "tonne per bar",
        "tonne per cubic metre",
        "tonne per cubic metre bar",
        "tonne per cubic metre kelvin",
        "tonne per day",
        "tonne per day bar",
        "tonne per day kelvin",
        "tonne per hour",
        "tonne per hour bar",
        "tonne per hour kelvin",
        "tonne per kelvin",
        "tonne per minute",
        "tonne per minute bar",
        "tonne per minute kelvin",
        "tonne per month",
        "tonne per second",
        "tonne per second bar",
        "tonne per second kelvin",
        "tonne per year",
        "tonne (metric ton)",
        "torr",
        "torr",
        "torr per metre",
        "torr per metre",
        "total acid number",
        "teeth per inch",
        "troy ounce or apothecary ounce",
        "treatment - A unit of count defining the number of treatments (treatment: subjection to the action of a chemical, physical or biological agent).",
        "trillion (EUR) (10¹⁸)",
        "trip - A unit of count defining the number of trips.",
        "tropical year",
        "troy ounce or apothecary ounce",
        "troy pound (US) (373,241 7 g)",
        "terawatt",
        "terawatt hour",
        "twenty foot container - A unit of count defining the number of shipping containers that measure 20 foot in length.",
        "tyre - A unit of count defining the number of tyres (a solid or air-filled covering placed around a wheel rim to form a soft contact with the road, absorb shock and provide traction).",
        "teraohm",
        "teraohm",
        "unified atomic mass unit",
        "rack unit",
        "rack unit",
        "astronomical unit",
        "unified atomic mass unit",
        "unit pole",
        "US gallon per minute",
        "use - A unit of count defining the number of times an object is used.",
        "volt",
        "volt - ampere",
        "volt - ampere per kilogram",
        "volt second per metre",
        "volt square inch per pound-force",
        "volt per litre minute",
        "volt per bar",
        "volt per centimetre",
        "volt per inch",
        "volt per kelvin",
        "volt per metre",
        "volt per millimetre",
        "volt per pascal",
        "volt per second",
        "volt per microsecond",
        "volt squared per kelvin squared",
        "var",
        "volt",
        "volt - ampere",
        "volt - ampere per kilogram",
        "volt AC",
        "volt DC",
        "volt per bar",
        "volt per centimetre",
        "volt per inch",
        "volt per kelvin",
        "volt per litre minute",
        "volt per metre",
        "volt per microsecond",
        "volt per millimetre",
        "volt per pascal",
        "volt per second",
        "volt second per metre",
        "volt square inch per pound-force",
        "volt squared per kelvin squared",
        "volt - ampere",
        "volt - ampere per kilogram",
        "watt",
        "watt hour",
        "watt square metre",
        "watt second",
        "watt per metre degree Celsius",
        "watt per metre kelvin",
        "watt per square metre kelvin",
        "watt per square metre kelvin to the fourth power",
        "watt per steradian square metre",
        "watt per square centimetre",
        "watt per square inch",
        "watt per kelvin",
        "watt per kilogram",
        "watt per metre",
        "watt per square metre",
        "watt per cubic metre",
        "watt per steradian",
        "water horse power - A unit of power defining the amount of power required to move a given volume of water against acceleration of gravity to a specified elevation (pressure head). (7,460 43 x 10² W)",
        "watt",
        "watt hour",
        "watt per cubic metre",
        "watt per kelvin",
        "watt per kilogram",
        "watt per metre",
        "watt per metre degree Celsius",
        "watt per metre kelvin",
        "watt per square centimetre",
        "watt per square inch",
        "watt per square metre",
        "watt per square metre kelvin",
        "watt per square metre kelvin to the fourth power",
        "watt per steradian",
        "watt per steradian square metre",
        "watt second",
        "watt square metre",
        "weber",
        "weber metre",
        "weber per metre",
        "weber per millimetre",
        "weber",
        "weber metre",
        "weber per metre",
        "weber per millimetre",
        "weber to the power minus one",
        "week",
        "well - A unit of count defining the number of wells.",
        "wet kilo - A unit of mass defining the number of kilograms of a product, including the water content of the product.",
        "wet pound - A unit of mass defining the number of pounds of a material, including the water content of the material.",
        "wet ton - A unit of mass defining the number of tons of a material, including the water content of the material.",
        "wine gallon - A unit of volume equal to 231 cubic inches.",
        "week",
        "working day - A unit of count defining the number of working days (working day: a day on which work is ordinarily performed).",
        "working month - A unit of time defining the number of working months.",
        "year",
        "actual/360",
        "common year",
        "sidereal year",
        "tropical year",
        "yard",
        "yard per degree Fahrenheit",
        "yard per hour",
        "yard per minute",
        "yard per psi",
        "yard per second",
        "yard per second squared",
        "yard",
        "yard per degree Fahrenheit",
        "yard per hour",
        "yard per minute",
        "yard per psi",
        "yard per second",
        "yard per second squared",
        "square yard",
        "cubic yard",
        "cubic yard per degree Fahrenheit",
        "cubic yard per day",
        "cubic yard per hour",
        "cubic yard per minute",
        "cubic yard per psi",
        "cubic yard per second",
        "year",
        "zone - A unit of count defining the number of zones.",
        "gamma",
        "microampere",
        "microbar",
        "microbecquerel",
        "microcoulomb",
        "microcoulomb per square metre",
        "microcoulomb per cubic metre",
        "microcurie",
        "microfarad",
        "microfarad per kilometre",
        "microfarad per metre",
        "microgram",
        "microgram per hectogram",
        "microgram per kilogram",
        "microgram per litre",
        "microgram per cubic metre",
        "microgray per hour",
        "microgray per minute",
        "microgray per second",
        "microhenry",
        "microhenry per kiloohm",
        "microhenry per kiloohm",
        "microhenry per metre",
        "microhenry per ohm",
        "microhenry per ohm",
        "micro-inch",
        "microlitre",
        "microlitre per litre",
        "micrometre (micron)",
        "micrometre per kelvin",
        "square micrometre (square micron)",
        "micromole",
        "micronewton",
        "micronewton metre",
        "micropoise",
        "micropascal",
        "microradian",
        "microsecond",
        "microsiemens",
        "microsiemens per centimetre",
        "microsiemens per metre",
        "microsievert per hour",
        "microsievert per minute",
        "microsievert per second",
        "microtesla",
        "microvolt",
        "microvolt per metre",
        "microwatt",
        "microwatt per square metre",
        "microohm",
        "microohm",
        "microohm metre",
        "microohm metre",
        "ohm",
        "ohm",
        "ohm centimetre",
        "ohm centimetre",
        "ohm circular-mil per foot",
        "ohm kilometre",
        "ohm kilometre",
        "ohm metre",
        "ohm metre",
        "ohm per kilometre",
        "ohm per kilometre",
        "ohm per metre",
        "ohm per metre",
        "ohm per mile (statute mile)",
        "ohm per mile (statute mile)"
      ]
    },
    "NodeIdWithoutNamespace": {
      "type": "string",
      "pattern": "s=.*|g=.*|b=.*",
      "description": "NodeId are automatically managed by the modeler. However in rare\ncircumstances, you may want to specify a String NodeID. \nYou can specify a custom nodeId here,\n\nexample:\n  nodeId:  s=MyMachine\n  nodeId:  b=1ABDFG==   # Base 64 binary nodeId\n\nNotes: \n  - the ns=...: part of the node Id shall not be provided. \n  - you do not need to use the nodeId property for numerical nodeId, as they are handled automatically\n  - subsequent children of the node will also have a string nodeId derived from the parent nodeId. \n    for instance s=MyMachine-Child1\n"
    },
    "BrowseName": {
      "type": "string",
      "pattern": "^(https?://\\S*$)|^([A-Za-z0-9]+:)?(([A-Z][a-zA-Z0-9]*)$|^(<[A-Z][a-zA-Z0-9°#]*>))$",
      "description": "In OPC UA, a browseName is a string that identifies a node within the address space of an OPC UA server. \nIt is used to navigate through the address space to locate a specific node. \nThe browseName is similar to a file name in a file system, and is unique within the parent node's namespace. \nIt is used in conjunction with the browsePath to access a specific node in the address space.\n\nA browseName is a string, and is typically composed of two parts: a namespace index and a name. \nThe namespace index identifies the namespace in which the browseName is defined, while the name is the actual name of the node. \n\nFor example, a browseName of \"di:DeviceType\" would have a namespace di (Device Integration) and a name of \"DeviceType\".\n\nThis browseName, along with the path to the node's parent, can be used to construct a browsePath that can be used to access the temperature sensor node.\n\nBest practices:\n\n * use english terms and PascalCase Convention:\n   for instance TemperatureSensor (OK) and not capteur_de_temperature (BAD).\n * there is no need to specify the namespace portion when the node browseName belongs to the namespace of the model under construction.\n * the namespace portion (the alias) must be specified when the node's browseName is defined in a external Namespace.\n * browseName that belongs to namespace=0, the standard OPC UA namespace must be prefixed by `ua:` . \n * by default the root node is ua:/RootFolder, you can specify a different root node by refering to a element defined in this model by $<BrowseName>\n"
    },
    "BrowsePath": {
      "description": "A browsePath is a way to navigate through the address space of an OPC UA server \nto locate a specific node. It is a string that defines the path of nodes to a \nspecific node, similar to a file path in a file system. The nodes in a browsePath \nare separated by forward slashes, and each node is identified by its browseName.\nThe browsePath can be used to access the value or other information of the node \nat the end of the path.\nThe browse path is typically a string of forward-slash-separated browse names,\nwhere each browse name identifies a node in the address space.\n\nFor instance thje browse path for a temperature sensor node may be something like \n\n\"Objects/MyDevice/Sensors/Temperature\". \nThis browse path consists of four nodes named \"Objects\", \"MyDevice\", \"Sensors\" and \"Temperature\". \nEach of these nodes are identified by its browseName, \"Objects\", \"MyDevice\", \"Sensors\" and \"Temperature\" respectively.\n",
      "type": "string",
      "pattern": "^(\\$[A-Za-z_][A-Za-z0-9_]*|(\\$[A-Za-z_][A-Za-z0-9_]*\\/|\\/)?([A-Za-z0-9]+:)?(([A-Z][a-zA-Z0-9]*)|(<[^>]+>))(\\/([A-Za-z0-9]+:)?(([A-Z][a-zA-Z0-9]*)|(<[^>]+>)))*)$"
    },
    "LocalizedTextSimple": {
      "type": "string",
      "default": ""
    },
    "LocalizedTextFull": {
      "type": "object",
      "properties": {
        "locale": {
          "type": [
            "string",
            "null"
          ]
        },
        "text": {
          "type": "string"
        }
      },
      "required": [
        "text"
      ],
      "additionalProperties": false
    },
    "LocalizedText": {
      "oneOf": [
        {
          "$ref": "#/$defs/LocalizedTextFull"
        },
        {
          "$ref": "#/$defs/LocalizedTextSimple"
        }
      ]
    },
    "EnumerationDefinitionAsStringList": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 1
    },
    "EnumerationField": {
      "type": "object",
      "properties": {
        "value": {
          "type": "number"
        },
        "displayName": {
          "$ref": "#/$defs/LocalizedText"
        },
        "description": {
          "$ref": "#/$defs/LocalizedText"
        },
        "name": {
          "type": "string"
        }
      },
      "required": [
        "name"
      ],
      "additionalProperties": false
    },
    "EnumerationDefinitionPrecise": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/EnumerationField"
      }
    },
    "EnumerationDefinition": {
      "description": "Enumeration definition",
      "oneOf": [
        {
          "$ref": "#/$defs/EnumerationDefinitionAsStringList"
        },
        {
          "$ref": "#/$defs/EnumerationDefinitionPrecise"
        }
      ]
    },
    "EnumerationDefinition1": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "uniqueItems": true
    },
    "StructureField": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "dataType": {
          "$ref": "#/$defs/DataTypeRef"
        },
        "description": {
          "$ref": "#/$defs/LocalizedText"
        },
        "isOptional": {
          "type": "boolean",
          "default": false,
          "description": "specify if the field is a optional field"
        }
      }
    },
    "BaseNode": {
      "description": "UABaseNode",
      "title": "Generic OPCUA Node",
      "type": "object",
      "additionalProperties": true,
      "required": [
        "browseName"
      ],
      "properties": {
        "browseName": {
          "$ref": "#/$defs/BrowseName"
        },
        "displayName": {
          "$ref": "#/$defs/LocalizedText"
        },
        "description": {
          "$ref": "#/$defs/LocalizedText"
        },
        "nodeId": {
          "type": "string",
          "description": "The nodeId is optional. If not specified, the modeler will automatically assign a nodeId to the created node. Upon model regeneration, the modeler ensures that the node retains the same nodeId as defined in the Symbol Table. Once a new nodeId is created, a corresponding entry is added to the Symbol list and persisted. This ensures that regeneration remains consistent as the model evolves.\n"
        }
      }
    },
    "BaseNodeForConcreteTypeWithTypeDefinition": {
      "description": "UABaseNode ( for concrete type). the nodeClass of the node is infered  by its typeDefinition\n",
      "type": "object",
      "required": [],
      "allOf": [
        {
          "$ref": "#/$defs/BaseNode"
        },
        {
          "$ref": "#/$defs/WithTypeDefinition"
        },
        {
          "$ref": "#/$defs/WithOptionals"
        }
      ]
    },
    "BaseNodeForConcreteTypeWithNodeClass": {
      "description": "UABaseNode ( for concrete type) with enum specified",
      "type": "object",
      "required": [
        "nodeClass"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/BaseNode"
        },
        {
          "properties": {
            "nodeClass": {
              "enum": [
                "Object",
                "Variable",
                "Method"
              ]
            }
          }
        }
      ]
    },
    "BaseNodeForConcreteType": {
      "description": "UABaseNode ( for concrete type)",
      "type": "object",
      "oneOf": [
        {
          "$ref": "#/$defs/BaseNodeForConcreteTypeWithTypeDefinition"
        },
        {
          "$ref": "#/$defs/BaseNodeForConcreteTypeWithNodeClass"
        }
      ]
    },
    "BaseNodeForType": {
      "description": "UABaseNode",
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNode"
        },
        {
          "type": "object",
          "properties": {
            "subtypeOf": {
              "$ref": "#/$defs/BaseTypeRef"
            },
            "isAbstract": {
              "type": "boolean",
              "default": false
            }
          }
        }
      ]
    },
    "ExistingNode": {
      "type": "object",
      "description": "reference an existing node in the parent object",
      "required": [
        "browseName"
      ],
      "properties": {
        "browseName": {
          "$ref": "#/$defs/BrowseName"
        },
        "displayName": {
          "$ref": "#/$defs/LocalizedText"
        },
        "description": {
          "$ref": "#/$defs/LocalizedText"
        },
        "components": {
          "type": "array",
          "minItems": 1,
          "items": {
            "anyOf": [
              {
                "$ref": "#/$defs/ExistingNode"
              },
              {
                "$ref": "#/$defs/InstantiatedChildren"
              }
            ]
          }
        },
        "orderedComponents": {
          "type": "array",
          "minItems": 1,
          "items": {
            "anyOf": [
              {
                "$ref": "#/$defs/ExistingNode"
              },
              {
                "$ref": "#/$defs/InstantiatedChildren"
              }
            ]
          }
        }
      }
    },
    "InstantiatedChildren": {
      "type": "object",
      "additionalProperties": false,
      "description": "reference a existing node in the parent object",
      "allOf": [
        {
          "$ref": "#/$defs/Variable"
        },
        {
          "$ref": "#/$defs/Object"
        },
        {
          "$ref": "#/$defs/InnerObject"
        },
        {
          "$ref": "#/$defs/InnerVariable"
        },
        {
          "$ref": "#/$defs/WithPromotedToMandatory"
        },
        {
          "$ref": "#/$defs/WithAnalogDataItemStuff"
        },
        {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "browseName",
            "typeDefinition"
          ],
          "properties": {
            "browseName": true,
            "displayName": true,
            "description": true,
            "nodeId": true,
            "valueRank": true,
            "arrayDimensions": true,
            "dataType": true,
            "value": true,
            "methods": true,
            "typeDefinition": true,
            "promotedToMandatory": true,
            "engineeringUnits": true,
            "euRange": true,
            "valuePrecision": true,
            "instrumentRange": true,
            "definition": true
          }
        }
      ]
    },
    "AggregateC": {
      "type": "object",
      "oneOf": [
        {
          "$ref": "#/$defs/ExistingNode"
        },
        {
          "$ref": "#/$defs/InstantiatedChildren"
        }
      ]
    },
    "Aggregate": {
      "type": "object",
      "properties": {
        "properties": {
          "description": "(B) contains the list of child properties of this object, referenced by a  \"HasProperty\" relationship.\nProperties must be Variables.\n",
          "type": "array",
          "minItems": 1,
          "items": {
            "anyOf": [
              {
                "$ref": "#/$defs/Variable"
              },
              {
                "$ref": "#/$defs/InnerVariable"
              }
            ]
          }
        },
        "components": {
          "description": "(I) contains the list of child components of this object, referenced by a \"HasComponent\" relationship.",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/AggregateC"
          }
        },
        "organizes": {
          "description": "(I) contains the list of folder elements that are linked to this object via the \"Organizes\" relationship.",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/InnerObject"
          }
        },
        "methods": {
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/MethodDeclaration"
          }
        }
      }
    },
    "AggregateForType": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "properties": {
          "description": "(A) contains the list of child properties of this object, referenced by a \"HasProperty\" relationship.\nProperties must be Variables.\n",
          "type": "array",
          "items": {
            "$ref": "#/$defs/VariableForType"
          },
          "minItems": 1
        },
        "components": {
          "description": "VariableForType|ObjectForType contains the list of child components of this object, referenced by a  \"HasComponent\" relationship.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/VariableOrObjectForType"
          }
        },
        "organizes": {
          "description": "VariableForType|ObjectForType - contains the list of folder elements that are\nlinked to this object via the \"Organizes\" relationship.\n\nA folder may organize a Variable or a Property, not only an Object: that is the\nDI FunctionalGroup pattern, used throughout OPC 30500 LADS. The rule\nDSL-W-STRUCT-007 is what says a Property reached only through Organizes is poor\nmodelling; the schema's job is to describe what a NodeSet can hold.\n",
          "type": "array",
          "items": {
            "$ref": "#/$defs/VariableOrObjectForType"
          },
          "minItems": 1
        },
        "methods": {
          "description": "MethodForType - contains the list of methods that this object exposes",
          "type": "array",
          "items": {
            "$ref": "#/$defs/MethodForType"
          },
          "minItems": 1
        }
      }
    },
    "AdvancedComponentContainment": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "orderedComponents": {
          "description": "VariableForType|ObjectForType contains the list of child components of this object, referenced by a  \"HasOrderedComponent\" relationship.\nThe semantic of the HasOrderedComponent ReferenceType – besides the semantic of the HasComponent ReferenceType – is that when browsing from a Node and following References of this type or its subtype all References are returned in the Browse Service defined in OPC 10000-4 in a well-defined order. The order is Server-specific, but the Client can assume that the Server always returns them in the same order.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ObjectForType"
          },
          "minItems": 1
        },
        "physicalComponents": {
          "description": "VariableForType|ObjectForType contains the list of child components of this object, referenced by a  \"HaPhysicalComponent\" relationship. \nsee https://reference.opcfoundation.org/Core/Part23/v105/docs/4.12\n\nThis ReferenceType can be used to expose the relation between a hardware component and its subcomponent. An example for this reference is a modular IO-Station which is composed out of a device head and multiple IO-Modules or it can be used to relate a PC to a PCI board plugged inside the PC.\n",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ObjectForType"
          },
          "minItems": 1
        },
        "containedComponents": {
          "description": "VariableForType|ObjectForType contains the list of child components of this object, referenced by a  \"HasContainedComponent\" relationship. \nhttps://reference.opcfoundation.org/Core/Part23/v105/docs/4.13\n\nThis ReferenceType can be used to expose the relation between a hardware component and its subcomponent. It indicates that the subcomponent is inside the component. To gain access to the subcomponent typically removing a part of the component (e.g. a hatch) is necessary. For example, it can be used to relate a PC to a PCI board plugged inside the PC. The PCI board is accessible after removing the PC housing. It can also be used to relate a PLC to its CPU, which is hard wired to the PLC, or a network module to its Ethernet PHYs.\n",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ObjectForType"
          },
          "minItems": 1
        },
        "attachedComponents": {
          "description": "VariableForType|ObjectForType contains the list of child components of this object, referenced by a  \"HasAttachedComponent\" relationship. \nhttps://reference.opcfoundation.org/Core/Part23/v105/docs/4.14\n\nThis ReferenceType can be used to expose the relation between a hardware component and its subcomponent. It indicates that the subcomponent is attached to the component. That implies that the subcomponent is located in direct contact or direct vicinity of the component and is visible from the outside of the component without removing parts of the component (like a hatch). For example, it can be used to relate a drive device or a modular IO-station which is composed out of a device head and multiple IO-modules attached to the head to such an IO-module like a fieldbus interface module. Another example is a laptop having a removable battery attached to it.\n",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ObjectForType"
          },
          "minItems": 1
        }
      }
    },
    "ImplementedInterface": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "browseName": {
          "$ref": "#/$defs/BrowseName"
        },
        "description": {
          "$ref": "#/$defs/LocalizedText"
        },
        "promotedToMandatory": {
          "$ref": "#/$defs/PromotedToMandatoryInner"
        }
      }
    },
    "WithInterfaces": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "interfaces": {
          "description": "contains a list of Interfaces that the Object or Variable or Type implements\n",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/ImplementedInterface"
          }
        }
      }
    },
    "WithOptionals": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "optionals": {
          "description": "a list of BrowseName (with aliases) of the optional components or property to instantiate.\nSpecifying nested components is possible.\n\n  optionals: [ \"Property.ChildProperty\", \"TopLevelProperty\" ]\n\nItems can also be key-value pairs to specify a default value:\n\n  optionals:\n    - di:SerialNumber\n    - di:Unit: \"°C\"\n    - di:Manufacturer: \"Sterfive\"\n\nCan also be specified as a single string:\n\n  optionals: \"TopLevelProperty\"\n",
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "array",
              "items": {
                "oneOf": [
                  {
                    "type": "string"
                  },
                  {
                    "type": "object",
                    "minProperties": 1,
                    "maxProperties": 1,
                    "additionalProperties": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "number"
                        },
                        {
                          "type": "boolean"
                        },
                        {
                          "type": "object"
                        }
                      ]
                    }
                  }
                ]
              },
              "minItems": 1
            }
          ]
        }
      }
    },
    "PromotedToMandatoryInner": {
      "type": "array",
      "description": "a list of BrowseName (with aliases) of the optional components or property to instantiate and turn to modellingRule = mandatory Specifying nested components is possible.\n\n     optionals: [ \"Property.ChildProperty\", \"TopLevelProperty\" ]\n",
      "items": {
        "oneOf": [
          {
            "type": "string"
          },
          {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "type": "object",
                  "minProperties": 1,
                  "maxProperties": 1,
                  "additionalProperties": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      },
                      {
                        "type": "object"
                      }
                    ]
                  }
                }
              ]
            },
            "minItems": 1
          }
        ]
      },
      "minItems": 1
    },
    "WithPromotedToMandatory": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "promotedToMandatory": {
          "$ref": "#/$defs/PromotedToMandatoryInner"
        }
      }
    },
    "WithInitializers": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "initializers": {
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/Initializer"
          }
        }
      }
    },
    "WithReferences": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "references": {
          "description": "Additional references to emit from this node, beyond the ones implied by its placement (organizedBy / componentOf / …).\n",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/Reference"
          }
        }
      }
    },
    "WithDocumentation": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "documentation": {
          "description": "Long-form markdown for this node, rendered into the generated documentation. `!include` directives are expanded and headers are re-levelled. Distinct from `description`, which is the OPC UA Description attribute — a single line carried in the address space.\n",
          "type": "string"
        }
      }
    },
    "WithAnalogDataItemStuff": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "engineeringUnits": {
          "$ref": "#/$defs/UnitRef"
        },
        "valuePrecision": {
          "type": "number"
        },
        "euRange": {
          "description": "the euRange property value",
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "instrumentRange": {
          "description": "the euRange property value",
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "definition": {
          "type": "string"
        }
      }
    },
    "AddInInstance": {
      "type": "object",
      "properties": {
        "typeDefinition": {
          "description": "the type definition for the instance\n"
        },
        "modellingRule": {
          "description": "the modelling rule of the add-in in a type (Mandatory, Optional, ...)"
        },
        "description": {
          "type": "string"
        },
        "promotedToMandatory": {
          "description": "optional children of the add-in type to instantiate as Mandatory",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "properties": {
          "description": "the add-in's own properties, beyond those instantiated from its type\n(a companion spec re-exposing an add-in and adding members to it).\n",
          "type": "array",
          "items": {
            "$ref": "#/$defs/VariableForType"
          },
          "minItems": 1
        },
        "components": {
          "description": "the add-in's own components, beyond those instantiated from its type",
          "type": "array",
          "items": {
            "$ref": "#/$defs/VariableOrObjectForType"
          },
          "minItems": 1
        },
        "methods": {
          "description": "the add-in's own methods, beyond those instantiated from its type",
          "type": "array",
          "items": {
            "$ref": "#/$defs/MethodForType"
          },
          "minItems": 1
        },
        "browseName": {
          "description": "the default browse name of the add in instance , if not specified\nthen the default browse name specified in the type definition of the add in is used.\n"
        },
        "optionals": {
          "type": "array",
          "description": "a list of BrowseName (without aliases) of the optional components or property to instantiate.\nSpecifying nested components is possible.\n\n  optionals: [ \"Property.ChildProperty\", \"TopLevelProperty\" ]\n",
          "items": {
            "type": "string"
          },
          "minItems": 1
        }
      }
    },
    "WithAddIns": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "addIns": {
          "description": "contains a list of Add ins that the Object or Variable or Type implements\n",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/AddInInstance"
          }
        }
      }
    },
    "ObjectType": {
      "description": "describe a OPCUA ObjectType",
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForType"
        },
        {
          "$ref": "#/$defs/AggregateForType"
        },
        {
          "$ref": "#/$defs/AdvancedComponentContainment"
        },
        {
          "$ref": "#/$defs/WithInterfaces"
        },
        {
          "$ref": "#/$defs/WithPromotedToMandatory"
        },
        {
          "$ref": "#/$defs/WithAddIns"
        },
        {
          "$ref": "#/$defs/WithReferences"
        },
        {
          "$ref": "#/$defs/EventGenerator"
        }
      ],
      "additionalProperties": false,
      "required": [
        "browseName"
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "isAbstract": true,
        "subtypeOf": true,
        "properties": true,
        "components": true,
        "organizes": true,
        "references": true,
        "methods": true,
        "interfaces": true,
        "promotedToMandatory": true,
        "defaultInstanceBrowseName": {
          "description": "The browseName an addIn of this type gets when the addIn entry does not name one itself. Emitted as the type's DefaultInstanceBrowseName property.\n",
          "$ref": "#/$defs/BrowseName"
        },
        "addIns": true,
        "subtypes": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/ObjectType"
          },
          "minItems": 1
        },
        "generatedEvents": true,
        "eventSources": true,
        "eventSourceOf": true,
        "orderedComponents": true,
        "physicalComponents": true,
        "containedComponents": true,
        "attachedComponents": true
      }
    },
    "EventGenerator": {
      "type": "object",
      "properties": {
        "generatedEvents": {
          "description": "specify the list of Event types that this element generates, this will create a GeneratesEvent reference",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "eventSources": {
          "description": "specify the list of object that are source of event for this node",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "eventSourceOf": {
          "type": "string"
        }
      }
    },
    "WithAccessLevel": {
      "type": "object",
      "properties": {
        "accessLevel": {
          "description": "A `|`-separated flag list, e.g. \"CurrentRead | CurrentWrite\". Valid flags: CurrentRead, CurrentWrite, HistoryRead, HistoryWrite, SemanticChange, StatusWrite, TimestampWrite.\n",
          "type": "string"
        },
        "userAccessLevel": {
          "description": "Same syntax as `accessLevel`, but the access the CURRENT user has. It can only narrow `accessLevel`, never widen it.\n",
          "type": "string"
        },
        "minimumSamplingInterval": {
          "description": "The fastest rate, in milliseconds, at which the server can sample the value. 0 means the value is kept continuously up to date.\n",
          "type": "number"
        },
        "historizing": {
          "description": "Whether the server actively collects history for this Variable. Defaults to false.\nSet it together with the HistoryRead access flag, e.g. `accessLevel: \"CurrentRead | HistoryRead\"` — historizing declares that history is collected, accessLevel declares that it can be read.\n",
          "type": "boolean"
        }
      }
    },
    "VariableSpecific": {
      "type": "object",
      "properties": {
        "valueRank": {
          "type": "number"
        },
        "arrayDimensions": {
          "type": "array",
          "items": {
            "type": "number"
          },
          "minItems": 1
        },
        "dataType": {
          "$ref": "#/$defs/DataTypeRef"
        },
        "value": {
          "$ref": "#/$defs/Variant"
        },
        "exposesItsArray": {
          "type": "boolean"
        }
      }
    },
    "VariableType": {
      "description": "Describes an OPC UA VariableType.\nDeliberately NOT `WithAccessLevel`: the UANodeSet XSD gives `UAVariableType` only DataType, ValueRank, ArrayDimensions and IsAbstract. accessLevel / userAccessLevel / minimumSamplingInterval are attributes of a Variable INSTANCE — node-opcua does not even store them on a VariableType, and they can never reach the generated NodeSet2 XML. Set them on the instances instead.\n",
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForType"
        },
        {
          "$ref": "#/$defs/AggregateForType"
        },
        {
          "$ref": "#/$defs/VariableSpecific"
        },
        {
          "$ref": "#/$defs/WithReferences"
        }
      ],
      "additionalProperties": false,
      "required": [
        "browseName",
        "dataType"
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "isAbstract": true,
        "subtypeOf": true,
        "properties": true,
        "components": true,
        "organizes": true,
        "references": true,
        "methods": true,
        "dataType": true,
        "value": true,
        "valueRank": true,
        "arrayDimensions": true,
        "exposesItsArray": true,
        "subtypes": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/VariableType"
          },
          "minItems": 1
        }
      }
    },
    "ArgumentArray": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Argument"
      },
      "minItems": 1
    },
    "Argument": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "name",
        "dataType"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "dataType": {
          "$ref": "#/$defs/DataTypeRef"
        },
        "description": {
          "allOf": [
            {
              "$ref": "#/$defs/LocalizedText"
            }
          ]
        },
        "valueRank": {
          "type": "number",
          "default": -1
        },
        "arrayDimensions": {
          "type": "array",
          "items": {
            "type": "number"
          }
        }
      }
    },
    "MethodDeclaration": {
      "type": "object",
      "required": [
        "browseName"
      ],
      "properties": {
        "browseName": {
          "$ref": "#/$defs/BrowseName"
        },
        "displayName": {
          "$ref": "#/$defs/LocalizedText"
        },
        "description": {
          "$ref": "#/$defs/LocalizedText"
        },
        "nodeId": {
          "description": "Optional explicit NodeId (e.g. `s=Calibrate`). When omitted the modeler assigns one and persists it in the symbol table so that it survives regeneration.\n",
          "type": "string"
        },
        "executable": {
          "type": "boolean"
        },
        "inputArguments": {
          "$ref": "#/$defs/ArgumentArray"
        },
        "outputArguments": {
          "$ref": "#/$defs/ArgumentArray"
        }
      }
    },
    "Object": {
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNode"
        },
        {
          "$ref": "#/$defs/WithInterfaces"
        },
        {
          "type": "object",
          "properties": {
            "typeDefinition": {
              "$ref": "#/$defs/TypeDefinitionProp"
            },
            "organizedBy": {
              "description": "the organizedBy property specify the browsePath of parent OPCUA Node with which this object is linked with a Organizes reference.",
              "$ref": "#/$defs/BrowsePath"
            },
            "nodeClass": {
              "enum": [
                "Object"
              ]
            },
            "methods": {
              "type": "array",
              "items": {
                "$ref": "#/$defs/MethodDeclaration"
              }
            }
          }
        }
      ]
    },
    "Variable": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "browseName"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForConcreteType"
        },
        {
          "$ref": "#/$defs/VariableSpecific"
        },
        {
          "$ref": "#/$defs/Aggregate"
        },
        {
          "$ref": "#/$defs/WithAccessLevel"
        },
        {
          "$ref": "#/$defs/WithInterfaces"
        },
        {
          "$ref": "#/$defs/WithPromotedToMandatory"
        },
        {
          "$ref": "#/$defs/WithReferences"
        },
        {
          "$ref": "#/$defs/WithDocumentation"
        },
        {
          "$ref": "#/$defs/ModellingRuleProp"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "documentation": true,
        "nodeClass": true,
        "typeDefinition": true,
        "dataType": true,
        "valueRank": true,
        "arrayDimensions": true,
        "value": true,
        "minimumSamplingInterval": true,
        "historizing": true,
        "accessLevel": true,
        "userAccessLevel": true,
        "modellingRule": true,
        "components": true,
        "organizes": true,
        "properties": true,
        "references": true,
        "interfaces": true,
        "promotedToMandatory": true,
        "methods": true
      }
    },
    "ObjectForType": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "browseName"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/Object"
        },
        {
          "$ref": "#/$defs/ModellingRuleProp"
        },
        {
          "$ref": "#/$defs/WithInterfaces"
        },
        {
          "$ref": "#/$defs/AggregateForType"
        },
        {
          "$ref": "#/$defs/WithPromotedToMandatory"
        },
        {
          "$ref": "#/$defs/WithReferences"
        },
        {
          "$ref": "#/$defs/WithDocumentation"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "documentation": true,
        "nodeClass": true,
        "nodeId": true,
        "typeDefinition": true,
        "modellingRule": true,
        "components": true,
        "organizes": true,
        "properties": true,
        "references": true,
        "interfaces": true,
        "promotedToMandatory": true,
        "methods": true
      }
    },
    "VariableForType": {
      "type": "object",
      "additionalProperties": true,
      "required": [
        "browseName"
      ],
      "anyOf": [
        {
          "$ref": "#/$defs/Variable"
        },
        {
          "$ref": "#/$defs/BaseNodeForConcreteType"
        },
        {
          "$ref": "#/$defs/VariableSpecific"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "documentation": true,
        "nodeClass": true,
        "nodeId": true,
        "typeDefinition": true,
        "dataType": true,
        "valueRank": true,
        "arrayDimensions": true,
        "value": true,
        "minimumSamplingInterval": true,
        "historizing": true,
        "accessLevel": true,
        "userAccessLevel": true,
        "modellingRule": true,
        "components": true,
        "organizes": true,
        "properties": true,
        "interfaces": true,
        "promotedToMandatory": true,
        "methods": true
      }
    },
    "VariableOrObjectForType": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "browseName"
      ],
      "anyOf": [
        {
          "$ref": "#/$defs/VariableForType"
        },
        {
          "$ref": "#/$defs/ObjectForType"
        },
        {
          "$ref": "#/$defs/ExistingNode"
        },
        {
          "$ref": "#/$defs/WithPropertyValues"
        }
      ],
      "allOf": [
        {
          "$ref": "#/$defs/AggregateForType"
        },
        {
          "$ref": "#/$defs/WithAccessLevel"
        },
        {
          "$ref": "#/$defs/WithAddIns"
        },
        {
          "$ref": "#/$defs/WithAnalogDataItemStuff"
        },
        {
          "$ref": "#/$defs/WithPromotedToMandatory"
        },
        {
          "$ref": "#/$defs/WithReferences"
        },
        {
          "$ref": "#/$defs/WithDocumentation"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "documentation": true,
        "nodeClass": true,
        "nodeId": true,
        "typeDefinition": true,
        "promotedToMandatory": true,
        "optionals": true,
        "dataType": true,
        "valueRank": true,
        "arrayDimensions": true,
        "value": true,
        "minimumSamplingInterval": true,
        "historizing": true,
        "accessLevel": true,
        "userAccessLevel": true,
        "modellingRule": true,
        "components": true,
        "organizes": true,
        "properties": true,
        "references": true,
        "interfaces": true,
        "methods": true,
        "addIns": true,
        "engineeringUnits": true,
        "euRange": true,
        "valuePrecision": true,
        "instrumentRange": true,
        "definition": true,
        "propertyValues": true
      }
    },
    "ModellingRuleProp": {
      "type": "object",
      "properties": {
        "modellingRule": {
          "$ref": "#/$defs/ModellingRule"
        }
      }
    },
    "MethodForTypeExtensible": {
      "type": "object",
      "required": [
        "browseName"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/MethodDeclaration"
        },
        {
          "$ref": "#/$defs/ModellingRuleProp"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "nodeId": true,
        "executable": true,
        "inputArguments": true,
        "outputArguments": true,
        "modellingRule": true
      }
    },
    "MethodForType": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "browseName"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/MethodDeclaration"
        },
        {
          "$ref": "#/$defs/ModellingRuleProp"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "nodeId": true,
        "modellingRule": true,
        "executable": true,
        "inputArguments": true,
        "outputArguments": true
      }
    },
    "DataTypeBasic": {
      "description": "A DataType derived from a built-in scalar — the OPC UA equivalent of a typedef.",
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForType"
        },
        {
          "type": "object",
          "properties": {
            "browseName": true,
            "subtypeOf": {
              "$ref": "#/$defs/BaseTypeRef"
            }
          }
        },
        {
          "type": "object",
          "properties": {
            "browseName": true,
            "displayName": true,
            "description": true,
            "nodeId": true,
            "subtypeOf": true,
            "isAbstract": true,
            "enum": {
              "$ref": "#/$defs/EnumerationDefinition"
            },
            "fields": {
              "type": "array",
              "items": {
                "$ref": "#/$defs/StructureField"
              }
            }
          },
          "required": [
            "browseName"
          ],
          "additionalProperties": false
        }
      ]
    },
    "DataTypeEnumeration": {
      "description": "Enumeration.",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForType"
        },
        {
          "properties": {
            "browseName": true,
            "displayName": true,
            "description": true,
            "nodeId": true,
            "isAbstract": true,
            "subtypeOf": {
              "enum": [
                "ua:Enumeration"
              ]
            },
            "enum": {
              "$ref": "#/$defs/EnumerationDefinition"
            }
          },
          "type": "object",
          "required": [
            "enum"
          ],
          "additionalProperties": false
        }
      ]
    },
    "DataTypeStructure": {
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForType"
        },
        {
          "type": "object",
          "properties": {
            "isUnion": {
              "type": "boolean",
              "description": "set to true if the structure is an union",
              "default": false
            },
            "hasVariableType": {
              "type": "boolean",
              "default": false,
              "description": "When hasVariableType=true, a corresponding VariableType is created automatically.\nIf the extension object data type is named MyStructureDataType, the corresponding VariableType browseName will be MyStructureType.\n"
            },
            "fields": {
              "description": "a list of fields defining the structure.",
              "type": "array",
              "items": {
                "$ref": "#/$defs/StructureField"
              },
              "minItems": 0
            }
          }
        },
        {
          "properties": {
            "browseName": true,
            "displayName": true,
            "description": true,
            "nodeId": true,
            "isAbstract": true,
            "subtypeOf": true,
            "isUnion": true,
            "hasVariableType": true,
            "fields": true
          },
          "type": "object",
          "description": "DataType structure browse name should follow the naming pattern MyStructureDataType",
          "required": [
            "browseName",
            "fields"
          ],
          "additionalProperties": false
        }
      ]
    },
    "DataType": {
      "if": {
        "type": "object",
        "required": [
          "enum"
        ]
      },
      "then": {
        "$ref": "#/$defs/DataTypeEnumeration"
      },
      "else": {
        "if": {
          "type": "object",
          "anyOf": [
            {
              "required": [
                "fields"
              ]
            },
            {
              "required": [
                "isUnion"
              ]
            },
            {
              "required": [
                "hasVariableType"
              ]
            }
          ]
        },
        "then": {
          "$ref": "#/$defs/DataTypeStructure"
        },
        "else": {
          "$ref": "#/$defs/DataTypeBasic"
        }
      }
    },
    "ReferenceType": {
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNodeForType"
        },
        {
          "type": "object",
          "properties": {
            "browseName": true,
            "displayName": true,
            "description": true,
            "isAbstract": true,
            "subtypeOf": true,
            "inverseName": {
              "type": "string"
            }
          },
          "required": [
            "browseName"
          ],
          "additionalProperties": false
        }
      ]
    },
    "Reference": {
      "type": "object",
      "properties": {
        "source": {
          "type": "string"
        },
        "target": {
          "type": "string"
        },
        "referenceType": {
          "type": "string"
        }
      }
    },
    "Variant": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "number"
        },
        {
          "type": "boolean"
        },
        {
          "type": "object"
        },
        {
          "type": "array"
        },
        {
          "type": "null"
        }
      ]
    },
    "ConnectedObject": {
      "type": "object",
      "description": "A ConnectedObject must be linked to its parent through exactly one of the\nfollowing references: organizedBy, componentOf, propertyOf,\norderedComponentOf, physicalComponentOf, or containedComponentOf.\n",
      "properties": {
        "organizedBy": {
          "description": "the organizedBy property specify the browsePath of parent OPCUA Node with which this object is linked with a Organizes reference.",
          "$ref": "#/$defs/BrowsePath"
        },
        "componentOf": {
          "description": "the componentOf property specify the browsePath of parent OPCUA Node with which this object is linked with a HasComponent reference.",
          "$ref": "#/$defs/BrowsePath"
        },
        "propertyOf": {
          "description": "the propertyOf property specify the browsePath of parent OPCUA Node with which this object is linked with a HasProperty reference.",
          "$ref": "#/$defs/BrowsePath"
        },
        "orderedComponentOf": {
          "description": "the orderedComponentOf property specify the browsePath of parent OPCUA Node with which this object is linked with a HasOrderedComponent reference.",
          "$ref": "#/$defs/BrowsePath"
        },
        "physicalComponentOf": {
          "description": "the physicalComponentOf property specify the browsePath of parent OPCUA Node with which this object is linked with a HasPhysicalComponent reference.",
          "$ref": "#/$defs/BrowsePath"
        },
        "containedComponentOf": {
          "description": "the containedComponentOf property specify the browsePath of parent OPCUA Node with which this object is linked with a HasContainedComponent reference.",
          "$ref": "#/$defs/BrowsePath"
        }
      },
      "oneOf": [
        {
          "required": [
            "organizedBy"
          ]
        },
        {
          "required": [
            "componentOf"
          ]
        },
        {
          "required": [
            "propertyOf"
          ]
        },
        {
          "required": [
            "orderedComponentOf"
          ]
        },
        {
          "required": [
            "physicalComponentOf"
          ]
        },
        {
          "required": [
            "containedComponentOf"
          ]
        }
      ]
    },
    "InnerVariable": {
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/BaseNode"
        },
        {
          "$ref": "#/$defs/Aggregate"
        }
      ]
    },
    "InnerObject": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "browseName"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/BaseNode"
        },
        {
          "$ref": "#/$defs/VariableSpecific"
        },
        {
          "$ref": "#/$defs/Aggregate"
        },
        {
          "$ref": "#/$defs/WithTypeDefinition"
        },
        {
          "$ref": "#/$defs/WithPromotedToMandatory"
        },
        {
          "$ref": "#/$defs/WithOptionals"
        },
        {
          "$ref": "#/$defs/WithPropertyValues"
        }
      ],
      "properties": {
        "browseName": true,
        "displayName": true,
        "description": true,
        "typeDefinition": true,
        "promotedToMandatory": true,
        "properties": true,
        "components": true,
        "organizes": true,
        "optionals": true,
        "propertyValues": true
      }
    },
    "TypeDefinitionProp": {
      "description": "the reference to the OPCUA Type",
      "type": "string",
      "anyOf": [
        {
          "$ref": "#/$defs/TypeReference"
        },
        {
          "$ref": "#/$defs/BrowsePath"
        },
        {
          "pattern": "(([a-zA-Z0-9_]):?)([A-Z]+[a-zA-Z0-9_])"
        }
      ]
    },
    "WithTypeDefinition": {
      "type": "object",
      "properties": {
        "typeDefinition": {
          "$ref": "#/$defs/TypeDefinitionProp"
        }
      }
    },
    "VariableFacet": {
      "description": "Attributes that apply when the instance is a Variable, i.e. when its `typeDefinition` names a VariableType rather than an ObjectType.\n",
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/WithAccessLevel"
        }
      ],
      "properties": {
        "dataType": {
          "description": "The DataType of the Variable.\nOptional when the VariableType already carries a concrete DataType (e.g. `ua:TwoStateDiscreteType` → Boolean) — the instance inherits it. REQUIRED when the type leaves DataType unspecified (`ua:BaseDataVariableType`, `ua:BaseVariableType`, `ua:PropertyType`) or only narrows it to an abstract one (`ua:AnalogItemType` → Number), because a Variable node cannot have an abstract or empty DataType.\n",
          "$ref": "#/$defs/DataTypeRef"
        },
        "value": {
          "description": "the initial value of the Variable, coerced to its dataType.",
          "$ref": "#/$defs/Variant"
        },
        "valueRank": {
          "description": "-1 scalar (default), 0 one-or-more dimensions, 1 one-dimensional array, n>1 an array with n dimensions.\n",
          "type": "number"
        },
        "arrayDimensions": {
          "description": "the length of each dimension; implies valueRank when omitted.",
          "type": "array",
          "items": {
            "type": "number"
          },
          "minItems": 1
        }
      }
    },
    "Instance": {
      "description": "Describes an OPC UA Object OR Variable instance.\nWhich one it is follows from `typeDefinition`: an ObjectType makes it an Object, a VariableType makes it a Variable. A Variable instance may then carry the Variable facet below (`dataType`, `value`, `valueRank`, `arrayDimensions`, `accessLevel`, `minimumSamplingInterval`).\n`dataType` is optional when the VariableType supplies a concrete one of its own (e.g. `ua:TwoStateDiscreteType` → Boolean), and required when it does not — `ua:BaseDataVariableType`, `ua:BaseVariableType` and `ua:PropertyType` leave DataType unspecified, and `ua:AnalogItemType` only narrows it to the abstract `Number`.\n",
      "type": "object",
      "allOf": [
        {
          "$ref": "#/$defs/InstanceStuff"
        },
        {
          "$ref": "#/$defs/Aggregate"
        },
        {
          "$ref": "#/$defs/ConnectedObject"
        },
        {
          "$ref": "#/$defs/WithTypeDefinition"
        },
        {
          "$ref": "#/$defs/WithOptionals"
        },
        {
          "$ref": "#/$defs/WithInterfaces"
        },
        {
          "$ref": "#/$defs/WithInitializers"
        },
        {
          "$ref": "#/$defs/WithPropertyValues"
        },
        {
          "$ref": "#/$defs/VariableFacet"
        },
        {
          "$ref": "#/$defs/WithAddIns"
        },
        {
          "$ref": "#/$defs/WithReferences"
        },
        {
          "$ref": "#/$defs/WithDocumentation"
        },
        {
          "type": "object",
          "description": "describe a OPCUA Object instance. 2",
          "additionalProperties": false,
          "required": [
            "browseName",
            "typeDefinition"
          ],
          "properties": {
            "$anchor": true,
            "browseName": true,
            "displayName": true,
            "description": true,
            "documentation": true,
            "typeDefinition": true,
            "optionals": true,
            "nodeId": true,
            "references": true,
            "properties": true,
            "components": true,
            "organizes": true,
            "methods": true,
            "organizedBy": true,
            "componentOf": true,
            "propertyOf": true,
            "orderedComponentOf": true,
            "physicalComponentOf": true,
            "containedComponentOf": true,
            "addIns": true,
            "dataType": true,
            "value": true,
            "valueRank": true,
            "arrayDimensions": true,
            "accessLevel": true,
            "userAccessLevel": true,
            "minimumSamplingInterval": true,
            "historizing": true,
            "interfaces": true,
            "initializers": true,
            "propertyValues": true
          }
        }
      ]
    },
    "InstanceStuff": {
      "type": "object",
      "properties": {
        "$anchor": {
          "type": "string",
          "description": "Optional user-defined anchor name used as the path token in organizedBy / componentOf / propertyOf values (e.g. $MainRobot). When omitted the token defaults to the local part of browseName, with a numeric suffix appended automatically for duplicates.\n",
          "pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
        },
        "browseName": {
          "$ref": "#/$defs/BrowseName"
        },
        "nodeId": {
          "$ref": "#/$defs/NodeIdWithoutNamespace"
        },
        "displayName": {
          "type": "string"
        },
        "description": {
          "type": "string"
        }
      }
    },
    "TypeReference": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "namespace": {
          "type": "string"
        }
      }
    },
    "PropertyValues": {
      "description": "A nested object whose keys are aliased BrowseNames and whose values are either leaf values or nested PropertyValues objects.\nWhen a Variable has both a value AND sub-properties (e.g. AnalogItem with EngineeringUnits), use the special `$value` key for the variable's own value. The `$` prefix is reserved and cannot collide with any OPC UA browse name.\nExample:\n  propertyValues:\n    di:ParameterSet:\n      Temperature:\n        $value: 23.5\n        ua:EURange: [0, 100]\n        ua:EngineeringUnits: \"°C\"\n    di:SerialNumber: SN1234\n",
      "type": "object",
      "additionalProperties": {
        "$ref": "#/$defs/PropertyValueContent"
      }
    },
    "PropertyValueContent": {
      "description": "The content of a property value entry. Determined by type:\n  - string/number/boolean → leaf value\n  - array → array of primitives or structured data objects\n  - object → nested sub-properties (recurse)\n\nWhen the object is a Variable with sub-properties, the reserved key `$value` holds the variable's own value.\n",
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "number"
        },
        {
          "type": "boolean"
        },
        {
          "type": "array"
        },
        {
          "type": "null"
        },
        {
          "type": "object",
          "additionalProperties": {
            "$ref": "#/$defs/PropertyValueContent"
          }
        }
      ]
    },
    "WithPropertyValues": {
      "type": "object",
      "properties": {
        "propertyValues": {
          "$ref": "#/$defs/PropertyValues"
        }
      }
    },
    "Initializer": {
      "type": "object",
      "required": [
        "variable",
        "value"
      ],
      "properties": {
        "variable": {
          "type": "string"
        },
        "value": {
          "$ref": "#/$defs/PropertyValueContent"
        },
        "engineeringUnits": {
          "$ref": "#/$defs/UnitRef"
        },
        "range": {
          "type": "array",
          "minItems": 2,
          "maxItems": 2,
          "items": {
            "type": "number"
          }
        },
        "description": {
          "type": "string"
        }
      }
    },
    "StateMachine": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "browseName",
        "states",
        "transitions"
      ],
      "properties": {
        "promotedToMandatory": {
          "$ref": "#/$defs/PromotedToMandatoryInner"
        },
        "browseName": {
          "$ref": "#/$defs/BrowseName"
        },
        "displayName": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "nodeId": {
          "type": "string"
        },
        "subtypeOf": {
          "description": "the StateMachine that this StateMachine is derived from",
          "$ref": "#/$defs/BaseTypeRef"
        },
        "isAbstract": {
          "type": "boolean",
          "default": false
        },
        "transitionHaveEffect": {
          "description": "the EventType raised every time a StateMachine transition happens",
          "$ref": "#/$defs/BrowseName"
        },
        "components": {
          "description": "VariableOrObjectForType - contains the list of child components of this object, referenced by a  \"HasComponent\" relationship.",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/VariableOrObjectForType"
          }
        },
        "methods": {
          "description": "MethodForType - the methods this state machine exposes. A state machine\ncommonly has them: OPC 10000-16 gives the ProgramStateMachine Halt, Reset,\nResume, Start and Suspend, and OPC 30500 LADS declares the same shape.\n",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/MethodForType"
          }
        },
        "states": {
          "description": "a array of machine states, either as bare names or as {name, value} entries.\n\nanyOf, not oneOf: an empty array satisfies both forms, and \"exactly one\"\nthen rejects it. OPC 30500 LADS has three such state machines\n(ControlFunctionStateMachineType, FunctionalUnitStateMachineType,\nLADSOperationModeStateMachineType), which inherit their states.\n",
          "anyOf": [
            {
              "type": "array",
              "items": {
                "$ref": "#/$defs/BrowseName"
              }
            },
            {
              "type": "array",
              "items": {
                "type": "object",
                "description": "a State",
                "additionalProperties": false,
                "required": [
                  "name",
                  "value"
                ],
                "properties": {
                  "name": {
                    "$ref": "#/$defs/BrowseName"
                  },
                  "value": {
                    "type": "number"
                  },
                  "description": {
                    "type": "string"
                  },
                  "isInitialState": {
                    "type": "boolean"
                  }
                }
              }
            }
          ]
        },
        "transitions": {
          "type": "array",
          "items": {
            "type": "object",
            "description": "a Transition",
            "additionalProperties": false,
            "required": [
              "from",
              "to"
            ],
            "properties": {
              "value": {
                "type": "number"
              },
              "browseName": {
                "$ref": "#/$defs/BrowseName",
                "description": "The browse name of the transition.\n\nIf not specified, the name will have a default value build from the From State and the To State browse names\nin the form: [FromState.browseName]To<ToState.browseName>.\n"
              },
              "from": {
                "$ref": "#/$defs/BrowseName"
              },
              "to": {
                "$ref": "#/$defs/BrowseName"
              },
              "description": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}
