From ff372b036b9a869a389a25e06ba59b99f20d3c24 Mon Sep 17 00:00:00 2001 From: Gerald Baulig Date: Mon, 19 Feb 2024 12:54:10 +0100 Subject: [PATCH] feat(lerna): setup lerna for recursive install, update readme --- README.adoc | 226 +- .../generator/catalog/package-lock.json | 536 - .../demo-shop/generator/catalog/package.json | 9 +- datasets/demo-shop/objects/object_importer.ts | 2 +- datasets/system/.gitignore | 4 + .../system/data/generated/unit_codes.yaml | 23624 ++++++++-------- datasets/system/data/seed-data/rules.yaml | 33 + .../system/generator/unit_codes/package.json | 19 + .../system/generator/unit_codes/transform.js | 8 +- lerna.json | 13 + package-lock.json | 17762 ++++++------ package.json | 20 +- 12 files changed, 21658 insertions(+), 20598 deletions(-) delete mode 100644 datasets/demo-shop/generator/catalog/package-lock.json create mode 100644 datasets/system/.gitignore create mode 100644 datasets/system/generator/unit_codes/package.json create mode 100644 lerna.json diff --git a/README.adoc b/README.adoc index 264c53c..674a23d 100644 --- a/README.adoc +++ b/README.adoc @@ -8,8 +8,228 @@ The data sets serve several purposes: - For automated testing - For demonstration purposes -== Available Data Sets +== Getting Started -- link:datasets/system[System] -- link:datasets/demo-shop[Demo Shop] +_Note: Recommented for setups from scratch with clean databases only!_ +This tutorial will install all dependencies, generate all data and import all data! +Depending on the dataset size, each process may take a while. +For more sensitive and detail usage, please check individual documentation: + +- link:datasets/system/README.md[System] +- link:datasets/demo-shop/README.md[Demo Shop] + +For quick start, please proceed with following steps: + +1. Ensure that https://github.com/restorecommerce/system[system] +or https://github.com/restorecommerce/charts[charts] is running, +either locally or remotely. +At remote, please adjust endpoints in ``.config.json``. + +2. Install all dependencies: + + npm ci + +3. Trigger all transformers and generators to create all generative data: + + npm run transform + +4. Extract the API-Key from ``restorecommerce-facade-srv`` logs: + + a. If ``facade-srv`` is running locally, + + - run: + + npm run env:token + + - ensure a file `.env` was created with content e.g.: + + ACCESS_TOKEN=87a85f2661db4888ab88b8997ed0adc8 + + b. If ``facade-srv`` is running remotely, + + - attach to its shell and try: + + echo $(docker logs --tail 10000 restorecommerce_facade_srv 2> /dev/null | grep 'Bootstrap API Key is:' | awk '{print \"\rACCESS_TOKEN=\"$7}') + + - then export the API-Key to your local environment: + + export ACCESS_TOKEN={API-KEY} + +5. Import all data, this process may take some time: + + npm run import + +6. All done! Please check the database whether all data is imported. + +== All NPM Script Commands + +The project root provides a couble of handy NPM Script Commands to accelerate the workflow across all datasets. + +=== Transformers + +All: + +- Transforms all generative data: + + npm run transform + +System: + +- Transforms all generative data for system: + + npm run transform:system + +- Transforms unit-codes from XLS to YAML: + + npm run transform:system:unitcodes + +Demo Shop: + +- Transforms all generative data for demo-shop: + + npm run transform:demoshop + +- Transforms catalog data from CSV to YAML: + + npm run transform:demoshop + +=== Imports + +All: + +- Imports all data: + + npm run import + +System: + +- Imports all system data only: + + npm run import:system + +- Imports users, roles, policy-sets, policies and rules from system data: + + npm run import:system:identity + +- Imports commands, contact-point-types, countries, locales, organizations, tax-types, taxes and timezones from system data: + + npm run import:system:master + +- Imports generated unit-codes from system data: + + npm run import:system:extra + +Demo Shop: + +- Imports all data from demo-shop only: + + npm run import:demoshop + +- Imports users from demo-shop data: + + npm run import:demoshop:identity + +- Imports commands, contact-point-types, countries, locales, organizations, tax-types, taxes and timezones from demo-shop data: + + npm run import:demoshop:master + +- Imports generated products, manufactures, price-groups, prototypes and categories from demo-shop data: + + npm run import:demoshop:catalog + +=== Utilities + +- Extracts API-Key from local ``facade-srv`` logs: + + npm run env:token + + +== The Access Control Data Model + +All entities of this dataset are organized along a hierarchy of ``organisation``s. +Each entity is owned by one or more ``organization``(s) and by its creator in common case. + +All ``organization``s are children of ``system`` while ``restorecommerce-demo-root`` implies the first tandent. +Each tandent has two sub-``organization``s for categorization between ``organization``s of shops or customers. +Shop and customer ``organization``s may have any sub-hierarchy as pleased. +Here an overview of the current organization hierarchy: + +---- +system: + - restorecommerce-demo-root: + - restorecommerce-demo-shops: + - restorecommerce-demo-shop-000 + - restorecommerce-demo-customers: + - restorecommerce-demo-customer-000 + - restorecommerce-demo-customer-001 +---- + +A combination of ``role``s given to a ``user`` grant variant read and write permissions per entity within defined scopes. +The following roles are provided by `system:identity`: + +- ``superadministrator``: An exclusive role for developers and technical users. + + 1. Permits full access to all entities regardless of ownership or hierarchy. + +- ``administrator``: An exclusive role for maintenance and product owners. + + 1. Permits full access to all entities within an hierarchical scope. + +- ``sales``: Maintains daily business for shops. + + 1. Permits read for all entities within an hierarchical scope. + 2. Permits create for products and other catalog entities within hierarchical scope. + 3. Permits read and modify for submitted orderings within hierarchical scope. + +- ``moderator``: Maintains users and customer organizations. + + 1. Permits read for all entities within an hierarchical scope. + 2. Permits create and modify for organizations and users within scope. + 3. Permits withdraw for submitted orderings within scope. + +- ``member``: Acts as a member of a customer organizations. + + 1. Permits read for users, addresses, contact-points and sub-organizations within hierarchical scope + +- ``customer``: Acts as a customer of a shop. + + 1. Permits read for products and other catalog entities within hierarchical scope. + 2. Permits to submit orders within hierarchical scope. + +- ``user``: Acts as a authenticated users. + + 1. Permits read for all owned entities + 2. Permits read and modify of exposed user data + 3. Permits to create orders within within hierarchical scope + +- ``scoped``: Expands read permission to a certain scope. + + 1. Permits read within scope + +- ``unauthenticated``: Acts as an unauthenticated users. + + 1. Permits to reset password + 2. Permits read for exposed data of system + +=== Examples + +**The Common Sales User** has a ``sales``-role with scope on a shop-organization and a ``scoped``-role on system. +By that it can maintain the shop but also read all master data in system. +- Optionally it has a ``user``-role, so it can modify its user information. + +**The Common Moderator User** has a ``moderator``-role with scope on a customer-organization and a ``scoped``-role on system. +By that it can maintain the customer organization but also read all master data in system. +- Optionally it has a ``user``-role, so it can modify its user information. +- Optionally it has a ``customer``-role on a shop, so it can submit orders. + +**The Common Customer User** has a ``customer``-role with scope on a shop-organization and a ``scoped``-role on system. +By that it can submit orders to a shop but also read all master data in system. +- Optionally it has a ``user``-role, so it can modify its user information. +- Optionally it has a ``member``-role on a customer-organization, so it can create and submit orders in the name of that organization. + +== Trouble Shooting + +Access deny errors during import: + +- Please restart ``facade-srv`` \ No newline at end of file diff --git a/datasets/demo-shop/generator/catalog/package-lock.json b/datasets/demo-shop/generator/catalog/package-lock.json deleted file mode 100644 index 9ef4a30..0000000 --- a/datasets/demo-shop/generator/catalog/package-lock.json +++ /dev/null @@ -1,536 +0,0 @@ -{ - "name": "@restorecommerce/testdata-transform", - "version": "0.1.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "@restorecommerce/testdata-transform", - "version": "0.1.0", - "license": "MIT", - "dependencies": { - "csv-parser": "^2.3.1", - "js-yaml": "^3.14.0", - "lodash": "^4.17.21", - "object-hash": "^2.0.0", - "uuid": "^3.3.3" - }, - "devDependencies": { - "@types/node": "^12.11.2" - }, - "engines": { - "node": ">= 9.2.0" - } - }, - "node_modules/@hapi/address": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.2.tgz", - "integrity": "sha512-O4QDrx+JoGKZc6aN64L04vqa7e41tIiLU+OvKdcYaEMP97UttL0f9GIi9/0A4WAMx0uBd6SidDIhktZhgOcN8Q==" - }, - "node_modules/@hapi/formula": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@hapi/formula/-/formula-1.2.0.tgz", - "integrity": "sha512-UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA==" - }, - "node_modules/@hapi/hoek": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.3.2.tgz", - "integrity": "sha512-NP5SG4bzix+EtSMtcudp8TvI0lB46mXNo8uFpTDw6tqxGx4z5yx+giIunEFA0Z7oUO4DuWrOJV9xqR2tJVEdyA==" - }, - "node_modules/@hapi/joi": { - "version": "16.1.7", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-16.1.7.tgz", - "integrity": "sha512-anaIgnZhNooG3LJLrTFzgGALTiO97zRA1UkvQHm9KxxoSiIzCozB3RCNCpDnfhTJD72QlrHA8nwGmNgpFFCIeg==", - "dependencies": { - "@hapi/address": "^2.1.2", - "@hapi/formula": "^1.2.0", - "@hapi/hoek": "^8.2.4", - "@hapi/pinpoint": "^1.0.2", - "@hapi/topo": "^3.1.3" - } - }, - "node_modules/@hapi/pinpoint": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-1.0.2.tgz", - "integrity": "sha512-dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ==" - }, - "node_modules/@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "dependencies": { - "@hapi/hoek": "^8.3.0" - } - }, - "node_modules/@types/node": { - "version": "12.11.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.11.2.tgz", - "integrity": "sha512-dsfE4BHJkLQW+reOS6b17xhZ/6FB1rB8eRRvO08nn5o+voxf3i74tuyFWNH6djdfgX7Sm5s6LD8t6mJug4dpDw==", - "dev": true - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dependencies": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "node_modules/buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" - }, - "node_modules/buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" - }, - "node_modules/buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "node_modules/csv-parser": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/csv-parser/-/csv-parser-2.3.1.tgz", - "integrity": "sha512-/u51FlBo75BcY/IL0WGibT628rr/xn4cXS9jX+AwT4x9yE7kqGqss7YgXpbdFai6m3uNbr4g1F19BoXBFeiJbA==", - "dependencies": { - "@hapi/joi": "^16.1.4", - "buffer-alloc": "^1.1.0", - "buffer-from": "^1.0.0", - "generate-object-property": "^1.0.0", - "minimist": "^1.2.0", - "ndjson": "^1.4.0" - }, - "bin": { - "csv-parser": "bin/csv-parser" - }, - "engines": { - "node": ">= 8.16.0" - } - }, - "node_modules/csv-parser/node_modules/minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "dependencies": { - "is-property": "^1.0.0" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/ndjson": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz", - "integrity": "sha1-rmA7NrE0vOw0e0UkIrC/mNWDLsg=", - "dependencies": { - "json-stringify-safe": "^5.0.1", - "minimist": "^1.2.0", - "split2": "^2.1.0", - "through2": "^2.0.3" - }, - "bin": { - "ndjson": "cli.js" - } - }, - "node_modules/ndjson/node_modules/minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "node_modules/object-hash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.0.0.tgz", - "integrity": "sha512-I7zGBH0rDKwVGeGZpZoFaDhIwvJa3l1CZE+8VchylXbInNiCj7sxxea9P5dTM4ftKR5//nrqxrdeGSTWL2VpBA==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/split2": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz", - "integrity": "sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==", - "dependencies": { - "through2": "^2.0.2" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "node_modules/uuid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", - "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - } - }, - "dependencies": { - "@hapi/address": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.2.tgz", - "integrity": "sha512-O4QDrx+JoGKZc6aN64L04vqa7e41tIiLU+OvKdcYaEMP97UttL0f9GIi9/0A4WAMx0uBd6SidDIhktZhgOcN8Q==" - }, - "@hapi/formula": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@hapi/formula/-/formula-1.2.0.tgz", - "integrity": "sha512-UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA==" - }, - "@hapi/hoek": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.3.2.tgz", - "integrity": "sha512-NP5SG4bzix+EtSMtcudp8TvI0lB46mXNo8uFpTDw6tqxGx4z5yx+giIunEFA0Z7oUO4DuWrOJV9xqR2tJVEdyA==" - }, - "@hapi/joi": { - "version": "16.1.7", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-16.1.7.tgz", - "integrity": "sha512-anaIgnZhNooG3LJLrTFzgGALTiO97zRA1UkvQHm9KxxoSiIzCozB3RCNCpDnfhTJD72QlrHA8nwGmNgpFFCIeg==", - "requires": { - "@hapi/address": "^2.1.2", - "@hapi/formula": "^1.2.0", - "@hapi/hoek": "^8.2.4", - "@hapi/pinpoint": "^1.0.2", - "@hapi/topo": "^3.1.3" - } - }, - "@hapi/pinpoint": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-1.0.2.tgz", - "integrity": "sha512-dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ==" - }, - "@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "requires": { - "@hapi/hoek": "^8.3.0" - } - }, - "@types/node": { - "version": "12.11.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.11.2.tgz", - "integrity": "sha512-dsfE4BHJkLQW+reOS6b17xhZ/6FB1rB8eRRvO08nn5o+voxf3i74tuyFWNH6djdfgX7Sm5s6LD8t6mJug4dpDw==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "csv-parser": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/csv-parser/-/csv-parser-2.3.1.tgz", - "integrity": "sha512-/u51FlBo75BcY/IL0WGibT628rr/xn4cXS9jX+AwT4x9yE7kqGqss7YgXpbdFai6m3uNbr4g1F19BoXBFeiJbA==", - "requires": { - "@hapi/joi": "^16.1.4", - "buffer-alloc": "^1.1.0", - "buffer-from": "^1.0.0", - "generate-object-property": "^1.0.0", - "minimist": "^1.2.0", - "ndjson": "^1.4.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "requires": { - "is-property": "^1.0.0" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "ndjson": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz", - "integrity": "sha1-rmA7NrE0vOw0e0UkIrC/mNWDLsg=", - "requires": { - "json-stringify-safe": "^5.0.1", - "minimist": "^1.2.0", - "split2": "^2.1.0", - "through2": "^2.0.3" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "object-hash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.0.0.tgz", - "integrity": "sha512-I7zGBH0rDKwVGeGZpZoFaDhIwvJa3l1CZE+8VchylXbInNiCj7sxxea9P5dTM4ftKR5//nrqxrdeGSTWL2VpBA==" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "split2": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz", - "integrity": "sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==", - "requires": { - "through2": "^2.0.2" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "uuid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", - "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - } -} diff --git a/datasets/demo-shop/generator/catalog/package.json b/datasets/demo-shop/generator/catalog/package.json index 2e651b5..c9b4ca7 100644 --- a/datasets/demo-shop/generator/catalog/package.json +++ b/datasets/demo-shop/generator/catalog/package.json @@ -1,11 +1,11 @@ { - "name": "@restorecommerce/testdata-transform", + "name": "@restorecommerce/dataset-demoshop-catalog-transformer", "version": "0.1.0", "description": "Util for generating product catalog data from a CSV data set", "license": "MIT", "keywords": [ "restorecommerce", - "seed", + "demo-shop", "data" ], "dependencies": { @@ -14,11 +14,8 @@ "object-hash": "^2.0.0", "uuid": "^3.3.3" }, - "devDependencies": { - "@types/node": "^12.11.2" - }, "scripts": {}, "engines": { - "node": ">= 9.2.0" + "node": ">= 18.0.0" } } diff --git a/datasets/demo-shop/objects/object_importer.ts b/datasets/demo-shop/objects/object_importer.ts index 4737ada..f73aed2 100644 --- a/datasets/demo-shop/objects/object_importer.ts +++ b/datasets/demo-shop/objects/object_importer.ts @@ -3,7 +3,7 @@ import { FormData } from 'formdata-node'; import * as fs from 'fs'; import * as readline from 'readline'; -const CONFIG_NAME = process.env.CONFIG_NAME || '.config.json'; +const CONFIG_NAME = process.env.CONFIG_NAME ?? '.config.json'; const defaultConfig = JSON.parse(fs.readFileSync(CONFIG_NAME) .toString()); const realConfig = { diff --git a/datasets/system/.gitignore b/datasets/system/.gitignore new file mode 100644 index 0000000..0b0e947 --- /dev/null +++ b/datasets/system/.gitignore @@ -0,0 +1,4 @@ +data/generated/ +objects/*.js +objects/*.js.map +objects/*.d.ts \ No newline at end of file diff --git a/datasets/system/data/generated/unit_codes.yaml b/datasets/system/data/generated/unit_codes.yaml index 7c4893c..c022623 100644 --- a/datasets/system/data/generated/unit_codes.yaml +++ b/datasets/system/data/generated/unit_codes.yaml @@ -4,13 +4,13 @@ name: lift levelCategory: '3.9' id: un-cefact-cc-05 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20,29 +20,29 @@ name: small spray levelCategory: '3.9' id: un-cefact-cc-06 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- status: MARKED_AS_DELETED -commonCode: '08' +commonCode: 08 name: heat lot levelCategory: '3.9' id: un-cefact-cc-08 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -54,13 +54,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-10 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -72,13 +72,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-11 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -90,47 +90,47 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-13 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: '14' name: shot -description: A unit of liquid measure, especially related to spirits. +description: 'A unit of liquid measure, especially related to spirits.' levelCategory: '3.9' id: un-cefact-cc-14 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: '15' -name: stick, military +name: 'stick, military' description: >- A unit of count defining the number of military sticks (military stick: bombs or paratroops released in rapid succession from an aircraft). levelCategory: '3.9' id: un-cefact-cc-15 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -140,13 +140,13 @@ name: hundred fifteen kg drum levelCategory: '3.3' id: un-cefact-cc-16 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -156,13 +156,13 @@ name: hundred lb drum levelCategory: '3.3' id: un-cefact-cc-17 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -172,13 +172,13 @@ name: fiftyfive gallon (US) drum levelCategory: '3.3' id: un-cefact-cc-18 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -188,13 +188,13 @@ name: tank truck levelCategory: '3.4' id: un-cefact-cc-19 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -204,13 +204,13 @@ name: car mile levelCategory: '3.5' id: un-cefact-cc-1A meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -220,13 +220,13 @@ name: car count levelCategory: '3.5' id: un-cefact-cc-1B meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -236,13 +236,13 @@ name: locomotive count levelCategory: '3.5' id: un-cefact-cc-1C meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -252,13 +252,13 @@ name: caboose count levelCategory: '3.5' id: un-cefact-cc-1D meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -268,13 +268,13 @@ name: empty car levelCategory: '3.5' id: un-cefact-cc-1E meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -284,13 +284,13 @@ name: train mile levelCategory: '3.5' id: un-cefact-cc-1F meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -300,13 +300,13 @@ name: fuel usage gallon (US) levelCategory: '3.5' id: un-cefact-cc-1G meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -316,13 +316,13 @@ name: caboose mile levelCategory: '3.5' id: un-cefact-cc-1H meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -334,13 +334,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-1I meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -350,13 +350,13 @@ name: ton mile levelCategory: '3.5' id: un-cefact-cc-1J meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -366,13 +366,13 @@ name: locomotive mile levelCategory: '3.5' id: un-cefact-cc-1K meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -382,13 +382,13 @@ name: total car count levelCategory: '3.5' id: un-cefact-cc-1L meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -398,13 +398,13 @@ name: total car mile levelCategory: '3.5' id: un-cefact-cc-1M meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -414,13 +414,13 @@ name: quarter mile levelCategory: '3.8' id: un-cefact-cc-1X meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -432,13 +432,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-20 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -450,20 +450,20 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-21 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '102' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: 1M commonCode: '22' name: decilitre per gram @@ -471,20 +471,20 @@ conversionFactor: 10⁻¹ x m³/kg symbol: dl/g id: un-cefact-cc-22 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '30' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: '23' name: gram per cubic centimetre @@ -492,13 +492,13 @@ conversionFactor: 10³ kg/m³ symbol: g/cm³ id: un-cefact-cc-23 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -510,20 +510,20 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-24 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '121' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: 1M commonCode: '25' name: gram per square centimetre @@ -531,13 +531,13 @@ conversionFactor: 10 kg/m² symbol: g/cm² id: un-cefact-cc-25 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -547,13 +547,13 @@ name: actual ton levelCategory: '3.1' id: un-cefact-cc-26 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -565,20 +565,20 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-27 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '124' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: 1M commonCode: '28' name: kilogram per square metre @@ -586,13 +586,13 @@ conversionFactor: kg/m² symbol: kg/m² id: un-cefact-cc-28 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -603,13 +603,13 @@ levelCategory: '3.8' symbol: lb/kft² id: un-cefact-cc-29 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -625,13 +625,13 @@ symbol: rad/s description: Refer ISO/TC12 SI Guide id: un-cefact-cc-2A meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -647,13 +647,13 @@ symbol: rad/s² description: Refer ISO/TC12 SI Guide id: un-cefact-cc-2B meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -664,17 +664,17 @@ quantity: exposure levelCategory: '2' commonCode: 2C name: roentgen -conversionFactor: 2,58 x 10⁻⁴ C/kg +conversionFactor: '2,58 x 10⁻⁴ C/kg' symbol: R id: un-cefact-cc-2C meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -686,13 +686,13 @@ symbol: V conversionFactor: V id: un-cefact-cc-2G meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -704,13 +704,13 @@ symbol: V conversionFactor: V id: un-cefact-cc-2H meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -721,17 +721,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: 2I name: British thermal unit (international table) per hour -conversionFactor: 2,930 711x 10⁻¹ W +conversionFactor: '2,930 711x 10⁻¹ W' symbol: BtuIT/h id: un-cefact-cc-2I meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -746,13 +746,13 @@ conversionFactor: 10⁻⁶ m³/s symbol: cm³/s id: un-cefact-cc-2J meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -763,17 +763,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: 2K name: cubic foot per hour -conversionFactor: 7,865 79 x 10⁻⁶ m³/s +conversionFactor: '7,865 79 x 10⁻⁶ m³/s' symbol: ft³/h id: un-cefact-cc-2K meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -784,24 +784,24 @@ quantity: volume flow rate levelCategory: '2' commonCode: 2L name: cubic foot per minute -conversionFactor: 4,719 474 x 10⁻⁴ m³/s +conversionFactor: '4,719 474 x 10⁻⁴ m³/s' symbol: ft³/min id: un-cefact-cc-2L meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '177' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1S commonCode: 2M name: centimetre per second @@ -809,34 +809,34 @@ conversionFactor: 10⁻² m/s symbol: cm/s id: un-cefact-cc-2M meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '02' sector: PERIODIC_AND_RELATED_PHASES groupId: '21' -quantity: level of a field quantity, level of a power quantity +quantity: 'level of a field quantity, level of a power quantity' levelCategory: '1' commonCode: 2N name: decibel -conversionFactor: 0,115 129 3 Np +conversionFactor: '0,115 129 3 Np' symbol: dB id: un-cefact-cc-2N meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -847,17 +847,17 @@ levelCategory: '3.6' symbol: kbyte id: un-cefact-cc-2P meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '43' quantity: activity @@ -868,34 +868,34 @@ conversionFactor: 10³ Bq symbol: kBq id: un-cefact-cc-2Q meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '40' quantity: activity levelCategory: 2S commonCode: 2R name: kilocurie -conversionFactor: 3,7 x 10¹³ Bq +conversionFactor: '3,7 x 10¹³ Bq' symbol: kCi id: un-cefact-cc-2R meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -910,13 +910,13 @@ conversionFactor: 10³ kg symbol: Mg id: un-cefact-cc-2U meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -927,13 +927,13 @@ levelCategory: '3.8' symbol: Mg/h id: un-cefact-cc-2V meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -946,34 +946,34 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-2W meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '180' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1M commonCode: 2X name: metre per minute -conversionFactor: 0,016 666 m/s +conversionFactor: '0,016 666 m/s' symbol: m/min id: un-cefact-cc-2X meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -984,17 +984,17 @@ quantity: exposure levelCategory: '2' commonCode: 2Y name: milliroentgen -conversionFactor: 2,58 x 10⁻⁷ C/kg +conversionFactor: '2,58 x 10⁻⁷ C/kg' symbol: mR id: un-cefact-cc-2Y meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1011,13 +1011,13 @@ conversionFactor: 10⁻³ V symbol: mV id: un-cefact-cc-2Z meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1027,13 +1027,13 @@ name: horse power day per air dry metric ton levelCategory: '3.5' id: un-cefact-cc-30 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1043,13 +1043,13 @@ name: catch weight levelCategory: '3.9' id: un-cefact-cc-31 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1059,13 +1059,13 @@ name: kilogram per air dry metric ton levelCategory: '3.5' id: un-cefact-cc-32 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1080,13 +1080,13 @@ conversionFactor: 10⁶ m/s² symbol: kPa·m²/g id: un-cefact-cc-33 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1101,13 +1101,13 @@ conversionFactor: 10⁶ kg/(m² x s²) symbol: kPa/mm id: un-cefact-cc-34 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1122,13 +1122,13 @@ conversionFactor: 10⁻² m/s symbol: ml/(cm²·s) id: un-cefact-cc-35 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1144,57 +1144,57 @@ symbol: ft³/(min/ft²) description: Conversion factor required id: un-cefact-cc-36 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '127' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: '2' commonCode: '37' name: ounce per square foot -conversionFactor: 0,305 151 7 kg/m² +conversionFactor: '0,305 151 7 kg/m²' symbol: oz/ft² id: un-cefact-cc-37 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: '38' -name: ounce per square foot per 0,01inch +name: 'ounce per square foot per 0,01inch' levelCategory: '3.9' symbol: oz/(ft²/cin) id: un-cefact-cc-38 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '326' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: 3B name: megajoule @@ -1202,13 +1202,13 @@ conversionFactor: 10⁶ J symbol: MJ id: un-cefact-cc-3B meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1220,13 +1220,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-3C meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1236,13 +1236,13 @@ name: pound per pound of product levelCategory: '3.9' id: un-cefact-cc-3E meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1252,13 +1252,13 @@ name: pound per piece of product levelCategory: '3.9' id: un-cefact-cc-3G meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1268,13 +1268,13 @@ name: kilogram per kilogram of product levelCategory: '3.9' id: un-cefact-cc-3H meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1284,13 +1284,13 @@ name: kilogram per piece of product levelCategory: '3.9' id: un-cefact-cc-3I meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1305,13 +1305,13 @@ conversionFactor: 10⁻⁶ m³/s symbol: ml/s id: un-cefact-cc-40 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1322,17 +1322,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: '41' name: millilitre per minute -conversionFactor: 1,666 67 x 10⁻⁸ m³/s +conversionFactor: '1,666 67 x 10⁻⁸ m³/s' symbol: ml/min id: un-cefact-cc-41 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1345,13 +1345,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-43 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1361,13 +1361,13 @@ name: fivehundred kg bulk bag levelCategory: '3.3' id: un-cefact-cc-44 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1377,13 +1377,13 @@ name: threehundred kg bulk bag levelCategory: '3.3' id: un-cefact-cc-45 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1393,13 +1393,13 @@ name: fifty lb bulk bag levelCategory: '3.3' id: un-cefact-cc-46 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1409,13 +1409,13 @@ name: fifty lb bag levelCategory: '3.3' id: un-cefact-cc-47 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1425,13 +1425,13 @@ name: bulk car load levelCategory: '3.4' id: un-cefact-cc-48 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1444,13 +1444,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-4A meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1460,13 +1460,13 @@ name: cap levelCategory: '3.9' id: un-cefact-cc-4B meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1481,13 +1481,13 @@ conversionFactor: 10⁻⁶ m²/s symbol: cSt id: un-cefact-cc-4C meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1497,13 +1497,13 @@ name: twenty pack levelCategory: '3.2' id: un-cefact-cc-4E meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1518,13 +1518,13 @@ conversionFactor: 10⁻⁹ m³ symbol: µl id: un-cefact-cc-4G meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1541,13 +1541,13 @@ conversionFactor: 10⁻⁶ m symbol: µm id: un-cefact-cc-4H meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1564,13 +1564,13 @@ conversionFactor: 10⁻³ A symbol: mA id: un-cefact-cc-4K meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1581,13 +1581,13 @@ levelCategory: '3.6' symbol: Mbyte id: un-cefact-cc-4L meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1598,21 +1598,21 @@ quantity: mass flow rate levelCategory: 1M commonCode: 4M name: milligram per hour -conversionFactor: 2,777 78 x 10⁻¹⁰ kg/s +conversionFactor: '2,777 78 x 10⁻¹⁰ kg/s' symbol: mg/h id: un-cefact-cc-4M meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '44' quantity: activity @@ -1623,13 +1623,13 @@ conversionFactor: 10⁶ Bq symbol: MBq id: un-cefact-cc-4N meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1644,13 +1644,13 @@ conversionFactor: 10⁻⁶ F symbol: µF id: un-cefact-cc-4O meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1665,55 +1665,55 @@ conversionFactor: N/m symbol: N/m id: un-cefact-cc-4P meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '173' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: 4Q name: ounce inch -conversionFactor: 7,200 778 x 10⁻⁴ kg x m +conversionFactor: '7,200 778 x 10⁻⁴ kg x m' symbol: oz·in id: un-cefact-cc-4Q meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '174' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: 4R name: ounce foot -conversionFactor: 8,640 934 x 10⁻³ kg x m +conversionFactor: '8,640 934 x 10⁻³ kg x m' symbol: oz·ft id: un-cefact-cc-4R meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1728,13 +1728,13 @@ conversionFactor: 10⁻¹² F symbol: pF id: un-cefact-cc-4T meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1745,17 +1745,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: 4U name: pound per hour -conversionFactor: 1,259 979 x 10⁻⁴ kg/s +conversionFactor: '1,259 979 x 10⁻⁴ kg/s' symbol: lb/h id: un-cefact-cc-4U meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1766,17 +1766,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: 4W name: ton (US) per hour -conversionFactor: 2,519 958 x 10⁻¹ kg/s +conversionFactor: '2,519 958 x 10⁻¹ kg/s' symbol: ton (US) /h id: un-cefact-cc-4W meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1787,17 +1787,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: 4X name: kilolitre per hour -conversionFactor: 2,777 78 x 10⁻⁴ m³/s +conversionFactor: '2,777 78 x 10⁻⁴ m³/s' symbol: kl/h id: un-cefact-cc-4X meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1807,13 +1807,13 @@ name: theoretical kilogram levelCategory: '3.1' id: un-cefact-cc-53 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1823,13 +1823,13 @@ name: theoretical tonne levelCategory: '3.1' id: un-cefact-cc-54 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1839,13 +1839,13 @@ description: A unit of area for tin plate equal to a surface area of 100 square levelCategory: '3.9' id: un-cefact-cc-56 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1857,13 +1857,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-57 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1873,13 +1873,13 @@ description: A unit of mass defining the total number of kilograms after deducti levelCategory: '3.1' id: un-cefact-cc-58 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1891,13 +1891,13 @@ symbol: ppm conversionFactor: 1 x 10⁻⁶ id: un-cefact-cc-59 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1908,17 +1908,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: 5A name: barrel (US) per minute -conversionFactor: 2,649 79 x 10⁻³ m³/s +conversionFactor: '2,649 79 x 10⁻³ m³/s' symbol: barrel (US)/min id: un-cefact-cc-5A meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1930,13 +1930,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-5B meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1946,13 +1946,13 @@ name: gallon(US) per thousand levelCategory: '3.9' id: un-cefact-cc-5C meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1962,13 +1962,13 @@ description: A unit of volume equal to one million (1000000) cubic feet of gas p levelCategory: '3.9' id: un-cefact-cc-5E meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1978,13 +1978,13 @@ name: pound per thousand levelCategory: '3.9' id: un-cefact-cc-5F meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -1994,13 +1994,13 @@ name: pump levelCategory: '3.9' id: un-cefact-cc-5G meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2010,13 +2010,13 @@ name: stage levelCategory: '3.9' id: un-cefact-cc-5H meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2028,18 +2028,18 @@ levelCategory: '2' status: MARKED_AS_DELETED commonCode: 5I name: standard cubic foot -conversionFactor: 4,672 m³ +conversionFactor: '4,672 m³' symbol: std description: Use standard (common code WSD) id: un-cefact-cc-5I meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2049,13 +2049,13 @@ description: "A unit of power defining the\_hydraulic horse power delivered by a levelCategory: '3.5' id: un-cefact-cc-5J meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2065,13 +2065,13 @@ name: count per minute levelCategory: '3.9' id: un-cefact-cc-5K meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2081,13 +2081,13 @@ name: seismic level levelCategory: '3.9' id: un-cefact-cc-5P meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2097,13 +2097,13 @@ name: seismic line levelCategory: '3.9' id: un-cefact-cc-5Q meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2114,13 +2114,13 @@ levelCategory: '3.7' conversionFactor: 1 x 10⁻² id: un-cefact-cc-60 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2132,13 +2132,13 @@ symbol: ppb conversionFactor: 1 x 10⁻⁹ id: un-cefact-cc-61 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2148,13 +2148,13 @@ name: percent per 1000 hour levelCategory: '3.7' id: un-cefact-cc-62 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2164,30 +2164,30 @@ name: failure rate in time levelCategory: '3.9' id: un-cefact-cc-63 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- status: DEPRECATED commonCode: '64' -name: pound per square inch, gauge +name: 'pound per square inch, gauge' levelCategory: '3.1' -conversionFactor: 7,030 696 x 10² kg/m² +conversionFactor: '7,030 696 x 10² kg/m²' id: un-cefact-cc-64 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2196,16 +2196,16 @@ commonCode: '66' name: oersted levelCategory: '3.5' symbol: Oe -conversionFactor: 7,957 747 x 10 A/m +conversionFactor: '7,957 747 x 10 A/m' id: un-cefact-cc-66 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2215,13 +2215,13 @@ name: test specific scale levelCategory: '3.9' id: un-cefact-cc-69 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2231,13 +2231,13 @@ name: volt ampere per pound levelCategory: '3.9' id: un-cefact-cc-71 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2247,13 +2247,13 @@ name: watt per pound levelCategory: '3.9' id: un-cefact-cc-72 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2263,13 +2263,13 @@ name: ampere tum per centimetre levelCategory: '3.9' id: un-cefact-cc-73 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2286,13 +2286,13 @@ conversionFactor: 10⁻³ Pa symbol: mPa id: un-cefact-cc-74 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2304,13 +2304,13 @@ symbol: Gs conversionFactor: 10⁻⁴ T id: un-cefact-cc-76 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2323,17 +2323,17 @@ quantity: >- levelCategory: '2' commonCode: '77' name: milli-inch -conversionFactor: 25,4 x 10⁻⁶ m +conversionFactor: '25,4 x 10⁻⁶ m' symbol: mil id: un-cefact-cc-77 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2345,13 +2345,13 @@ symbol: kGs conversionFactor: 10⁻¹ T id: un-cefact-cc-78 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2364,24 +2364,24 @@ quantity: >- levelCategory: '2' commonCode: '80' name: pound per square inch absolute -conversionFactor: 7,030 696 x 10² kg/m² +conversionFactor: '7,030 696 x 10² kg/m²' symbol: lb/in² id: un-cefact-cc-80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '108' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: '1' commonCode: '81' name: henry @@ -2389,13 +2389,13 @@ conversionFactor: H symbol: H id: un-cefact-cc-81 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2411,60 +2411,60 @@ commonCode: '84' name: |- A unit of pressure defining the number of kilopounds force per square inch. Use kip per square inch (common code N20). -conversionFactor: 6,894 757 x 10⁶ Pa +conversionFactor: '6,894 757 x 10⁶ Pa' symbol: klbf/in² description: A unit of pressure defining the number of kilopounds force per square inch. id: un-cefact-cc-84 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '340' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '2' commonCode: '85' name: foot pound-force -conversionFactor: 1,355 818 J +conversionFactor: '1,355 818 J' symbol: ft·lbf id: un-cefact-cc-85 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '73' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: '87' name: pound per cubic foot -conversionFactor: 1,601 846 x 10¹ kg/m³ +conversionFactor: '1,601 846 x 10¹ kg/m³' symbol: lb/ft³ id: un-cefact-cc-87 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2475,17 +2475,17 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: '89' name: poise -conversionFactor: 0,1 Pa x s +conversionFactor: '0,1 Pa x s' symbol: P id: un-cefact-cc-89 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2495,13 +2495,13 @@ name: Saybold universal second levelCategory: '3.9' id: un-cefact-cc-90 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2516,13 +2516,13 @@ conversionFactor: 10⁻⁴ m²/s symbol: St id: un-cefact-cc-91 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2532,13 +2532,13 @@ name: calorie per cubic centimetre levelCategory: '3.9' id: un-cefact-cc-92 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2548,16 +2548,16 @@ name: calorie per gram description: Use International Table (IT) calorie per gram (common code D75). levelCategory: '3.5' symbol: cal/g -conversionFactor: 4,186 8 x 10³ J/kg +conversionFactor: '4,186 8 x 10³ J/kg' id: un-cefact-cc-93 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2567,13 +2567,13 @@ name: curl unit levelCategory: '3.9' id: un-cefact-cc-94 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2583,13 +2583,13 @@ name: twenty thousand gallon (US) tankcar levelCategory: '3.4' id: un-cefact-cc-95 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2599,13 +2599,13 @@ name: ten thousand gallon (US) tankcar levelCategory: '3.4' id: un-cefact-cc-96 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2615,13 +2615,13 @@ name: ten kg drum levelCategory: '3.3' id: un-cefact-cc-97 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2631,13 +2631,13 @@ name: fifteen kg drum levelCategory: '3.3' id: un-cefact-cc-98 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2651,24 +2651,24 @@ levelCategory: '2' status: DEPRECATED commonCode: A1 name: 15 °C calorie -conversionFactor: 4,188 46 J +conversionFactor: '4,188 46 J' symbol: cal₁₅ id: un-cefact-cc-A1 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '19' -quantity: gyromagnetic coefficient, (gyromagnetic ratio) +quantity: 'gyromagnetic coefficient, (gyromagnetic ratio)' levelCategory: '1' commonCode: A10 name: ampere square metre per joule second @@ -2676,13 +2676,13 @@ conversionFactor: (A x s)/kg symbol: A·m²/(J·s) id: un-cefact-cc-A10 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2699,13 +2699,13 @@ conversionFactor: 10⁻¹⁰ m symbol: Å id: un-cefact-cc-A11 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2718,24 +2718,24 @@ quantity: >- levelCategory: '1' commonCode: A12 name: astronomical unit -conversionFactor: 1,495 978 70 × 10¹¹ m +conversionFactor: '1,495 978 70 × 10¹¹ m' symbol: ua id: un-cefact-cc-A12 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '329' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: A13 name: attojoule @@ -2743,13 +2743,13 @@ conversionFactor: 10⁻¹⁸ J symbol: aJ id: un-cefact-cc-A13 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2764,13 +2764,13 @@ conversionFactor: 10⁻²⁸ m² symbol: b id: un-cefact-cc-A14 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2785,13 +2785,13 @@ conversionFactor: "6,241\_51 x 10⁻¹⁰ m²/J" symbol: b/eV id: un-cefact-cc-A15 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2806,13 +2806,13 @@ conversionFactor: "6,241\_51 x 10⁻¹⁰ m²/(sr xJ)" symbol: b/(sr·eV) id: un-cefact-cc-A16 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2827,41 +2827,41 @@ conversionFactor: 1 x 10⁻²⁸ m²/sr symbol: b/sr id: un-cefact-cc-A17 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '47' quantity: specific activity in a sample levelCategory: '1' commonCode: A18 name: becquerel per kilogram -conversionFactor: 27,027 x 10⁻¹² Ci/kg +conversionFactor: '27,027 x 10⁻¹² Ci/kg' symbol: Bq/kg id: un-cefact-cc-A18 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '50' -quantity: volumic activity, activity concentration +quantity: 'volumic activity, activity concentration' levelCategory: '1' commonCode: A19 name: becquerel per cubic metre @@ -2869,13 +2869,13 @@ conversionFactor: Bq/m³ symbol: Bq/m³ id: un-cefact-cc-A19 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2892,13 +2892,13 @@ conversionFactor: 10² A/m symbol: A/cm id: un-cefact-cc-A2 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2911,17 +2911,17 @@ commonCode: A20 name: >- British thermal unit (international table) per second square foot degree Rankine -conversionFactor: 20 441,7 W/(m² x K) +conversionFactor: '20 441,7 W/(m² x K)' symbol: BtuIT/(s·ft²·°R) id: un-cefact-cc-A20 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2932,17 +2932,17 @@ quantity: 'specific heat capacity at: - constant pressure, -constant volume,- sa levelCategory: '2' commonCode: A21 name: British thermal unit (international table) per pound degree Rankine -conversionFactor: 4 186,8 J/(kg x K) +conversionFactor: '4 186,8 J/(kg x K)' symbol: Btu/IT(lb·°R) id: un-cefact-cc-A21 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2953,17 +2953,17 @@ quantity: thermal conductivity levelCategory: '2' commonCode: A22 name: British thermal unit (international table) per second foot degree Rankine -conversionFactor: 6 230,64 W/(m x K) +conversionFactor: '6 230,64 W/(m x K)' symbol: BtuIT/(s·ft·°R) id: un-cefact-cc-A22 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2974,17 +2974,17 @@ quantity: surface coefficient of heat transfer levelCategory: '2' commonCode: A23 name: British thermal unit (international table) per hour square foot degree Rankine -conversionFactor: 5,678 26 W/ (m² x K) +conversionFactor: '5,678 26 W/ (m² x K)' symbol: BtuIT/(h·ft²·°R) id: un-cefact-cc-A23 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -2999,13 +2999,13 @@ conversionFactor: cd/m² symbol: cd/m² id: un-cefact-cc-A24 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3017,18 +3017,18 @@ levelCategory: '2' status: DEPRECATED commonCode: A25 name: cheval vapeur -conversionFactor: 7,354 988 x 10² W +conversionFactor: '7,354 988 x 10² W' symbol: CV description: 'Synonym: metric horse power' id: un-cefact-cc-A25 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3043,17 +3043,17 @@ conversionFactor: A x s x m symbol: C·m id: un-cefact-cc-A26 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '72' quantity: electric polarizability of a molecule @@ -3064,20 +3064,20 @@ conversionFactor: A² x s⁴/kg symbol: C·m²/V id: un-cefact-cc-A27 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '29' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: A28 name: coulomb per cubic centimetre @@ -3085,20 +3085,20 @@ conversionFactor: 10⁶ C/m³ symbol: C/cm³ id: un-cefact-cc-A28 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '25' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: '1' commonCode: A29 name: coulomb per cubic metre @@ -3106,13 +3106,13 @@ conversionFactor: C/m³ symbol: C/m³ id: un-cefact-cc-A29 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3129,20 +3129,20 @@ conversionFactor: 10³ A/m symbol: A/mm id: un-cefact-cc-A3 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '27' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: A30 name: coulomb per cubic millimetre @@ -3150,13 +3150,13 @@ conversionFactor: 10⁹ C/m³ symbol: C/mm³ id: un-cefact-cc-A30 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3171,17 +3171,17 @@ conversionFactor: A/kg symbol: C/(kg·s) id: un-cefact-cc-A31 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '83' quantity: Faraday constant @@ -3192,13 +3192,13 @@ conversionFactor: "A\_x s/mol" symbol: C/mol id: un-cefact-cc-A32 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3215,13 +3215,13 @@ conversionFactor: 10⁴ C/m² symbol: C/cm² id: un-cefact-cc-A33 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3238,13 +3238,13 @@ conversionFactor: C/m² symbol: C/m² id: un-cefact-cc-A34 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3261,17 +3261,17 @@ conversionFactor: 10⁶ C/m² symbol: C/mm² id: un-cefact-cc-A35 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '15' quantity: molar volume @@ -3282,17 +3282,17 @@ conversionFactor: 10⁻⁶ m³/mol symbol: cm³/mol id: un-cefact-cc-A36 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '14' quantity: molar volume @@ -3303,13 +3303,13 @@ conversionFactor: 10⁻³ m³/mol symbol: dm³/mol id: un-cefact-cc-A37 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3324,20 +3324,20 @@ conversionFactor: m³/A x s symbol: m³/C id: un-cefact-cc-A38 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '101' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: '1' commonCode: A39 name: cubic metre per kilogram @@ -3345,13 +3345,13 @@ conversionFactor: m³/kg symbol: m³/kg id: un-cefact-cc-A39 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3366,17 +3366,17 @@ conversionFactor: 10⁴ A/m² symbol: A/cm² id: un-cefact-cc-A4 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '13' quantity: molar volume @@ -3387,13 +3387,13 @@ conversionFactor: m³/mol symbol: m³/mol id: un-cefact-cc-A40 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3408,34 +3408,34 @@ conversionFactor: A/m² symbol: A/m² id: un-cefact-cc-A41 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '46' quantity: specific activity in a sample levelCategory: '2' commonCode: A42 name: curie per kilogram -conversionFactor: 3,7 x 10¹⁰ Bq/kg +conversionFactor: '3,7 x 10¹⁰ Bq/kg' symbol: Ci/kg id: un-cefact-cc-A42 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3449,13 +3449,13 @@ levelCategory: '3.4' symbol: dwt id: un-cefact-cc-A43 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3470,13 +3470,13 @@ conversionFactor: 10⁻² m³ symbol: dal id: un-cefact-cc-A44 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3493,13 +3493,13 @@ conversionFactor: 10 m symbol: dam id: un-cefact-cc-A45 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3512,13 +3512,13 @@ levelCategory: '3.5' symbol: dtex (g/10km) id: un-cefact-cc-A47 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3534,13 +3534,13 @@ symbol: °R description: 'Refer ISO 80000-5 (Quantities and units — Part 5: Thermodynamics)' id: un-cefact-cc-A48 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3553,20 +3553,20 @@ levelCategory: '3.5' symbol: den (g/9 km) id: un-cefact-cc-A49 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '127' -quantity: electromagnetic moment, magnetic moment, (magnetic area moment) +quantity: 'electromagnetic moment, magnetic moment, (magnetic area moment)' levelCategory: '1' commonCode: A5 name: ampere square metre @@ -3574,13 +3574,13 @@ conversionFactor: A x m² symbol: A·m² id: un-cefact-cc-A5 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3596,13 +3596,13 @@ conversionFactor: 10 Pa x s/m symbol: dyn·s/cm³ id: un-cefact-cc-A50 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3618,13 +3618,13 @@ conversionFactor: 10⁻³ N x s/m symbol: dyn·s/cm id: un-cefact-cc-A51 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3640,34 +3640,34 @@ conversionFactor: 10⁵ Pa x s/m³ symbol: dyn·s/cm⁵ id: un-cefact-cc-A52 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '335' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '1' commonCode: A53 name: electronvolt -conversionFactor: 1,602 176 487 x 10⁻¹⁹ J +conversionFactor: '1,602 176 487 x 10⁻¹⁹ J' symbol: eV id: un-cefact-cc-A53 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3678,17 +3678,17 @@ quantity: total linear stopping power levelCategory: '1' commonCode: A54 name: electronvolt per metre -conversionFactor: 1,602 176 487 x 10⁻¹⁹ J/m +conversionFactor: '1,602 176 487 x 10⁻¹⁹ J/m' symbol: eV/m id: un-cefact-cc-A54 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3699,17 +3699,17 @@ quantity: total atomic stopping power levelCategory: '1' commonCode: A55 name: electronvolt square metre -conversionFactor: 1,602 176 487 x 10⁻¹⁹ J x m² +conversionFactor: '1,602 176 487 x 10⁻¹⁹ J x m²' symbol: eV·m² id: un-cefact-cc-A55 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3720,24 +3720,24 @@ quantity: total mass stopping power levelCategory: '1' commonCode: A56 name: electronvolt square metre per kilogram -conversionFactor: 1,602 176 487 x 10⁻¹⁹ J x m²/kg +conversionFactor: '1,602 176 487 x 10⁻¹⁹ J x m²/kg' symbol: eV·m²/kg id: un-cefact-cc-A56 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '339' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '2' status: DEPRECATED commonCode: A57 @@ -3746,13 +3746,13 @@ conversionFactor: 10⁻⁷J symbol: erg id: un-cefact-cc-A57 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3768,13 +3768,13 @@ conversionFactor: 10⁻⁵ J/m symbol: erg/cm id: un-cefact-cc-A58 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3788,13 +3788,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-A59 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3809,20 +3809,20 @@ conversionFactor: A/(m² x K²) symbol: A/(m²·K²) id: un-cefact-cc-A6 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '07' sector: ACOUSTICS groupId: '20' -quantity: sound energy density, volumic, sound energy +quantity: 'sound energy density, volumic, sound energy' levelCategory: '2' status: DEPRECATED commonCode: A60 @@ -3831,13 +3831,13 @@ conversionFactor: 10⁻¹ J/m³ symbol: erg/cm³ id: un-cefact-cc-A60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3853,13 +3853,13 @@ conversionFactor: 10⁻⁴ J/kg symbol: erg/g id: un-cefact-cc-A61 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3875,13 +3875,13 @@ conversionFactor: 10⁻⁴ W/kg symbol: erg/g·s id: un-cefact-cc-A62 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3897,13 +3897,13 @@ conversionFactor: 10⁻⁷ W symbol: erg/s id: un-cefact-cc-A63 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3919,20 +3919,20 @@ conversionFactor: 10⁻³ W/m² symbol: erg/(s·cm²) id: un-cefact-cc-A64 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '10' sector: NUCLEAR_REACTIONS_AND_IONIZING_RADIATIONS groupId: '20' -quantity: energy fluence rate, (energy flux density) +quantity: 'energy fluence rate, (energy flux density)' levelCategory: '2' status: DEPRECATED commonCode: A65 @@ -3941,13 +3941,13 @@ conversionFactor: 10⁻³ W/m² symbol: erg/(cm²·s) id: un-cefact-cc-A65 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3963,13 +3963,13 @@ conversionFactor: 10⁻¹¹ J x m² symbol: erg·cm² id: un-cefact-cc-A66 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -3985,20 +3985,20 @@ conversionFactor: 10⁻⁸ J x m²/kg symbol: erg·cm²/g id: un-cefact-cc-A67 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '322' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: A68 name: exajoule @@ -4006,20 +4006,20 @@ conversionFactor: 10¹⁸ J symbol: EJ id: un-cefact-cc-A68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '70' -quantity: permittivity, permittivity of vacuum, (electric constant) +quantity: 'permittivity, permittivity of vacuum, (electric constant)' levelCategory: '1' commonCode: A69 name: farad per metre @@ -4027,13 +4027,13 @@ conversionFactor: kg⁻¹ x m⁻³ x s⁴ x A² symbol: F/m id: un-cefact-cc-A69 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4048,20 +4048,20 @@ conversionFactor: 10⁶ A/m² symbol: A/mm² id: un-cefact-cc-A7 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '328' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: A70 name: femtojoule @@ -4069,13 +4069,13 @@ conversionFactor: 10⁻¹⁵ J symbol: fJ id: un-cefact-cc-A70 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4092,34 +4092,34 @@ conversionFactor: 10⁻¹⁵ m symbol: fm id: un-cefact-cc-A71 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '214' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: '2' commonCode: A73 name: foot per second squared -conversionFactor: 0,304 8 m/s² +conversionFactor: '0,304 8 m/s²' symbol: ft/s² id: un-cefact-cc-A73 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4130,17 +4130,17 @@ quantity: power levelCategory: '2' commonCode: A74 name: foot pound-force per second -conversionFactor: 1,355 818 W +conversionFactor: '1,355 818 W' symbol: ft·lbf/s id: un-cefact-cc-A74 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4153,20 +4153,20 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-A75 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '209' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: 1S commonCode: A76 name: gal @@ -4174,13 +4174,13 @@ conversionFactor: 10⁻² m/s² symbol: Gal id: un-cefact-cc-A76 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4190,13 +4190,13 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of displacement levelCategory: '3.5' id: un-cefact-cc-A77 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4206,13 +4206,13 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of electric current levelCategory: '3.5' id: un-cefact-cc-A78 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4222,20 +4222,20 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of electric charge levelCategory: '3.5' id: un-cefact-cc-A79 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '12' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: '1' commonCode: A8 name: ampere second @@ -4243,13 +4243,13 @@ conversionFactor: C symbol: A·s id: un-cefact-cc-A8 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4259,13 +4259,13 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of electric field streng levelCategory: '3.5' id: un-cefact-cc-A80 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4275,13 +4275,13 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of electric polarization levelCategory: '3.5' id: un-cefact-cc-A81 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4291,13 +4291,13 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of electric potential levelCategory: '3.5' id: un-cefact-cc-A82 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4307,20 +4307,20 @@ name: Gaussian CGS (Centimetre-Gram-Second system) unit of magnetization levelCategory: '3.5' id: un-cefact-cc-A83 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '26' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: A84 name: gigacoulomb per cubic metre @@ -4328,20 +4328,20 @@ conversionFactor: "10⁹\_C/m³" symbol: GC/m³ id: un-cefact-cc-A84 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '337' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: A85 name: gigaelectronvolt @@ -4349,13 +4349,13 @@ conversionFactor: "10⁹\_eV" symbol: GeV id: un-cefact-cc-A85 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4370,13 +4370,13 @@ conversionFactor: "10⁹\_Hz" symbol: GHz id: un-cefact-cc-A86 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4393,13 +4393,13 @@ conversionFactor: "10⁹\_Ω" symbol: GΩ id: un-cefact-cc-A87 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4414,13 +4414,13 @@ conversionFactor: "10⁹\_Ω x m" symbol: GΩ·m id: un-cefact-cc-A88 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4437,13 +4437,13 @@ conversionFactor: "10⁹\_Pa" symbol: GPa id: un-cefact-cc-A89 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4453,13 +4453,13 @@ description: A unit of quantity expressed as a rate for usage of a facility or s levelCategory: '3.9' id: un-cefact-cc-A9 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4474,13 +4474,13 @@ conversionFactor: "10⁹\_W" symbol: GW id: un-cefact-cc-A90 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4495,20 +4495,20 @@ name: grade conversionFactor: '= gon' id: un-cefact-cc-A91 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '35' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: A93 name: gram per cubic metre @@ -4516,17 +4516,17 @@ conversionFactor: 10⁻³ kg/m³ symbol: g/m³ id: un-cefact-cc-A93 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '12' quantity: molar mass @@ -4537,20 +4537,20 @@ conversionFactor: 10⁻³ kg/mol symbol: g/mol id: un-cefact-cc-A94 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '10' sector: NUCLEAR_REACTIONS_AND_IONIZING_RADIATIONS groupId: '62' -quantity: specific energy imparted, massic energy imparted +quantity: 'specific energy imparted, massic energy imparted' levelCategory: '1' commonCode: A95 name: gray @@ -4558,13 +4558,13 @@ conversionFactor: m²/s² symbol: Gy id: un-cefact-cc-A95 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4579,13 +4579,13 @@ conversionFactor: m²/s³ symbol: Gy/s id: un-cefact-cc-A96 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4602,20 +4602,20 @@ conversionFactor: 10² Pa symbol: hPa id: un-cefact-cc-A97 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '122' -quantity: permeability, permeability of vacuum, magnetic constant +quantity: 'permeability, permeability of vacuum, magnetic constant' levelCategory: '1' commonCode: A98 name: henry per metre @@ -4623,13 +4623,13 @@ conversionFactor: H/m symbol: H/m id: un-cefact-cc-A98 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4640,13 +4640,13 @@ levelCategory: '3.6' symbol: bit id: un-cefact-cc-A99 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4658,13 +4658,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-AA meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4675,13 +4675,13 @@ levelCategory: '3.9' symbol: pk id: un-cefact-cc-AB meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4692,17 +4692,17 @@ quantity: area levelCategory: '2' commonCode: ACR name: acre -conversionFactor: 4 046,873 m² +conversionFactor: '4 046,873 m²' symbol: acre id: un-cefact-cc-ACR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4714,13 +4714,13 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-ACT meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4731,13 +4731,13 @@ levelCategory: '3.6' symbol: byte id: un-cefact-cc-AD meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4754,13 +4754,13 @@ conversionFactor: A/m symbol: A/m id: un-cefact-cc-AE meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4772,13 +4772,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-AH meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4790,13 +4790,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-AI meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4806,13 +4806,13 @@ name: cop levelCategory: '3.9' id: un-cefact-cc-AJ meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4825,17 +4825,17 @@ quantity: >- levelCategory: '2' commonCode: AK name: fathom -conversionFactor: 1,828 8 m +conversionFactor: '1,828 8 m' symbol: fth id: un-cefact-cc-AK meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4845,13 +4845,13 @@ description: A unit of count defining the number of telephone access lines. levelCategory: '3.5' id: un-cefact-cc-AL meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4864,37 +4864,37 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-AM meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '14' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1M commonCode: AMH name: ampere hour -conversionFactor: 3,6 x 10³ C +conversionFactor: '3,6 x 10³ C' symbol: A·h description: >- A unit of electric charge defining the amount of charge accumulated by a steady flow of one ampere for one hour. id: un-cefact-cc-AMH meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4911,13 +4911,13 @@ conversionFactor: A symbol: A id: un-cefact-cc-AMP meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4928,20 +4928,20 @@ quantity: time levelCategory: '2' commonCode: ANN name: year -conversionFactor: 3,155 76 x 10⁷ s +conversionFactor: '3,155 76 x 10⁷ s' symbol: 'y' description: |- Unit of time equal to 365,25 days. Synonym: Julian year id: un-cefact-cc-ANN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4951,13 +4951,13 @@ name: aluminium pound only levelCategory: '3.1' id: un-cefact-cc-AP meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4972,13 +4972,13 @@ conversionFactor: "3,110 348 x 10⁻³\_kg" symbol: tr oz id: un-cefact-cc-APZ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -4988,13 +4988,13 @@ description: A unit of measure for blood potency (US). levelCategory: '3.9' id: un-cefact-cc-AQ meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5004,13 +5004,13 @@ name: suppository levelCategory: '3.3' id: un-cefact-cc-AR meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5027,13 +5027,13 @@ symbol: a description: 'Synonym: square decametre' id: un-cefact-cc-ARE meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5045,13 +5045,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-AS meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5061,13 +5061,13 @@ description: A unit of mass defining the alcoholic strength of a liquid. levelCategory: '3.5' id: un-cefact-cc-ASM meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5079,13 +5079,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-ASU meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5102,13 +5102,13 @@ conversionFactor: 1 013 25 Pa symbol: atm id: un-cefact-cc-ATM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5122,17 +5122,17 @@ levelCategory: '2' status: DEPRECATED commonCode: ATT name: technical atmosphere -conversionFactor: 98 066,5 Pa +conversionFactor: '98 066,5 Pa' symbol: at id: un-cefact-cc-ATT meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5145,13 +5145,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-AV meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5161,13 +5161,13 @@ name: powder filled vial levelCategory: '3.3' id: un-cefact-cc-AW meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5186,13 +5186,13 @@ description: >- such as the outer diameter od hypodermic or suture needles. id: un-cefact-cc-AWG meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5204,13 +5204,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-AY meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5225,13 +5225,13 @@ conversionFactor: 2 326 J/kg symbol: BtuIT/lb id: un-cefact-cc-AZ meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5242,13 +5242,13 @@ levelCategory: '3.9' symbol: BTU/ft³ id: un-cefact-cc-B0 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5256,16 +5256,16 @@ commonCode: B1 name: barrel (US) per day levelCategory: '3.5' symbol: "barrel\_(US)/d" -conversionFactor: 1,840 13 x 10⁻⁶ m³/s +conversionFactor: '1,840 13 x 10⁻⁶ m³/s' id: un-cefact-cc-B1 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5276,13 +5276,13 @@ levelCategory: '3.6' symbol: bit/s id: un-cefact-cc-B10 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5297,13 +5297,13 @@ conversionFactor: J/(kg x K) symbol: J/(kg·K) id: un-cefact-cc-B11 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5318,20 +5318,20 @@ conversionFactor: J/m symbol: J/m id: un-cefact-cc-B12 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '15' -quantity: radiant energy fluence, radiance exposure +quantity: 'radiant energy fluence, radiance exposure' levelCategory: '1' commonCode: B13 name: joule per square metre @@ -5340,13 +5340,13 @@ symbol: J/m² description: 'Synonym: joule per metre squared' id: un-cefact-cc-B13 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5363,17 +5363,17 @@ conversionFactor: J/m⁴ symbol: J/m⁴ id: un-cefact-cc-B14 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '17' quantity: molar thermodynamic energy @@ -5384,20 +5384,20 @@ conversionFactor: J/mol symbol: J/mol id: un-cefact-cc-B15 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '23' -quantity: molar heat capacity, molar entropy, molar gas constant +quantity: 'molar heat capacity, molar entropy, molar gas constant' levelCategory: '1' commonCode: B16 name: joule per mole kelvin @@ -5405,13 +5405,13 @@ conversionFactor: J/(mol x K) symbol: J/(mol·K) id: un-cefact-cc-B16 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5423,17 +5423,17 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-B17 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '13' quantity: Planck constant @@ -5444,13 +5444,13 @@ conversionFactor: J x s symbol: J·s id: un-cefact-cc-B18 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5460,13 +5460,13 @@ description: A unit of information defining the quantity of numerals used to for levelCategory: '3.7' id: un-cefact-cc-B19 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5476,13 +5476,13 @@ name: bunk levelCategory: '3.9' id: un-cefact-cc-B2 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5497,13 +5497,13 @@ conversionFactor: J x m²/kg symbol: J·m²/kg id: un-cefact-cc-B20 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5518,13 +5518,13 @@ conversionFactor: K/W symbol: K/W id: un-cefact-cc-B21 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5541,13 +5541,13 @@ conversionFactor: 10³ A symbol: kA id: un-cefact-cc-B22 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5562,13 +5562,13 @@ conversionFactor: 10³ A/m² symbol: kA/m² id: un-cefact-cc-B23 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5585,17 +5585,17 @@ conversionFactor: 10³ A/m symbol: kA/m id: un-cefact-cc-B24 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '49' quantity: specific activity in a sample @@ -5606,20 +5606,20 @@ conversionFactor: 10³ Bq/kg symbol: kBq/kg id: un-cefact-cc-B25 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '18' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1S commonCode: B26 name: kilocoulomb @@ -5627,20 +5627,20 @@ conversionFactor: 10³ C symbol: kC id: un-cefact-cc-B26 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '30' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: B27 name: kilocoulomb per cubic metre @@ -5648,13 +5648,13 @@ conversionFactor: 10³ C/m³ symbol: kC/m³ id: un-cefact-cc-B27 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5671,20 +5671,20 @@ conversionFactor: 10³ C/m² symbol: kC/m² id: un-cefact-cc-B28 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '338' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: B29 name: kiloelectronvolt @@ -5692,13 +5692,13 @@ conversionFactor: 10³ eV symbol: keV id: un-cefact-cc-B29 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5708,13 +5708,13 @@ description: A unit of mass defining the number of pounds of wadded fibre. levelCategory: '3.1' id: un-cefact-cc-B3 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5725,13 +5725,13 @@ levelCategory: '3.6' symbol: Gibit id: un-cefact-cc-B30 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5746,13 +5746,13 @@ conversionFactor: kg x m/s symbol: kg·m/s id: un-cefact-cc-B31 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5767,20 +5767,20 @@ conversionFactor: kg x m² symbol: kg·m² id: un-cefact-cc-B32 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '133' -quantity: moment of momentum, angular momentum +quantity: 'moment of momentum, angular momentum' levelCategory: '1' commonCode: B33 name: kilogram metre squared per second @@ -5788,20 +5788,20 @@ conversionFactor: kg x m²/s symbol: kg·m²/s id: un-cefact-cc-B33 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '38' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: B34 name: kilogram per cubic decimetre @@ -5809,20 +5809,20 @@ conversionFactor: 10³ kg/m³ symbol: kg/dm³ id: un-cefact-cc-B34 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '33' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: B35 name: kilogram per litre @@ -5830,13 +5830,13 @@ conversionFactor: 10³ kg/m³ symbol: kg/l or kg/L id: un-cefact-cc-B35 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5854,57 +5854,57 @@ conversionFactor: 4 184 J/kg symbol: calth/g id: un-cefact-cc-B36 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '144' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' status: DEPRECATED commonCode: B37 name: kilogram-force -conversionFactor: 9,806 65 N +conversionFactor: '9,806 65 N' symbol: kgf id: un-cefact-cc-B37 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '171' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' status: DEPRECATED commonCode: B38 name: kilogram-force metre -conversionFactor: 9,806 65 N x m +conversionFactor: '9,806 65 N x m' symbol: kgf·m id: un-cefact-cc-B38 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5916,35 +5916,35 @@ levelCategory: '2' status: DEPRECATED commonCode: B39 name: kilogram-force metre per second -conversionFactor: 9,806 65 W +conversionFactor: '9,806 65 W' symbol: kgf·m/s id: un-cefact-cc-B39 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: B4 -name: barrel, imperial +name: 'barrel, imperial' description: >- A unit of volume used to measure beer. One beer barrel equals 36 imperial gallons. levelCategory: '3.5' id: un-cefact-cc-B4 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -5958,24 +5958,24 @@ levelCategory: '2' status: DEPRECATED commonCode: B40 name: kilogram-force per square metre -conversionFactor: 9,806 65 Pa +conversionFactor: '9,806 65 Pa' symbol: kgf/m² id: un-cefact-cc-B40 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '118' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: 1S commonCode: B41 name: kilojoule per kelvin @@ -5983,20 +5983,20 @@ conversionFactor: 10³ J/K symbol: kJ/K id: un-cefact-cc-B41 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '139' -quantity: massic enthalpy, specific enthalpy +quantity: 'massic enthalpy, specific enthalpy' levelCategory: 1S commonCode: B42 name: kilojoule per kilogram @@ -6004,13 +6004,13 @@ conversionFactor: 10³ J/kg symbol: kJ/kg id: un-cefact-cc-B42 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6025,17 +6025,17 @@ conversionFactor: 10³ J/(kg x K) symbol: kJ/(kg·K) id: un-cefact-cc-B43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '18' quantity: molar thermodynamic energy @@ -6046,17 +6046,17 @@ conversionFactor: 10³ J/mol symbol: kJ/mol id: un-cefact-cc-B44 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '6' quantity: amount of substance @@ -6067,17 +6067,17 @@ conversionFactor: 10³ mol symbol: kmol id: un-cefact-cc-B45 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '36' quantity: >- @@ -6090,20 +6090,20 @@ conversionFactor: 10³ mol/m³ symbol: kmol/m³ id: un-cefact-cc-B46 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '139' -quantity: force, weight +quantity: 'force, weight' levelCategory: 1S commonCode: B47 name: kilonewton @@ -6111,20 +6111,20 @@ conversionFactor: 10³ N symbol: kN id: un-cefact-cc-B47 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '158' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: B48 name: kilonewton metre @@ -6132,13 +6132,13 @@ conversionFactor: 10³ N x m symbol: kN·m id: un-cefact-cc-B48 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6155,13 +6155,13 @@ conversionFactor: 10³ Ω symbol: kΩ id: un-cefact-cc-B49 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6171,13 +6171,13 @@ name: billet levelCategory: '3.9' id: un-cefact-cc-B5 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6192,36 +6192,36 @@ conversionFactor: 10³ Ω x m symbol: kΩ·m id: un-cefact-cc-B50 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '145' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' status: DEPRECATED commonCode: B51 name: kilopond -conversionFactor: 9,806 65 N +conversionFactor: '9,806 65 N' symbol: kp description: 'Synonym: kilogram-force' id: un-cefact-cc-B51 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6236,13 +6236,13 @@ conversionFactor: 10³ s symbol: ks id: un-cefact-cc-B52 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6259,13 +6259,13 @@ conversionFactor: 10³ S symbol: kS id: un-cefact-cc-B53 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6280,13 +6280,13 @@ conversionFactor: 10³ S/m symbol: kS/m id: un-cefact-cc-B54 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6301,13 +6301,13 @@ conversionFactor: 10³ V/m symbol: kV/m id: un-cefact-cc-B55 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6322,13 +6322,13 @@ conversionFactor: 10³ Wb/m symbol: kWb/m id: un-cefact-cc-B56 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6341,24 +6341,24 @@ quantity: >- levelCategory: '2' commonCode: B57 name: light year -conversionFactor: 9,460 73 x 10¹⁵ m +conversionFactor: '9,460 73 x 10¹⁵ m' symbol: ly description: >- A unit of length defining the distance that light travels in a vacuum in one year. id: un-cefact-cc-B57 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '16' quantity: molar volume @@ -6369,13 +6369,13 @@ conversionFactor: 10⁻³ m³/mol symbol: l/mol id: un-cefact-cc-B58 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6386,17 +6386,17 @@ quantity: quantity of light levelCategory: 1S commonCode: B59 name: lumen hour -conversionFactor: 3,6 x 10³ s x cd x sr +conversionFactor: '3,6 x 10³ s x cd x sr' symbol: lm·h id: un-cefact-cc-B59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6406,13 +6406,13 @@ name: bun levelCategory: '3.9' id: un-cefact-cc-B6 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6427,13 +6427,13 @@ conversionFactor: cd x sr/m² symbol: lm/m² id: un-cefact-cc-B60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6450,13 +6450,13 @@ conversionFactor: cd x sr/W symbol: lm/W id: un-cefact-cc-B61 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6471,13 +6471,13 @@ conversionFactor: s x cd x sr symbol: lm·s id: un-cefact-cc-B62 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6488,17 +6488,17 @@ quantity: light exposure levelCategory: 1S commonCode: B63 name: lux hour -conversionFactor: 3,6 x 10³ s x cd x sr / m² +conversionFactor: '3,6 x 10³ s x cd x sr / m²' symbol: lx·h id: un-cefact-cc-B63 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6513,13 +6513,13 @@ conversionFactor: s x cd x sr / m² symbol: lx·s id: un-cefact-cc-B64 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6531,13 +6531,13 @@ symbol: Mx conversionFactor: 10⁻⁸ Wb id: un-cefact-cc-B65 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6552,17 +6552,17 @@ conversionFactor: 10⁶ A/m² symbol: MA/m² id: un-cefact-cc-B66 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '48' quantity: specific activity in a sample @@ -6573,13 +6573,13 @@ conversionFactor: 10⁶ Bq/kg symbol: MBq/kg id: un-cefact-cc-B67 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6590,20 +6590,20 @@ levelCategory: '3.6' symbol: Gbit id: un-cefact-cc-B68 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '28' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: B69 name: megacoulomb per cubic metre @@ -6611,13 +6611,13 @@ conversionFactor: 10⁶ C/m³ symbol: MC/m³ id: un-cefact-cc-B69 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6629,13 +6629,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-B7 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6652,20 +6652,20 @@ conversionFactor: 10⁶ C/m² symbol: MC/m² id: un-cefact-cc-B70 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '336' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: B71 name: megaelectronvolt @@ -6673,20 +6673,20 @@ conversionFactor: 10⁶ eV symbol: MeV id: un-cefact-cc-B71 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '37' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: B72 name: megagram per cubic metre @@ -6694,20 +6694,20 @@ conversionFactor: 10³ kg/m³ symbol: Mg/m³ id: un-cefact-cc-B72 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '138' -quantity: force, weight +quantity: 'force, weight' levelCategory: 1S commonCode: B73 name: meganewton @@ -6715,20 +6715,20 @@ conversionFactor: 10⁶ N symbol: MN id: un-cefact-cc-B73 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '157' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: B74 name: meganewton metre @@ -6736,13 +6736,13 @@ conversionFactor: 10⁶ N x m symbol: MN·m id: un-cefact-cc-B74 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6759,13 +6759,13 @@ conversionFactor: 10⁶ Ω symbol: MΩ id: un-cefact-cc-B75 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6780,13 +6780,13 @@ conversionFactor: 10⁶ Ω x m symbol: MΩ·m id: un-cefact-cc-B76 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6801,13 +6801,13 @@ conversionFactor: 10⁶ S/m symbol: MS/m id: un-cefact-cc-B77 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6824,13 +6824,13 @@ conversionFactor: 10⁶ V symbol: MV id: un-cefact-cc-B78 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6845,20 +6845,20 @@ conversionFactor: 10⁶ V/m symbol: MV/m id: un-cefact-cc-B79 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '129' -quantity: electromagnetic energy density, volumic electromagnetic energy +quantity: 'electromagnetic energy density, volumic electromagnetic energy' levelCategory: '1' commonCode: B8 name: joule per cubic metre @@ -6866,13 +6866,13 @@ conversionFactor: J/m³ symbol: J/m³ id: un-cefact-cc-B8 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6883,13 +6883,13 @@ levelCategory: '3.6' symbol: Gbit/s id: un-cefact-cc-B80 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6906,13 +6906,13 @@ conversionFactor: m⁻²/s symbol: m⁻²/s id: un-cefact-cc-B81 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6922,20 +6922,20 @@ description: A unit of length defining the number of inches per linear foot. levelCategory: '3.1' id: un-cefact-cc-B82 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '264' -quantity: second moment of area, second axial moment of area +quantity: 'second moment of area, second axial moment of area' levelCategory: '1' commonCode: B83 name: metre to the fourth power @@ -6943,13 +6943,13 @@ conversionFactor: m⁴ symbol: m⁴ id: un-cefact-cc-B83 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6966,13 +6966,13 @@ conversionFactor: 10⁻⁶ A symbol: µA id: un-cefact-cc-B84 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -6989,20 +6989,20 @@ conversionFactor: 10⁻¹ Pa symbol: µbar id: un-cefact-cc-B85 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '19' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1S commonCode: B86 name: microcoulomb @@ -7010,20 +7010,20 @@ conversionFactor: 10⁻⁶ C symbol: µC id: un-cefact-cc-B86 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '32' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: B87 name: microcoulomb per cubic metre @@ -7031,13 +7031,13 @@ conversionFactor: 10⁻⁶ C/m³ symbol: µC/m³ id: un-cefact-cc-B87 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7054,20 +7054,20 @@ conversionFactor: 10⁻⁶ C/m² symbol: µC/m² id: un-cefact-cc-B88 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '73' -quantity: permittivity, permittivity of vacuum, (electric constant) +quantity: 'permittivity, permittivity of vacuum, (electric constant)' levelCategory: 1S commonCode: B89 name: microfarad per metre @@ -7075,13 +7075,13 @@ conversionFactor: 10⁻⁶ F/m symbol: µF/m id: un-cefact-cc-B89 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7091,20 +7091,20 @@ name: batt levelCategory: '3.9' id: un-cefact-cc-B9 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '110' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1S commonCode: B90 name: microhenry @@ -7112,20 +7112,20 @@ conversionFactor: 10⁻⁶ H symbol: µH id: un-cefact-cc-B90 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '123' -quantity: permeability, permeability of vacuum, magnetic constant +quantity: 'permeability, permeability of vacuum, magnetic constant' levelCategory: 1S commonCode: B91 name: microhenry per metre @@ -7133,20 +7133,20 @@ conversionFactor: 10⁻⁶ H/m symbol: µH/m id: un-cefact-cc-B91 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '141' -quantity: force, weight +quantity: 'force, weight' levelCategory: 1S commonCode: B92 name: micronewton @@ -7154,20 +7154,20 @@ conversionFactor: 10⁻⁶ N symbol: µN id: un-cefact-cc-B92 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '160' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: B93 name: micronewton metre @@ -7175,13 +7175,13 @@ conversionFactor: 10⁻⁶ N x m symbol: µN·m id: un-cefact-cc-B93 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7198,13 +7198,13 @@ conversionFactor: 10⁻⁶ Ω symbol: µΩ id: un-cefact-cc-B94 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7219,13 +7219,13 @@ conversionFactor: 10⁻⁶ Ω x m symbol: µΩ·m id: un-cefact-cc-B95 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7242,13 +7242,13 @@ conversionFactor: 10⁻⁶ Pa symbol: µPa id: un-cefact-cc-B96 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7263,13 +7263,13 @@ conversionFactor: 10⁻⁶ rad symbol: µrad id: un-cefact-cc-B97 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7284,13 +7284,13 @@ conversionFactor: 10⁻⁶ s symbol: µs id: un-cefact-cc-B98 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7307,13 +7307,13 @@ conversionFactor: 10⁻⁶ S symbol: µS id: un-cefact-cc-B99 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7325,18 +7325,18 @@ quantity: >- modulus of rigidity, bulk modulus, modulus of compression levelCategory: '1' commonCode: BAR -name: bar [unit of pressure] +name: 'bar [unit of pressure]' conversionFactor: 10⁵ Pa symbol: bar id: un-cefact-cc-BAR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7348,13 +7348,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-BB meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7367,13 +7367,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BD meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7386,13 +7386,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BE meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7405,13 +7405,13 @@ levelCategory: '3.5' symbol: fbm id: un-cefact-cc-BFT meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7424,13 +7424,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BG meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7440,13 +7440,13 @@ name: brush levelCategory: '3.9' id: un-cefact-cc-BH meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7457,17 +7457,17 @@ quantity: power levelCategory: '2' commonCode: BHP name: brake horse power -conversionFactor: 7,457 x 10² W +conversionFactor: '7,457 x 10² W' symbol: BHP id: un-cefact-cc-BHP meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7478,13 +7478,13 @@ levelCategory: '3.7' conversionFactor: 10¹² id: un-cefact-cc-BIL meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7497,13 +7497,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BJ meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7516,13 +7516,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BK meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7535,13 +7535,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BL meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7552,17 +7552,17 @@ quantity: volume levelCategory: '2' commonCode: BLD name: dry barrel (US) -conversionFactor: 1,156 27 x 10⁻¹ m³ +conversionFactor: '1,156 27 x 10⁻¹ m³' symbol: bbl (US) id: un-cefact-cc-BLD meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7573,17 +7573,17 @@ quantity: volume levelCategory: '2' commonCode: BLL name: barrel (US) -conversionFactor: 158,987 3 x 10⁻³ m³ +conversionFactor: '158,987 3 x 10⁻³ m³' symbol: barrel (US) id: un-cefact-cc-BLL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7596,13 +7596,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BO meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7612,13 +7612,13 @@ description: A unit of volume equal to one hundred board foot. levelCategory: '3.5' id: un-cefact-cc-BP meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7630,53 +7630,53 @@ symbol: BPM conversionFactor: 1.667 x 10-2 /s id: un-cefact-cc-BPM meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '41' quantity: activity levelCategory: '1' commonCode: BQL name: becquerel -conversionFactor: 27,027 x 10⁻¹² Ci +conversionFactor: '27,027 x 10⁻¹² Ci' symbol: Bq id: un-cefact-cc-BQL meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- status: MARKED_AS_DELETED commonCode: BR -name: bar [unit of packaging] +name: 'bar [unit of packaging]' description: >- Use UN/ECE Recommendation 21 (refer to Note 2 in the spreadsheet introduction, 1st sheet). levelCategory: '3.3' id: un-cefact-cc-BR meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7689,13 +7689,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BT meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7708,17 +7708,17 @@ quantity: >- levelCategory: '2' commonCode: BTU name: British thermal unit (international table) -conversionFactor: 1,055 056 x 10³ J +conversionFactor: '1,055 056 x 10³ J' symbol: BtuIT id: un-cefact-cc-BTU meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7729,17 +7729,17 @@ quantity: volume levelCategory: '2' commonCode: BUA name: bushel (US) -conversionFactor: 3,523 907 x 10⁻² m³ +conversionFactor: '3,523 907 x 10⁻² m³' symbol: bu (US) id: un-cefact-cc-BUA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7750,17 +7750,17 @@ quantity: volume levelCategory: '2' commonCode: BUI name: bushel (UK) -conversionFactor: 3,636 872 x 10⁻² m³ +conversionFactor: '3,636 872 x 10⁻² m³' symbol: bushel (UK) id: un-cefact-cc-BUI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7770,13 +7770,13 @@ name: base weight levelCategory: '3.9' id: un-cefact-cc-BW meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7789,13 +7789,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-BX meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7805,13 +7805,13 @@ name: million BTUs levelCategory: '3.8' id: un-cefact-cc-BZ meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7823,13 +7823,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-C0 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7839,13 +7839,13 @@ name: composite product pound (total weight) levelCategory: '3.9' id: un-cefact-cc-C1 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -7860,20 +7860,20 @@ conversionFactor: 10⁻³ F symbol: mF id: un-cefact-cc-C10 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '210' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: 1M commonCode: C11 name: milligal @@ -7881,20 +7881,20 @@ conversionFactor: 10⁻⁵ m/s² symbol: mGal id: un-cefact-cc-C11 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '114' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: 1S commonCode: C12 name: milligram per metre @@ -7902,20 +7902,20 @@ conversionFactor: 10⁻⁶ kg/m symbol: mg/m id: un-cefact-cc-C12 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '10' sector: NUCLEAR_REACTIONS_AND_IONIZING_RADIATIONS groupId: '63' -quantity: specific energy imparted, massic energy imparted +quantity: 'specific energy imparted, massic energy imparted' levelCategory: 1S commonCode: C13 name: milligray @@ -7923,20 +7923,20 @@ conversionFactor: 10⁻³ Gy symbol: mGy id: un-cefact-cc-C13 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '109' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1S commonCode: C14 name: millihenry @@ -7944,20 +7944,20 @@ conversionFactor: 10⁻³ H symbol: mH id: un-cefact-cc-C14 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '327' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: C15 name: millijoule @@ -7965,20 +7965,20 @@ conversionFactor: 10⁻³ J symbol: mJ id: un-cefact-cc-C15 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '176' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1S commonCode: C16 name: millimetre per second @@ -7986,13 +7986,13 @@ conversionFactor: 10⁻³ m/s symbol: mm/s id: un-cefact-cc-C16 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8007,17 +8007,17 @@ conversionFactor: 10⁻⁶ m²/s symbol: mm²/s id: un-cefact-cc-C17 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '7' quantity: amount of substance @@ -8028,17 +8028,17 @@ conversionFactor: 10⁻³ mol symbol: mmol id: un-cefact-cc-C18 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '51' quantity: molality of solute B @@ -8049,13 +8049,13 @@ conversionFactor: mol/kg symbol: mol/kg id: un-cefact-cc-C19 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8065,20 +8065,20 @@ name: carset levelCategory: '3.5' id: un-cefact-cc-C2 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '140' -quantity: force, weight +quantity: 'force, weight' levelCategory: 1S commonCode: C20 name: millinewton @@ -8086,13 +8086,13 @@ conversionFactor: 10⁻³ N symbol: mN id: un-cefact-cc-C20 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8103,13 +8103,13 @@ levelCategory: '3.6' symbol: Kibit id: un-cefact-cc-C21 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8124,13 +8124,13 @@ conversionFactor: 10⁻³ N/m symbol: mN/m id: un-cefact-cc-C22 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8145,13 +8145,13 @@ conversionFactor: 10⁻³ Ω x m symbol: mΩ·m id: un-cefact-cc-C23 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8166,13 +8166,13 @@ conversionFactor: 10⁻³ Pa x s symbol: mPa·s id: un-cefact-cc-C24 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8187,13 +8187,13 @@ conversionFactor: 10⁻³ rad symbol: mrad id: un-cefact-cc-C25 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8208,13 +8208,13 @@ conversionFactor: 10⁻³ s symbol: ms id: un-cefact-cc-C26 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8231,13 +8231,13 @@ conversionFactor: 10⁻³ S symbol: mS id: un-cefact-cc-C27 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8252,20 +8252,20 @@ conversionFactor: 10⁻³ Sv symbol: mSv id: un-cefact-cc-C28 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '97' -quantity: magnetic flux density, magnetic induction, magnetic polarization +quantity: 'magnetic flux density, magnetic induction, magnetic polarization' levelCategory: 1S commonCode: C29 name: millitesla @@ -8273,13 +8273,13 @@ conversionFactor: 10⁻³ T symbol: mT id: un-cefact-cc-C29 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8294,13 +8294,13 @@ conversionFactor: 10⁻⁶ V/m symbol: µV/m id: un-cefact-cc-C3 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8315,13 +8315,13 @@ conversionFactor: 10⁻³ V/m symbol: mV/m id: un-cefact-cc-C30 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8336,13 +8336,13 @@ conversionFactor: 10⁻³ W symbol: mW id: un-cefact-cc-C31 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8357,13 +8357,13 @@ conversionFactor: 10⁻³ W/m² symbol: mW/m² id: un-cefact-cc-C32 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8378,17 +8378,17 @@ conversionFactor: 10⁻³ Wb symbol: mWb id: un-cefact-cc-C33 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '5' quantity: amount of substance @@ -8399,17 +8399,17 @@ conversionFactor: mol symbol: mol id: un-cefact-cc-C34 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '35' quantity: >- @@ -8422,17 +8422,17 @@ conversionFactor: 10³ mol/m³ symbol: mol/dm³ id: un-cefact-cc-C35 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '32' quantity: >- @@ -8445,13 +8445,13 @@ conversionFactor: mol/m³ symbol: mol/m³ id: un-cefact-cc-C36 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8462,17 +8462,17 @@ levelCategory: '3.6' symbol: kbit id: un-cefact-cc-C37 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '33' quantity: >- @@ -8485,13 +8485,13 @@ conversionFactor: 10³ mol/m³ symbol: mol/l id: un-cefact-cc-C38 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8508,13 +8508,13 @@ conversionFactor: "10⁻⁹\_A" symbol: nA id: un-cefact-cc-C39 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8524,20 +8524,20 @@ name: carload levelCategory: '3.5' id: un-cefact-cc-C4 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '20' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1S commonCode: C40 name: nanocoulomb @@ -8545,13 +8545,13 @@ conversionFactor: "10⁻⁹\_C" symbol: nC id: un-cefact-cc-C40 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8566,20 +8566,20 @@ conversionFactor: "10⁻⁹\_F" symbol: nF id: un-cefact-cc-C41 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '74' -quantity: permittivity, permittivity of vacuum, (electric constant) +quantity: 'permittivity, permittivity of vacuum, (electric constant)' levelCategory: 1S commonCode: C42 name: nanofarad per metre @@ -8587,20 +8587,20 @@ conversionFactor: "10⁻⁹\_F/m" symbol: nF/m id: un-cefact-cc-C42 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '111' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1S commonCode: C43 name: nanohenry @@ -8608,20 +8608,20 @@ conversionFactor: "10⁻⁹\_H" symbol: nH id: un-cefact-cc-C43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '124' -quantity: permeability, permeability of vacuum, magnetic constant +quantity: 'permeability, permeability of vacuum, magnetic constant' levelCategory: 1S commonCode: C44 name: nanohenry per metre @@ -8629,13 +8629,13 @@ conversionFactor: "10⁻⁹\_H/m" symbol: nH/m id: un-cefact-cc-C44 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8652,13 +8652,13 @@ conversionFactor: "10⁻⁹\_m" symbol: nm id: un-cefact-cc-C45 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8673,13 +8673,13 @@ conversionFactor: "10⁻⁹\_Ω·x m" symbol: nΩ·m id: un-cefact-cc-C46 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8694,20 +8694,20 @@ conversionFactor: 10⁻⁹ s symbol: ns id: un-cefact-cc-C47 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '99' -quantity: magnetic flux density, magnetic induction, magnetic polarization +quantity: 'magnetic flux density, magnetic induction, magnetic polarization' levelCategory: 1S commonCode: C48 name: nanotesla @@ -8715,20 +8715,20 @@ conversionFactor: "10⁻⁹\_T" symbol: nT id: un-cefact-cc-C48 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '193' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1S commonCode: C49 name: nanowatt @@ -8736,13 +8736,13 @@ conversionFactor: "10⁻⁹\_W" symbol: nW id: un-cefact-cc-C49 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8752,20 +8752,20 @@ name: cost levelCategory: '3.9' id: un-cefact-cc-C5 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '02' sector: PERIODIC_AND_RELATED_PHASES groupId: '20' -quantity: level of a field quantity, level of a power quantity +quantity: 'level of a field quantity, level of a power quantity' levelCategory: '1' commonCode: C50 name: neper @@ -8773,13 +8773,13 @@ conversionFactor: Np symbol: Np id: un-cefact-cc-C50 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8794,13 +8794,13 @@ conversionFactor: Np/s symbol: Np/s id: un-cefact-cc-C51 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8817,13 +8817,13 @@ conversionFactor: 10⁻¹² m symbol: pm id: un-cefact-cc-C52 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8838,13 +8838,13 @@ conversionFactor: N x m x s symbol: N·m·s id: un-cefact-cc-C53 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8859,13 +8859,13 @@ conversionFactor: N x m²/kg² symbol: N·m²/kg² id: un-cefact-cc-C54 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8882,13 +8882,13 @@ conversionFactor: Pa symbol: N/m² id: un-cefact-cc-C55 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8905,13 +8905,13 @@ conversionFactor: 10⁶ Pa symbol: N/mm² id: un-cefact-cc-C56 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8926,13 +8926,13 @@ conversionFactor: N x s symbol: N·s id: un-cefact-cc-C57 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8947,13 +8947,13 @@ conversionFactor: N x s/m symbol: N·s/m id: un-cefact-cc-C58 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8967,13 +8967,13 @@ name: octave description: A unit used in music to describe the ratio in frequency between notes. id: un-cefact-cc-C59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -8983,13 +8983,13 @@ name: cell levelCategory: '3.9' id: un-cefact-cc-C6 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9004,13 +9004,13 @@ conversionFactor: '10⁻² Ω x m ' symbol: Ω·cm id: un-cefact-cc-C60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9025,20 +9025,20 @@ conversionFactor: Ω x m symbol: Ω·m id: un-cefact-cc-C61 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '100' -quantity: relative density, relative mass density +quantity: 'relative density, relative mass density' levelCategory: '1' commonCode: C62 name: one @@ -9047,13 +9047,13 @@ symbol: '1' description: 'Synonym: unit' id: un-cefact-cc-C62 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9066,17 +9066,17 @@ quantity: >- levelCategory: '1' commonCode: C63 name: parsec -conversionFactor: 3,085 678 × 10¹⁶ m +conversionFactor: '3,085 678 × 10¹⁶ m' symbol: pc id: un-cefact-cc-C63 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9091,13 +9091,13 @@ conversionFactor: Pa/K symbol: Pa/K id: un-cefact-cc-C64 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9112,13 +9112,13 @@ conversionFactor: Pa x s symbol: Pa·s id: un-cefact-cc-C65 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9133,13 +9133,13 @@ conversionFactor: Pa x s/m³ symbol: Pa·s/m³ id: un-cefact-cc-C66 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9154,20 +9154,20 @@ conversionFactor: Pa x s/m symbol: Pa· s/m id: un-cefact-cc-C67 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '323' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: C68 name: petajoule @@ -9175,13 +9175,13 @@ conversionFactor: 10¹⁵ J symbol: PJ id: un-cefact-cc-C68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9198,13 +9198,13 @@ description: >- frequency 1 kilohertz and strength p decibels. id: un-cefact-cc-C69 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9219,13 +9219,13 @@ conversionFactor: 10⁻³ Pa x s symbol: cP id: un-cefact-cc-C7 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9242,20 +9242,20 @@ conversionFactor: 10⁻¹² A symbol: pA id: un-cefact-cc-C70 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '21' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1S commonCode: C71 name: picocoulomb @@ -9263,20 +9263,20 @@ conversionFactor: 10⁻¹² C symbol: pC id: un-cefact-cc-C71 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '75' -quantity: permittivity, permittivity of vacuum, (electric constant) +quantity: 'permittivity, permittivity of vacuum, (electric constant)' levelCategory: 1S commonCode: C72 name: picofarad per metre @@ -9284,20 +9284,20 @@ conversionFactor: 10⁻¹² F/m symbol: pF/m id: un-cefact-cc-C72 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '112' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1S commonCode: C73 name: picohenry @@ -9305,13 +9305,13 @@ conversionFactor: 10⁻¹² H symbol: pH id: un-cefact-cc-C73 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9323,20 +9323,20 @@ symbol: kbit/s conversionFactor: 10³ bit/s id: un-cefact-cc-C74 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '194' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1S commonCode: C75 name: picowatt @@ -9344,13 +9344,13 @@ conversionFactor: 10⁻¹² W symbol: pW id: un-cefact-cc-C75 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9365,13 +9365,13 @@ conversionFactor: 10⁻¹² W/m² symbol: pW/m² id: un-cefact-cc-C76 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9381,34 +9381,34 @@ name: pound gage levelCategory: '3.1' id: un-cefact-cc-C77 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '143' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: C78 name: pound-force -conversionFactor: 4,448 222 N +conversionFactor: '4,448 222 N' symbol: lbf id: un-cefact-cc-C78 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9419,13 +9419,13 @@ levelCategory: '3.1' symbol: kVAh id: un-cefact-cc-C79 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9440,13 +9440,13 @@ conversionFactor: 10⁻³ C/kg symbol: mC/kg id: un-cefact-cc-C8 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9461,13 +9461,13 @@ conversionFactor: 10⁻² Gy symbol: rad id: un-cefact-cc-C80 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9482,17 +9482,17 @@ conversionFactor: rad symbol: rad id: un-cefact-cc-C81 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '92' quantity: molar optical rotatory power @@ -9503,20 +9503,20 @@ conversionFactor: rad x m²/mol symbol: rad·m²/mol id: un-cefact-cc-C82 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '93' -quantity: massic optical, rotatory power, specific optical rotatory power +quantity: 'massic optical, rotatory power, specific optical rotatory power' levelCategory: '1' commonCode: C83 name: radian square metre per kilogram @@ -9524,20 +9524,20 @@ conversionFactor: rad x m²/kg symbol: rad·m²/kg id: un-cefact-cc-C83 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '8' -quantity: angular wave number, angular repetency +quantity: 'angular wave number, angular repetency' levelCategory: '1' commonCode: C84 name: radian per metre @@ -9545,20 +9545,20 @@ conversionFactor: rad/m symbol: rad/m id: un-cefact-cc-C84 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '12' sector: SOLID_STATE_PHYSICS groupId: '16' -quantity: Fermi angular repetency, Fermi angular wave number +quantity: 'Fermi angular repetency, Fermi angular wave number' levelCategory: '1' commonCode: C85 name: reciprocal angstrom @@ -9566,17 +9566,17 @@ conversionFactor: 10¹⁰ m⁻¹ symbol: Å⁻¹ id: un-cefact-cc-C85 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '24' quantity: >- @@ -9589,13 +9589,13 @@ conversionFactor: m⁻³ symbol: m⁻³ id: un-cefact-cc-C86 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9611,13 +9611,13 @@ symbol: m⁻³/s description: 'Synonym: reciprocal second per cubic metre' id: un-cefact-cc-C87 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9628,17 +9628,17 @@ quantity: density of states levelCategory: '1' commonCode: C88 name: reciprocal electron volt per cubic metre -conversionFactor: 6,241 46 x 10¹⁸ J⁻¹/m³ +conversionFactor: '6,241 46 x 10¹⁸ J⁻¹/m³' symbol: eV⁻¹/m³ id: un-cefact-cc-C88 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9653,13 +9653,13 @@ conversionFactor: H⁻¹ symbol: H⁻¹ id: un-cefact-cc-C89 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9672,13 +9672,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-C9 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9693,13 +9693,13 @@ conversionFactor: J⁻¹/m³ symbol: J⁻¹/m³ id: un-cefact-cc-C90 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9716,13 +9716,13 @@ conversionFactor: K⁻¹ symbol: K⁻¹ id: un-cefact-cc-C91 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9737,13 +9737,13 @@ conversionFactor: m⁻¹ symbol: m⁻¹ id: un-cefact-cc-C92 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9759,13 +9759,13 @@ symbol: m⁻² description: 'Synonym: reciprocal metre squared' id: un-cefact-cc-C93 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9776,21 +9776,21 @@ quantity: rotational frequency levelCategory: 1S commonCode: C94 name: reciprocal minute -conversionFactor: 1,666 667 x 10⁻² s +conversionFactor: '1,666 667 x 10⁻² s' symbol: min⁻¹ id: un-cefact-cc-C94 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '10' quantity: Avogadro constant @@ -9801,20 +9801,20 @@ conversionFactor: mol⁻¹ symbol: mol⁻¹ id: un-cefact-cc-C95 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '262' -quantity: compressibility, bulk compressibility +quantity: 'compressibility, bulk compressibility' levelCategory: '1' commonCode: C96 name: reciprocal pascal or pascal to the power minus one @@ -9822,13 +9822,13 @@ conversionFactor: Pa⁻¹ symbol: Pa⁻¹ id: un-cefact-cc-C96 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9843,13 +9843,13 @@ conversionFactor: s⁻¹ symbol: s⁻¹ id: un-cefact-cc-C97 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9865,20 +9865,20 @@ conversionFactor: s⁻¹/m³ symbol: s⁻¹/m³ id: un-cefact-cc-C98 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '19' -quantity: photon exitance, irradiance +quantity: 'photon exitance, irradiance' levelCategory: '1' commonCode: C99 name: reciprocal second per metre squared @@ -9886,13 +9886,13 @@ conversionFactor: s⁻¹/m² symbol: s⁻¹/m² id: un-cefact-cc-C99 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9905,13 +9905,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9923,13 +9923,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-CCT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9944,13 +9944,13 @@ conversionFactor: cd symbol: cd id: un-cefact-cc-CDL meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9966,13 +9966,13 @@ symbol: °C description: 'Refer ISO 80000-5 (Quantities and units — Part 5: Thermodynamics)' id: un-cefact-cc-CEL meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -9983,13 +9983,13 @@ levelCategory: '3.7' conversionFactor: '100' id: un-cefact-cc-CEN meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10001,13 +10001,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-CG meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10022,13 +10022,13 @@ conversionFactor: 10⁻⁵ kg symbol: cg id: un-cefact-cc-CGM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10041,13 +10041,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-CH meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10060,13 +10060,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-CJ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10076,13 +10076,13 @@ name: connector levelCategory: '3.9' id: un-cefact-cc-CK meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10097,13 +10097,13 @@ conversionFactor: A x s/kg symbol: C/kg id: un-cefact-cc-CKG meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10116,13 +10116,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CL meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10134,13 +10134,13 @@ description: >- levelCategory: '3.8' id: un-cefact-cc-CLF meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10155,13 +10155,13 @@ conversionFactor: 10⁻⁵ m³ symbol: cl id: un-cefact-cc-CLT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10176,13 +10176,13 @@ conversionFactor: 10⁻⁴ m² symbol: cm² id: un-cefact-cc-CMK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10197,13 +10197,13 @@ conversionFactor: 10⁻⁶ m³ symbol: cm³ id: un-cefact-cc-CMQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10220,13 +10220,13 @@ conversionFactor: 10⁻² m symbol: cm id: un-cefact-cc-CMT meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10238,13 +10238,13 @@ description: >- levelCategory: "3.2\r\n3.8" id: un-cefact-cc-CNP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10252,16 +10252,16 @@ commonCode: CNT name: cental (UK) description: A unit of mass equal to one hundred weight (US). levelCategory: '3.5' -conversionFactor: 45,359 237 kg +conversionFactor: '45,359 237 kg' id: un-cefact-cc-CNT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10274,20 +10274,20 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '11' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: '1' commonCode: COU name: coulomb @@ -10295,13 +10295,13 @@ conversionFactor: A x s symbol: C id: un-cefact-cc-COU meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10314,13 +10314,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-CQ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10333,13 +10333,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CR meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10352,13 +10352,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CS meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10371,13 +10371,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10387,13 +10387,13 @@ description: A unit of mass defining the number of grams of a named item in a pr levelCategory: '3.1' id: un-cefact-cc-CTG meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10403,13 +10403,13 @@ levelCategory: '3.5' conversionFactor: 200 mg id: un-cefact-cc-CTM meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10421,13 +10421,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-CTN meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10440,34 +10440,34 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CU meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '37' quantity: activity levelCategory: '2' commonCode: CUR name: curie -conversionFactor: 3,7 x 10¹⁰ Bq +conversionFactor: '3,7 x 10¹⁰ Bq' symbol: Ci id: un-cefact-cc-CUR meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10480,13 +10480,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CV meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10497,17 +10497,17 @@ quantity: mass levelCategory: '2' commonCode: CWA name: hundred pound (cwt) / hundred weight (US) -conversionFactor: 45,359 2 kg +conversionFactor: '45,359 2 kg' symbol: cwt (US) id: un-cefact-cc-CWA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10518,17 +10518,17 @@ quantity: mass levelCategory: '2' commonCode: CWI name: hundred weight (UK) -conversionFactor: 50,802 35 kg +conversionFactor: '50,802 35 kg' symbol: cwt (UK) id: un-cefact-cc-CWI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10541,13 +10541,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-CY meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10557,13 +10557,13 @@ name: combo levelCategory: '3.9' id: un-cefact-cc-CZ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10574,29 +10574,29 @@ levelCategory: '3.1' symbol: kW·h/h id: un-cefact-cc-D03 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: D04 -name: lot [unit of weight] +name: 'lot [unit of weight]' description: A unit of weight equal to about 1/2 ounce or 15 grams. levelCategory: '3.2' id: un-cefact-cc-D04 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10611,13 +10611,13 @@ conversionFactor: s⁻¹/sr symbol: s⁻¹/sr id: un-cefact-cc-D1 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10632,13 +10632,13 @@ conversionFactor: S/m symbol: S/m id: un-cefact-cc-D10 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10649,17 +10649,17 @@ levelCategory: '3.6' symbol: Mibit id: un-cefact-cc-D11 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '85' quantity: molar conductivity @@ -10670,13 +10670,13 @@ conversionFactor: S x m²/mol symbol: S·m²/mol id: un-cefact-cc-D12 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10691,13 +10691,13 @@ conversionFactor: m²/s² symbol: Sv id: un-cefact-cc-D13 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10707,13 +10707,13 @@ name: thousand linear yard levelCategory: '3.8' id: un-cefact-cc-D14 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10729,13 +10729,13 @@ description: >- of frequency one kilohertz and strength 40 decibels. id: un-cefact-cc-D15 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10750,13 +10750,13 @@ conversionFactor: 10³ m²/J symbol: cm²/erg id: un-cefact-cc-D16 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10771,13 +10771,13 @@ conversionFactor: 10³ m²/(sr x J) symbol: cm²/(sr·erg) id: un-cefact-cc-D17 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10792,20 +10792,20 @@ conversionFactor: m x K symbol: m·K id: un-cefact-cc-D18 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '98' -quantity: thermal insulance, coefficient of thermal insulation +quantity: 'thermal insulance, coefficient of thermal insulation' levelCategory: '1' commonCode: D19 name: square metre kelvin per watt @@ -10813,20 +10813,20 @@ conversionFactor: m² x K/W symbol: m²·K/W id: un-cefact-cc-D19 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '18' -quantity: photon luminance, photon radiance +quantity: 'photon luminance, photon radiance' levelCategory: '1' commonCode: D2 name: reciprocal second per steradian metre squared @@ -10834,13 +10834,13 @@ conversionFactor: s⁻¹/(sr x m²) symbol: s⁻¹/(sr·m²) id: un-cefact-cc-D2 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10855,13 +10855,13 @@ conversionFactor: m²/J symbol: m²/J id: un-cefact-cc-D20 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10876,13 +10876,13 @@ conversionFactor: m²/kg symbol: m²/kg id: un-cefact-cc-D21 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10897,13 +10897,13 @@ conversionFactor: m²/mol symbol: m²/mol id: un-cefact-cc-D22 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10915,13 +10915,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-D23 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10936,13 +10936,13 @@ conversionFactor: m²/sr symbol: m²/sr id: un-cefact-cc-D24 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10957,13 +10957,13 @@ conversionFactor: m²/(sr x J) symbol: m²/(sr·J) id: un-cefact-cc-D25 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10978,13 +10978,13 @@ conversionFactor: m²/(V x s) symbol: m²/(V·s) id: un-cefact-cc-D26 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -10999,13 +10999,13 @@ conversionFactor: sr symbol: sr id: un-cefact-cc-D27 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11015,13 +11015,13 @@ name: syphon levelCategory: '3.9' id: un-cefact-cc-D28 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11036,20 +11036,20 @@ conversionFactor: 10¹² Hz symbol: THz id: un-cefact-cc-D29 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '324' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: D30 name: terajoule @@ -11057,20 +11057,20 @@ conversionFactor: "10¹²\_J" symbol: TJ id: un-cefact-cc-D30 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '182' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1S commonCode: D31 name: terawatt @@ -11078,41 +11078,41 @@ conversionFactor: "10¹²\_W" symbol: TW id: un-cefact-cc-D31 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '334' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: D32 name: terawatt hour -conversionFactor: 3,6 x 10¹⁵ J +conversionFactor: '3,6 x 10¹⁵ J' symbol: TW·h id: un-cefact-cc-D32 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '96' -quantity: magnetic flux density, magnetic induction, magnetic polarization +quantity: 'magnetic flux density, magnetic induction, magnetic polarization' levelCategory: '1' commonCode: D33 name: tesla @@ -11120,13 +11120,13 @@ conversionFactor: T symbol: T id: un-cefact-cc-D33 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11140,35 +11140,35 @@ symbol: tex (g/km) conversionFactor: 10⁻⁶ kg/m id: un-cefact-cc-D34 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '48' -quantity: Gibbs function, Gibbs free energy +quantity: 'Gibbs function, Gibbs free energy' levelCategory: '2' status: DEPRECATED commonCode: D35 name: calorie (thermochemical) -conversionFactor: 4,184 J +conversionFactor: '4,184 J' symbol: calth id: un-cefact-cc-D35 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11179,13 +11179,13 @@ levelCategory: '3.6' symbol: Mbit id: un-cefact-cc-D36 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11197,17 +11197,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D37 name: calorie (thermochemical) per gram kelvin -conversionFactor: 4,184 x 10³ J/(kg x K) +conversionFactor: '4,184 x 10³ J/(kg x K)' symbol: calth/(g·K) id: un-cefact-cc-D37 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11219,17 +11219,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D38 name: calorie (thermochemical) per second centimetre kelvin -conversionFactor: 418,4 W/(m x K) +conversionFactor: '418,4 W/(m x K)' symbol: calth/(s·cm·K) id: un-cefact-cc-D38 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11241,17 +11241,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D39 name: calorie (thermochemical) per second square centimetre kelvin -conversionFactor: 4,184 x10⁴ W/(m² x K) +conversionFactor: '4,184 x10⁴ W/(m² x K)' symbol: calth/(s·cm²·K) id: un-cefact-cc-D39 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11262,20 +11262,20 @@ levelCategory: '3.8' conversionFactor: m³ id: un-cefact-cc-D40 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '31' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: D41 name: tonne per cubic metre @@ -11283,13 +11283,13 @@ conversionFactor: 10³ kg/m³ symbol: t/m³ id: un-cefact-cc-D41 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11307,17 +11307,17 @@ description: |- Synonym: solar year id: un-cefact-cc-D42 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '70' quantity: mass of molecule @@ -11328,13 +11328,13 @@ conversionFactor: "1,660\_538\_782\_x\_10⁻²⁷ kg" symbol: u id: un-cefact-cc-D43 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11350,13 +11350,13 @@ symbol: var description: The name of the unit is an acronym for volt-ampere-reactive. id: un-cefact-cc-D44 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11371,13 +11371,13 @@ conversionFactor: V²/K² symbol: V²/K² id: un-cefact-cc-D45 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11392,13 +11392,13 @@ conversionFactor: W symbol: V·A id: un-cefact-cc-D46 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11413,13 +11413,13 @@ conversionFactor: 10² m⁻¹ x V symbol: V/cm id: un-cefact-cc-D47 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11434,13 +11434,13 @@ conversionFactor: V/K symbol: V/K id: un-cefact-cc-D48 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11455,20 +11455,20 @@ conversionFactor: 10⁻³ V/K symbol: mV/K id: un-cefact-cc-D49 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '125' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: '2' commonCode: D5 name: kilogram per square centimetre @@ -11476,13 +11476,13 @@ conversionFactor: 10⁴ kg/m² symbol: kg/cm² id: un-cefact-cc-D5 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11497,13 +11497,13 @@ conversionFactor: V/m symbol: V/m id: un-cefact-cc-D50 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11518,13 +11518,13 @@ conversionFactor: 10³ V/m symbol: V/mm id: un-cefact-cc-D51 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11539,13 +11539,13 @@ conversionFactor: W/K symbol: W/K id: un-cefact-cc-D52 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11560,13 +11560,13 @@ conversionFactor: W/(m x K) symbol: W/(m·K) id: un-cefact-cc-D53 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11581,13 +11581,13 @@ conversionFactor: W/m² symbol: W/m² id: un-cefact-cc-D54 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11602,13 +11602,13 @@ conversionFactor: W/(m² x K) symbol: W/(m²·K) id: un-cefact-cc-D55 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11623,13 +11623,13 @@ conversionFactor: W/(m² x K⁴) symbol: W/(m²·K⁴) id: un-cefact-cc-D56 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11644,13 +11644,13 @@ conversionFactor: W/sr symbol: W/sr id: un-cefact-cc-D57 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11665,13 +11665,13 @@ conversionFactor: W/(sr x m²) symbol: W/(sr·m²) id: un-cefact-cc-D58 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11686,13 +11686,13 @@ conversionFactor: Wb/m symbol: Wb/m id: un-cefact-cc-D59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11703,17 +11703,17 @@ quantity: exposure rate levelCategory: '2' commonCode: D6 name: roentgen per second -conversionFactor: 2,58 x 10⁻⁴ C/(kg x s) +conversionFactor: '2,58 x 10⁻⁴ C/(kg x s)' symbol: R/s id: un-cefact-cc-D6 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11728,13 +11728,13 @@ conversionFactor: 10³ Wb/m symbol: Wb/mm id: un-cefact-cc-D60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11744,18 +11744,18 @@ groupId: '6' quantity: angle (plane) levelCategory: '1' commonCode: D61 -name: minute [unit of angle] -conversionFactor: 2,908 882 × 10⁻⁴ rad +name: 'minute [unit of angle]' +conversionFactor: '2,908 882 × 10⁻⁴ rad' symbol: '''' id: un-cefact-cc-D61 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11765,18 +11765,18 @@ groupId: '7' quantity: angle (plane) levelCategory: '1' commonCode: D62 -name: second [unit of angle] -conversionFactor: 4,848 137 × 10⁻⁶ rad +name: 'second [unit of angle]' +conversionFactor: '4,848 137 × 10⁻⁶ rad' symbol: '"' id: un-cefact-cc-D62 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11788,13 +11788,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-D63 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11804,13 +11804,13 @@ name: block levelCategory: '3.9' id: un-cefact-cc-D64 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11822,13 +11822,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-D65 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11838,13 +11838,13 @@ name: cassette levelCategory: '3.9' id: un-cefact-cc-D66 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11854,13 +11854,13 @@ name: dollar per hour levelCategory: '3.9' id: un-cefact-cc-D67 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11870,13 +11870,13 @@ description: A unit of count defining the number of words. levelCategory: '3.7' id: un-cefact-cc-D68 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11887,17 +11887,17 @@ quantity: second polar moment of area levelCategory: '2' commonCode: D69 name: inch to the fourth power -conversionFactor: 41,623 14 x 10⁻⁸ m⁴ +conversionFactor: '41,623 14 x 10⁻⁸ m⁴' symbol: in⁴ id: un-cefact-cc-D69 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11907,13 +11907,13 @@ name: sandwich levelCategory: '3.9' id: un-cefact-cc-D7 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11927,17 +11927,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D70 name: 'calorie (international table) ' -conversionFactor: 4,186 8 J +conversionFactor: '4,186 8 J' symbol: calIT id: un-cefact-cc-D70 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11949,17 +11949,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D71 name: calorie (international table) per second centimetre kelvin -conversionFactor: 418,68 W/(m x K) +conversionFactor: '418,68 W/(m x K)' symbol: calIT/(s·cm·K) id: un-cefact-cc-D71 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11971,17 +11971,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D72 name: calorie (international table) per second square centimetre kelvin -conversionFactor: 4,186 8 x 10⁴ W/(m² x K) +conversionFactor: '4,186 8 x 10⁴ W/(m² x K)' symbol: calIT/(s·cm²·K) id: un-cefact-cc-D72 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -11996,17 +11996,17 @@ conversionFactor: J x m² symbol: J·m² id: un-cefact-cc-D73 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '11' quantity: molar mass @@ -12017,13 +12017,13 @@ conversionFactor: kg/mol symbol: kg/mol id: un-cefact-cc-D74 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12035,17 +12035,17 @@ levelCategory: '2' status: DEPRECATED commonCode: D75 name: calorie (international table) per gram -conversionFactor: 4 186,8 J/kg +conversionFactor: '4 186,8 J/kg' symbol: calIT/g id: un-cefact-cc-D75 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12057,24 +12057,24 @@ levelCategory: '2' status: DEPRECATED commonCode: D76 name: calorie (international table) per gram kelvin -conversionFactor: 4 186,8 J/(kg x K) +conversionFactor: '4 186,8 J/(kg x K)' symbol: calIT/(g·K) id: un-cefact-cc-D76 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '16' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1S commonCode: D77 name: megacoulomb @@ -12082,13 +12082,13 @@ conversionFactor: 10⁶ C symbol: MC id: un-cefact-cc-D77 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12099,13 +12099,13 @@ levelCategory: '3.1' symbol: MJ/s id: un-cefact-cc-D78 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12115,13 +12115,13 @@ name: beam levelCategory: '3.3' id: un-cefact-cc-D79 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12131,13 +12131,13 @@ name: draize score levelCategory: '3.7' id: un-cefact-cc-D8 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12152,20 +12152,20 @@ conversionFactor: 10⁻⁶ W symbol: µW id: un-cefact-cc-D80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '98' -quantity: magnetic flux density, magnetic induction, magnetic polarization +quantity: 'magnetic flux density, magnetic induction, magnetic polarization' levelCategory: 1S commonCode: D81 name: microtesla @@ -12173,13 +12173,13 @@ conversionFactor: 10⁻⁶ T symbol: µT id: un-cefact-cc-D81 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12196,20 +12196,20 @@ conversionFactor: 10⁻⁶ V symbol: µV id: un-cefact-cc-D82 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '159' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: D83 name: millinewton metre @@ -12217,13 +12217,13 @@ conversionFactor: 10⁻³ N x m symbol: mN·m id: un-cefact-cc-D83 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12238,20 +12238,20 @@ conversionFactor: 10⁻⁶ W/m² symbol: µW/m² id: un-cefact-cc-D85 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '17' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1S commonCode: D86 name: millicoulomb @@ -12259,17 +12259,17 @@ conversionFactor: 10⁻³ C symbol: mC id: un-cefact-cc-D86 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '53' quantity: ionic strength @@ -12280,20 +12280,20 @@ conversionFactor: 10⁻³ mol/kg symbol: mmol/kg id: un-cefact-cc-D87 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '31' -quantity: volume density of charge, charge density, volumic charge +quantity: 'volume density of charge, charge density, volumic charge' levelCategory: 1S commonCode: D88 name: millicoulomb per cubic metre @@ -12301,13 +12301,13 @@ conversionFactor: 10⁻³ C/m³ symbol: mC/m³ id: un-cefact-cc-D88 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12324,20 +12324,20 @@ conversionFactor: 10⁻³ C/m² symbol: mC/m² id: un-cefact-cc-D89 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '07' sector: ACOUSTICS groupId: '13' -quantity: static pressure, (instantaneous) sound pressure +quantity: 'static pressure, (instantaneous) sound pressure' levelCategory: '2' status: DEPRECATED commonCode: D9 @@ -12346,13 +12346,13 @@ conversionFactor: 10⁻¹ Pa symbol: dyn/cm² id: un-cefact-cc-D9 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12362,13 +12362,13 @@ name: cubic metre (net) levelCategory: '3.1' id: un-cefact-cc-D90 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12383,13 +12383,13 @@ conversionFactor: 10⁻² Sv symbol: rem id: un-cefact-cc-D91 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12399,17 +12399,17 @@ name: band levelCategory: '3.9' id: un-cefact-cc-D92 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '52' quantity: volumic dose @@ -12420,13 +12420,13 @@ conversionFactor: s/m³ symbol: s/m³ id: un-cefact-cc-D93 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12441,13 +12441,13 @@ conversionFactor: s/(rad x m³) symbol: s/(rad·m³) id: un-cefact-cc-D94 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12462,13 +12462,13 @@ conversionFactor: J/(10⁻³ x kg) symbol: J/g id: un-cefact-cc-D95 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12478,13 +12478,13 @@ name: pound gross levelCategory: '3.1' id: un-cefact-cc-D96 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12497,13 +12497,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-D97 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12513,13 +12513,13 @@ name: mass pound levelCategory: '3.1' id: un-cefact-cc-D98 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12529,13 +12529,13 @@ name: sleeve levelCategory: '3.3' id: un-cefact-cc-D99 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12550,13 +12550,13 @@ conversionFactor: 10³ m² symbol: daa id: un-cefact-cc-DAA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12566,13 +12566,13 @@ description: A unit of time defining the number of days in multiples of 10. levelCategory: '3.2' id: un-cefact-cc-DAD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12587,13 +12587,13 @@ conversionFactor: 86 400 s symbol: d id: un-cefact-cc-DAY meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12605,13 +12605,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-DB meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12624,16 +12624,16 @@ description: >- milliwatt (mW). levelCategory: '3.1' symbol: dBm -conversionFactor: 10^[(Power in dBm-30)/10] W +conversionFactor: '10^[(Power in dBm-30)/10] W' id: un-cefact-cc-DBM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12645,16 +12645,16 @@ description: >- signal expressed in decibels relative to one watt. levelCategory: '3.1' symbol: dBW -conversionFactor: 10^[Power in dBW/10] W +conversionFactor: '10^[Power in dBW/10] W' id: un-cefact-cc-DBW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12664,13 +12664,13 @@ name: disk (disc) levelCategory: '3.9' id: un-cefact-cc-DC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12680,18 +12680,18 @@ groupId: '5' quantity: angle (plane) levelCategory: '1' commonCode: DD -name: degree [unit of angle] -conversionFactor: 1,745 329 × 10⁻² rad +name: 'degree [unit of angle]' +conversionFactor: '1,745 329 × 10⁻² rad' symbol: ° id: un-cefact-cc-DD meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12701,13 +12701,13 @@ name: deal levelCategory: '3.9' id: un-cefact-cc-DE meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12719,13 +12719,13 @@ description: >- levelCategory: '3.8' id: un-cefact-cc-DEC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12740,13 +12740,13 @@ conversionFactor: 10⁻⁴ kg symbol: dg id: un-cefact-cc-DG meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12756,13 +12756,13 @@ name: dispenser levelCategory: '3.3' id: un-cefact-cc-DI meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12777,13 +12777,13 @@ conversionFactor: 10⁻² kg symbol: dag id: un-cefact-cc-DJ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12798,13 +12798,13 @@ conversionFactor: 10⁻⁴ m³ symbol: dl id: un-cefact-cc-DLT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12819,13 +12819,13 @@ conversionFactor: 10³ m³ symbol: dam³ id: un-cefact-cc-DMA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12840,13 +12840,13 @@ conversionFactor: 10⁻² m² symbol: dm² id: un-cefact-cc-DMK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12858,13 +12858,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-DMO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12879,13 +12879,13 @@ conversionFactor: 10⁻³ m³ symbol: dm³ id: un-cefact-cc-DMQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12902,20 +12902,20 @@ conversionFactor: 10⁻¹ m symbol: dm id: un-cefact-cc-DMT meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '161' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: DN name: decinewton metre @@ -12923,13 +12923,13 @@ conversionFactor: 10⁻¹ N x m symbol: dN·m id: un-cefact-cc-DN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12941,13 +12941,13 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-DPC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12959,13 +12959,13 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-DPR meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12977,13 +12977,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-DPT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -12993,13 +12993,13 @@ name: data record levelCategory: '3.6' id: un-cefact-cc-DQ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13012,13 +13012,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-DR meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13026,16 +13026,16 @@ commonCode: DRA name: dram (US) description: 'Synonym: drachm (UK), troy dram' levelCategory: '3.5' -conversionFactor: 3,887 935 g +conversionFactor: '3,887 935 g' id: un-cefact-cc-DRA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13043,32 +13043,32 @@ commonCode: DRI name: dram (UK) description: 'Synonym: avoirdupois dram' levelCategory: '3.5' -conversionFactor: 1,771 745 g +conversionFactor: '1,771 745 g' id: un-cefact-cc-DRI meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: DRL name: dozen roll -description: A unit of count defining the number of rolls, expressed in twelve roll units. +description: 'A unit of count defining the number of rolls, expressed in twelve roll units.' levelCategory: '3.2' id: un-cefact-cc-DRL meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13076,16 +13076,16 @@ status: MARKED_AS_DELETED commonCode: DRM name: drachm (UK) levelCategory: '3.5' -conversionFactor: 3,887 935 g +conversionFactor: '3,887 935 g' id: un-cefact-cc-DRM meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13095,13 +13095,13 @@ name: display levelCategory: '3.9' id: un-cefact-cc-DS meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13113,13 +13113,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-DT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13135,20 +13135,20 @@ symbol: dt or dtn description: "Synonym: centner, metric\_100 kg; quintal, metric\_100 kg" id: un-cefact-cc-DTN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '142' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' status: DEPRECATED commonCode: DU @@ -13157,29 +13157,29 @@ conversionFactor: 10⁻⁵ N symbol: dyn id: un-cefact-cc-DU meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: DWT name: pennyweight levelCategory: '3.5' -conversionFactor: 1,555 174 g +conversionFactor: '1,555 174 g' id: un-cefact-cc-DWT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13195,13 +13195,13 @@ conversionFactor: 10⁻³ N/m symbol: dyn/cm id: un-cefact-cc-DX meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13211,13 +13211,13 @@ name: directory book levelCategory: '3.9' id: un-cefact-cc-DY meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13229,13 +13229,13 @@ symbol: DOZ conversionFactor: '12' id: un-cefact-cc-DZN meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13247,13 +13247,13 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-DZP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13271,13 +13271,13 @@ symbol: N/cm² description: A measure of pressure expressed in newtons per square centimetre. id: un-cefact-cc-E01 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13288,13 +13288,13 @@ levelCategory: '3.1' symbol: MW·h/h id: un-cefact-cc-E07 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13307,37 +13307,37 @@ levelCategory: '3.1' symbol: MW/Hz id: un-cefact-cc-E08 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '22' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1M commonCode: E09 name: milliampere hour -conversionFactor: 3,6 C +conversionFactor: '3,6 C' symbol: mA·h description: >- A unit of power load delivered at the rate of one thousandth of an ampere over a period of one hour. id: un-cefact-cc-E09 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13350,13 +13350,13 @@ levelCategory: '3.5' symbol: deg da id: un-cefact-cc-E10 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13368,13 +13368,13 @@ levelCategory: '3.5' conversionFactor: 10⁹ cal id: un-cefact-cc-E11 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13384,13 +13384,13 @@ description: A unit of count defining the number of cigarettes in units of 1000. levelCategory: '3.9' id: un-cefact-cc-E12 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13403,17 +13403,17 @@ quantity: >- levelCategory: '2' commonCode: E14 name: kilocalorie (international table) -conversionFactor: 4,186 8 x 10³ J +conversionFactor: '4,186 8 x 10³ J' symbol: kcalIT id: un-cefact-cc-E14 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13424,17 +13424,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: E15 name: kilocalorie (thermochemical) per hour -conversionFactor: 1,162 22 W +conversionFactor: '1,162 22 W' symbol: kcalth/h id: un-cefact-cc-E15 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13443,16 +13443,16 @@ name: million Btu(IT) per hour description: A unit of power equal to one million British thermal units per hour. levelCategory: '3.1' symbol: BtuIT/h -conversionFactor: 293 071,1 W +conversionFactor: '293 071,1 W' id: un-cefact-cc-E16 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13463,16 +13463,16 @@ description: >- one second. levelCategory: '3.1' symbol: ft³/s -conversionFactor: 2,831 685 x 10⁻² m³/s +conversionFactor: '2,831 685 x 10⁻² m³/s' id: un-cefact-cc-E17 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13483,18 +13483,18 @@ quantity: mass flow rate levelCategory: '2' commonCode: E18 name: tonne per hour -conversionFactor: 2,777 78 x 10⁻¹ kg/s +conversionFactor: '2,777 78 x 10⁻¹ kg/s' symbol: t/h description: A unit of weight or mass equal to one tonne per hour. id: un-cefact-cc-E18 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13502,16 +13502,16 @@ commonCode: E19 name: ping description: A unit of area equal to 3.3 square metres. levelCategory: '3.1' -conversionFactor: 3,305 m² +conversionFactor: '3,305 m²' id: un-cefact-cc-E19 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13521,13 +13521,13 @@ name: belt levelCategory: '3.9' id: un-cefact-cc-E2 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13538,13 +13538,13 @@ levelCategory: '3.6' symbol: Mbit/s id: un-cefact-cc-E20 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13556,13 +13556,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-E21 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13574,13 +13574,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-E22 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13593,13 +13593,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-E23 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13609,13 +13609,13 @@ description: A unit of count defining the number of active units within a substa levelCategory: '3.9' id: un-cefact-cc-E25 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13627,13 +13627,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-E27 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13645,13 +13645,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-E28 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13661,13 +13661,13 @@ name: trailer levelCategory: '3.4' id: un-cefact-cc-E3 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13680,13 +13680,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-E30 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13697,13 +13697,13 @@ levelCategory: '3.1' symbol: m²/l id: un-cefact-cc-E31 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13712,16 +13712,16 @@ name: litre per hour description: A unit of count defining the number of litres per hour. levelCategory: '3.1' symbol: l/h -conversionFactor: 2,777 78 x 10⁻⁷ m³/s +conversionFactor: '2,777 78 x 10⁻⁷ m³/s' id: un-cefact-cc-E32 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13729,16 +13729,16 @@ commonCode: E33 name: foot per thousand description: A unit of count defining the number of feet per thousand units. levelCategory: '3.1' -conversionFactor: 3,048 x 10⁻⁴ m +conversionFactor: '3,048 x 10⁻⁴ m' id: un-cefact-cc-E33 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13749,13 +13749,13 @@ levelCategory: '3.6' symbol: Gbyte id: un-cefact-cc-E34 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13766,13 +13766,13 @@ levelCategory: '3.6' symbol: Tbyte id: un-cefact-cc-E35 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13783,13 +13783,13 @@ levelCategory: '3.6' symbol: Pbyte id: un-cefact-cc-E36 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13799,13 +13799,13 @@ description: 'A unit of count defining the number of pixels (pixel: picture elem levelCategory: '3.6' id: un-cefact-cc-E37 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13815,13 +13815,13 @@ description: A unit of count equal to 10⁶ (1000000) pixels (picture elements). levelCategory: '3.6' id: un-cefact-cc-E38 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13834,13 +13834,13 @@ levelCategory: '3.6' symbol: dpi id: un-cefact-cc-E39 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13850,13 +13850,13 @@ description: A unit of mass defining the total number of kilograms before deduct levelCategory: '3.1' id: un-cefact-cc-E4 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13868,13 +13868,13 @@ symbol: ppht conversionFactor: 1 x 10⁻⁵ id: un-cefact-cc-E40 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13887,17 +13887,17 @@ quantity: >- levelCategory: '2' commonCode: E41 name: kilogram-force per square millimetre -conversionFactor: 9,806 65 x 10⁻⁶ Pa +conversionFactor: '9,806 65 x 10⁻⁶ Pa' symbol: kgf·m/cm² id: un-cefact-cc-E41 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13910,24 +13910,24 @@ quantity: >- levelCategory: '2' commonCode: E42 name: kilogram-force per square centimetre -conversionFactor: 9,806 65 x 10⁴ Pa +conversionFactor: '9,806 65 x 10⁴ Pa' symbol: kgf/cm² id: un-cefact-cc-E42 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '24' -quantity: radiant energy fluence, radiance exposure +quantity: 'radiant energy fluence, radiance exposure' levelCategory: 1M commonCode: E43 name: joule per square centimetre @@ -13936,13 +13936,13 @@ symbol: J/cm² description: A unit of energy defining the number of joules per square centimetre. id: un-cefact-cc-E43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13955,13 +13955,13 @@ levelCategory: '3.5' symbol: kgf·m/cm² id: un-cefact-cc-E44 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13978,13 +13978,13 @@ conversionFactor: 10⁻³ Ω symbol: mΩ id: un-cefact-cc-E45 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -13993,16 +13993,16 @@ name: kilowatt hour per cubic metre description: A unit of energy consumption expressed as kilowatt hour per cubic metre. levelCategory: '3.1' symbol: kW·h/m³ -conversionFactor: 3,6 x 10⁶ J/m³ +conversionFactor: '3,6 x 10⁶ J/m³' id: un-cefact-cc-E46 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14011,16 +14011,16 @@ name: kilowatt hour per kelvin description: A unit of energy consumption expressed as kilowatt hour per kelvin. levelCategory: '3.1' symbol: kW·h/K -conversionFactor: 3,6 x 10⁶ J/K +conversionFactor: '3,6 x 10⁶ J/K' id: un-cefact-cc-E47 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14032,13 +14032,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-E48 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14050,13 +14050,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-E49 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14067,13 +14067,13 @@ description: Use ton (UK) or long ton (US) (common code LTN) levelCategory: '3.1' id: un-cefact-cc-E5 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14083,13 +14083,13 @@ description: A unit of count defining the number of accounting units. levelCategory: '3.5' id: un-cefact-cc-E50 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14099,13 +14099,13 @@ description: A unit of count defining the number of jobs. levelCategory: '3.5' id: un-cefact-cc-E51 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14115,13 +14115,13 @@ description: A unit of count defining the number feet per run. levelCategory: '3.5' id: un-cefact-cc-E52 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14131,13 +14131,13 @@ description: A unit of count defining the number of tests. levelCategory: '3.5' id: un-cefact-cc-E53 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14147,13 +14147,13 @@ description: A unit of count defining the number of trips. levelCategory: '3.5' id: un-cefact-cc-E54 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14163,13 +14163,13 @@ description: A unit of count defining the number of times an object is used. levelCategory: '3.5' id: un-cefact-cc-E55 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14179,13 +14179,13 @@ description: A unit of count defining the number of wells. levelCategory: '3.5' id: un-cefact-cc-E56 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14195,13 +14195,13 @@ description: A unit of count defining the number of zones. levelCategory: '3.5' id: un-cefact-cc-E57 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14212,13 +14212,13 @@ levelCategory: '3.6' symbol: Ebit/s id: un-cefact-cc-E58 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14229,13 +14229,13 @@ levelCategory: '3.6' symbol: Eibyte id: un-cefact-cc-E59 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14246,13 +14246,13 @@ levelCategory: '3.6' symbol: Pibyte id: un-cefact-cc-E60 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14263,13 +14263,13 @@ levelCategory: '3.6' symbol: Tibyte id: un-cefact-cc-E61 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14280,13 +14280,13 @@ levelCategory: '3.6' symbol: Gibyte id: un-cefact-cc-E62 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14297,13 +14297,13 @@ levelCategory: '3.6' symbol: Mibyte id: un-cefact-cc-E63 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14314,13 +14314,13 @@ levelCategory: '3.6' symbol: Kibyte id: un-cefact-cc-E64 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14331,13 +14331,13 @@ levelCategory: '3.6' symbol: Eibit/m id: un-cefact-cc-E65 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14348,13 +14348,13 @@ levelCategory: '3.6' symbol: Eibit/m² id: un-cefact-cc-E66 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14365,13 +14365,13 @@ levelCategory: '3.6' symbol: Eibit/m³ id: un-cefact-cc-E67 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14382,13 +14382,13 @@ levelCategory: '3.6' symbol: Gbyte/s id: un-cefact-cc-E68 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14399,13 +14399,13 @@ levelCategory: '3.6' symbol: Gibit/m id: un-cefact-cc-E69 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14416,13 +14416,13 @@ levelCategory: '3.6' symbol: Gibit/m² id: un-cefact-cc-E70 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14433,13 +14433,13 @@ levelCategory: '3.6' symbol: Gibit/m³ id: un-cefact-cc-E71 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14450,13 +14450,13 @@ levelCategory: '3.6' symbol: Kibit/m id: un-cefact-cc-E72 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14467,13 +14467,13 @@ levelCategory: '3.6' symbol: Kibit/m² id: un-cefact-cc-E73 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14484,13 +14484,13 @@ levelCategory: '3.6' symbol: Kibit/m³ id: un-cefact-cc-E74 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14501,13 +14501,13 @@ levelCategory: '3.6' symbol: Mibit/m id: un-cefact-cc-E75 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14518,13 +14518,13 @@ levelCategory: '3.6' symbol: Mibit/m² id: un-cefact-cc-E76 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14535,13 +14535,13 @@ levelCategory: '3.6' symbol: Mibit/m³ id: un-cefact-cc-E77 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14552,13 +14552,13 @@ levelCategory: '3.6' symbol: Pbit id: un-cefact-cc-E78 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14569,13 +14569,13 @@ levelCategory: '3.6' symbol: Pbit/s id: un-cefact-cc-E79 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14586,13 +14586,13 @@ levelCategory: '3.6' symbol: Pibit/m id: un-cefact-cc-E80 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14603,13 +14603,13 @@ levelCategory: '3.6' symbol: Pibit/m² id: un-cefact-cc-E81 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14620,13 +14620,13 @@ levelCategory: '3.6' symbol: Pibit/m³ id: un-cefact-cc-E82 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14637,13 +14637,13 @@ levelCategory: '3.6' symbol: Tbit id: un-cefact-cc-E83 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14654,13 +14654,13 @@ levelCategory: '3.6' symbol: Tbit/s id: un-cefact-cc-E84 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14671,13 +14671,13 @@ levelCategory: '3.6' symbol: Tibit/m id: un-cefact-cc-E85 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14688,13 +14688,13 @@ levelCategory: '3.6' symbol: Tibit/m³ id: un-cefact-cc-E86 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.879Z' + modified: '2024-02-16T09:11:13.879Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14705,13 +14705,13 @@ levelCategory: '3.6' symbol: Tibit/m² id: un-cefact-cc-E87 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14722,13 +14722,13 @@ levelCategory: '3.6' symbol: bit/m id: un-cefact-cc-E88 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14739,13 +14739,13 @@ levelCategory: '3.6' symbol: bit/m² id: un-cefact-cc-E89 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14756,13 +14756,13 @@ symbol: cm⁻¹ conversionFactor: 10² m⁻¹ id: un-cefact-cc-E90 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14770,16 +14770,16 @@ commonCode: E91 name: reciprocal day levelCategory: '3.1' symbol: d⁻¹ -conversionFactor: 1,157 41 × 10⁻⁵ s⁻¹ +conversionFactor: '1,157 41 × 10⁻⁵ s⁻¹' id: un-cefact-cc-E91 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14790,17 +14790,17 @@ quantity: volume flow rate levelCategory: 1S commonCode: E92 name: cubic decimetre per hour -conversionFactor: 2,777 78 × 10⁻⁷ m³ x s⁻¹ +conversionFactor: '2,777 78 × 10⁻⁷ m³ x s⁻¹' symbol: dm³/h id: un-cefact-cc-E92 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14811,21 +14811,21 @@ quantity: mass flow rate levelCategory: 1S commonCode: E93 name: kilogram per hour -conversionFactor: 2,777 78 × 10⁻⁴ kg x s⁻¹ +conversionFactor: '2,777 78 × 10⁻⁴ kg x s⁻¹' symbol: kg/h id: un-cefact-cc-E93 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '65' quantity: catalytic activity @@ -14836,17 +14836,17 @@ conversionFactor: 10³ s⁻¹ x mol symbol: kmol/s id: un-cefact-cc-E94 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '37' quantity: >- @@ -14859,13 +14859,13 @@ conversionFactor: "s⁻¹\_x mol" symbol: mol/s id: un-cefact-cc-E95 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14876,17 +14876,17 @@ quantity: solid angle levelCategory: 1M commonCode: E96 name: degree per second -conversionFactor: 1,745 329 × 10⁻² rad × s⁻¹ +conversionFactor: '1,745 329 × 10⁻² rad × s⁻¹' symbol: °/s id: un-cefact-cc-E96 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14901,13 +14901,13 @@ conversionFactor: 10⁻³ K⁻¹ symbol: mm/(°C·m) id: un-cefact-cc-E97 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14922,13 +14922,13 @@ conversionFactor: '1' symbol: °C/K id: un-cefact-cc-E98 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14943,13 +14943,13 @@ conversionFactor: 10⁻³ symbol: hPa/bar id: un-cefact-cc-E99 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14959,13 +14959,13 @@ description: A unit of count defining the number of items regarded as separate u levelCategory: '3.2' id: un-cefact-cc-EA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14975,13 +14975,13 @@ description: A unit of count defining the number of electronic mail boxes. levelCategory: '3.9' id: un-cefact-cc-EB meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -14991,13 +14991,13 @@ name: each per month levelCategory: '3.9' id: un-cefact-cc-EC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15007,13 +15007,13 @@ name: eleven pack levelCategory: '3.2' id: un-cefact-cc-EP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15025,13 +15025,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-EQ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15044,13 +15044,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-EV meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15061,13 +15061,13 @@ levelCategory: '3.6' symbol: bit/m³ id: un-cefact-cc-F01 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15082,13 +15082,13 @@ conversionFactor: '1' symbol: K/K id: un-cefact-cc-F02 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15103,13 +15103,13 @@ conversionFactor: 10⁻² symbol: kPa/bar id: un-cefact-cc-F03 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15124,13 +15124,13 @@ conversionFactor: 10⁻³ symbol: mbar/bar id: un-cefact-cc-F04 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15145,13 +15145,13 @@ conversionFactor: 10¹ symbol: MPa/bar id: un-cefact-cc-F05 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15166,13 +15166,13 @@ conversionFactor: 10⁻⁶ s symbol: P/bar id: un-cefact-cc-F06 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15187,13 +15187,13 @@ conversionFactor: 10⁻⁵ symbol: Pa/bar id: un-cefact-cc-F07 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15206,17 +15206,17 @@ quantity: >- levelCategory: '2' commonCode: F08 name: milliampere per inch -conversionFactor: 3,937 007 874 015 75 x 10⁻² A x m⁻¹ +conversionFactor: '3,937 007 874 015 75 x 10⁻² A x m⁻¹' symbol: mA/in id: un-cefact-cc-F08 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15226,13 +15226,13 @@ name: thousand cubic foot per day levelCategory: '3.8' id: un-cefact-cc-F1 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15243,17 +15243,17 @@ quantity: temperature levelCategory: 1M commonCode: F10 name: kelvin per hour -conversionFactor: 2,777 78 × 10⁻⁴ s⁻¹ x K +conversionFactor: '2,777 78 × 10⁻⁴ s⁻¹ x K' symbol: K/h id: un-cefact-cc-F10 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15264,17 +15264,17 @@ quantity: temperature levelCategory: 1M commonCode: F11 name: kelvin per minute -conversionFactor: 1,666 67 × 10⁻² s⁻¹ x K +conversionFactor: '1,666 67 × 10⁻² s⁻¹ x K' symbol: K/min id: un-cefact-cc-F11 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15289,13 +15289,13 @@ conversionFactor: s⁻¹ x K symbol: K/s id: un-cefact-cc-F12 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15306,27 +15306,27 @@ quantity: mass levelCategory: '2' commonCode: F13 name: slug -conversionFactor: 1,459 390 x 10¹ kg +conversionFactor: '1,459 390 x 10¹ kg' symbol: slug description: >- A unit of mass. One slug is the mass accelerated at 1 foot per second per second by a force of 1 pound. id: un-cefact-cc-F13 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '61' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F14 name: gram per kelvin @@ -15334,20 +15334,20 @@ conversionFactor: 10⁻³ kg x K⁻¹ symbol: g/K id: un-cefact-cc-F14 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '62' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F15 name: kilogram per kelvin @@ -15355,20 +15355,20 @@ conversionFactor: kg x K⁻¹ symbol: kg/K id: un-cefact-cc-F15 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '71' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F16 name: milligram per kelvin @@ -15376,13 +15376,13 @@ conversionFactor: 10⁻⁶ kg x K⁻¹ symbol: mg/K id: un-cefact-cc-F16 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15393,24 +15393,24 @@ quantity: force divided by length levelCategory: '2' commonCode: F17 name: pound-force per foot -conversionFactor: 1,459 39 × 10¹ kg x s⁻² +conversionFactor: '1,459 39 × 10¹ kg x s⁻²' symbol: lbf/ft id: un-cefact-cc-F17 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '67' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F18 name: kilogram square centimetre @@ -15418,20 +15418,20 @@ conversionFactor: 10⁻⁴ kg m² symbol: kg·cm² id: un-cefact-cc-F18 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '68' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F19 name: kilogram square millimetre @@ -15439,13 +15439,13 @@ conversionFactor: 10⁻⁶ kg m² symbol: kg·mm² id: un-cefact-cc-F19 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15456,66 +15456,66 @@ quantity: moment of inertia (dynamic moment of inertia) levelCategory: '2' commonCode: F20 name: pound inch squared -conversionFactor: 2,926 397 x 10⁻⁴ kg x m² +conversionFactor: '2,926 397 x 10⁻⁴ kg x m²' symbol: lb·in² id: un-cefact-cc-F20 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '176' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: F21 name: pound-force inch -conversionFactor: 1,129 85 × 10⁻¹ kg x m² x s⁻² +conversionFactor: '1,129 85 × 10⁻¹ kg x m² x s⁻²' symbol: lbf·in id: un-cefact-cc-F21 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '175' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: F22 name: pound-force foot per ampere -conversionFactor: 1,355 82 kg x m² x s⁻² x A⁻¹ +conversionFactor: '1,355 82 kg x m² x s⁻² x A⁻¹' symbol: lbf·ft/A id: un-cefact-cc-F22 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '45' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F23 name: gram per cubic decimetre @@ -15523,20 +15523,20 @@ conversionFactor: kg x m⁻³ symbol: g/dm³ id: un-cefact-cc-F23 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '63' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F24 name: kilogram per kilomol @@ -15544,13 +15544,13 @@ conversionFactor: 10⁻³ kg x mol⁻¹ symbol: kg/kmol id: un-cefact-cc-F24 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15565,13 +15565,13 @@ conversionFactor: 10⁻³ kg x s symbol: g/Hz id: un-cefact-cc-F25 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15582,17 +15582,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F26 name: gram per day -conversionFactor: 1,157 41 × 10⁻⁸ kg x s⁻¹ +conversionFactor: '1,157 41 × 10⁻⁸ kg x s⁻¹' symbol: g/d id: un-cefact-cc-F26 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15603,17 +15603,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F27 name: gram per hour -conversionFactor: 2,777 78 × 10⁻⁷ kg x s⁻¹ +conversionFactor: '2,777 78 × 10⁻⁷ kg x s⁻¹' symbol: g/h id: un-cefact-cc-F27 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15624,17 +15624,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F28 name: gram per minute -conversionFactor: 1,666 67 × 10⁻⁵ kg x s⁻¹ +conversionFactor: '1,666 67 × 10⁻⁵ kg x s⁻¹' symbol: g/min id: un-cefact-cc-F28 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15649,13 +15649,13 @@ conversionFactor: 10⁻³ kg x s⁻¹ symbol: g/s id: un-cefact-cc-F29 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15666,17 +15666,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F30 name: kilogram per day -conversionFactor: 1,157 41 × 10⁻⁵ kg x s⁻¹ +conversionFactor: '1,157 41 × 10⁻⁵ kg x s⁻¹' symbol: kg/d id: un-cefact-cc-F30 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15687,17 +15687,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F31 name: kilogram per minute -conversionFactor: 1,666 67 × 10⁻² kg x s⁻¹ +conversionFactor: '1,666 67 × 10⁻² kg x s⁻¹' symbol: kg/min id: un-cefact-cc-F31 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15708,17 +15708,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F32 name: milligram per day -conversionFactor: 1,157 41 × 10⁻¹¹ kg x s⁻¹ +conversionFactor: '1,157 41 × 10⁻¹¹ kg x s⁻¹' symbol: mg/d id: un-cefact-cc-F32 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15729,17 +15729,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F33 name: milligram per minute -conversionFactor: 1,666 67 × 10⁻⁸ kg x s⁻¹ +conversionFactor: '1,666 67 × 10⁻⁸ kg x s⁻¹' symbol: mg/min id: un-cefact-cc-F33 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15754,13 +15754,13 @@ conversionFactor: 10⁻⁶ kg x s⁻¹ symbol: mg/s id: un-cefact-cc-F34 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15771,17 +15771,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F35 name: gram per day kelvin -conversionFactor: 1,157 41 × 10⁻⁸ kg x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻⁸ kg x s⁻¹ x K⁻¹' symbol: g/(d·K) id: un-cefact-cc-F35 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15792,17 +15792,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F36 name: gram per hour kelvin -conversionFactor: 2,777 78 × 10⁻⁷ kg x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻⁷ kg x s⁻¹ x K⁻¹' symbol: g/(h·K) id: un-cefact-cc-F36 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15813,17 +15813,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F37 name: gram per minute kelvin -conversionFactor: 1,666 67 × 10⁻⁵ kg x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻⁵ kg x s⁻¹ x K⁻¹' symbol: g/(min·K) id: un-cefact-cc-F37 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15838,13 +15838,13 @@ conversionFactor: 10⁻³ kg x s⁻¹ x K⁻¹ symbol: g/(s·K) id: un-cefact-cc-F38 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15855,17 +15855,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F39 name: kilogram per day kelvin -conversionFactor: 1,157 41 × 10⁻⁵ kg x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻⁵ kg x s⁻¹ x K⁻¹' symbol: kg/(d·K) id: un-cefact-cc-F39 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15876,17 +15876,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F40 name: kilogram per hour kelvin -conversionFactor: 2,777 78 × 10⁻⁴ kg x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻⁴ kg x s⁻¹ x K⁻¹' symbol: kg/(h·K) id: un-cefact-cc-F40 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15897,17 +15897,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F41 name: kilogram per minute kelvin -conversionFactor: 1,666 67 × 10⁻²kg x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻²kg x s⁻¹ x K⁻¹' symbol: kg/(min·K) id: un-cefact-cc-F41 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15922,13 +15922,13 @@ conversionFactor: kg x s⁻¹ x K⁻¹ symbol: kg/(s·K) id: un-cefact-cc-F42 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15939,17 +15939,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F43 name: milligram per day kelvin -conversionFactor: 1,157 41 × 10⁻¹¹ kg x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻¹¹ kg x s⁻¹ x K⁻¹' symbol: mg/(d·K) id: un-cefact-cc-F43 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15960,17 +15960,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F44 name: milligram per hour kelvin -conversionFactor: 2,777 78 × 10⁻¹⁰ kg x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻¹⁰ kg x s⁻¹ x K⁻¹' symbol: mg/(h·K) id: un-cefact-cc-F44 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -15981,17 +15981,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F45 name: milligram per minute kelvin -conversionFactor: 1,666 67 × 10⁻⁸ kg x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻⁸ kg x s⁻¹ x K⁻¹' symbol: mg/(min·K) id: un-cefact-cc-F45 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16006,20 +16006,20 @@ conversionFactor: 10⁻⁶ kg x s⁻¹ x K⁻¹ symbol: mg/(s·K) id: un-cefact-cc-F46 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '168' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1M commonCode: F47 name: newton per millimetre @@ -16027,13 +16027,13 @@ conversionFactor: 10³ kg x s⁻² symbol: N/mm id: un-cefact-cc-F47 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16044,17 +16044,17 @@ quantity: force divided by length levelCategory: '2' commonCode: F48 name: pound-force per inch -conversionFactor: 1,751 27 × 10² kg x s⁻² +conversionFactor: '1,751 27 × 10² kg x s⁻²' symbol: lbf/in id: un-cefact-cc-F48 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16066,19 +16066,19 @@ quantity: >- coordinates, diameter, length of path, distance levelCategory: '2' commonCode: F49 -name: rod [unit of distance] -conversionFactor: 5,029 210 m +name: 'rod [unit of distance]' +conversionFactor: '5,029 210 m' symbol: rd (US) description: A unit of distance equal to 5.5 yards (16 feet 6 inches). id: un-cefact-cc-F49 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16095,13 +16095,13 @@ conversionFactor: 10⁻⁶ m × K⁻¹ symbol: µm/K id: un-cefact-cc-F50 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16118,13 +16118,13 @@ conversionFactor: 10⁻² m × K⁻¹ symbol: cm/K id: un-cefact-cc-F51 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16141,13 +16141,13 @@ conversionFactor: m × K⁻¹ symbol: m/K id: un-cefact-cc-F52 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16162,13 +16162,13 @@ conversionFactor: 10⁻³ m x K⁻¹ symbol: mm/K id: un-cefact-cc-F53 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16183,13 +16183,13 @@ conversionFactor: 10⁻³ Ω/m symbol: mΩ/m id: un-cefact-cc-F54 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16204,13 +16204,13 @@ conversionFactor: "6,213 71 × 10⁻⁴\_ Ω/m" symbol: Ω/mi id: un-cefact-cc-F55 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16225,13 +16225,13 @@ conversionFactor: 10⁻³ Ω/m symbol: Ω/km id: un-cefact-cc-F56 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16242,24 +16242,24 @@ quantity: current density levelCategory: '2' commonCode: F57 name: milliampere per pound-force per square inch -conversionFactor: 1,450 38 × 10⁻⁷ kg⁻¹ x m x s² x A +conversionFactor: '1,450 38 × 10⁻⁷ kg⁻¹ x m x s² x A' symbol: mA/(lbf/in²) id: un-cefact-cc-F57 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '263' -quantity: compressibility, bulk compressibility +quantity: 'compressibility, bulk compressibility' levelCategory: 1M commonCode: F58 name: reciprocal bar @@ -16267,13 +16267,13 @@ conversionFactor: bar⁻¹ symbol: 1/bar id: un-cefact-cc-F58 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16290,13 +16290,13 @@ conversionFactor: 10⁻⁸ kg⁻¹ x m x s² x A symbol: mA/bar id: un-cefact-cc-F59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16311,13 +16311,13 @@ conversionFactor: 10⁻⁵ kg⁻¹ x m x s² x K symbol: °C/bar id: un-cefact-cc-F60 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16332,13 +16332,13 @@ conversionFactor: 10⁻⁵ kg⁻¹ x m x s² x K symbol: K/bar id: un-cefact-cc-F61 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16349,17 +16349,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F62 name: gram per day bar -conversionFactor: 1,157 41 × 10⁻¹³ m x s +conversionFactor: '1,157 41 × 10⁻¹³ m x s' symbol: g/(d·bar) id: un-cefact-cc-F62 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16370,17 +16370,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F63 name: gram per hour bar -conversionFactor: 2,777 78 × 10⁻¹² m x s +conversionFactor: '2,777 78 × 10⁻¹² m x s' symbol: g/(h·bar) id: un-cefact-cc-F63 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16391,17 +16391,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F64 name: gram per minute bar -conversionFactor: 1,666 67 × 10⁻¹⁰ m x s +conversionFactor: '1,666 67 × 10⁻¹⁰ m x s' symbol: g/(min·bar) id: un-cefact-cc-F64 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16416,13 +16416,13 @@ conversionFactor: 10⁻⁸ m x s symbol: g/(s·bar) id: un-cefact-cc-F65 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16433,17 +16433,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F66 name: kilogram per day bar -conversionFactor: 1,157 41 × 10⁻¹⁰ m x s +conversionFactor: '1,157 41 × 10⁻¹⁰ m x s' symbol: kg/(d·bar) id: un-cefact-cc-F66 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16454,17 +16454,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F67 name: kilogram per hour bar -conversionFactor: 2,777 78 × 10⁻⁹ m x s +conversionFactor: '2,777 78 × 10⁻⁹ m x s' symbol: kg/(h·bar) id: un-cefact-cc-F67 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16475,17 +16475,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F68 name: kilogram per minute bar -conversionFactor: 1,666 67 × 10⁻⁷ m x s +conversionFactor: '1,666 67 × 10⁻⁷ m x s' symbol: kg/(min·bar) id: un-cefact-cc-F68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16500,13 +16500,13 @@ conversionFactor: 10⁻⁵ m x s symbol: kg/(s·bar) id: un-cefact-cc-F69 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16517,17 +16517,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F70 name: milligram per day bar -conversionFactor: 1,157 41 × 10⁻¹⁶ m x s +conversionFactor: '1,157 41 × 10⁻¹⁶ m x s' symbol: mg/(d·bar) id: un-cefact-cc-F70 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16538,17 +16538,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F71 name: milligram per hour bar -conversionFactor: 2,777 78 × 10⁻¹⁵ m x s +conversionFactor: '2,777 78 × 10⁻¹⁵ m x s' symbol: mg/(h·bar) id: un-cefact-cc-F71 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16559,17 +16559,17 @@ quantity: mass flow rate levelCategory: 1M commonCode: F72 name: milligram per minute bar -conversionFactor: 1,666 67 × 10⁻¹³ m x s +conversionFactor: '1,666 67 × 10⁻¹³ m x s' symbol: mg/(min·bar) id: un-cefact-cc-F72 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16584,20 +16584,20 @@ conversionFactor: 10⁻¹¹ m x s symbol: mg/(s·bar) id: un-cefact-cc-F73 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '69' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F74 name: gram per bar @@ -16605,20 +16605,20 @@ conversionFactor: 10⁻⁸ m x s² symbol: g/bar id: un-cefact-cc-F74 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '70' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: F75 name: milligram per bar @@ -16626,13 +16626,13 @@ conversionFactor: 10⁻¹¹ m x s² symbol: mg/bar id: un-cefact-cc-F75 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16649,13 +16649,13 @@ conversionFactor: m⁻¹ x A symbol: mA/mm id: un-cefact-cc-F76 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16672,13 +16672,13 @@ conversionFactor: kg x m⁻¹ x s⁻¹ x K⁻¹ symbol: Pa.s/K id: un-cefact-cc-F77 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16691,17 +16691,17 @@ quantity: >- levelCategory: '2' commonCode: F78 name: inch of water -conversionFactor: 2,490 89 × 10² kg x m⁻¹ x s⁻² +conversionFactor: '2,490 89 × 10² kg x m⁻¹ x s⁻²' symbol: inH₂O id: un-cefact-cc-F78 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16714,17 +16714,17 @@ quantity: >- levelCategory: '2' commonCode: F79 name: inch of mercury -conversionFactor: 3,386 39 × 10³ kg x m⁻¹ x s⁻² +conversionFactor: '3,386 39 × 10³ kg x m⁻¹ x s⁻²' symbol: inHg id: un-cefact-cc-F79 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16735,20 +16735,20 @@ quantity: power levelCategory: '2' commonCode: F80 name: water horse power -conversionFactor: 7,460 43 x 10² W +conversionFactor: '7,460 43 x 10² W' description: >- 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). id: un-cefact-cc-F80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16763,13 +16763,13 @@ conversionFactor: 10⁵ kg x m⁻¹ x s⁻² x K⁻¹ symbol: bar/K id: un-cefact-cc-F81 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16786,13 +16786,13 @@ conversionFactor: 10² kg x m⁻¹ x s⁻² x K⁻¹ symbol: hPa/K id: un-cefact-cc-F82 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16809,13 +16809,13 @@ conversionFactor: 10³ kg x m⁻¹ x s⁻² x K⁻¹ symbol: kPa/K id: un-cefact-cc-F83 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16832,13 +16832,13 @@ conversionFactor: 10² kg x m⁻¹ x s⁻² x K⁻¹ symbol: mbar/K id: un-cefact-cc-F84 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16855,13 +16855,13 @@ conversionFactor: 10⁶ kg x m⁻¹ x s⁻² x K⁻¹ symbol: MPa/K id: un-cefact-cc-F85 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16876,13 +16876,13 @@ conversionFactor: 10⁻¹ kg x m⁻¹ x s⁻¹ x K⁻¹ symbol: P/K id: un-cefact-cc-F86 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16893,24 +16893,24 @@ quantity: electric field strength levelCategory: 1M commonCode: F87 name: volt per litre minute -conversionFactor: 1,666 67 × 10¹ kg x m⁻¹ x s⁻⁴ x A⁻¹ +conversionFactor: '1,666 67 × 10¹ kg x m⁻¹ x s⁻⁴ x A⁻¹' symbol: V/(l·min) id: un-cefact-cc-F87 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '164' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1M commonCode: F88 name: newton centimetre @@ -16918,34 +16918,34 @@ conversionFactor: 10⁻² kg x m² x s⁻² symbol: N·cm id: un-cefact-cc-F88 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '166' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1M commonCode: F89 name: newton metre per degree -conversionFactor: 57,295 788 kg x m² x s⁻² x rad⁻¹ +conversionFactor: '57,295 788 kg x m² x s⁻² x rad⁻¹' symbol: Nm/° id: un-cefact-cc-F89 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16955,20 +16955,20 @@ name: fibre per cubic centimetre of air levelCategory: '3.9' id: un-cefact-cc-F9 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '165' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1M commonCode: F90 name: newton metre per ampere @@ -16976,13 +16976,13 @@ conversionFactor: kg x m² x s⁻² x A⁻¹ symbol: N·m/A id: un-cefact-cc-F90 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -16997,13 +16997,13 @@ conversionFactor: 10² kg x m² x s⁻³ symbol: bar·l/s id: un-cefact-cc-F91 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17018,13 +17018,13 @@ conversionFactor: 10⁵ kg x m² x s⁻³ symbol: bar·m³/s id: un-cefact-cc-F92 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17041,13 +17041,13 @@ conversionFactor: 10⁻¹ kg x m² x s⁻³ symbol: hPa·l/s id: un-cefact-cc-F93 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17064,13 +17064,13 @@ conversionFactor: 10² kg x m² x s⁻³ symbol: hPa·m³/s id: un-cefact-cc-F94 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17087,13 +17087,13 @@ conversionFactor: 10⁻¹ kg x m² x s⁻³ symbol: mbar·l/s id: un-cefact-cc-F95 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17110,13 +17110,13 @@ conversionFactor: 10² kg x m² x s⁻³ symbol: mbar·m³/s id: un-cefact-cc-F96 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17133,13 +17133,13 @@ conversionFactor: 10³ kg x m² x s⁻³ symbol: MPa·l/s id: un-cefact-cc-F97 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17156,13 +17156,13 @@ conversionFactor: 10⁶ kg x m² x s⁻³ symbol: MPa·m³/s id: un-cefact-cc-F98 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17179,13 +17179,13 @@ conversionFactor: 10⁻³ kg x m² x s⁻³ symbol: Pa·l/s id: un-cefact-cc-F99 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17201,13 +17201,13 @@ symbol: °F description: 'Refer ISO 80000-5 (Quantities and units — Part 5: Thermodynamics)' id: un-cefact-cc-FAH meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17222,13 +17222,13 @@ conversionFactor: F symbol: F id: un-cefact-cc-FAR meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17238,13 +17238,13 @@ name: field levelCategory: '3.9' id: un-cefact-cc-FB meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17254,13 +17254,13 @@ description: A unit of length defining the number of metres of individual fibre. levelCategory: '3.1' id: un-cefact-cc-FBM meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17271,13 +17271,13 @@ levelCategory: '3.8' symbol: kft³ id: un-cefact-cc-FC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17287,13 +17287,13 @@ name: million particle per cubic foot levelCategory: '3.9' id: un-cefact-cc-FD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17303,13 +17303,13 @@ name: track foot levelCategory: '3.5' id: un-cefact-cc-FE meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17319,13 +17319,13 @@ description: A unit of volume equal to one hundred cubic metres. levelCategory: '3.8' id: un-cefact-cc-FF meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17335,17 +17335,17 @@ name: transdermal patch levelCategory: '3.9' id: un-cefact-cc-FG meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '8' quantity: amount of substance @@ -17356,13 +17356,13 @@ conversionFactor: 10⁻⁶ mol symbol: µmol id: un-cefact-cc-FH meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17374,16 +17374,16 @@ description: >- specified as FIT (failures in time unit) where 1 FIT = 10⁻⁹ /h. levelCategory: '3.8' symbol: FIT -conversionFactor: 2,777 78 × 10⁻¹³ s⁻¹ +conversionFactor: '2,777 78 × 10⁻¹³ s⁻¹' id: un-cefact-cc-FIT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17395,13 +17395,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-FL meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17412,13 +17412,13 @@ levelCategory: '3.8' symbol: Mft³ id: un-cefact-cc-FM meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17430,13 +17430,13 @@ levelCategory: '3.5' symbol: FNU id: un-cefact-cc-FNU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17449,17 +17449,17 @@ quantity: >- levelCategory: '2' commonCode: FOT name: foot -conversionFactor: 0,304 8 m +conversionFactor: '0,304 8 m' symbol: ft id: un-cefact-cc-FOT meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17472,59 +17472,59 @@ quantity: >- levelCategory: '2' commonCode: FP name: pound per square foot -conversionFactor: 4,882 428 kg/m² +conversionFactor: '4,882 428 kg/m²' symbol: lb/ft² id: un-cefact-cc-FP meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '184' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: FR name: foot per minute -conversionFactor: 5,08 x 10⁻³ m/s +conversionFactor: '5,08 x 10⁻³ m/s' symbol: ft/min id: un-cefact-cc-FR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '187' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: FS name: foot per second -conversionFactor: 0,304 8 m/s +conversionFactor: '0,304 8 m/s' symbol: ft/s id: un-cefact-cc-FS meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17535,17 +17535,17 @@ quantity: area levelCategory: '2' commonCode: FTK name: square foot -conversionFactor: 9,290 304 x 10⁻² m² +conversionFactor: '9,290 304 x 10⁻² m²' symbol: ft² id: un-cefact-cc-FTK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17556,17 +17556,17 @@ quantity: volume levelCategory: '2' commonCode: FTQ name: cubic foot -conversionFactor: 2,831 685 x 10⁻² m³ +conversionFactor: '2,831 685 x 10⁻² m³' symbol: ft³ id: un-cefact-cc-FTQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17583,13 +17583,13 @@ conversionFactor: kg x m² x s⁻³ symbol: Pa·m³/s id: un-cefact-cc-G01 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17606,13 +17606,13 @@ conversionFactor: 10⁻⁷ kg⁻¹ × m² × s² symbol: cm/bar id: un-cefact-cc-G04 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17629,13 +17629,13 @@ conversionFactor: 10⁻⁵ kg⁻¹ × m² × s² symbol: m/bar id: un-cefact-cc-G05 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17652,13 +17652,13 @@ conversionFactor: 10⁻⁸ kg⁻¹ × m² × s² symbol: mm/bar id: un-cefact-cc-G06 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17669,17 +17669,17 @@ quantity: kinematic viscosity levelCategory: '2' commonCode: G08 name: square inch per second -conversionFactor: 6,451 6 × 10⁻⁴ m² x s⁻¹ +conversionFactor: '6,451 6 × 10⁻⁴ m² x s⁻¹' symbol: in²/s id: un-cefact-cc-G08 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17694,13 +17694,13 @@ conversionFactor: m² x s⁻¹ x K⁻¹ symbol: m²/(s·K) id: un-cefact-cc-G09 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17715,20 +17715,20 @@ conversionFactor: 10⁻⁴ m² x s⁻¹ x K⁻¹ symbol: St/K id: un-cefact-cc-G10 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '43' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G11 name: gram per cubic centimetre bar @@ -17736,20 +17736,20 @@ conversionFactor: 10⁻² m⁻² x s² symbol: g/(cm³·bar) id: un-cefact-cc-G11 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '46' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G12 name: gram per cubic decimetre bar @@ -17757,20 +17757,20 @@ conversionFactor: 10⁻⁵ m⁻² x s² symbol: g/(dm³·bar) id: un-cefact-cc-G12 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '50' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G13 name: gram per litre bar @@ -17778,20 +17778,20 @@ conversionFactor: 10⁻⁵ m⁻² x s² symbol: g/(l·bar) id: un-cefact-cc-G13 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '48' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G14 name: gram per cubic metre bar @@ -17799,20 +17799,20 @@ conversionFactor: 10⁻⁸ m⁻² x s² symbol: g/(m³·bar) id: un-cefact-cc-G14 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '52' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G15 name: gram per millilitre bar @@ -17820,20 +17820,20 @@ conversionFactor: 10⁻² m⁻² x s² symbol: g/(ml·bar) id: un-cefact-cc-G15 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '55' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G16 name: kilogram per cubic centimetre bar @@ -17841,20 +17841,20 @@ conversionFactor: 10¹ m⁻² x s² symbol: kg/(cm³·bar) id: un-cefact-cc-G16 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '64' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G17 name: kilogram per litre bar @@ -17862,20 +17862,20 @@ conversionFactor: 10⁻² m⁻² x s² symbol: kg/(l·bar) id: un-cefact-cc-G17 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '57' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G18 name: kilogram per cubic metre bar @@ -17883,20 +17883,20 @@ conversionFactor: 10⁻⁵ m⁻² x s² symbol: kg/(m³·bar) id: un-cefact-cc-G18 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '167' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1M commonCode: G19 name: newton metre per kilogram @@ -17904,13 +17904,13 @@ conversionFactor: m² x s⁻² symbol: N·m/kg id: un-cefact-cc-G19 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17921,38 +17921,38 @@ quantity: volume flow rate levelCategory: '2' commonCode: G2 name: US gallon per minute -conversionFactor: 6,309 020 x 10⁻⁵ m³/s +conversionFactor: '6,309 020 x 10⁻⁵ m³/s' symbol: gal (US) /min id: un-cefact-cc-G2 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '177' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: G20 name: pound-force foot per pound -conversionFactor: 2,989 07 m² x s⁻² +conversionFactor: '2,989 07 m² x s⁻²' symbol: lbf·ft/lb id: un-cefact-cc-G20 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17962,18 +17962,18 @@ groupId: '135' quantity: volume levelCategory: '2' commonCode: G21 -name: cup [unit of volume] -conversionFactor: 2,365 882 x 10⁻⁴ m³ +name: 'cup [unit of volume]' +conversionFactor: '2,365 882 x 10⁻⁴ m³' symbol: cup (US) id: un-cefact-cc-G21 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -17984,17 +17984,17 @@ quantity: volume levelCategory: '2' commonCode: G23 name: peck -conversionFactor: 8,809 768 x 10⁻³ m³ +conversionFactor: '8,809 768 x 10⁻³ m³' symbol: pk (US) id: un-cefact-cc-G23 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18005,17 +18005,17 @@ quantity: volume levelCategory: '2' commonCode: G24 name: tablespoon (US) -conversionFactor: 1,478 676 x 10⁻⁵ m³ +conversionFactor: '1,478 676 x 10⁻⁵ m³' symbol: tablespoon (US) id: un-cefact-cc-G24 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18026,17 +18026,17 @@ quantity: volume levelCategory: '2' commonCode: G25 name: teaspoon (US) -conversionFactor: 4,928 922 x 10⁻⁶ m³ +conversionFactor: '4,928 922 x 10⁻⁶ m³' symbol: teaspoon (US) id: un-cefact-cc-G25 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18051,13 +18051,13 @@ conversionFactor: m³ symbol: st id: un-cefact-cc-G26 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18072,13 +18072,13 @@ conversionFactor: 10⁻⁶ m³ x K⁻¹ symbol: cm³/K id: un-cefact-cc-G27 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18093,13 +18093,13 @@ conversionFactor: 10⁻³ m³ x K⁻¹ symbol: l/K id: un-cefact-cc-G28 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18114,13 +18114,13 @@ conversionFactor: m³ x K⁻¹ symbol: m³/K id: un-cefact-cc-G29 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18131,17 +18131,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: G3 name: Imperial gallon per minute -conversionFactor: 7,576 82 x 10⁻⁵ m³/s +conversionFactor: '7,576 82 x 10⁻⁵ m³/s' symbol: gal (UK) /min id: un-cefact-cc-G3 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18156,20 +18156,20 @@ conversionFactor: 10⁻⁶ m³ x K⁻¹ symbol: ml/K id: un-cefact-cc-G30 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '54' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G31 name: kilogram per cubic centimetre @@ -18177,41 +18177,41 @@ conversionFactor: 10⁶ kg x m⁻³ symbol: kg/cm³ id: un-cefact-cc-G31 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '76' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: G32 name: ounce (avoirdupois) per cubic yard -conversionFactor: 3,707 98 × 10⁻² kg x m⁻³ +conversionFactor: '3,707 98 × 10⁻² kg x m⁻³' symbol: oz/yd³ id: un-cefact-cc-G32 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '44' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G33 name: gram per cubic centimetre kelvin @@ -18219,20 +18219,20 @@ conversionFactor: 10³ kg x m⁻³ x K⁻¹ symbol: g/(cm³·K) id: un-cefact-cc-G33 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '47' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G34 name: gram per cubic decimetre kelvin @@ -18240,20 +18240,20 @@ conversionFactor: kg x m⁻³ x K⁻¹ symbol: g/(dm³·K) id: un-cefact-cc-G34 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '51' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G35 name: gram per litre kelvin @@ -18261,20 +18261,20 @@ conversionFactor: kg x m⁻³ x K⁻¹ symbol: g/(l·K) id: un-cefact-cc-G35 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '49' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G36 name: gram per cubic metre kelvin @@ -18282,20 +18282,20 @@ conversionFactor: 10⁻³ kg x m⁻³ x K⁻¹ symbol: g/(m³·K) id: un-cefact-cc-G36 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '53' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G37 name: gram per millilitre kelvin @@ -18303,20 +18303,20 @@ conversionFactor: 10³ kg x m⁻³ x K⁻¹ symbol: g/(ml·K) id: un-cefact-cc-G37 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '56' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G38 name: kilogram per cubic centimetre kelvin @@ -18324,20 +18324,20 @@ conversionFactor: 10⁶ kg x m⁻³ x K⁻¹ symbol: kg/(cm³·K) id: un-cefact-cc-G38 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '65' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G39 name: kilogram per litre kelvin @@ -18345,20 +18345,20 @@ conversionFactor: 10³ kg x m⁻³ x K⁻¹ symbol: kg/(l·K) id: un-cefact-cc-G39 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '58' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: G40 name: kilogram per cubic metre kelvin @@ -18366,13 +18366,13 @@ conversionFactor: kg x m⁻³ x K⁻¹ symbol: kg/(m³·K) id: un-cefact-cc-G40 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18387,13 +18387,13 @@ conversionFactor: 10⁻⁵ kg⁻¹ x m³ x s symbol: m²/(s·bar) id: un-cefact-cc-G41 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18410,13 +18410,13 @@ conversionFactor: 10⁻⁴ S/m symbol: µS/cm id: un-cefact-cc-G42 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18433,13 +18433,13 @@ conversionFactor: 10⁻⁶ S/m symbol: µS/m id: un-cefact-cc-G43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18454,13 +18454,13 @@ conversionFactor: 10⁻⁷ S/m symbol: nS/cm id: un-cefact-cc-G44 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18475,13 +18475,13 @@ conversionFactor: 10⁻⁹ S/m symbol: nS/m id: un-cefact-cc-G45 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18496,13 +18496,13 @@ conversionFactor: 10⁻⁹ kg⁻¹ x m³ x s symbol: St/bar id: un-cefact-cc-G46 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18513,17 +18513,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G47 name: cubic centimetre per day -conversionFactor: 1,157 41 × 10⁻¹¹ m³ x s⁻¹ +conversionFactor: '1,157 41 × 10⁻¹¹ m³ x s⁻¹' symbol: cm³/d id: un-cefact-cc-G47 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18534,17 +18534,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G48 name: cubic centimetre per hour -conversionFactor: 2,777 78 × 10⁻¹⁰ m³ x s⁻¹ +conversionFactor: '2,777 78 × 10⁻¹⁰ m³ x s⁻¹' symbol: cm³/h id: un-cefact-cc-G48 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18555,17 +18555,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G49 name: cubic centimetre per minute -conversionFactor: 1,666 67 × 10⁻⁸ m³ x s⁻¹ +conversionFactor: '1,666 67 × 10⁻⁸ m³ x s⁻¹' symbol: cm³/min id: un-cefact-cc-G49 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18576,17 +18576,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: G50 name: gallon (US) per hour -conversionFactor: 1,051 5 × 10⁻⁶ m³ x s⁻¹ +conversionFactor: '1,051 5 × 10⁻⁶ m³ x s⁻¹' symbol: gal/h id: un-cefact-cc-G50 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18601,13 +18601,13 @@ conversionFactor: 10⁻³ m³ x s⁻¹ symbol: l/s id: un-cefact-cc-G51 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18618,17 +18618,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G52 name: cubic metre per day -conversionFactor: 1,157 41 × 10⁻⁵ m³ x s⁻¹ +conversionFactor: '1,157 41 × 10⁻⁵ m³ x s⁻¹' symbol: m³/d id: un-cefact-cc-G52 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18639,17 +18639,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G53 name: cubic metre per minute -conversionFactor: 1,666 67 × 10⁻² m³ x s⁻¹ +conversionFactor: '1,666 67 × 10⁻² m³ x s⁻¹' symbol: m³/min id: un-cefact-cc-G53 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18660,17 +18660,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G54 name: millilitre per day -conversionFactor: 1,157 41 × 10⁻¹¹ m³ x s⁻¹ +conversionFactor: '1,157 41 × 10⁻¹¹ m³ x s⁻¹' symbol: ml/d id: un-cefact-cc-G54 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18681,17 +18681,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G55 name: millilitre per hour -conversionFactor: 2,777 78 × 10⁻¹⁰ m³ x s⁻¹ +conversionFactor: '2,777 78 × 10⁻¹⁰ m³ x s⁻¹' symbol: ml/h id: un-cefact-cc-G55 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18702,17 +18702,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: G56 name: cubic inch per hour -conversionFactor: 4,551 96 × 10⁻⁹ m³ x s⁻¹ +conversionFactor: '4,551 96 × 10⁻⁹ m³ x s⁻¹' symbol: in³/h id: un-cefact-cc-G56 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18723,17 +18723,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: G57 name: cubic inch per minute -conversionFactor: 2,731 18 × 10⁻⁷ m³ x s⁻¹ +conversionFactor: '2,731 18 × 10⁻⁷ m³ x s⁻¹' symbol: in³/min id: un-cefact-cc-G57 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18744,17 +18744,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: G58 name: cubic inch per second -conversionFactor: 1,638 71 × 10⁻⁵ m³ x s⁻¹ +conversionFactor: '1,638 71 × 10⁻⁵ m³ x s⁻¹' symbol: in³/s id: un-cefact-cc-G58 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18765,17 +18765,17 @@ quantity: current density levelCategory: 1M commonCode: G59 name: milliampere per litre minute -conversionFactor: 1,666 67 × 10⁻² m⁻³ x s⁻¹ x A +conversionFactor: '1,666 67 × 10⁻² m⁻³ x s⁻¹ x A' symbol: mA/(l·min) id: un-cefact-cc-G59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18790,13 +18790,13 @@ conversionFactor: 10⁻⁵ m³ x s⁻¹ x A⁻¹ symbol: V/bar id: un-cefact-cc-G60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18807,17 +18807,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G61 name: cubic centimetre per day kelvin -conversionFactor: 1,157 41 × 10⁻¹¹ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻¹¹ m³ x s⁻¹ x K⁻¹' symbol: cm³/(d·K) id: un-cefact-cc-G61 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18828,17 +18828,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G62 name: cubic centimetre per hour kelvin -conversionFactor: 2,777 78 × 10⁻¹⁰ m³ x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻¹⁰ m³ x s⁻¹ x K⁻¹' symbol: cm³/(h·K) id: un-cefact-cc-G62 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18849,17 +18849,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G63 name: cubic centimetre per minute kelvin -conversionFactor: 1,666 67 × 10⁻⁸ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻⁸ m³ x s⁻¹ x K⁻¹' symbol: cm³/(min·K) id: un-cefact-cc-G63 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18874,13 +18874,13 @@ conversionFactor: 10⁻⁶ m³ x s⁻¹ x K⁻¹ symbol: cm³/(s·K) id: un-cefact-cc-G64 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18891,17 +18891,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G65 name: litre per day kelvin -conversionFactor: 1,157 41 × 10⁻⁸ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻⁸ m³ x s⁻¹ x K⁻¹' symbol: l/(d·K) id: un-cefact-cc-G65 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18912,17 +18912,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G66 name: litre per hour kelvin -conversionFactor: 2,777 78 × 10⁻⁷ m³ x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻⁷ m³ x s⁻¹ x K⁻¹' symbol: l/(h·K) id: un-cefact-cc-G66 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18933,17 +18933,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G67 name: litre per minute kelvin -conversionFactor: 1,666 67 × 10⁻⁵ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻⁵ m³ x s⁻¹ x K⁻¹' symbol: l/(min·K) id: un-cefact-cc-G67 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18958,13 +18958,13 @@ conversionFactor: 10⁻³ m³ x s⁻¹ x K⁻¹ symbol: l/(s·K) id: un-cefact-cc-G68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18975,17 +18975,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G69 name: cubic metre per day kelvin -conversionFactor: 1,157 41 × 10⁻⁵ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻⁵ m³ x s⁻¹ x K⁻¹' symbol: m³/(d·K) id: un-cefact-cc-G69 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -18995,13 +18995,13 @@ name: microfiche sheet levelCategory: '3.9' id: un-cefact-cc-G7 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19012,17 +19012,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G70 name: cubic metre per hour kelvin -conversionFactor: 2,777 78 × 10⁻⁴ m³ x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻⁴ m³ x s⁻¹ x K⁻¹' symbol: m³/(h·K) id: un-cefact-cc-G70 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19033,17 +19033,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G71 name: cubic metre per minute kelvin -conversionFactor: 1,666 67 × 10⁻² m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻² m³ x s⁻¹ x K⁻¹' symbol: m³/(min·K) id: un-cefact-cc-G71 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19058,13 +19058,13 @@ conversionFactor: m³ x s⁻¹ x K⁻¹ symbol: m³/(s·K) id: un-cefact-cc-G72 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19075,17 +19075,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G73 name: millilitre per day kelvin -conversionFactor: 1,157 41 × 10⁻¹¹ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,157 41 × 10⁻¹¹ m³ x s⁻¹ x K⁻¹' symbol: ml/(d·K) id: un-cefact-cc-G73 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19096,17 +19096,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G74 name: millilitre per hour kelvin -conversionFactor: 2,777 78 × 10⁻¹⁰ m³ x s⁻¹ x K⁻¹ +conversionFactor: '2,777 78 × 10⁻¹⁰ m³ x s⁻¹ x K⁻¹' symbol: ml/(h·K) id: un-cefact-cc-G74 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19117,17 +19117,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G75 name: millilitre per minute kelvin -conversionFactor: 1,666 67 × 10⁻⁸ m³ x s⁻¹ x K⁻¹ +conversionFactor: '1,666 67 × 10⁻⁸ m³ x s⁻¹ x K⁻¹' symbol: ml/(min·K) id: un-cefact-cc-G75 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19142,20 +19142,20 @@ conversionFactor: 10⁻⁶ m³ x s⁻¹ x K⁻¹ symbol: ml/(s·K) id: un-cefact-cc-G76 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '265' -quantity: second moment of area, second axial moment of area +quantity: 'second moment of area, second axial moment of area' levelCategory: 1M commonCode: G77 name: millimetre to the fourth power @@ -19163,13 +19163,13 @@ conversionFactor: 10⁻¹² m⁴ symbol: mm⁴ id: un-cefact-cc-G77 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19180,17 +19180,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G78 name: cubic centimetre per day bar -conversionFactor: 1,157 41 × 10⁻¹⁶ kg⁻¹ x m⁴ x s +conversionFactor: '1,157 41 × 10⁻¹⁶ kg⁻¹ x m⁴ x s' symbol: cm³/(d·bar) id: un-cefact-cc-G78 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19201,17 +19201,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G79 name: cubic centimetre per hour bar -conversionFactor: 2,777 78 × 10⁻¹⁵ kg⁻¹ x m⁴ x s +conversionFactor: '2,777 78 × 10⁻¹⁵ kg⁻¹ x m⁴ x s' symbol: cm³/(h·bar) id: un-cefact-cc-G79 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19222,17 +19222,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G80 name: cubic centimetre per minute bar -conversionFactor: 1,666 67 × 10⁻¹³ kg⁻¹ x m⁴ x s +conversionFactor: '1,666 67 × 10⁻¹³ kg⁻¹ x m⁴ x s' symbol: cm³/(min·bar) id: un-cefact-cc-G80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19247,13 +19247,13 @@ conversionFactor: 10⁻¹¹ kg⁻¹ x m⁴ x s symbol: cm³/(s·bar) id: un-cefact-cc-G81 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19264,17 +19264,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G82 name: litre per day bar -conversionFactor: 1,157 41 × 10⁻¹³ kg⁻¹ x m⁴ x s +conversionFactor: '1,157 41 × 10⁻¹³ kg⁻¹ x m⁴ x s' symbol: l/(d·bar) id: un-cefact-cc-G82 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19285,17 +19285,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G83 name: litre per hour bar -conversionFactor: 2,777 78 × 10⁻¹² kg⁻¹ x m⁴ x s +conversionFactor: '2,777 78 × 10⁻¹² kg⁻¹ x m⁴ x s' symbol: l/(h·bar) id: un-cefact-cc-G83 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19306,17 +19306,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G84 name: litre per minute bar -conversionFactor: 1,666 67 × 10⁻¹⁰ kg⁻¹ x m⁴ x s +conversionFactor: '1,666 67 × 10⁻¹⁰ kg⁻¹ x m⁴ x s' symbol: l/(min·bar) id: un-cefact-cc-G84 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19331,13 +19331,13 @@ conversionFactor: 10⁻⁸ kg⁻¹ x m⁴ x s symbol: l/(s·bar) id: un-cefact-cc-G85 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19348,17 +19348,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G86 name: cubic metre per day bar -conversionFactor: 1,157 41 × 10⁻¹⁰ kg⁻¹ x m⁴ x s +conversionFactor: '1,157 41 × 10⁻¹⁰ kg⁻¹ x m⁴ x s' symbol: m³/(d·bar) id: un-cefact-cc-G86 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19369,17 +19369,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G87 name: cubic metre per hour bar -conversionFactor: 2,777 78 × 10⁻⁹ kg⁻¹ x m⁴ x s +conversionFactor: '2,777 78 × 10⁻⁹ kg⁻¹ x m⁴ x s' symbol: m³/(h·bar) id: un-cefact-cc-G87 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19390,17 +19390,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G88 name: cubic metre per minute bar -conversionFactor: 1,666 67 × 10⁻⁷ kg⁻¹ x m⁴ x s +conversionFactor: '1,666 67 × 10⁻⁷ kg⁻¹ x m⁴ x s' symbol: m³/(min·bar) id: un-cefact-cc-G88 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19415,13 +19415,13 @@ conversionFactor: 10⁻⁵ kg⁻¹ x m⁴ x s symbol: m³/(s·bar) id: un-cefact-cc-G89 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19432,17 +19432,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G90 name: millilitre per day bar -conversionFactor: 1,157 41 x 10⁻¹⁶ x kg⁻¹ x m⁴ x s +conversionFactor: '1,157 41 x 10⁻¹⁶ x kg⁻¹ x m⁴ x s' symbol: ml/(d·bar) id: un-cefact-cc-G90 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19453,17 +19453,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G91 name: millilitre per hour bar -conversionFactor: 2,777 78 x 10⁻¹⁵ x kg⁻¹ x m⁴ x s +conversionFactor: '2,777 78 x 10⁻¹⁵ x kg⁻¹ x m⁴ x s' symbol: ml/(h·bar) id: un-cefact-cc-G91 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19474,17 +19474,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: G92 name: millilitre per minute bar -conversionFactor: 1,666 67 × 10⁻¹³ x kg⁻¹ x m⁴ x s +conversionFactor: '1,666 67 × 10⁻¹³ x kg⁻¹ x m⁴ x s' symbol: ml/(min·bar) id: un-cefact-cc-G92 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19499,13 +19499,13 @@ conversionFactor: 10⁻¹¹ kg⁻¹ x m⁴ x s symbol: ml/(s·bar) id: un-cefact-cc-G93 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19520,13 +19520,13 @@ conversionFactor: 10⁻¹¹ kg⁻¹ x m⁴ x s² symbol: cm³/bar id: un-cefact-cc-G94 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19541,13 +19541,13 @@ conversionFactor: 10⁻⁸ kg⁻¹ x m⁴ x s² symbol: l/bar id: un-cefact-cc-G95 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19562,13 +19562,13 @@ conversionFactor: 10⁻⁵ kg⁻¹ x m⁴ x s² symbol: m³/bar id: un-cefact-cc-G96 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19583,20 +19583,20 @@ conversionFactor: 10⁻¹¹ kg⁻¹ x m⁴ x s² symbol: ml/bar id: un-cefact-cc-G97 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '115' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: G98 name: microhenry per kiloohm @@ -19604,20 +19604,20 @@ conversionFactor: 10⁻⁹ s symbol: µH/kΩ id: un-cefact-cc-G98 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '116' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: G99 name: microhenry per ohm @@ -19625,13 +19625,13 @@ conversionFactor: 10⁻⁶ s symbol: µH/Ω id: un-cefact-cc-G99 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19639,20 +19639,20 @@ commonCode: GB name: gallon (US) per day levelCategory: '3.5' symbol: gal (US)/d -conversionFactor: 4,381 264 x 10⁻⁸ m³/s +conversionFactor: '4,381 264 x 10⁻⁸ m³/s' id: un-cefact-cc-GB meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '42' quantity: activity @@ -19663,13 +19663,13 @@ conversionFactor: "10⁹\_Bq" symbol: GBq id: un-cefact-cc-GBQ meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19679,13 +19679,13 @@ name: gram per 100 gram levelCategory: '3.7' id: un-cefact-cc-GC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19695,59 +19695,59 @@ name: gross barrel levelCategory: '3.1' id: un-cefact-cc-GD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: GDW -name: gram, dry weight +name: 'gram, dry weight' description: >- A unit of mass defining the number of grams of a product, disregarding the water content of the product. levelCategory: '3.1' id: un-cefact-cc-GDW meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '74' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: GE name: pound per gallon (US) -conversionFactor: 1,198 264 x 10² kg/m³ +conversionFactor: '1,198 264 x 10² kg/m³' symbol: lb/gal (US) id: un-cefact-cc-GE meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '111' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: 1M commonCode: GF name: gram per metre (gram per 100 centimetres) @@ -19755,13 +19755,13 @@ conversionFactor: 10⁻³ kg/m symbol: g/m id: un-cefact-cc-GF meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19775,13 +19775,13 @@ levelCategory: '3.1' symbol: gi F/S id: un-cefact-cc-GFI meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19794,13 +19794,13 @@ levelCategory: '3.7' conversionFactor: '1728' id: un-cefact-cc-GGR meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19810,13 +19810,13 @@ name: half gallon (US) levelCategory: '3.8' id: un-cefact-cc-GH meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19824,34 +19824,34 @@ commonCode: GIA name: gill (US) levelCategory: '3.5' symbol: gi (US) -conversionFactor: 1,182 941 x 10⁻⁴ m³ +conversionFactor: '1,182 941 x 10⁻⁴ m³' id: un-cefact-cc-GIA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: GIC -name: gram, including container +name: 'gram, including container' description: >- A unit of mass defining the number of grams of a product, including its container. levelCategory: '3.1' id: un-cefact-cc-GIC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19859,41 +19859,41 @@ commonCode: GII name: gill (UK) levelCategory: '3.5' symbol: gi (UK) -conversionFactor: 1,420 653 x 10⁻⁴ m³ +conversionFactor: '1,420 653 x 10⁻⁴ m³' id: un-cefact-cc-GII meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: GIP -name: gram, including inner packaging +name: 'gram, including inner packaging' description: >- A unit of mass defining the number of grams of a product, including its inner packaging materials. levelCategory: '3.1' id: un-cefact-cc-GIP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '32' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: GJ name: gram per millilitre @@ -19901,13 +19901,13 @@ conversionFactor: 10³ kg/m³ symbol: g/ml id: un-cefact-cc-GJ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19917,20 +19917,20 @@ name: gram per kilogram levelCategory: '3.7' id: un-cefact-cc-GK meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '34' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: GL name: gram per litre @@ -19938,13 +19938,13 @@ conversionFactor: kg/m³ symbol: g/l id: un-cefact-cc-GL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19955,17 +19955,17 @@ quantity: volume levelCategory: '2' commonCode: GLD name: dry gallon (US) -conversionFactor: 4,404 884 x 10⁻³ m³ +conversionFactor: '4,404 884 x 10⁻³ m³' symbol: dry gal (US) id: un-cefact-cc-GLD meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19976,17 +19976,17 @@ quantity: volume levelCategory: '2' commonCode: GLI name: gallon (UK) -conversionFactor: 4,546 092 x 10⁻³ m³ +conversionFactor: '4,546 092 x 10⁻³ m³' symbol: gal (UK) id: un-cefact-cc-GLI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -19997,24 +19997,24 @@ quantity: volume levelCategory: '2' commonCode: GLL name: gallon (US) -conversionFactor: 3,785 412 x 10⁻³ m³ +conversionFactor: '3,785 412 x 10⁻³ m³' symbol: gal (US) id: un-cefact-cc-GLL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '123' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: 1M commonCode: GM name: gram per square metre @@ -20022,13 +20022,13 @@ conversionFactor: 10⁻³ kg/m² symbol: g/m² id: un-cefact-cc-GM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20038,20 +20038,20 @@ name: gross gallon levelCategory: '3.1' id: un-cefact-cc-GN meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '120' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: '1' commonCode: GO name: milligram per square metre @@ -20059,20 +20059,20 @@ conversionFactor: 10⁻⁶ kg/m² symbol: mg/m² id: un-cefact-cc-GO meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '36' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: GP name: milligram per cubic metre @@ -20080,20 +20080,20 @@ conversionFactor: 10⁻⁶ kg/m³ symbol: mg/m³ id: un-cefact-cc-GP meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '42' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: GQ name: microgram per cubic metre @@ -20101,13 +20101,13 @@ conversionFactor: 10⁻⁹ kg/m³ symbol: µg/m³ id: un-cefact-cc-GQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20122,13 +20122,13 @@ conversionFactor: 10⁻³ kg symbol: g id: un-cefact-cc-GRM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20139,17 +20139,17 @@ quantity: mass levelCategory: '2' commonCode: GRN name: grain -conversionFactor: 64,798 91 x 10⁻⁶ kg +conversionFactor: '64,798 91 x 10⁻⁶ kg' symbol: gr id: un-cefact-cc-GRN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20161,13 +20161,13 @@ symbol: gr conversionFactor: '144' id: un-cefact-cc-GRO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20181,13 +20181,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-GRT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20202,20 +20202,20 @@ description: >- levelCategory: "3.1\r\n3.4" id: un-cefact-cc-GT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '325' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: GV name: gigajoule @@ -20223,13 +20223,13 @@ conversionFactor: "10⁹\_J" symbol: GJ id: un-cefact-cc-GV meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20239,34 +20239,34 @@ name: gallon per thousand cubic foot levelCategory: '3.5' id: un-cefact-cc-GW meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '333' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: GWH name: gigawatt hour -conversionFactor: 3,6 x 10¹² J +conversionFactor: '3,6 x 10¹² J' symbol: GW·h id: un-cefact-cc-GWH meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20276,13 +20276,13 @@ name: gross yard levelCategory: '3.1' id: un-cefact-cc-GY meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20292,20 +20292,20 @@ name: gage system levelCategory: '3.9' id: un-cefact-cc-GZ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '113' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: H03 name: henry per kiloohm @@ -20313,20 +20313,20 @@ conversionFactor: 10⁻³ s symbol: H/kΩ id: un-cefact-cc-H03 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '114' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: H04 name: henry per ohm @@ -20334,20 +20334,20 @@ conversionFactor: s symbol: H/Ω id: un-cefact-cc-H04 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '117' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: H05 name: millihenry per kiloohm @@ -20355,20 +20355,20 @@ conversionFactor: 10⁻⁶ s symbol: mH/kΩ id: un-cefact-cc-H05 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '118' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: H06 name: millihenry per ohm @@ -20376,13 +20376,13 @@ conversionFactor: 10⁻³ s symbol: mH/Ω id: un-cefact-cc-H06 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20399,17 +20399,17 @@ conversionFactor: 10⁻⁵ s symbol: Pa·s/bar id: un-cefact-cc-H07 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '45' quantity: activity @@ -20420,13 +20420,13 @@ conversionFactor: 10⁻⁶ Bq symbol: µBq id: un-cefact-cc-H08 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20437,17 +20437,17 @@ quantity: frequency levelCategory: 1M commonCode: H09 name: reciprocal year -conversionFactor: 3,168 81 x 10⁻⁸ s⁻¹ +conversionFactor: '3,168 81 x 10⁻⁸ s⁻¹' symbol: 1/y id: un-cefact-cc-H09 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20457,13 +20457,13 @@ name: half page – electronic levelCategory: '3.9' id: un-cefact-cc-H1 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20474,17 +20474,17 @@ quantity: frequency levelCategory: 1M commonCode: H10 name: reciprocal hour -conversionFactor: 2,777 78 × 10⁻⁴ s⁻¹ +conversionFactor: '2,777 78 × 10⁻⁴ s⁻¹' symbol: 1/h id: un-cefact-cc-H10 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20495,17 +20495,17 @@ quantity: frequency levelCategory: 1M commonCode: H11 name: reciprocal month -conversionFactor: 3,802 57 × 10⁻⁷ s⁻¹ +conversionFactor: '3,802 57 × 10⁻⁷ s⁻¹' symbol: 1/mo id: un-cefact-cc-H11 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20516,17 +20516,17 @@ quantity: temperature levelCategory: 1M commonCode: H12 name: degree Celsius per hour -conversionFactor: 2,777 78 x 10⁻⁴ s⁻¹ K +conversionFactor: '2,777 78 x 10⁻⁴ s⁻¹ K' symbol: °C/h id: un-cefact-cc-H12 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20537,17 +20537,17 @@ quantity: temperature levelCategory: 1M commonCode: H13 name: degree Celsius per minute -conversionFactor: 1,666 67 x 10⁻² s⁻¹ K +conversionFactor: '1,666 67 x 10⁻² s⁻¹ K' symbol: °C/min id: un-cefact-cc-H13 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20562,20 +20562,20 @@ conversionFactor: s⁻¹ K symbol: °C/s id: un-cefact-cc-H14 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '106' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: 1M commonCode: H15 name: square centimetre per gram @@ -20583,13 +20583,13 @@ conversionFactor: 10⁻¹ kg⁻¹ x m² symbol: cm²/g id: un-cefact-cc-H15 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20605,13 +20605,13 @@ symbol: dam² description: 'Synonym: are' id: un-cefact-cc-H16 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20627,13 +20627,13 @@ symbol: hm² description: "Synonym:\_hectare" id: un-cefact-cc-H18 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20648,13 +20648,13 @@ conversionFactor: 10⁶ m³ symbol: hm³ id: un-cefact-cc-H19 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20664,13 +20664,13 @@ name: half litre levelCategory: '3.8' id: un-cefact-cc-H2 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20685,13 +20685,13 @@ conversionFactor: 10⁹ m³ symbol: km³ id: un-cefact-cc-H20 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20701,13 +20701,13 @@ description: A unit of count defining the number of blanks. levelCategory: '3.2' id: un-cefact-cc-H21 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20718,17 +20718,17 @@ quantity: electric field strength levelCategory: '2' commonCode: H22 name: volt square inch per pound-force -conversionFactor: 1,450 377 439 8 × 10⁻⁴ m³ x s⁻¹ x A⁻¹ +conversionFactor: '1,450 377 439 8 × 10⁻⁴ m³ x s⁻¹ x A⁻¹' symbol: V/(lbf/in²) id: un-cefact-cc-H22 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20739,17 +20739,17 @@ quantity: electric field strength levelCategory: '2' commonCode: H23 name: volt per inch -conversionFactor: 3,937 007 874 × 10¹ m x kg x s⁻³ x A⁻¹ +conversionFactor: '3,937 007 874 × 10¹ m x kg x s⁻³ x A⁻¹' symbol: V/in id: un-cefact-cc-H23 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20764,31 +20764,31 @@ conversionFactor: "10⁶\_V/s" symbol: V/µs id: un-cefact-cc-H24 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H25 name: percent per kelvin -description: A unit of proportion, equal to 0.01, in relation to the SI base unit Kelvin. +description: 'A unit of proportion, equal to 0.01, in relation to the SI base unit Kelvin.' levelCategory: '3.7' symbol: '%/K' conversionFactor: 10⁻² K⁻¹ id: un-cefact-cc-H25 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20803,13 +20803,13 @@ conversionFactor: Ω/m symbol: Ω/m id: un-cefact-cc-H26 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20820,24 +20820,24 @@ quantity: solid angle levelCategory: '2' commonCode: H27 name: degree per metre -conversionFactor: 1,745 329 × 10⁻² rad/m +conversionFactor: '1,745 329 × 10⁻² rad/m' symbol: °/m id: un-cefact-cc-H27 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '71' -quantity: permittivity, permittivity of vacuum, (electric constant) +quantity: 'permittivity, permittivity of vacuum, (electric constant)' levelCategory: 1S commonCode: H28 name: microfarad per kilometre @@ -20845,20 +20845,20 @@ conversionFactor: 10⁻⁹ F/m symbol: µF/km id: un-cefact-cc-H28 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '40' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: H29 name: microgram per litre @@ -20866,13 +20866,13 @@ conversionFactor: 10⁻⁶ m⁻³ x kg symbol: µg/l id: un-cefact-cc-H29 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20887,13 +20887,13 @@ conversionFactor: 10⁻¹² m² symbol: µm² id: un-cefact-cc-H30 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20908,20 +20908,20 @@ conversionFactor: A x kg⁻¹ symbol: A/kg id: un-cefact-cc-H31 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '13' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: '1' commonCode: H32 name: ampere squared second @@ -20929,20 +20929,20 @@ conversionFactor: A² x s symbol: A²·s id: un-cefact-cc-H32 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '72' -quantity: permittivity, permittivity of vacuum, (electric constant) +quantity: 'permittivity, permittivity of vacuum, (electric constant)' levelCategory: 1S commonCode: H33 name: farad per kilometre @@ -20950,20 +20950,20 @@ conversionFactor: 10⁻³ F/m symbol: F/km id: un-cefact-cc-H33 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '211' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '2' commonCode: H34 name: hertz metre @@ -20971,13 +20971,13 @@ conversionFactor: Hz x m symbol: Hz·m id: un-cefact-cc-H34 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -20992,13 +20992,13 @@ conversionFactor: K x m⁻¹ x kg⁻¹ x s³ symbol: K·m/W id: un-cefact-cc-H35 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21013,13 +21013,13 @@ conversionFactor: 10³ Ω/m symbol: MΩ/km id: un-cefact-cc-H36 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21034,13 +21034,13 @@ conversionFactor: 10⁶ Ω/m symbol: MΩ/m id: un-cefact-cc-H37 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21057,20 +21057,20 @@ conversionFactor: 10⁶ A symbol: MA id: un-cefact-cc-H38 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '212' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '2' commonCode: H39 name: megahertz kilometre @@ -21078,20 +21078,20 @@ conversionFactor: 10⁹ Hz x m symbol: MHz·km id: un-cefact-cc-H39 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '156' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '1' commonCode: H40 name: newton per ampere @@ -21099,34 +21099,34 @@ conversionFactor: kg x m x s⁻² x A⁻¹ symbol: N/A id: un-cefact-cc-H40 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '170' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: H41 -name: newton metre watt to the power minus 0,5 +name: 'newton metre watt to the power minus 0,5' conversionFactor: kg x m² x s⁻² x W⁻⁰‧⁵ symbol: N·m·W⁻⁰‧⁵ id: un-cefact-cc-H41 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21141,13 +21141,13 @@ conversionFactor: m⁻² kg x s⁻² symbol: Pa/m id: un-cefact-cc-H42 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21162,13 +21162,13 @@ conversionFactor: 10² S/m symbol: S/cm id: un-cefact-cc-H43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21185,13 +21185,13 @@ conversionFactor: 10¹² Ω symbol: TΩ id: un-cefact-cc-H44 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21206,13 +21206,13 @@ conversionFactor: "m x\_kg x s⁻² x A⁻¹" symbol: V·s/m id: un-cefact-cc-H45 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21227,13 +21227,13 @@ conversionFactor: m² x kg x s⁻⁴ x A⁻¹ symbol: V/s id: un-cefact-cc-H46 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21250,13 +21250,13 @@ conversionFactor: m⁻¹ x kg x s⁻³ symbol: W/m³ id: un-cefact-cc-H47 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21271,38 +21271,38 @@ conversionFactor: 10⁻¹⁸ m⁻² x kg⁻¹ x s⁴ x A² symbol: aF id: un-cefact-cc-H48 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '178' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1M commonCode: H49 name: centimetre per hour -conversionFactor: 0,277 777 778 × 10⁻⁶ m x s⁻¹ +conversionFactor: '0,277 777 778 × 10⁻⁶ m x s⁻¹' symbol: cm/h id: un-cefact-cc-H49 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '25' quantity: >- @@ -21315,20 +21315,20 @@ conversionFactor: 10⁶ m⁻³ symbol: cm⁻³ id: un-cefact-cc-H50 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '07' sector: ACOUSTICS groupId: '38' -quantity: sound pressure level, sound power level +quantity: 'sound pressure level, sound power level' levelCategory: '1' commonCode: H51 name: decibel per kilometre @@ -21336,20 +21336,20 @@ conversionFactor: 10⁻⁴ B/m symbol: dB/km id: un-cefact-cc-H51 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '07' sector: ACOUSTICS groupId: '39' -quantity: sound pressure level, sound power level +quantity: 'sound pressure level, sound power level' levelCategory: '1' commonCode: H52 name: decibel per metre @@ -21357,20 +21357,20 @@ conversionFactor: 10⁻¹ B/m symbol: dB/m id: un-cefact-cc-H52 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '66' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: H53 name: kilogram per bar @@ -21378,20 +21378,20 @@ conversionFactor: 10⁻⁵ m x s² symbol: kg/bar id: un-cefact-cc-H53 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '59' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: H54 name: kilogram per cubic decimetre kelvin @@ -21399,20 +21399,20 @@ conversionFactor: 10³ m⁻³ x kg x K⁻¹ symbol: (kg/dm³)/K id: un-cefact-cc-H54 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '60' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: H55 name: kilogram per cubic decimetre bar @@ -21420,13 +21420,13 @@ conversionFactor: 10⁻² m⁻² x s² symbol: (kg/dm³)/bar id: un-cefact-cc-H55 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21441,13 +21441,13 @@ conversionFactor: kg m⁻² x s⁻¹ symbol: kg/(m²·s) id: un-cefact-cc-H56 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21458,17 +21458,17 @@ quantity: solid angle levelCategory: '2' commonCode: H57 name: inch per two pi radiant -conversionFactor: 2,54 × 10⁻² m/(2 × π × rad) +conversionFactor: '2,54 × 10⁻² m/(2 × π × rad)' symbol: in/revolution id: un-cefact-cc-H57 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21483,13 +21483,13 @@ conversionFactor: m⁻¹ x kg⁻¹ x s² x A symbol: m/(V·s) id: un-cefact-cc-H58 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21504,13 +21504,13 @@ conversionFactor: m x kg⁻¹ x s² symbol: m²/N id: un-cefact-cc-H59 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21525,13 +21525,13 @@ conversionFactor: '1' symbol: m³/m³ id: un-cefact-cc-H60 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21546,13 +21546,13 @@ conversionFactor: 10⁻¹ S/m symbol: mS/cm id: un-cefact-cc-H61 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21563,24 +21563,24 @@ quantity: electric field strength levelCategory: 1M commonCode: H62 name: millivolt per minute -conversionFactor: 1,666 666 667 × 10⁻⁵ m² x kg x s⁻⁴ x A⁻¹ +conversionFactor: '1,666 666 667 × 10⁻⁵ m² x kg x s⁻⁴ x A⁻¹' symbol: mV/min id: un-cefact-cc-H62 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '122' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: 1S commonCode: H63 name: milligram per square centimetre @@ -21588,20 +21588,20 @@ conversionFactor: 10⁻² m⁻² x kg symbol: mg/cm² id: un-cefact-cc-H63 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '39' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1S commonCode: H64 name: milligram per gram @@ -21609,20 +21609,20 @@ conversionFactor: 10⁻³ 1 symbol: mg/g id: un-cefact-cc-H64 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '103' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: 1M commonCode: H65 name: millilitre per cubic metre @@ -21630,59 +21630,59 @@ conversionFactor: 10⁻⁶ 1 symbol: ml/m³ id: un-cefact-cc-H65 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '182' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: H66 name: millimetre per year -conversionFactor: 3,15576 × 10⁴ m x s⁻¹ +conversionFactor: '3,15576 × 10⁴ m x s⁻¹' symbol: mm/y id: un-cefact-cc-H66 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '183' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: H67 name: millimetre per hour -conversionFactor: 0,277 777 778 × 10⁻⁷ m x s⁻¹ +conversionFactor: '0,277 777 778 × 10⁻⁷ m x s⁻¹' symbol: mm/h id: un-cefact-cc-H67 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '54' quantity: ionic strength @@ -21693,13 +21693,13 @@ conversionFactor: mol x kg⁻¹ symbol: mmol/g id: un-cefact-cc-H68 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21714,13 +21714,13 @@ conversionFactor: 10⁻¹⁵ m⁻² x kg x s⁻² symbol: pPa/km id: un-cefact-cc-H69 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21735,47 +21735,47 @@ conversionFactor: 10⁻¹² s symbol: ps id: un-cefact-cc-H70 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H71 name: percent per month -description: A unit of proportion, equal to 0.01, in relation to a month. +description: 'A unit of proportion, equal to 0.01, in relation to a month.' levelCategory: '3.7' symbol: '%/mo' id: un-cefact-cc-H71 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H72 name: percent per hectobar -description: A unit of proportion, equal to 0.01, in relation to 100-fold of the unit bar. +description: 'A unit of proportion, equal to 0.01, in relation to 100-fold of the unit bar.' levelCategory: '3.7' symbol: '%/hbar' id: un-cefact-cc-H72 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21789,13 +21789,13 @@ symbol: '%/daK' conversionFactor: 10⁻³ K⁻¹ id: un-cefact-cc-H73 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21812,13 +21812,13 @@ conversionFactor: W m⁻¹ symbol: W/m id: un-cefact-cc-H74 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21835,20 +21835,20 @@ conversionFactor: 10¹ Pa symbol: daPa id: un-cefact-cc-H75 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '112' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: 1M commonCode: H76 name: gram per millimetre @@ -21856,13 +21856,13 @@ conversionFactor: 10¹ kg x m⁻¹ symbol: g/mm id: un-cefact-cc-H76 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21873,13 +21873,13 @@ levelCategory: '3' symbol: MW id: un-cefact-cc-H77 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21893,17 +21893,17 @@ levelCategory: '2' status: DEPRECATED commonCode: H78 name: conventional centimetre of water -conversionFactor: 9,806 65 × 10¹ Pa +conversionFactor: '9,806 65 × 10¹ Pa' symbol: cm H₂O id: un-cefact-cc-H78 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21916,7 +21916,7 @@ quantity: >- levelCategory: '2' commonCode: H79 name: French gauge -conversionFactor: 0,333 333 333 × 10⁻³ m +conversionFactor: '0,333 333 333 × 10⁻³ m' symbol: Fg description: >- A unit of distance used for measuring the diameter of small tubes such as @@ -21925,13 +21925,13 @@ description: >- Synonym: French, Charrière, Charrière gauge id: un-cefact-cc-H79 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21943,37 +21943,37 @@ description: >- 1.75 inches (44.45 mm) high. levelCategory: '3' symbol: U or RU -conversionFactor: 4,445 × 10⁻² m +conversionFactor: '4,445 × 10⁻² m' id: un-cefact-cc-H80 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '179' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1M commonCode: H81 name: millimetre per minute -conversionFactor: 1,666 666 667 × 10⁻⁵ m x s⁻¹ +conversionFactor: '1,666 666 667 × 10⁻⁵ m x s⁻¹' symbol: mm/min id: un-cefact-cc-H81 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -21985,23 +21985,23 @@ description: >- or 0.352 777 8 millimeters)) levelCategory: '3.5' symbol: bp -conversionFactor: 0,352 777 8 × 10⁻³ m +conversionFactor: '0,352 777 8 × 10⁻³ m' id: un-cefact-cc-H82 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '104' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: 1M commonCode: H83 name: litre per kilogram @@ -22009,13 +22009,13 @@ conversionFactor: 10⁻³ m³ x kg⁻¹ symbol: l/kg id: un-cefact-cc-H83 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22032,13 +22032,13 @@ conversionFactor: 10⁻⁶ kg × m symbol: g·mm id: un-cefact-cc-H84 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22049,17 +22049,17 @@ quantity: frequency levelCategory: 1M commonCode: H85 name: reciprocal week -conversionFactor: 1,647 989 452 868 × 10⁻⁶ s⁻¹ +conversionFactor: '1,647 989 452 868 × 10⁻⁶ s⁻¹' symbol: 1/wk id: un-cefact-cc-H85 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22071,13 +22071,13 @@ description: >- levelCategory: '3.8' id: un-cefact-cc-H87 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22092,67 +22092,67 @@ conversionFactor: 10⁹ Ω x m symbol: MΩ·km id: un-cefact-cc-H88 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H89 name: percent per ohm -description: A unit of proportion, equal to 0.01, in relation to the SI derived unit ohm. +description: 'A unit of proportion, equal to 0.01, in relation to the SI derived unit ohm.' levelCategory: '3.7' symbol: '%/Ω' conversionFactor: 10⁻² Ω⁻¹ id: un-cefact-cc-H89 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H90 name: percent per degree -description: A unit of proportion, equal to 0.01, in relation to an angle of one degree. +description: 'A unit of proportion, equal to 0.01, in relation to an angle of one degree.' levelCategory: '3.7' symbol: '%/°' -conversionFactor: 0,572 957 8 rad⁻¹ +conversionFactor: '0,572 957 8 rad⁻¹' id: un-cefact-cc-H90 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H91 name: percent per ten thousand -description: A unit of proportion, equal to 0.01, in relation to multiples of ten thousand. +description: 'A unit of proportion, equal to 0.01, in relation to multiples of ten thousand.' levelCategory: '3.7' symbol: '%/10000' conversionFactor: 10⁻⁶ id: un-cefact-cc-H91 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22166,67 +22166,67 @@ symbol: '%/100000' conversionFactor: 10⁻⁷ id: un-cefact-cc-H92 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H93 name: percent per hundred -description: A unit of proportion, equal to 0.01, in relation to multiples of one hundred. +description: 'A unit of proportion, equal to 0.01, in relation to multiples of one hundred.' levelCategory: '3.7' symbol: '%/100' conversionFactor: 10⁻⁴ id: un-cefact-cc-H93 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H94 name: percent per thousand -description: A unit of proportion, equal to 0.01, in relation to multiples of one thousand. +description: 'A unit of proportion, equal to 0.01, in relation to multiples of one thousand.' levelCategory: '3.7' symbol: '%/1000' conversionFactor: 10⁻⁵ id: un-cefact-cc-H94 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H95 name: percent per volt -description: A unit of proportion, equal to 0.01, in relation to the SI derived unit volt. +description: 'A unit of proportion, equal to 0.01, in relation to the SI derived unit volt.' levelCategory: '3.7' symbol: '%/V' conversionFactor: 10⁻² V⁻¹ id: un-cefact-cc-H95 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22240,65 +22240,65 @@ symbol: '%/bar' conversionFactor: 10⁻⁷ Pa⁻¹ id: un-cefact-cc-H96 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H98 name: percent per inch -description: A unit of proportion, equal to 0.01, in relation to an inch. +description: 'A unit of proportion, equal to 0.01, in relation to an inch.' levelCategory: '3.7' symbol: '%/in' -conversionFactor: 0,393 700 8 m⁻¹ +conversionFactor: '0,393 700 8 m⁻¹' id: un-cefact-cc-H98 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: H99 name: percent per metre -description: A unit of proportion, equal to 0.01, in relation to a metre. +description: 'A unit of proportion, equal to 0.01, in relation to a metre.' levelCategory: '3.7' symbol: '%/m' conversionFactor: 10⁻² m⁻¹ id: un-cefact-cc-H99 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: HA name: hank -description: A unit of length, typically for yarn. +description: 'A unit of length, typically for yarn.' levelCategory: '3.9' id: un-cefact-cc-HA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22310,13 +22310,13 @@ levelCategory: '3.2' symbol: piece·d id: un-cefact-cc-HAD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22333,13 +22333,13 @@ symbol: ha description: 'Synonym: square hectometre' id: un-cefact-cc-HAR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22356,13 +22356,13 @@ conversionFactor: 10⁷ Pa symbol: hbar id: un-cefact-cc-HBA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22374,13 +22374,13 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-HBX meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22390,13 +22390,13 @@ description: A unit of count defining the number of units counted in multiples o levelCategory: '3.7' id: un-cefact-cc-HC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22407,31 +22407,31 @@ levelCategory: '3.7' conversionFactor: '6' id: un-cefact-cc-HD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: HDW -name: hundred kilogram, dry weight +name: 'hundred kilogram, dry weight' description: >- A unit of mass defining the number of hundred kilograms of a product, disregarding the water content of the product. levelCategory: '3.1' id: un-cefact-cc-HDW meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22441,13 +22441,13 @@ name: hundredth of a carat levelCategory: '3.5' id: un-cefact-cc-HE meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22459,13 +22459,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-HEA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22475,13 +22475,13 @@ name: hundred foot levelCategory: '3.8' id: un-cefact-cc-HF meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22496,13 +22496,13 @@ conversionFactor: 10⁻¹ kg symbol: hg id: un-cefact-cc-HGM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22512,13 +22512,13 @@ description: A unit of volume equal to one hundred cubic foot. levelCategory: '3.8' id: un-cefact-cc-HH meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22528,13 +22528,13 @@ name: hundred sheet levelCategory: '3.8' id: un-cefact-cc-HI meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22546,13 +22546,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-HIU meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22564,17 +22564,17 @@ levelCategory: '2' status: DEPRECATED commonCode: HJ name: metric horse power -conversionFactor: 735,498 75 W +conversionFactor: '735,498 75 W' symbol: metric hp id: un-cefact-cc-HJ meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22584,31 +22584,31 @@ name: hundred kilogram levelCategory: '3.8' id: un-cefact-cc-HK meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: HKM -name: hundred kilogram, net mass +name: 'hundred kilogram, net mass' description: >- A unit of mass defining the number of hundred kilograms of a product, after deductions. levelCategory: '3.1' id: un-cefact-cc-HKM meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22618,13 +22618,13 @@ name: hundred foot (linear) levelCategory: '3.8' id: un-cefact-cc-HL meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22639,34 +22639,34 @@ conversionFactor: 10⁻¹ m³ symbol: hl id: un-cefact-cc-HLT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '188' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: HM name: mile per hour (statute mile) -conversionFactor: 0,447 04 m/s +conversionFactor: '0,447 04 m/s' symbol: mile/h id: un-cefact-cc-HM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22678,13 +22678,13 @@ levelCategory: '3.2' symbol: piece·mo id: un-cefact-cc-HMO meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22695,13 +22695,13 @@ levelCategory: '3.8' symbol: Mm³ id: un-cefact-cc-HMQ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22718,13 +22718,13 @@ conversionFactor: 10² m symbol: hm id: un-cefact-cc-HMT meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22738,17 +22738,17 @@ levelCategory: '2' status: DEPRECATED commonCode: HN name: conventional millimetre of mercury -conversionFactor: 133,322 4 Pa +conversionFactor: '133,322 4 Pa' symbol: mm Hg id: un-cefact-cc-HN meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22758,13 +22758,13 @@ name: hundred troy ounce levelCategory: '3.8' id: un-cefact-cc-HO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22778,17 +22778,17 @@ levelCategory: '2' status: DEPRECATED commonCode: HP name: conventional millimetre of water -conversionFactor: 9,806 65 Pa +conversionFactor: '9,806 65 Pa' symbol: mm H₂O id: un-cefact-cc-HP meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22798,13 +22798,13 @@ description: A unit of volume equal to one hundred litres of pure alcohol. levelCategory: '3.1' id: un-cefact-cc-HPA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22814,13 +22814,13 @@ name: hundred square foot levelCategory: '3.8' id: un-cefact-cc-HS meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22830,13 +22830,13 @@ name: half hour levelCategory: '3.8' id: un-cefact-cc-HT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22851,13 +22851,13 @@ conversionFactor: Hz symbol: Hz id: un-cefact-cc-HTZ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22872,13 +22872,13 @@ conversionFactor: 3 600 s symbol: h id: un-cefact-cc-HUR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22890,13 +22890,13 @@ levelCategory: '3.2' symbol: piece·k id: un-cefact-cc-HWE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22906,34 +22906,34 @@ name: hundred yard levelCategory: '3.8' id: un-cefact-cc-HY meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '172' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: IA name: inch pound (pound inch) -conversionFactor: 1,152 12 x 10⁻² kg x m +conversionFactor: '1,152 12 x 10⁻² kg x m' symbol: in·lb id: un-cefact-cc-IA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22943,13 +22943,13 @@ name: count per inch levelCategory: '3.9' id: un-cefact-cc-IC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22959,13 +22959,13 @@ description: A unit of count defining the number of persons. levelCategory: '3.9' id: un-cefact-cc-IE meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22976,13 +22976,13 @@ description: Use inch of water (common code F78) levelCategory: '3.1' id: un-cefact-cc-IF meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -22992,13 +22992,13 @@ name: column inch levelCategory: '3.9' id: un-cefact-cc-II meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23008,13 +23008,13 @@ name: inch per minute levelCategory: '3.5' id: un-cefact-cc-IL meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23024,13 +23024,13 @@ name: impression levelCategory: '3.9' id: un-cefact-cc-IM meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23043,17 +23043,17 @@ quantity: >- levelCategory: '2' commonCode: INH name: inch -conversionFactor: 25,4 x 10⁻³ m +conversionFactor: '25,4 x 10⁻³ m' symbol: in id: un-cefact-cc-INH meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23064,17 +23064,17 @@ quantity: area levelCategory: '2' commonCode: INK name: square inch -conversionFactor: 6,451 6 x 10⁻⁴ m² +conversionFactor: '6,451 6 x 10⁻⁴ m²' symbol: in² id: un-cefact-cc-INK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23085,18 +23085,18 @@ quantity: volume levelCategory: '2' commonCode: INQ name: cubic inch -conversionFactor: 16,387 064 x 10⁻⁶ m³ +conversionFactor: '16,387 064 x 10⁻⁶ m³' symbol: in³ description: 'Synonym: inch cubed' id: un-cefact-cc-INQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23106,13 +23106,13 @@ name: insurance policy levelCategory: '3.9' id: un-cefact-cc-IP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23124,13 +23124,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-ISD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23140,34 +23140,34 @@ name: count per centimetre levelCategory: '3.9' id: un-cefact-cc-IT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '185' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: IU name: inch per second -conversionFactor: 0,025 4 m/s +conversionFactor: '0,025 4 m/s' symbol: in/s id: un-cefact-cc-IU meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23177,52 +23177,52 @@ description: A unit of count defining the number of international units per gram levelCategory: '3.7' id: un-cefact-cc-IUG meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '215' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: '2' commonCode: IV name: inch per second squared -conversionFactor: 0,025 4 m/s² +conversionFactor: '0,025 4 m/s²' symbol: in/s² id: un-cefact-cc-IV meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: J10 name: percent per millimetre -description: A unit of proportion, equal to 0.01, in relation to a millimetre. +description: 'A unit of proportion, equal to 0.01, in relation to a millimetre.' levelCategory: '3.7' symbol: '%/mm' conversionFactor: 10 m⁻¹ id: un-cefact-cc-J10 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23233,16 +23233,16 @@ description: >- inch). levelCategory: '3.7' symbol: ‰/psi -conversionFactor: 1,450 377 x 10⁻⁷ Pa⁻¹ +conversionFactor: '1,450 377 x 10⁻⁷ Pa⁻¹' id: un-cefact-cc-J12 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23255,13 +23255,13 @@ levelCategory: '3.5' symbol: °API id: un-cefact-cc-J13 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23272,13 +23272,13 @@ levelCategory: '3.5' symbol: °Bé id: un-cefact-cc-J14 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23289,13 +23289,13 @@ levelCategory: '3.5' symbol: °Bé (US heavy) id: un-cefact-cc-J15 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23306,13 +23306,13 @@ levelCategory: '3.5' symbol: °Bé (US light) id: un-cefact-cc-J16 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23325,13 +23325,13 @@ levelCategory: '3.5' symbol: °Balling id: un-cefact-cc-J17 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23344,41 +23344,41 @@ levelCategory: '3.5' symbol: °Bx id: un-cefact-cc-J18 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '99' -quantity: thermal insulance, coefficient of thermal insulation +quantity: 'thermal insulance, coefficient of thermal insulation' levelCategory: '2' commonCode: J19 name: degree Fahrenheit hour square foot per British thermal unit (thermochemical) -conversionFactor: 0,176 228 m² x K/W +conversionFactor: '0,176 228 m² x K/W' symbol: °F·h·ft²/Btuth id: un-cefact-cc-J19 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '136' -quantity: massic energy, specific energy +quantity: 'massic energy, specific energy' levelCategory: '1' commonCode: J2 name: joule per kilogram @@ -23386,13 +23386,13 @@ conversionFactor: J/kg symbol: J/kg id: un-cefact-cc-J2 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23403,17 +23403,17 @@ quantity: temperature levelCategory: '2' commonCode: J20 name: degree Fahrenheit per kelvin -conversionFactor: 0,555 555 6 +conversionFactor: '0,555 555 6' symbol: °F/K id: un-cefact-cc-J20 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23424,40 +23424,40 @@ quantity: temperature levelCategory: '2' commonCode: J21 name: degree Fahrenheit per bar -conversionFactor: 0,555 555 6 x 10⁻⁵ K/Pa +conversionFactor: '0,555 555 6 x 10⁻⁵ K/Pa' symbol: °F/bar id: un-cefact-cc-J21 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '100' -quantity: thermal insulance, coefficient of thermal insulation +quantity: 'thermal insulance, coefficient of thermal insulation' levelCategory: '2' commonCode: J22 name: >- degree Fahrenheit hour square foot per British thermal unit (international table) -conversionFactor: 0,176 110 2 m² x K/W +conversionFactor: '0,176 110 2 m² x K/W' symbol: °F·h·ft²/BtuIT id: un-cefact-cc-J22 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23468,17 +23468,17 @@ quantity: temperature variation over time levelCategory: '2' commonCode: J23 name: degree Fahrenheit per hour -conversionFactor: 1,543 210 x 10⁻⁴ K/s +conversionFactor: '1,543 210 x 10⁻⁴ K/s' symbol: °F/h id: un-cefact-cc-J23 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23489,17 +23489,17 @@ quantity: temperature variation over time levelCategory: '2' commonCode: J24 name: degree Fahrenheit per minute -conversionFactor: 9,259 259 x 10⁻³ K/s +conversionFactor: '9,259 259 x 10⁻³ K/s' symbol: °F/min id: un-cefact-cc-J24 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23510,17 +23510,17 @@ quantity: temperature variation over time levelCategory: '2' commonCode: J25 name: degree Fahrenheit per second -conversionFactor: 0,555 555 6 K/s +conversionFactor: '0,555 555 6 K/s' symbol: °F/s id: un-cefact-cc-J25 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23531,17 +23531,17 @@ quantity: temperature levelCategory: '2' commonCode: J26 name: reciprocal degree Fahrenheit -conversionFactor: 1,8 1/K +conversionFactor: '1,8 1/K' symbol: 1/°F id: un-cefact-cc-J26 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23554,13 +23554,13 @@ levelCategory: '3.5' symbol: °Oechsle id: un-cefact-cc-J27 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23571,17 +23571,17 @@ quantity: temperature variation over time levelCategory: '2' commonCode: J28 name: degree Rankine per hour -conversionFactor: 1,543 210 x 10⁻⁴ K/s +conversionFactor: '1,543 210 x 10⁻⁴ K/s' symbol: °R/h id: un-cefact-cc-J28 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23592,17 +23592,17 @@ quantity: temperature variation over time levelCategory: '2' commonCode: J29 name: degree Rankine per minute -conversionFactor: 9,259 259 x 10⁻³ K/s +conversionFactor: '9,259 259 x 10⁻³ K/s' symbol: °R/min id: un-cefact-cc-J29 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23613,17 +23613,17 @@ quantity: temperature variation over time levelCategory: '2' commonCode: J30 name: degree Rankine per second -conversionFactor: 0,555 555 6 K/s +conversionFactor: '0,555 555 6 K/s' symbol: °R/s id: un-cefact-cc-J30 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23636,13 +23636,13 @@ levelCategory: '3.5' symbol: °Tw id: un-cefact-cc-J31 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23657,13 +23657,13 @@ conversionFactor: 10⁻⁶ Pa x s symbol: µP id: un-cefact-cc-J32 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23678,20 +23678,20 @@ conversionFactor: 10⁻⁹ symbol: µg/kg id: un-cefact-cc-J33 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '77' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: J34 name: microgram per cubic metre kelvin @@ -23699,20 +23699,20 @@ conversionFactor: 10⁻⁹ (kg/m³)/K symbol: (µg/m³)/K id: un-cefact-cc-J34 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '78' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: J35 name: microgram per cubic metre bar @@ -23720,13 +23720,13 @@ conversionFactor: 10⁻¹⁴ (kg/m³)/Pa symbol: (µg/m³)/bar id: un-cefact-cc-J35 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23741,13 +23741,13 @@ conversionFactor: 10⁻⁶ symbol: µl/l id: un-cefact-cc-J36 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23758,13 +23758,13 @@ levelCategory: '3.6' symbol: Bd id: un-cefact-cc-J38 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23777,17 +23777,17 @@ quantity: >- levelCategory: '2' commonCode: J39 name: British thermal unit (mean) -conversionFactor: 1,055 87 x 10³ J +conversionFactor: '1,055 87 x 10³ J' symbol: Btu id: un-cefact-cc-J39 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23798,17 +23798,17 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J40 name: "British thermal unit (international table) foot per hour\_square foot degree Fahrenheit" -conversionFactor: 1,730 735 W/(m x K) +conversionFactor: '1,730 735 W/(m x K)' symbol: BtuIT·ft/(h·ft²·°F) id: un-cefact-cc-J40 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23819,17 +23819,17 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J41 name: "British thermal unit (international table) inch per hour square\_foot degree Fahrenheit" -conversionFactor: 0,144 227 9 W/(m x K) +conversionFactor: '0,144 227 9 W/(m x K)' symbol: BtuIT·in/(h·ft²·°F) id: un-cefact-cc-J41 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23840,38 +23840,38 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J42 name: "British thermal unit (international table) inch per second square\_foot degree Fahrenheit" -conversionFactor: 5,192 204 x 10² W/(m x K) +conversionFactor: '5,192 204 x 10² W/(m x K)' symbol: BtuIT·in/(s·ft²·°F) id: un-cefact-cc-J42 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '119' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: J43 name: British thermal unit (international table) per pound degree Fahrenheit -conversionFactor: 4,186 8 x 10³ J/(kg x K) +conversionFactor: '4,186 8 x 10³ J/(kg x K)' symbol: BtuIT/(lb·°F) id: un-cefact-cc-J43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23882,17 +23882,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: J44 name: British thermal unit (international table) per minute -conversionFactor: 17,584 266 W +conversionFactor: '17,584 266 W' symbol: BtuIT/min id: un-cefact-cc-J44 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23903,17 +23903,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: J45 name: British thermal unit (international table) per second -conversionFactor: 1,055 056 x 10³ W +conversionFactor: '1,055 056 x 10³ W' symbol: BtuIT/s id: un-cefact-cc-J45 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23924,17 +23924,17 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J46 name: "British thermal unit (thermochemical) foot per hour square\_foot degree Fahrenheit" -conversionFactor: 1,729 577 W/(m x K) +conversionFactor: '1,729 577 W/(m x K)' symbol: Btuth·ft/(h·ft²·°F) id: un-cefact-cc-J46 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23945,17 +23945,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: J47 name: British thermal unit (thermochemical) per hour -conversionFactor: 0,292 875 1 W +conversionFactor: '0,292 875 1 W' symbol: Btuth/h id: un-cefact-cc-J47 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23966,17 +23966,17 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J48 name: "British thermal unit (thermochemical) inch per hour square\_foot degree Fahrenheit" -conversionFactor: 0,144 131 4 W/(m x K) +conversionFactor: '0,144 131 4 W/(m x K)' symbol: Btuth·in/(h·ft²·°F) id: un-cefact-cc-J48 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -23987,38 +23987,38 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J49 name: "British thermal unit (thermochemical) inch per second\_square foot degree Fahrenheit" -conversionFactor: 5,188 732 x 10² W/(m x K) +conversionFactor: '5,188 732 x 10² W/(m x K)' symbol: Btuth·in/(s·ft²·°F) id: un-cefact-cc-J49 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '120' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: J50 name: British thermal unit (thermochemical) per pound degree Fahrenheit -conversionFactor: 4,184 x 10³ J/(kg x K) +conversionFactor: '4,184 x 10³ J/(kg x K)' symbol: Btuth/(lb·°F) id: un-cefact-cc-J50 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24029,17 +24029,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: J51 name: British thermal unit (thermochemical) per minute -conversionFactor: 17,572 50 W +conversionFactor: '17,572 50 W' symbol: Btuth/min id: un-cefact-cc-J51 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24050,17 +24050,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: J52 name: British thermal unit (thermochemical) per second -conversionFactor: 1,054 350 x 10³ W +conversionFactor: '1,054 350 x 10³ W' symbol: Btuth/s id: un-cefact-cc-J52 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24075,13 +24075,13 @@ conversionFactor: C x m²/kg symbol: C·m²/kg id: un-cefact-cc-J53 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24095,13 +24095,13 @@ symbol: MBd conversionFactor: 10⁶ Bd id: un-cefact-cc-J54 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24118,13 +24118,13 @@ conversionFactor: W x s symbol: W·s id: un-cefact-cc-J55 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24139,13 +24139,13 @@ conversionFactor: '1' symbol: bar/bar id: un-cefact-cc-J56 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24156,17 +24156,17 @@ quantity: volume levelCategory: '2' commonCode: J57 name: barrel (UK petroleum) -conversionFactor: 0,159 113 15 m³ +conversionFactor: '0,159 113 15 m³' symbol: bbl (UK liq.) id: un-cefact-cc-J57 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24177,17 +24177,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J58 name: barrel (UK petroleum) per minute -conversionFactor: 2,651 886 m³/s +conversionFactor: '2,651 886 m³/s' symbol: bbl (UK liq.)/min id: un-cefact-cc-J58 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24198,17 +24198,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J59 name: barrel (UK petroleum) per day -conversionFactor: 1,841 587 4 x 10⁻⁶ m³/s +conversionFactor: '1,841 587 4 x 10⁻⁶ m³/s' symbol: bbl (UK liq.)/d id: un-cefact-cc-J59 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24219,17 +24219,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J60 name: barrel (UK petroleum) per hour -conversionFactor: 4,419 810 x 10⁻⁵ m³/s +conversionFactor: '4,419 810 x 10⁻⁵ m³/s' symbol: bbl (UK liq.)/h id: un-cefact-cc-J60 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24240,17 +24240,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J61 name: barrel (UK petroleum) per second -conversionFactor: 0,159 113 15 m³/s +conversionFactor: '0,159 113 15 m³/s' symbol: bbl (UK liq.)/s id: un-cefact-cc-J61 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24261,17 +24261,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J62 name: barrel (US petroleum) per hour -conversionFactor: 4,416 314 x 10⁻⁵ m³/s +conversionFactor: '4,416 314 x 10⁻⁵ m³/s' symbol: bbl (US)/h id: un-cefact-cc-J62 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24282,17 +24282,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J63 name: barrel (US petroleum) per second -conversionFactor: 0,158 987 3 m³/s +conversionFactor: '0,158 987 3 m³/s' symbol: bbl (US)/s id: un-cefact-cc-J63 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24303,17 +24303,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J64 name: bushel (UK) per day -conversionFactor: 4,209 343 x 10⁻⁷ m³/s +conversionFactor: '4,209 343 x 10⁻⁷ m³/s' symbol: bu (UK)/d id: un-cefact-cc-J64 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24324,17 +24324,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J65 name: bushel (UK) per hour -conversionFactor: 1,010 242 x 10⁻⁵ m³/s +conversionFactor: '1,010 242 x 10⁻⁵ m³/s' symbol: bu (UK)/h id: un-cefact-cc-J65 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24345,17 +24345,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J66 name: bushel (UK) per minute -conversionFactor: 6,061 453 x 10⁻⁴ m³/s +conversionFactor: '6,061 453 x 10⁻⁴ m³/s' symbol: bu (UK)/min id: un-cefact-cc-J66 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24366,17 +24366,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J67 name: bushel (UK) per second -conversionFactor: 3,636 872 x 10⁻² m³/s +conversionFactor: '3,636 872 x 10⁻² m³/s' symbol: bu (UK)/s id: un-cefact-cc-J67 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24387,17 +24387,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J68 name: bushel (US dry) per day -conversionFactor: 4,078 596 x 10⁻⁷ m³/s +conversionFactor: '4,078 596 x 10⁻⁷ m³/s' symbol: bu (US dry)/d id: un-cefact-cc-J68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24408,17 +24408,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J69 name: bushel (US dry) per hour -conversionFactor: 9,788 631 x 10⁻⁶ m³/s +conversionFactor: '9,788 631 x 10⁻⁶ m³/s' symbol: bu (US dry)/h id: un-cefact-cc-J69 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24429,17 +24429,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J70 name: bushel (US dry) per minute -conversionFactor: 5,873 178 x 10⁻⁴ m³/s +conversionFactor: '5,873 178 x 10⁻⁴ m³/s' symbol: bu (US dry)/min id: un-cefact-cc-J70 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24450,24 +24450,24 @@ quantity: volume flow rate levelCategory: '2' commonCode: J71 name: bushel (US dry) per second -conversionFactor: 3,523 907 x 10⁻² m³/s +conversionFactor: '3,523 907 x 10⁻² m³/s' symbol: bu (US dry)/s id: un-cefact-cc-J71 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '162' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: J72 name: centinewton metre @@ -24475,13 +24475,13 @@ conversionFactor: 10⁻² N x m symbol: cN·m id: un-cefact-cc-J72 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24496,13 +24496,13 @@ conversionFactor: 10⁻³ Pa x s/K symbol: cP/K id: un-cefact-cc-J73 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24517,13 +24517,13 @@ conversionFactor: 10⁻⁸ s symbol: cP/bar id: un-cefact-cc-J74 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24536,38 +24536,38 @@ quantity: >- levelCategory: '2' commonCode: J75 name: calorie (mean) -conversionFactor: 4,190 02 J +conversionFactor: '4,190 02 J' symbol: cal id: un-cefact-cc-J75 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '121' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: J76 name: calorie (international table) per gram degree Celsius -conversionFactor: 4,186 8 x 10³ J/(kg x K) +conversionFactor: '4,186 8 x 10³ J/(kg x K)' symbol: calIT/(g·°C) id: un-cefact-cc-J76 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24578,38 +24578,38 @@ quantity: thermal conductivity levelCategory: '2' commonCode: J78 name: calorie (thermochemical) per centimetre second degree Celsius -conversionFactor: 4,184 x 10² W/(m x K) +conversionFactor: '4,184 x 10² W/(m x K)' symbol: calth/(cm·s·°C) id: un-cefact-cc-J78 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '122' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: J79 name: calorie (thermochemical) per gram degree Celsius -conversionFactor: 4,184 x 10³ J/(kg x K) +conversionFactor: '4,184 x 10³ J/(kg x K)' symbol: calth/(g·°C) id: un-cefact-cc-J79 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24620,17 +24620,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: J81 name: calorie (thermochemical) per minute -conversionFactor: 6,973 333 x 10⁻² W +conversionFactor: '6,973 333 x 10⁻² W' symbol: calth/min id: un-cefact-cc-J81 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24641,45 +24641,45 @@ quantity: heat flow rate levelCategory: '2' commonCode: J82 name: calorie (thermochemical) per second -conversionFactor: 4,184 W +conversionFactor: '4,184 W' symbol: calth/s id: un-cefact-cc-J82 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '101' -quantity: thermal insulance, coefficient of thermal insulation +quantity: 'thermal insulance, coefficient of thermal insulation' levelCategory: '2' commonCode: J83 name: clo -conversionFactor: 0,155 m² x K/W +conversionFactor: '0,155 m² x K/W' symbol: clo id: un-cefact-cc-J83 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '189' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: J84 name: centimetre per second kelvin @@ -24687,20 +24687,20 @@ conversionFactor: 10⁻² (m/s)/K symbol: (cm/s)/K id: un-cefact-cc-J84 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '190' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: J85 name: centimetre per second bar @@ -24708,13 +24708,13 @@ conversionFactor: 10⁻⁷ (m/s)/Pa symbol: (cm/s)/bar id: un-cefact-cc-J85 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24729,13 +24729,13 @@ conversionFactor: 10⁻⁶ symbol: cm³/m³ id: un-cefact-cc-J87 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24749,17 +24749,17 @@ levelCategory: '2' status: DEPRECATED commonCode: J89 name: centimetre of mercury -conversionFactor: 1,333 224 x 10³ Pa +conversionFactor: '1,333 224 x 10³ Pa' symbol: cm Hg id: un-cefact-cc-J89 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24770,17 +24770,17 @@ quantity: volume flow rate levelCategory: 1S commonCode: J90 name: cubic decimetre per day -conversionFactor: 1,157 41 x 10⁻⁸ m³/s +conversionFactor: '1,157 41 x 10⁻⁸ m³/s' symbol: dm³/d id: un-cefact-cc-J90 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24795,13 +24795,13 @@ conversionFactor: 10⁻³ symbol: dm³/m³ id: un-cefact-cc-J91 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24812,17 +24812,17 @@ quantity: volume flow rate levelCategory: 1S commonCode: J92 name: cubic decimetre per minute -conversionFactor: 1,666 67 x 10⁻⁵ m³/s +conversionFactor: '1,666 67 x 10⁻⁵ m³/s' symbol: dm³/min id: un-cefact-cc-J92 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24837,20 +24837,20 @@ conversionFactor: 10⁻³ m³/s symbol: dm³/s id: un-cefact-cc-J93 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '178' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' status: DEPRECATED commonCode: J94 @@ -24859,13 +24859,13 @@ conversionFactor: 10⁻⁷ N x m symbol: dyn·cm id: un-cefact-cc-J94 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24876,17 +24876,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J95 name: ounce (UK fluid) per day -conversionFactor: 3,288 549 x 10⁻¹⁰ m³/s +conversionFactor: '3,288 549 x 10⁻¹⁰ m³/s' symbol: fl oz (UK)/d id: un-cefact-cc-J95 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24897,17 +24897,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J96 name: ounce (UK fluid) per hour -conversionFactor: 7,892 517 x 10⁻⁹ m³/s +conversionFactor: '7,892 517 x 10⁻⁹ m³/s' symbol: fl oz (UK)/h id: un-cefact-cc-J96 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24918,17 +24918,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J97 name: ounce (UK fluid) per minute -conversionFactor: 4,735 51 x 10⁻⁷ m³/s +conversionFactor: '4,735 51 x 10⁻⁷ m³/s' symbol: fl oz (UK)/min id: un-cefact-cc-J97 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24939,17 +24939,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J98 name: ounce (UK fluid) per second -conversionFactor: 2,841 306 x 10⁻⁵ m³/s +conversionFactor: '2,841 306 x 10⁻⁵ m³/s' symbol: fl oz (UK)/s id: un-cefact-cc-J98 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24960,17 +24960,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: J99 name: ounce (US fluid) per day -conversionFactor: 3,422 862 x 10⁻¹⁰ m³/s +conversionFactor: '3,422 862 x 10⁻¹⁰ m³/s' symbol: fl oz (US)/d id: un-cefact-cc-J99 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -24980,20 +24980,20 @@ name: jumbo levelCategory: '3.4' id: un-cefact-cc-JB meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '117' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '1' commonCode: JE name: joule per kelvin @@ -25001,13 +25001,13 @@ conversionFactor: J/K symbol: J/K id: un-cefact-cc-JE meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25020,13 +25020,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-JG meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25041,13 +25041,13 @@ conversionFactor: 10⁶ J/kg symbol: MJ/kg id: un-cefact-cc-JK meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25062,13 +25062,13 @@ conversionFactor: 10⁶ J/m³ symbol: MJ/m³ id: un-cefact-cc-JM meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25078,13 +25078,13 @@ description: A count of the number of pipeline joints. levelCategory: '3.5' id: un-cefact-cc-JNT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25094,20 +25094,20 @@ name: joint levelCategory: '3.9' id: un-cefact-cc-JO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '320' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '1' commonCode: JOU name: joule @@ -25115,13 +25115,13 @@ conversionFactor: J symbol: J id: un-cefact-cc-JOU meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25131,13 +25131,13 @@ description: A unit of count defining the number of 100 metre lengths. levelCategory: '3.1' id: un-cefact-cc-JPS meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25150,13 +25150,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-JR meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25166,13 +25166,13 @@ description: 'A unit of count defining the number of jewels (jewel: precious sto levelCategory: '3.7' id: un-cefact-cc-JWL meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25182,13 +25182,13 @@ description: A unit of measure defining the power load measured at predetermined levelCategory: '3.5' id: un-cefact-cc-K1 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25199,17 +25199,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K10 name: ounce (US fluid) per hour -conversionFactor: 8,214 869 x 10⁻⁹ m³/s +conversionFactor: '8,214 869 x 10⁻⁹ m³/s' symbol: fl oz (US)/h id: un-cefact-cc-K10 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25220,17 +25220,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K11 name: ounce (US fluid) per minute -conversionFactor: 4,928 922 x 10⁻⁷ m³/s +conversionFactor: '4,928 922 x 10⁻⁷ m³/s' symbol: fl oz (US)/min id: un-cefact-cc-K11 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25241,17 +25241,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K12 name: ounce (US fluid) per second -conversionFactor: 2,957 353 x 10⁻⁵ m³/s +conversionFactor: '2,957 353 x 10⁻⁵ m³/s' symbol: fl oz (US)/s id: un-cefact-cc-K12 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25264,38 +25264,38 @@ quantity: >- levelCategory: '2' commonCode: K13 name: foot per degree Fahrenheit -conversionFactor: 0,548 64 m/K +conversionFactor: '0,548 64 m/K' symbol: ft/°F id: un-cefact-cc-K13 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '191' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: K14 name: foot per hour -conversionFactor: 8,466 667 x 10⁻⁵m/s +conversionFactor: '8,466 667 x 10⁻⁵m/s' symbol: ft/h id: un-cefact-cc-K14 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25306,17 +25306,17 @@ quantity: power levelCategory: '2' commonCode: K15 name: foot pound-force per hour -conversionFactor: 3,766 161 x 10⁻⁴ W +conversionFactor: '3,766 161 x 10⁻⁴ W' symbol: ft·lbf/h id: un-cefact-cc-K15 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25327,17 +25327,17 @@ quantity: power levelCategory: '2' commonCode: K16 name: foot pound-force per minute -conversionFactor: 2,259 697 x 10⁻² W +conversionFactor: '2,259 697 x 10⁻² W' symbol: ft·lbf/min id: un-cefact-cc-K16 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25350,59 +25350,59 @@ quantity: >- levelCategory: '2' commonCode: K17 name: foot per psi -conversionFactor: 4,420 750 x 10⁻⁵ m/Pa +conversionFactor: '4,420 750 x 10⁻⁵ m/Pa' symbol: ft/psi id: un-cefact-cc-K17 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '192' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: K18 name: foot per second degree Fahrenheit -conversionFactor: 0,548 64 (m/s)/K +conversionFactor: '0,548 64 (m/s)/K' symbol: (ft/s)/°F id: un-cefact-cc-K18 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '193' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: K19 name: foot per second psi -conversionFactor: 4,420 750 x 10⁻⁵ (m/s)/Pa +conversionFactor: '4,420 750 x 10⁻⁵ (m/s)/Pa' symbol: (ft/s)/psi id: un-cefact-cc-K19 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25414,17 +25414,17 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-K2 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '27' quantity: >- @@ -25433,17 +25433,17 @@ quantity: >- levelCategory: '2' commonCode: K20 name: reciprocal cubic foot -conversionFactor: 35,314 66 m⁻³ +conversionFactor: '35,314 66 m⁻³' symbol: 1/ft³ id: un-cefact-cc-K20 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25454,17 +25454,17 @@ quantity: volume levelCategory: '2' commonCode: K21 name: cubic foot per degree Fahrenheit -conversionFactor: 5,097 033 x 10⁻² m³/K +conversionFactor: '5,097 033 x 10⁻² m³/K' symbol: ft³/°F id: un-cefact-cc-K21 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25475,17 +25475,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K22 name: cubic foot per day -conversionFactor: 3,277 413 x 10⁻⁷ m³/s +conversionFactor: '3,277 413 x 10⁻⁷ m³/s' symbol: ft³/d id: un-cefact-cc-K22 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25496,17 +25496,17 @@ quantity: volume levelCategory: '2' commonCode: K23 name: cubic foot per psi -conversionFactor: 4,107 012 x 10⁻⁶ m³/Pa +conversionFactor: '4,107 012 x 10⁻⁶ m³/Pa' symbol: ft³/psi id: un-cefact-cc-K23 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25520,17 +25520,17 @@ levelCategory: '2' status: DEPRECATED commonCode: K24 name: foot of water -conversionFactor: 2,989 067 x 10³ Pa +conversionFactor: '2,989 067 x 10³ Pa' symbol: ft H₂O id: un-cefact-cc-K24 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25544,17 +25544,17 @@ levelCategory: '2' status: DEPRECATED commonCode: K25 name: foot of mercury -conversionFactor: 4,063 666 x 10⁴ Pa +conversionFactor: '4,063 666 x 10⁴ Pa' symbol: ft Hg id: un-cefact-cc-K25 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25565,17 +25565,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K26 name: gallon (UK) per day -conversionFactor: 5,261 678 x 10⁻⁸ m³/s +conversionFactor: '5,261 678 x 10⁻⁸ m³/s' symbol: gal (UK)/d id: un-cefact-cc-K26 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25586,17 +25586,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K27 name: gallon (UK) per hour -conversionFactor: 1,262 803 x 10⁻⁶ m³/s +conversionFactor: '1,262 803 x 10⁻⁶ m³/s' symbol: gal (UK)/h id: un-cefact-cc-K27 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25607,17 +25607,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K28 name: gallon (UK) per second -conversionFactor: 4,546 09 x 10⁻³ m³/s +conversionFactor: '4,546 09 x 10⁻³ m³/s' symbol: gal (UK)/s id: un-cefact-cc-K28 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25630,13 +25630,13 @@ levelCategory: '3.5' symbol: kvar·h id: un-cefact-cc-K3 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25647,17 +25647,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K30 name: gallon (US liquid) per second -conversionFactor: 3,785 412 x 10⁻³ m³/s +conversionFactor: '3,785 412 x 10⁻³ m³/s' symbol: gal (US liq.)/s id: un-cefact-cc-K30 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25670,17 +25670,17 @@ quantity: >- levelCategory: '2' commonCode: K31 name: gram-force per square centimetre -conversionFactor: 98,066 5 Pa +conversionFactor: '98,066 5 Pa' symbol: gf/cm² id: un-cefact-cc-K31 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25691,17 +25691,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K32 name: gill (UK) per day -conversionFactor: 1,644 274 x 10⁻⁵ m³/s +conversionFactor: '1,644 274 x 10⁻⁵ m³/s' symbol: gi (UK)/d id: un-cefact-cc-K32 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25712,17 +25712,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K33 name: gill (UK) per hour -conversionFactor: 3,946 258 x 10⁻⁸ m³/s +conversionFactor: '3,946 258 x 10⁻⁸ m³/s' symbol: gi (UK)/h id: un-cefact-cc-K33 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25733,17 +25733,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K34 name: gill (UK) per minute -conversionFactor: 0,023 677 55 m³/s +conversionFactor: '0,023 677 55 m³/s' symbol: gi (UK)/min id: un-cefact-cc-K34 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25754,17 +25754,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K35 name: gill (UK) per second -conversionFactor: 1,420 653 x 10⁻⁴ m³/s +conversionFactor: '1,420 653 x 10⁻⁴ m³/s' symbol: gi (UK)/s id: un-cefact-cc-K35 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25775,17 +25775,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K36 name: gill (US) per day -conversionFactor: 1,369 145 x 10⁻⁹ m³/s +conversionFactor: '1,369 145 x 10⁻⁹ m³/s' symbol: gi (US)/d id: un-cefact-cc-K36 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25796,17 +25796,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K37 name: gill (US) per hour -conversionFactor: 3,285 947 x 10⁻⁸ m³/s +conversionFactor: '3,285 947 x 10⁻⁸ m³/s' symbol: gi (US)/h id: un-cefact-cc-K37 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25817,17 +25817,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K38 name: gill (US) per minute -conversionFactor: 1,971 568 x 10⁻⁶ m³/s +conversionFactor: '1,971 568 x 10⁻⁶ m³/s' symbol: gi (US)/min id: un-cefact-cc-K38 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25838,59 +25838,59 @@ quantity: volume flow rate levelCategory: '2' commonCode: K39 name: gill (US) per second -conversionFactor: 1,182 941 x 10⁻⁴ m³/s +conversionFactor: '1,182 941 x 10⁻⁴ m³/s' symbol: gi (US)/s id: un-cefact-cc-K39 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '216' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: '2' commonCode: K40 name: standard acceleration of free fall -conversionFactor: 9,806 65 m/s² +conversionFactor: '9,806 65 m/s²' symbol: gn id: un-cefact-cc-K40 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '79' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K41 name: grain per gallon (US) -conversionFactor: 1,711 806 x 10⁻² kg/m³ +conversionFactor: '1,711 806 x 10⁻² kg/m³' symbol: gr/gal (US) id: un-cefact-cc-K41 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25901,24 +25901,24 @@ quantity: power levelCategory: '2' commonCode: K42 name: horsepower (boiler) -conversionFactor: 9,809 50 x 10³ W +conversionFactor: '9,809 50 x 10³ W' symbol: boiler hp id: un-cefact-cc-K42 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '192' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: '2' commonCode: K43 name: horsepower (electric) @@ -25926,13 +25926,13 @@ conversionFactor: 746 W symbol: electric hp id: un-cefact-cc-K43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25945,17 +25945,17 @@ quantity: >- levelCategory: '2' commonCode: K45 name: inch per degree Fahrenheit -conversionFactor: 4,572 x 10⁻² m/K +conversionFactor: '4,572 x 10⁻² m/K' symbol: in/°F id: un-cefact-cc-K45 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -25968,63 +25968,63 @@ quantity: >- levelCategory: '2' commonCode: K46 name: inch per psi -conversionFactor: 3,683 959 x 10⁻⁶ m/Pa +conversionFactor: '3,683 959 x 10⁻⁶ m/Pa' symbol: in/psi id: un-cefact-cc-K46 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '194' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: K47 name: inch per second degree Fahrenheit -conversionFactor: 4,572 x 10⁻² (m/s)/K +conversionFactor: '4,572 x 10⁻² (m/s)/K' symbol: (in/s)/°F id: un-cefact-cc-K47 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '195' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: K48 name: inch per second psi -conversionFactor: 3,683 959 x 10⁻⁶ (m/s)/Pa +conversionFactor: '3,683 959 x 10⁻⁶ (m/s)/Pa' symbol: (in/s)/psi id: un-cefact-cc-K48 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '28' quantity: >- @@ -26033,17 +26033,17 @@ quantity: >- levelCategory: '2' commonCode: K49 name: reciprocal cubic inch -conversionFactor: 6,102 375 9 x 10⁴ m⁻³ +conversionFactor: '6,102 375 9 x 10⁴ m⁻³' symbol: 1/in³ id: un-cefact-cc-K49 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26060,13 +26060,13 @@ symbol: kvar description: Use kilovar (common code KVR) id: un-cefact-cc-K5 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26080,13 +26080,13 @@ symbol: kBd conversionFactor: 10³ Bd id: un-cefact-cc-K50 meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26099,17 +26099,17 @@ quantity: >- levelCategory: '2' commonCode: K51 name: kilocalorie (mean) -conversionFactor: 4,190 02 x 10³ J +conversionFactor: '4,190 02 x 10³ J' symbol: kcal id: un-cefact-cc-K51 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26120,17 +26120,17 @@ quantity: thermal conductivity levelCategory: '2' commonCode: K52 name: kilocalorie (international table) per hour metre degree Celsius -conversionFactor: 1,163 J/(m x s x K) +conversionFactor: '1,163 J/(m x s x K)' symbol: kcal/(m·h·°C) id: un-cefact-cc-K52 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26143,17 +26143,17 @@ quantity: >- levelCategory: '2' commonCode: K53 name: kilocalorie (thermochemical) -conversionFactor: 4,184 x 10³ J +conversionFactor: '4,184 x 10³ J' symbol: kcalth id: un-cefact-cc-K53 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26164,17 +26164,17 @@ quantity: heat flow rate levelCategory: '2' commonCode: K54 name: kilocalorie (thermochemical) per minute -conversionFactor: 69,733 33 W +conversionFactor: '69,733 33 W' symbol: kcalth/min id: un-cefact-cc-K54 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26185,42 +26185,42 @@ quantity: heat flow rate levelCategory: '2' commonCode: K55 name: kilocalorie (thermochemical) per second -conversionFactor: 4,184 x 10³ W +conversionFactor: '4,184 x 10³ W' symbol: kcalth/s id: un-cefact-cc-K55 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '86' quantity: molar flux levelCategory: 1S commonCode: K58 name: kilomole per hour -conversionFactor: 2,777 78 x 10⁻¹ mol/s +conversionFactor: '2,777 78 x 10⁻¹ mol/s' symbol: kmol/h id: un-cefact-cc-K58 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '41' quantity: >- @@ -26233,13 +26233,13 @@ conversionFactor: 10³ (mol/m³)/K symbol: (kmol/m³)/K id: un-cefact-cc-K59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26254,17 +26254,17 @@ conversionFactor: m³ symbol: kl id: un-cefact-cc-K6 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '42' quantity: >- @@ -26277,34 +26277,34 @@ conversionFactor: 10⁻² (mol/m³)/Pa symbol: (kmol/m³)/bar id: un-cefact-cc-K60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '87' quantity: molar flux levelCategory: 1S commonCode: K61 name: kilomole per minute -conversionFactor: 16,666 7 mol/s +conversionFactor: '16,666 7 mol/s' symbol: kmol/min id: un-cefact-cc-K61 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26319,17 +26319,17 @@ conversionFactor: '1' symbol: l/l id: un-cefact-cc-K62 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '29' quantity: >- @@ -26342,13 +26342,13 @@ conversionFactor: 10³ m⁻³ symbol: 1/l id: un-cefact-cc-K63 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26359,17 +26359,17 @@ quantity: mass levelCategory: '2' commonCode: K64 name: pound (avoirdupois) per degree Fahrenheit -conversionFactor: 0,816 466 3 kg/K +conversionFactor: '0,816 466 3 kg/K' symbol: lb/°F id: un-cefact-cc-K64 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26380,17 +26380,17 @@ quantity: moment of inertia (dynamic moment of inertia) levelCategory: '2' commonCode: K65 name: pound (avoirdupois) square foot -conversionFactor: 4,214 011 x 10⁻² kg x m² +conversionFactor: '4,214 011 x 10⁻² kg x m²' symbol: lb·ft² id: un-cefact-cc-K65 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26401,17 +26401,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K66 name: pound (avoirdupois) per day -conversionFactor: 5,249 912 x 10⁻⁶ kg/s +conversionFactor: '5,249 912 x 10⁻⁶ kg/s' symbol: lb/d id: un-cefact-cc-K66 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26422,17 +26422,17 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: K67 name: pound per foot hour -conversionFactor: 4,133 789 x 10⁻⁴ Pa x s +conversionFactor: '4,133 789 x 10⁻⁴ Pa x s' symbol: lb/(ft·h) id: un-cefact-cc-K67 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26443,80 +26443,80 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: K68 name: pound per foot second -conversionFactor: 1,488 164 Pa x s +conversionFactor: '1,488 164 Pa x s' symbol: lb/(ft·s) id: un-cefact-cc-K68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '80' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K69 name: pound (avoirdupois) per cubic foot degree Fahrenheit -conversionFactor: 28,833 23 (kg/m³)/K +conversionFactor: '28,833 23 (kg/m³)/K' symbol: (lb/ft³)/°F id: un-cefact-cc-K69 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '81' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K70 name: pound (avoirdupois) per cubic foot psi -conversionFactor: 2,323 282 x 10⁻³ +conversionFactor: '2,323 282 x 10⁻³' symbol: (lb/ft³)/psi id: un-cefact-cc-K70 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '82' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K71 name: pound (avoirdupois) per gallon (UK) -conversionFactor: 99,776 37 kg/m³ +conversionFactor: '99,776 37 kg/m³' symbol: lb/gal (UK) id: un-cefact-cc-K71 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26527,17 +26527,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K73 name: pound (avoirdupois) per hour degree Fahrenheit -conversionFactor: 2,267 962 x 10⁻⁴ (kg/s)/K +conversionFactor: '2,267 962 x 10⁻⁴ (kg/s)/K' symbol: (lb/h)/°F id: un-cefact-cc-K73 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26548,80 +26548,80 @@ quantity: mass flow rate levelCategory: '2' commonCode: K74 name: pound (avoirdupois) per hour psi -conversionFactor: 1,827 445 x 10⁻⁸ (kg/s)/Pa +conversionFactor: '1,827 445 x 10⁻⁸ (kg/s)/Pa' symbol: (lb/h)/psi id: un-cefact-cc-K74 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '83' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K75 name: pound (avoirdupois) per cubic inch degree Fahrenheit -conversionFactor: 4,982 384 x 10⁴ (kg/m³)/K +conversionFactor: '4,982 384 x 10⁴ (kg/m³)/K' symbol: (lb/in³)/°F id: un-cefact-cc-K75 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '84' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K76 name: pound (avoirdupois) per cubic inch psi -conversionFactor: 4,014 632 (kg/m³)/Pa +conversionFactor: '4,014 632 (kg/m³)/Pa' symbol: (lb/in³)/psi id: un-cefact-cc-K76 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '96' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K77 name: pound (avoirdupois) per psi -conversionFactor: 6,578 802 x 10⁻⁵ kg/Pa +conversionFactor: '6,578 802 x 10⁻⁵ kg/Pa' symbol: lb/psi id: un-cefact-cc-K77 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26632,17 +26632,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K78 name: pound (avoirdupois) per minute -conversionFactor: 7,559 873 x 10⁻³ kg/s +conversionFactor: '7,559 873 x 10⁻³ kg/s' symbol: lb/min id: un-cefact-cc-K78 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26653,17 +26653,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K79 name: pound (avoirdupois) per minute degree Fahrenheit -conversionFactor: 1,360 777 x 10⁻² (kg/s)/K +conversionFactor: '1,360 777 x 10⁻² (kg/s)/K' symbol: lb/(min·°F) id: un-cefact-cc-K79 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26674,17 +26674,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K80 name: pound (avoirdupois) per minute psi -conversionFactor: 1,096 467 x 10⁻⁶ (kg/s)/Pa +conversionFactor: '1,096 467 x 10⁻⁶ (kg/s)/Pa' symbol: (lb/min)/psi id: un-cefact-cc-K80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26695,17 +26695,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K81 name: pound (avoirdupois) per second -conversionFactor: 0,453 592 4 kg/s +conversionFactor: '0,453 592 4 kg/s' symbol: lb/s id: un-cefact-cc-K81 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26716,17 +26716,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: K82 name: pound (avoirdupois) per second degree Fahrenheit -conversionFactor: 0,816 466 3 (kg/s)/K +conversionFactor: '0,816 466 3 (kg/s)/K' symbol: (lb/s)/°F id: un-cefact-cc-K82 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26737,38 +26737,38 @@ quantity: mass flow rate levelCategory: '2' commonCode: K83 name: pound (avoirdupois) per second psi -conversionFactor: 6,578 802 x 10⁻⁵ (kg/s)/Pa +conversionFactor: '6,578 802 x 10⁻⁵ (kg/s)/Pa' symbol: (lb/s)/psi id: un-cefact-cc-K83 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '85' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: K84 name: pound per cubic yard -conversionFactor: 0,593 276 4 kg/m³ +conversionFactor: '0,593 276 4 kg/m³' symbol: lb/yd³ id: un-cefact-cc-K84 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26781,17 +26781,17 @@ quantity: >- levelCategory: '2' commonCode: K85 name: pound-force per square foot -conversionFactor: 47,880 26 Pa +conversionFactor: '47,880 26 Pa' symbol: lbf/ft² id: un-cefact-cc-K85 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26804,17 +26804,17 @@ quantity: >- levelCategory: '2' commonCode: K86 name: pound-force per square inch degree Fahrenheit -conversionFactor: 1,241 056 x 10⁴ Pa/K +conversionFactor: '1,241 056 x 10⁴ Pa/K' symbol: psi/°F id: un-cefact-cc-K86 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26825,17 +26825,17 @@ quantity: leakage rate of gas levelCategory: '2' commonCode: K87 name: psi cubic inch per second -conversionFactor: 0,112 985 Pa x m³/s +conversionFactor: '0,112 985 Pa x m³/s' symbol: psi·in³/s id: un-cefact-cc-K87 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26846,17 +26846,17 @@ quantity: leakage rate of gas levelCategory: '2' commonCode: K88 name: psi litre per second -conversionFactor: 6,894 757 Pa x m³/s +conversionFactor: '6,894 757 Pa x m³/s' symbol: psi·l/s id: un-cefact-cc-K88 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26867,17 +26867,17 @@ quantity: leakage rate of gas levelCategory: '2' commonCode: K89 name: psi cubic metre per second -conversionFactor: 6,894 757 x 10³ Pa x m³/s +conversionFactor: '6,894 757 x 10³ Pa x m³/s' symbol: psi·m³/s id: un-cefact-cc-K89 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26888,17 +26888,17 @@ quantity: leakage rate of gas levelCategory: '2' commonCode: K90 name: psi cubic yard per second -conversionFactor: 5,271 420 x 10³ Pa x m³/s +conversionFactor: '5,271 420 x 10³ Pa x m³/s' symbol: psi·yd³/s id: un-cefact-cc-K90 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26909,17 +26909,17 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: K91 name: pound-force second per square foot -conversionFactor: 47,880 26 Pa x s +conversionFactor: '47,880 26 Pa x s' symbol: lbf·s/ft² id: un-cefact-cc-K91 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26930,21 +26930,21 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: K92 name: pound-force second per square inch -conversionFactor: 6,894 757 x 10³ Pa x s +conversionFactor: '6,894 757 x 10³ Pa x s' symbol: lbf·s/in² id: un-cefact-cc-K92 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '43' quantity: >- @@ -26953,17 +26953,17 @@ quantity: >- levelCategory: '2' commonCode: K93 name: reciprocal psi -conversionFactor: 1,450 377 x 10⁻⁴ Pa⁻¹ +conversionFactor: '1,450 377 x 10⁻⁴ Pa⁻¹' symbol: 1/psi id: un-cefact-cc-K93 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26974,17 +26974,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K94 name: quart (UK liquid) per day -conversionFactor: 1,315 420 x 10⁻⁸ m³/s +conversionFactor: '1,315 420 x 10⁻⁸ m³/s' symbol: qt (UK liq.)/d id: un-cefact-cc-K94 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -26995,17 +26995,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K95 name: quart (UK liquid) per hour -conversionFactor: 3,157 008 x 10⁻⁷ m³/s +conversionFactor: '3,157 008 x 10⁻⁷ m³/s' symbol: qt (UK liq.)/h id: un-cefact-cc-K95 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27016,17 +27016,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K96 name: quart (UK liquid) per minute -conversionFactor: 1,894 205 x 10⁻⁵ m³/s +conversionFactor: '1,894 205 x 10⁻⁵ m³/s' symbol: qt (UK liq.)/min id: un-cefact-cc-K96 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27037,17 +27037,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K97 name: quart (UK liquid) per second -conversionFactor: 1,136 523 x 10⁻³ m³/s +conversionFactor: '1,136 523 x 10⁻³ m³/s' symbol: qt (UK liq.)/s id: un-cefact-cc-K97 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27058,17 +27058,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K98 name: quart (US liquid) per day -conversionFactor: 1,095 316 x 10⁻⁸ m³/s +conversionFactor: '1,095 316 x 10⁻⁸ m³/s' symbol: qt (US liq.)/d id: un-cefact-cc-K98 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27079,17 +27079,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: K99 name: quart (US liquid) per hour -conversionFactor: 2,628 758 x 10⁻⁷ m³/s +conversionFactor: '2,628 758 x 10⁻⁷ m³/s' symbol: qt (US liq.)/h id: un-cefact-cc-K99 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27101,17 +27101,17 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-KA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '64' quantity: catalytic activity @@ -27125,13 +27125,13 @@ description: >- other catalysts. id: un-cefact-cc-KAT meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27141,13 +27141,13 @@ description: A unit of information equal to 10³ (1000) characters. levelCategory: '3.9' id: un-cefact-cc-KB meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27164,13 +27164,13 @@ conversionFactor: 10⁸ Pa symbol: kbar id: un-cefact-cc-KBA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27181,13 +27181,13 @@ levelCategory: '3.1' symbol: kg C₅ H₁₄ClNO id: un-cefact-cc-KCC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27197,13 +27197,13 @@ name: kilogram decimal levelCategory: '3.9' id: un-cefact-cc-KD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27216,13 +27216,13 @@ levelCategory: '3.1' symbol: kg/net eda id: un-cefact-cc-KDW meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27238,13 +27238,13 @@ symbol: K description: 'Refer ISO 80000-5 (Quantities and units — Part 5: Thermodynamics)' id: un-cefact-cc-KEL meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27254,13 +27254,13 @@ name: kilopacket levelCategory: '3.9' id: un-cefact-cc-KF meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27273,13 +27273,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-KG meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27295,13 +27295,13 @@ symbol: kg description: A unit of mass equal to one thousand grams. id: un-cefact-cc-KGM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27316,13 +27316,13 @@ conversionFactor: kg/s symbol: kg/s id: un-cefact-cc-KGS meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27333,13 +27333,13 @@ levelCategory: '3.1' symbol: kg H₂O₂ id: un-cefact-cc-KHY meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27354,13 +27354,13 @@ conversionFactor: 10³ Hz symbol: kHz id: un-cefact-cc-KHZ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27370,49 +27370,49 @@ levelCategory: '3.1' conversionFactor: 10³ kg/m id: un-cefact-cc-KI meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: KIC -name: kilogram, including container +name: 'kilogram, including container' description: >- A unit of mass defining the number of kilograms of a product, including its container. levelCategory: '3.1' id: un-cefact-cc-KIC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: KIP -name: kilogram, including inner packaging +name: 'kilogram, including inner packaging' description: >- A unit of mass defining the number of kilograms of a product, including its inner packaging materials. levelCategory: '3.1' id: un-cefact-cc-KIP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27422,20 +27422,20 @@ description: A unit of information equal to 10³ (1000) segments. levelCategory: '3.6' id: un-cefact-cc-KJ meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '321' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: KJO name: kilojoule @@ -27443,20 +27443,20 @@ conversionFactor: 10³ J symbol: kJ id: un-cefact-cc-KJO meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '110' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: '1' commonCode: KL name: kilogram per metre @@ -27464,13 +27464,13 @@ conversionFactor: kg/m symbol: kg/m id: un-cefact-cc-KL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27482,13 +27482,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-KLK meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27504,13 +27504,13 @@ symbol: klx description: A unit of illuminance equal to one thousand lux. id: un-cefact-cc-KLX meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27521,34 +27521,34 @@ levelCategory: '3.1' symbol: kg met.am. id: un-cefact-cc-KMA meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '175' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1S commonCode: KMH name: kilometre per hour -conversionFactor: 0,277 778 m/s +conversionFactor: '0,277 778 m/s' symbol: km/h id: un-cefact-cc-KMH meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27563,20 +27563,20 @@ conversionFactor: 10⁶ m² symbol: km² id: un-cefact-cc-KMK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '29' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '1' commonCode: KMQ name: kilogram per cubic metre @@ -27587,13 +27587,13 @@ description: >- one cubic metre. id: un-cefact-cc-KMQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27610,13 +27610,13 @@ conversionFactor: 10³ m symbol: km id: un-cefact-cc-KMT meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27627,13 +27627,13 @@ levelCategory: '3.1' symbol: kg N id: un-cefact-cc-KNI meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27650,13 +27650,13 @@ conversionFactor: 103pascal symbol: KN/m2 id: un-cefact-cc-KNM meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27666,34 +27666,34 @@ description: A unit of mass equal to one kilogram of a named substance. levelCategory: '3.1' id: un-cefact-cc-KNS meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '174' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '1' commonCode: KNT name: knot -conversionFactor: 0,514 444 m/s +conversionFactor: '0,514 444 m/s' symbol: kn id: un-cefact-cc-KNT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27706,13 +27706,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-KO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27729,13 +27729,13 @@ conversionFactor: 10³ Pa symbol: kPa id: un-cefact-cc-KPA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27748,13 +27748,13 @@ levelCategory: '3.1' symbol: kg KOH id: un-cefact-cc-KPH meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27765,13 +27765,13 @@ levelCategory: '3.1' symbol: kg K₂O id: un-cefact-cc-KPO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27783,13 +27783,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-KPP meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27800,17 +27800,17 @@ quantity: exposure levelCategory: '2' commonCode: KR name: kiloroentgen -conversionFactor: 2,58 x 10⁻¹ C/kg +conversionFactor: '2,58 x 10⁻¹ C/kg' symbol: kR id: un-cefact-cc-KR meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27820,13 +27820,13 @@ name: thousand pound per square inch levelCategory: '3.8' id: un-cefact-cc-KS meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27839,13 +27839,13 @@ levelCategory: '3.1' symbol: kg 90 % sdt id: un-cefact-cc-KSD meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27856,13 +27856,13 @@ levelCategory: '3.1' symbol: kg NaOH id: un-cefact-cc-KSH meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27872,13 +27872,13 @@ description: 'A unit of count defining the number of kits (kit: tub, barrel or p levelCategory: '3.2' id: un-cefact-cc-KT meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27896,13 +27896,13 @@ conversionFactor: 10³ m symbol: km id: un-cefact-cc-KTM meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27917,13 +27917,13 @@ conversionFactor: 10⁶ kg symbol: kt id: un-cefact-cc-KTN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27934,13 +27934,13 @@ levelCategory: '3.1' symbol: kg U id: un-cefact-cc-KUR meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27955,13 +27955,13 @@ conversionFactor: 10³ V x A symbol: kV·A id: un-cefact-cc-KVA meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27976,13 +27976,13 @@ conversionFactor: 10³ V x A symbol: kvar id: un-cefact-cc-KVR meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -27999,20 +27999,20 @@ conversionFactor: 10³ V symbol: kV id: un-cefact-cc-KVT meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '113' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: 1M commonCode: KW name: kilogram per millimetre @@ -28020,34 +28020,34 @@ conversionFactor: 10³ kg/m symbol: kg/mm id: un-cefact-cc-KW meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '332' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: KWH name: kilowatt hour -conversionFactor: 3,6 x 10⁶ J +conversionFactor: '3,6 x 10⁶ J' symbol: kW·h id: un-cefact-cc-KWH meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28062,13 +28062,13 @@ description: >- millibars ). id: un-cefact-cc-KWN meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28079,13 +28079,13 @@ levelCategory: '3.1' symbol: kg WO₃ id: un-cefact-cc-KWO meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28100,13 +28100,13 @@ description: >- millibars). id: un-cefact-cc-KWS meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28121,13 +28121,13 @@ conversionFactor: 10³ W symbol: kW id: un-cefact-cc-KWT meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28138,20 +28138,20 @@ levelCategory: '2' symbol: kW/year id: un-cefact-cc-KWY meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.677Z' + created: '2024-02-16T09:11:13.880Z' + modified: '2024-02-16T09:11:13.880Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '105' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: 1M commonCode: KX name: millilitre per kilogram @@ -28159,13 +28159,13 @@ conversionFactor: 10⁻⁶ m³/kg symbol: ml/kg id: un-cefact-cc-KX meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28176,17 +28176,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L10 name: quart (US liquid) per minute -conversionFactor: 1,577 255 x 10⁻⁵ m³/s +conversionFactor: '1,577 255 x 10⁻⁵ m³/s' symbol: qt (US liq.)/min id: un-cefact-cc-L10 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28197,24 +28197,24 @@ quantity: volume flow rate levelCategory: '2' commonCode: L11 name: quart (US liquid) per second -conversionFactor: 9,463 529 x 10⁻⁴ m³/s +conversionFactor: '9,463 529 x 10⁻⁴ m³/s' symbol: qt (US liq.)/s id: un-cefact-cc-L11 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '196' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: L12 name: metre per second kelvin @@ -28222,20 +28222,20 @@ conversionFactor: (m/s)/K symbol: (m/s)/K id: un-cefact-cc-L12 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '197' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: L13 name: metre per second bar @@ -28243,34 +28243,34 @@ conversionFactor: 10⁻⁵ (m/s)/Pa symbol: (m/s)/bar id: un-cefact-cc-L13 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '102' -quantity: thermal insulance, coefficient of thermal insulation +quantity: 'thermal insulance, coefficient of thermal insulation' levelCategory: '2' commonCode: L14 name: square metre hour degree Celsius per kilocalorie (international table) -conversionFactor: 0,859 845 2 m² x s x K/J +conversionFactor: '0,859 845 2 m² x s x K/J' symbol: m²·h·°C/kcal id: un-cefact-cc-L14 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28285,13 +28285,13 @@ conversionFactor: 10⁻³ Pa x s/K symbol: mPa·s/K id: un-cefact-cc-L15 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28306,20 +28306,20 @@ conversionFactor: 10⁻⁸ s symbol: mPa·s/bar id: un-cefact-cc-L16 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '86' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L17 name: milligram per cubic metre kelvin @@ -28327,20 +28327,20 @@ conversionFactor: 10⁻⁶ (kg/m³)/K symbol: (mg/m³)/K id: un-cefact-cc-L17 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '87' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L18 name: milligram per cubic metre bar @@ -28348,13 +28348,13 @@ conversionFactor: 10⁻¹¹ (kg/m³)/Pa symbol: (mg/m³)/bar id: un-cefact-cc-L18 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28369,13 +28369,13 @@ conversionFactor: 10⁻³ symbol: ml/l id: un-cefact-cc-L19 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28386,21 +28386,21 @@ quantity: volume flow rate levelCategory: 1M commonCode: L2 name: litre per minute -conversionFactor: 1,666 67 x 10⁻⁵ m³/s +conversionFactor: '1,666 67 x 10⁻⁵ m³/s' symbol: l/min id: un-cefact-cc-L2 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '26' quantity: >- @@ -28413,13 +28413,13 @@ conversionFactor: 10⁹ m⁻³ symbol: 1/mm³ id: un-cefact-cc-L20 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28434,38 +28434,38 @@ conversionFactor: 10⁹ symbol: mm³/m³ id: un-cefact-cc-L21 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '88' quantity: molar flux levelCategory: 1S commonCode: L23 name: mole per hour -conversionFactor: 2,777 78 x 10⁻⁴ mol/s +conversionFactor: '2,777 78 x 10⁻⁴ mol/s' symbol: mol/h id: un-cefact-cc-L23 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '44' quantity: >- @@ -28478,17 +28478,17 @@ conversionFactor: (mol/kg)/K symbol: (mol/kg)/K id: un-cefact-cc-L24 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '45' quantity: >- @@ -28501,17 +28501,17 @@ conversionFactor: 10⁻⁵ (mol/kg)/Pa symbol: (mol/kg)/bar id: un-cefact-cc-L25 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '46' quantity: >- @@ -28524,17 +28524,17 @@ conversionFactor: 10³ (mol/m³)/K symbol: (mol/l)/K id: un-cefact-cc-L26 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '47' quantity: >- @@ -28547,17 +28547,17 @@ conversionFactor: 10⁻² (mol/m³)/Pa symbol: (mol/l)/bar id: un-cefact-cc-L27 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '48' quantity: >- @@ -28570,17 +28570,17 @@ conversionFactor: (mol/m³)/K symbol: (mol/m³)/K id: un-cefact-cc-L28 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '49' quantity: >- @@ -28593,34 +28593,34 @@ conversionFactor: 10⁻⁵ (mol/m³)/Pa symbol: (mol/m³)/bar id: un-cefact-cc-L29 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '89' quantity: molar flux levelCategory: 1S commonCode: L30 name: mole per minute -conversionFactor: 1,666 67 x 10⁻² mol/s +conversionFactor: '1,666 67 x 10⁻² mol/s' symbol: mol/min id: un-cefact-cc-L30 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28635,13 +28635,13 @@ conversionFactor: 10⁻⁵ Sv symbol: mrem id: un-cefact-cc-L31 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28656,13 +28656,13 @@ conversionFactor: 10⁻¹² symbol: ng/kg id: un-cefact-cc-L32 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28673,17 +28673,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L33 name: ounce (avoirdupois) per day -conversionFactor: 3,281 194 x 10⁻⁷kg/s +conversionFactor: '3,281 194 x 10⁻⁷kg/s' symbol: oz/d id: un-cefact-cc-L33 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28694,17 +28694,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L34 name: ounce (avoirdupois) per hour -conversionFactor: 7,874 867 x 10⁻⁶ kg/s +conversionFactor: '7,874 867 x 10⁻⁶ kg/s' symbol: oz/h id: un-cefact-cc-L34 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28715,17 +28715,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L35 name: ounce (avoirdupois) per minute -conversionFactor: 4,724 92 x 10⁻⁴ kg/s +conversionFactor: '4,724 92 x 10⁻⁴ kg/s' symbol: oz/min id: un-cefact-cc-L35 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28736,122 +28736,122 @@ quantity: mass flow rate levelCategory: '2' commonCode: L36 name: ounce (avoirdupois) per second -conversionFactor: 2,834 952 x 10⁻² kg/s +conversionFactor: '2,834 952 x 10⁻² kg/s' symbol: oz/s id: un-cefact-cc-L36 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '88' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L37 name: ounce (avoirdupois) per gallon (UK) -conversionFactor: 6,236 023 kg/m³ +conversionFactor: '6,236 023 kg/m³' symbol: oz/gal (UK) id: un-cefact-cc-L37 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '89' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L38 name: ounce (avoirdupois) per gallon (US) -conversionFactor: 7,489 152 kg/m³ +conversionFactor: '7,489 152 kg/m³' symbol: oz/gal (US) id: un-cefact-cc-L38 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '90' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L39 name: ounce (avoirdupois) per cubic inch -conversionFactor: 1,729 994 x 10³ kg/m³ +conversionFactor: '1,729 994 x 10³ kg/m³' symbol: oz/in³ id: un-cefact-cc-L39 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '146' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: L40 name: ounce (avoirdupois)-force -conversionFactor: 0,278 013 9 N +conversionFactor: '0,278 013 9 N' symbol: ozf id: un-cefact-cc-L40 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '179' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: L41 name: ounce (avoirdupois)-force inch -conversionFactor: 7,061 552 x 10⁻³ N x m +conversionFactor: '7,061 552 x 10⁻³ N x m' symbol: ozf·in id: un-cefact-cc-L41 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28866,13 +28866,13 @@ conversionFactor: 10⁻¹² S/m symbol: pS/m id: un-cefact-cc-L42 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28883,17 +28883,17 @@ quantity: volume levelCategory: '2' commonCode: L43 name: peck (UK) -conversionFactor: 9,092 181 x 10⁻³ m³ +conversionFactor: '9,092 181 x 10⁻³ m³' symbol: pk (UK) id: un-cefact-cc-L43 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28904,17 +28904,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L44 name: peck (UK) per day -conversionFactor: 1,052 336 x 10⁻⁷ m³/s +conversionFactor: '1,052 336 x 10⁻⁷ m³/s' symbol: pk (UK)/d id: un-cefact-cc-L44 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28925,17 +28925,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L45 name: peck (UK) per hour -conversionFactor: 2,525 606 x 10⁻⁶ m³/s +conversionFactor: '2,525 606 x 10⁻⁶ m³/s' symbol: pk (UK)/h id: un-cefact-cc-L45 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28946,17 +28946,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L46 name: peck (UK) per minute -conversionFactor: 1,515 363 5 x 10⁻⁴ m³/s +conversionFactor: '1,515 363 5 x 10⁻⁴ m³/s' symbol: pk (UK)/min id: un-cefact-cc-L46 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28967,17 +28967,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L47 name: peck (UK) per second -conversionFactor: 9,092 181 x 10⁻³ m³/s +conversionFactor: '9,092 181 x 10⁻³ m³/s' symbol: pk (UK)/s id: un-cefact-cc-L47 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -28988,17 +28988,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L48 name: peck (US dry) per day -conversionFactor: 1,019 649 x 10⁻⁷ m³/s +conversionFactor: '1,019 649 x 10⁻⁷ m³/s' symbol: pk (US dry)/d id: un-cefact-cc-L48 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29009,17 +29009,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L49 name: peck (US dry) per hour -conversionFactor: 2,447 158 x 10⁻⁶ m³/s +conversionFactor: '2,447 158 x 10⁻⁶ m³/s' symbol: pk (US dry)/h id: un-cefact-cc-L49 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29030,17 +29030,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L50 name: peck (US dry) per minute -conversionFactor: 1,468 295 x 10⁻⁴ m³/s +conversionFactor: '1,468 295 x 10⁻⁴ m³/s' symbol: pk (US dry)/min id: un-cefact-cc-L50 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29051,17 +29051,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L51 name: peck (US dry) per second -conversionFactor: 8,809 768 x 10⁻³ m³/s +conversionFactor: '8,809 768 x 10⁻³ m³/s' symbol: pk (US dry)/s id: un-cefact-cc-L51 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29076,13 +29076,13 @@ conversionFactor: '1' symbol: psi/psi id: un-cefact-cc-L52 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29093,17 +29093,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L53 name: pint (UK) per day -conversionFactor: 6,577 098 x 10⁻⁹ m³/s +conversionFactor: '6,577 098 x 10⁻⁹ m³/s' symbol: pt (UK)/d id: un-cefact-cc-L53 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29114,17 +29114,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L54 name: pint (UK) per hour -conversionFactor: 1,578 504 x 10⁻⁷ m³/s +conversionFactor: '1,578 504 x 10⁻⁷ m³/s' symbol: pt (UK)/h id: un-cefact-cc-L54 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29135,17 +29135,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L55 name: pint (UK) per minute -conversionFactor: 9,471 022 x 10⁻⁶ m³/s +conversionFactor: '9,471 022 x 10⁻⁶ m³/s' symbol: pt (UK)/min id: un-cefact-cc-L55 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29156,17 +29156,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L56 name: pint (UK) per second -conversionFactor: 5,682 613 x 10⁻⁴ m³/s +conversionFactor: '5,682 613 x 10⁻⁴ m³/s' symbol: pt (UK)/s id: un-cefact-cc-L56 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29177,17 +29177,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L57 name: pint (US liquid) per day -conversionFactor: 5,476 580 x 10⁻⁹ m³/s +conversionFactor: '5,476 580 x 10⁻⁹ m³/s' symbol: pt (US liq.)/d id: un-cefact-cc-L57 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29198,17 +29198,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L58 name: pint (US liquid) per hour -conversionFactor: 1,314 379 x 10⁻⁷ m³/s +conversionFactor: '1,314 379 x 10⁻⁷ m³/s' symbol: pt (US liq.)/h id: un-cefact-cc-L58 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29219,17 +29219,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L59 name: pint (US liquid) per minute -conversionFactor: 7,886 275 x 10⁻⁶ m³/s +conversionFactor: '7,886 275 x 10⁻⁶ m³/s' symbol: pt (US liq.)/min id: un-cefact-cc-L59 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29240,17 +29240,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: L60 name: pint (US liquid) per second -conversionFactor: 4,731 765 x 10⁻⁴ m³/s +conversionFactor: '4,731 765 x 10⁻⁴ m³/s' symbol: pt (US liq.)/s id: un-cefact-cc-L60 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29262,18 +29262,18 @@ levelCategory: '2' status: MARKED_AS_DELETED commonCode: L61 name: pint (US dry) -conversionFactor: 5,506 105 x 10⁻⁴ m³ +conversionFactor: '5,506 105 x 10⁻⁴ m³' symbol: pt (US dry) description: Use dry pint (common code PTD) id: un-cefact-cc-L61 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29285,18 +29285,18 @@ levelCategory: '2' status: MARKED_AS_DELETED commonCode: L62 name: quart (US dry) -conversionFactor: 1,101 221 x 10⁻³ m³ +conversionFactor: '1,101 221 x 10⁻³ m³' symbol: qt (US dry) description: Use dry quart (US) (common code QTD) id: un-cefact-cc-L62 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29307,17 +29307,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L63 name: slug per day -conversionFactor: 1,689 109 x 10⁻⁴ kg/s +conversionFactor: '1,689 109 x 10⁻⁴ kg/s' symbol: slug/d id: un-cefact-cc-L63 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29328,38 +29328,38 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: L64 name: slug per foot second -conversionFactor: 47,880 26 Pa x s +conversionFactor: '47,880 26 Pa x s' symbol: slug/(ft·s) id: un-cefact-cc-L64 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '91' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L65 name: slug per cubic foot -conversionFactor: 5,153 788 x 10² kg/m³ +conversionFactor: '5,153 788 x 10² kg/m³' symbol: slug/ft³ id: un-cefact-cc-L65 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29370,17 +29370,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L66 name: slug per hour -conversionFactor: 4,053 861 x 10⁻³ kg/s +conversionFactor: '4,053 861 x 10⁻³ kg/s' symbol: slug/h id: un-cefact-cc-L66 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29391,17 +29391,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L67 name: slug per minute -conversionFactor: 0,243 231 7 kg/s +conversionFactor: '0,243 231 7 kg/s' symbol: slug/min id: un-cefact-cc-L67 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29412,17 +29412,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L68 name: slug per second -conversionFactor: 14,593 90 kg/s +conversionFactor: '14,593 90 kg/s' symbol: slug/s id: un-cefact-cc-L68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29437,20 +29437,20 @@ conversionFactor: 10³ kg/K symbol: t/K id: un-cefact-cc-L69 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '97' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L70 name: tonne per bar @@ -29458,13 +29458,13 @@ conversionFactor: 10⁻² kg/Pa symbol: t/bar id: un-cefact-cc-L70 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29475,17 +29475,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L71 name: tonne per day -conversionFactor: 1,157 41 x 10⁻² kg/s +conversionFactor: '1,157 41 x 10⁻² kg/s' symbol: t/d id: un-cefact-cc-L71 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29496,17 +29496,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L72 name: tonne per day kelvin -conversionFactor: 1,157 41 x 10⁻² (kg/s)/K +conversionFactor: '1,157 41 x 10⁻² (kg/s)/K' symbol: (t/d)/K id: un-cefact-cc-L72 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29517,17 +29517,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L73 name: tonne per day bar -conversionFactor: 1,157 41 x 10⁻⁷ (kg/s)/Pa +conversionFactor: '1,157 41 x 10⁻⁷ (kg/s)/Pa' symbol: (t/d)/bar id: un-cefact-cc-L73 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29538,17 +29538,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L74 name: tonne per hour kelvin -conversionFactor: 2,777 78 x 10⁻¹ (kg/s)/K +conversionFactor: '2,777 78 x 10⁻¹ (kg/s)/K' symbol: (t/h)/K id: un-cefact-cc-L74 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29559,24 +29559,24 @@ quantity: mass flow rate levelCategory: '2' commonCode: L75 name: tonne per hour bar -conversionFactor: 2,777 78 x 10⁻⁶ (kg/s)/Pa +conversionFactor: '2,777 78 x 10⁻⁶ (kg/s)/Pa' symbol: (t/h)/bar id: un-cefact-cc-L75 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '92' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L76 name: tonne per cubic metre kelvin @@ -29584,20 +29584,20 @@ conversionFactor: 10³ (kg/m³)/K symbol: (t/m³)/K id: un-cefact-cc-L76 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '93' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L77 name: tonne per cubic metre bar @@ -29605,13 +29605,13 @@ conversionFactor: 10⁻² (kg/m³)/Pa symbol: (t/m³)/bar id: un-cefact-cc-L77 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29622,17 +29622,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L78 name: tonne per minute -conversionFactor: 16,666 7 kg/s +conversionFactor: '16,666 7 kg/s' symbol: t/min id: un-cefact-cc-L78 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29643,17 +29643,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L79 name: tonne per minute kelvin -conversionFactor: 16,666 7 (kg/s)/K +conversionFactor: '16,666 7 (kg/s)/K' symbol: (t/min)/K id: un-cefact-cc-L79 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29664,17 +29664,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L80 name: tonne per minute bar -conversionFactor: 1,666 67 x 10⁻⁴ (kg/s)/Pa +conversionFactor: '1,666 67 x 10⁻⁴ (kg/s)/Pa' symbol: (t/min)/bar id: un-cefact-cc-L80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29689,13 +29689,13 @@ conversionFactor: 10³ kg/s symbol: t/s id: un-cefact-cc-L81 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29710,13 +29710,13 @@ conversionFactor: 10³ (kg/s)/K symbol: (t/s)/K id: un-cefact-cc-L82 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29731,13 +29731,13 @@ conversionFactor: 10⁻² (kg/s)/Pa symbol: (t/s)/bar id: un-cefact-cc-L83 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29748,17 +29748,17 @@ quantity: volume levelCategory: '2' commonCode: L84 name: ton (UK shipping) -conversionFactor: 1,189 3 m³ +conversionFactor: '1,189 3 m³' symbol: British shipping ton id: un-cefact-cc-L84 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29769,17 +29769,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L85 name: ton long per day -conversionFactor: 1,175 980 x 10⁻² kg/s +conversionFactor: '1,175 980 x 10⁻² kg/s' symbol: ton (UK)/d id: un-cefact-cc-L85 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29790,17 +29790,17 @@ quantity: volume levelCategory: '2' commonCode: L86 name: ton (US shipping) -conversionFactor: 1,132 6 m³ +conversionFactor: '1,132 6 m³' symbol: (US) shipping ton id: un-cefact-cc-L86 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29811,17 +29811,17 @@ quantity: mass levelCategory: '2' commonCode: L87 name: ton short per degree Fahrenheit -conversionFactor: 1,632 932 x 10³ kg/K +conversionFactor: '1,632 932 x 10³ kg/K' symbol: ton (US)/°F id: un-cefact-cc-L87 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29832,17 +29832,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L88 name: ton short per day -conversionFactor: 1,049 982 x 10⁻² kg/s +conversionFactor: '1,049 982 x 10⁻² kg/s' symbol: ton (US)/d id: un-cefact-cc-L88 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29853,17 +29853,17 @@ quantity: mass flow rate levelCategory: '2' commonCode: L89 name: ton short per hour degree Fahrenheit -conversionFactor: 0,453 592 2 kg/s x K +conversionFactor: '0,453 592 2 kg/s x K' symbol: ton (US)/(h·°F) id: un-cefact-cc-L89 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29874,101 +29874,101 @@ quantity: mass flow rate levelCategory: '2' commonCode: L90 name: ton short per hour psi -conversionFactor: 3,654 889 x 10⁻⁵ (kg/s)/Pa +conversionFactor: '3,654 889 x 10⁻⁵ (kg/s)/Pa' symbol: (ton (US)/h)/psi id: un-cefact-cc-L90 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '98' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L91 name: ton short per psi -conversionFactor: 0,131 576 +conversionFactor: '0,131 576' symbol: ton (US)/psi id: un-cefact-cc-L91 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '94' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L92 name: ton (UK long) per cubic yard -conversionFactor: 1,328 939 x 10³ kg/m³ +conversionFactor: '1,328 939 x 10³ kg/m³' symbol: ton.l/yd³ (UK) id: un-cefact-cc-L92 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '95' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: L93 name: ton (US short) per cubic yard -conversionFactor: 1,186 553 x 10³ kg/m³ +conversionFactor: '1,186 553 x 10³ kg/m³' symbol: ton.s/yd³ (US) id: un-cefact-cc-L93 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '147' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: L94 name: ton-force (US short) -conversionFactor: 8,896 443 x 10³ N +conversionFactor: '8,896 443 x 10³ N' symbol: ton.sh-force id: un-cefact-cc-L94 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -29979,17 +29979,17 @@ quantity: time levelCategory: '2' commonCode: L95 name: common year -conversionFactor: 3,153 6 x 10⁷ s +conversionFactor: '3,153 6 x 10⁷ s' symbol: y (365 days) id: un-cefact-cc-L95 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30000,17 +30000,17 @@ quantity: time levelCategory: '2' commonCode: L96 name: sidereal year -conversionFactor: 3,155 815 x 10⁷ s +conversionFactor: '3,155 815 x 10⁷ s' symbol: y (sidereal) id: un-cefact-cc-L96 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30023,17 +30023,17 @@ quantity: >- levelCategory: '2' commonCode: L98 name: yard per degree Fahrenheit -conversionFactor: 1,645 92 m/K +conversionFactor: '1,645 92 m/K' symbol: yd/°F id: un-cefact-cc-L98 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30046,38 +30046,38 @@ quantity: >- levelCategory: '2' commonCode: L99 name: yard per psi -conversionFactor: 1,326 225 x 10⁻⁴ m/Pa +conversionFactor: '1,326 225 x 10⁻⁴ m/Pa' symbol: yd/psi id: un-cefact-cc-L99 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '75' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: LA name: pound per cubic inch -conversionFactor: 2,767 990 x 10⁴ kg/m³ +conversionFactor: '2,767 990 x 10⁴ kg/m³' symbol: lb/in³ id: un-cefact-cc-LA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30089,13 +30089,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-LAC meta: - created: '2023-09-29T15:00:32.677Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30106,33 +30106,33 @@ quantity: mass levelCategory: '2' commonCode: LBR name: pound -conversionFactor: 0,453 592 37 kg +conversionFactor: '0,453 592 37 kg' symbol: lb id: un-cefact-cc-LBR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: LBT name: troy pound (US) levelCategory: '3.5' -conversionFactor: 373,241 7 g +conversionFactor: '373,241 7 g' id: un-cefact-cc-LBT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30142,13 +30142,13 @@ name: linear centimetre levelCategory: '3.1' id: un-cefact-cc-LC meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30159,17 +30159,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: LD name: litre per day -conversionFactor: 1,157 41 x 10⁻⁸ m³/s +conversionFactor: '1,157 41 x 10⁻⁸ m³/s' symbol: l/d id: un-cefact-cc-LD meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30179,13 +30179,13 @@ name: lite levelCategory: '3.9' id: un-cefact-cc-LE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30195,13 +30195,13 @@ description: A unit of count defining the number of leaves. levelCategory: '3.5' id: un-cefact-cc-LEF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30213,13 +30213,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-LF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30229,13 +30229,13 @@ description: A unit of time defining the number of labour hours. levelCategory: '3.1' id: un-cefact-cc-LH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30245,13 +30245,13 @@ name: linear inch levelCategory: '3.1' id: un-cefact-cc-LI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30261,13 +30261,13 @@ name: large spray levelCategory: '3.9' id: un-cefact-cc-LJ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30277,13 +30277,13 @@ description: A unit of distance equal to 0.01 chain. levelCategory: '3.9' id: un-cefact-cc-LK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30295,13 +30295,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-LM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30313,31 +30313,31 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-LN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: LO -name: lot [unit of procurement] +name: 'lot [unit of procurement]' description: >- A unit of count defining the number of lots (lot: a collection of associated items). levelCategory: '3.9' id: un-cefact-cc-LO meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30347,13 +30347,13 @@ description: A unit of mass defining the number of pounds of a liquid substance. levelCategory: '3.1' id: un-cefact-cc-LP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30363,13 +30363,13 @@ description: A unit of volume equal to one litre of pure alcohol. levelCategory: '3.1' id: un-cefact-cc-LPA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30379,13 +30379,13 @@ description: A unit of count defining the number of layers. levelCategory: '3.9' id: un-cefact-cc-LR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30395,13 +30395,13 @@ description: A unit of count defining the number of whole or a complete monetary levelCategory: '3.9' id: un-cefact-cc-LS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30412,18 +30412,18 @@ quantity: mass levelCategory: '2' commonCode: LTN name: ton (UK) or long ton (US) -conversionFactor: 1,016 047 x 10³ kg +conversionFactor: '1,016 047 x 10³ kg' symbol: ton (UK) description: 'Synonym: gross ton (2240 lb)' id: un-cefact-cc-LTN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30438,29 +30438,29 @@ conversionFactor: 10⁻³ m³ symbol: l id: un-cefact-cc-LTR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: LUB -name: metric ton, lubricating oil +name: 'metric ton, lubricating oil' description: A unit of mass defining the number of metric tons of lubricating oil. levelCategory: '3.1' id: un-cefact-cc-LUB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30475,13 +30475,13 @@ conversionFactor: cd x sr symbol: lm id: un-cefact-cc-LUM meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30496,13 +30496,13 @@ conversionFactor: cd x sr / m² symbol: lx id: un-cefact-cc-LUX meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30512,13 +30512,13 @@ name: linear yard per pound levelCategory: '3.1' id: un-cefact-cc-LX meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30530,13 +30530,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-LY meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30546,20 +30546,20 @@ name: magnetic tape levelCategory: '3.6' id: un-cefact-cc-M0 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '41' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: M1 name: milligram per litre @@ -30567,17 +30567,17 @@ conversionFactor: 10⁻³ kg/m³ symbol: mg/l id: un-cefact-cc-M1 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '30' quantity: >- @@ -30586,17 +30586,17 @@ quantity: >- levelCategory: '2' commonCode: M10 name: reciprocal cubic yard -conversionFactor: 1,307 951 m⁻³ +conversionFactor: '1,307 951 m⁻³' symbol: 1/yd³ id: un-cefact-cc-M10 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30607,17 +30607,17 @@ quantity: volume levelCategory: '2' commonCode: M11 name: cubic yard per degree Fahrenheit -conversionFactor: 1,376 199 m³/K +conversionFactor: '1,376 199 m³/K' symbol: yd³/°F id: un-cefact-cc-M11 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30628,17 +30628,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: M12 name: cubic yard per day -conversionFactor: 8,849 015 x 10⁻⁶ m³/s +conversionFactor: '8,849 015 x 10⁻⁶ m³/s' symbol: yd³/d id: un-cefact-cc-M12 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30649,17 +30649,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: M13 name: cubic yard per hour -conversionFactor: 2,123 764 x 10⁻⁴ m³/s +conversionFactor: '2,123 764 x 10⁻⁴ m³/s' symbol: yd³/h id: un-cefact-cc-M13 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30670,17 +30670,17 @@ quantity: volume levelCategory: '2' commonCode: M14 name: cubic yard per psi -conversionFactor: 1,108 893 x 10⁻⁴ m³/Pa +conversionFactor: '1,108 893 x 10⁻⁴ m³/Pa' symbol: yd³/psi id: un-cefact-cc-M14 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30691,17 +30691,17 @@ quantity: volume flow rate levelCategory: '2' commonCode: M15 name: cubic yard per minute -conversionFactor: 1,274 258 x 10⁻² m³/s +conversionFactor: '1,274 258 x 10⁻² m³/s' symbol: yd³/min id: un-cefact-cc-M15 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30712,24 +30712,24 @@ quantity: volume flow rate levelCategory: '2' commonCode: M16 name: cubic yard per second -conversionFactor: 0,764 554 9 m³/s +conversionFactor: '0,764 554 9 m³/s' symbol: yd³/s id: un-cefact-cc-M16 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '207' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '2' commonCode: M17 name: kilohertz metre @@ -30737,20 +30737,20 @@ conversionFactor: 10³ Hz x m symbol: kHz·m id: un-cefact-cc-M17 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '208' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '2' commonCode: M18 name: gigahertz metre @@ -30758,13 +30758,13 @@ conversionFactor: 10⁹ Hz x m symbol: GHz·m id: un-cefact-cc-M18 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30778,13 +30778,13 @@ levelCategory: '3' symbol: Bft id: un-cefact-cc-M19 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30801,55 +30801,55 @@ conversionFactor: 10⁻⁶ K⁻¹ symbol: 1/MK id: un-cefact-cc-M20 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '210' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '2' commonCode: M21 name: reciprocal kilovolt - ampere reciprocal hour -conversionFactor: 2,777 778 x 10⁻⁷ (V x A x s)⁻¹ +conversionFactor: '2,777 778 x 10⁻⁷ (V x A x s)⁻¹' symbol: 1/kVAh id: un-cefact-cc-M21 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '198' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M22 name: millilitre per square centimetre minute -conversionFactor: 2,777 778 x 10⁻⁶ (m³/s)/m² +conversionFactor: '2,777 778 x 10⁻⁶ (m³/s)/m²' symbol: (ml/min)/cm² id: un-cefact-cc-M22 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30864,13 +30864,13 @@ conversionFactor: 10² N/m symbol: N/cm id: un-cefact-cc-M23 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30885,13 +30885,13 @@ conversionFactor: 10³ Ω x m symbol: Ω·km id: un-cefact-cc-M24 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30905,13 +30905,13 @@ symbol: '%/°C' conversionFactor: 10⁻² °C⁻¹ id: un-cefact-cc-M25 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30926,20 +30926,20 @@ conversionFactor: 10⁹ Ω/m symbol: GΩ/m id: un-cefact-cc-M26 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '209' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '2' commonCode: M27 name: megahertz metre @@ -30947,13 +30947,13 @@ conversionFactor: 10⁶ Hz x m symbol: MHz·m id: un-cefact-cc-M27 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -30968,20 +30968,20 @@ conversionFactor: '1' symbol: kg/kg id: un-cefact-cc-M29 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '206' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: 1S commonCode: M30 name: reciprocal volt - ampere reciprocal second @@ -30989,20 +30989,20 @@ conversionFactor: (V x A x s)⁻¹ symbol: 1/(V·A·s) id: un-cefact-cc-M30 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '115' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: 1S commonCode: M31 name: kilogram per kilometre @@ -31010,13 +31010,13 @@ conversionFactor: 10⁻³ kg/m symbol: kg/km id: un-cefact-cc-M31 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31031,17 +31031,17 @@ conversionFactor: 10³ Pa x s/m³ symbol: Pa·s/l id: un-cefact-cc-M32 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '38' quantity: >- @@ -31054,13 +31054,13 @@ conversionFactor: mol/m³ symbol: mmol/l id: un-cefact-cc-M33 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31075,13 +31075,13 @@ conversionFactor: N x m/m² symbol: N·m/m² id: un-cefact-cc-M34 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31096,13 +31096,13 @@ conversionFactor: 10⁻³ V x A symbol: mV·A id: un-cefact-cc-M35 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31113,16 +31113,16 @@ description: >- days, one day equals 24 hours. levelCategory: '3.7' symbol: mo (30 days) -conversionFactor: 2,592 000 x 10⁶ s +conversionFactor: '2,592 000 x 10⁶ s' id: un-cefact-cc-M36 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31133,23 +31133,23 @@ description: >- days, one day equals 24 hours. levelCategory: '3.7' symbol: y (360 days) -conversionFactor: 3,110 400 0 x 10⁷ s +conversionFactor: '3,110 400 0 x 10⁷ s' id: un-cefact-cc-M37 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '211' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: 1M commonCode: M38 name: kilometre per second squared @@ -31160,20 +31160,20 @@ description: >- second by exponent 2. id: un-cefact-cc-M38 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '212' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: 1M commonCode: M39 name: centimetre per second squared @@ -31184,13 +31184,13 @@ description: >- second by exponent 2. id: un-cefact-cc-M39 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31200,44 +31200,44 @@ description: A unit of measure expressed as a monetary amount. levelCategory: '3.9' id: un-cefact-cc-M4 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '217' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: '2' commonCode: M40 name: yard per second squared -conversionFactor: 9,144 x 10⁻¹ m/s² +conversionFactor: '9,144 x 10⁻¹ m/s²' symbol: yd/s² description: >- Unit of the length according to the Anglo-American and Imperial system of units divided by the power of the SI base unit second by exponent 2. id: un-cefact-cc-M40 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '213' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: 1M commonCode: M41 name: millimetre per second squared @@ -31248,37 +31248,37 @@ description: >- second by exponent 2. id: un-cefact-cc-M41 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '218' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: '2' commonCode: M42 name: mile (statute mile) per second squared -conversionFactor: 1,609 344 x 10³ m/s² +conversionFactor: '1,609 344 x 10³ m/s²' symbol: mi/s² description: >- Unit of the length according to the Imperial system of units divided by the power of the SI base unit second by exponent 2. id: un-cefact-cc-M42 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31289,20 +31289,20 @@ quantity: angle (plane) levelCategory: '2' commonCode: M43 name: mil -conversionFactor: 9,817 477 × 10⁻⁴ rad +conversionFactor: '9,817 477 × 10⁻⁴ rad' symbol: mil description: >- Unit to indicate an angle at military zone, equal to the 6400th part of the full circle of the 360° or 2·p·rad. id: un-cefact-cc-M43 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31313,20 +31313,20 @@ quantity: angle (plane) levelCategory: '2' commonCode: M44 name: revolution -conversionFactor: 6,283 185 rad +conversionFactor: '6,283 185 rad' symbol: rev description: >- Unit to identify an angle of the full circle of 360° or 2·p·rad (Refer ISO/TC12 SI Guide). id: un-cefact-cc-M44 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31336,21 +31336,21 @@ groupId: '172' quantity: angular acceleration levelCategory: 1M commonCode: M45 -name: degree [unit of angle] per second squared -conversionFactor: 1,745 329 x 10⁻² rad / s +name: 'degree [unit of angle] per second squared' +conversionFactor: '1,745 329 x 10⁻² rad / s' symbol: °/s² description: >- 360 part of a full circle divided by the power of the SI base unit second and the exponent 2. id: un-cefact-cc-M45 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31361,18 +31361,18 @@ quantity: angular velocity levelCategory: '2' commonCode: M46 name: 'revolution per minute ' -conversionFactor: 0,104 719 8 rad/s +conversionFactor: '0,104 719 8 rad/s' symbol: r/min description: Unit of the angular velocity. id: un-cefact-cc-M46 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31383,20 +31383,20 @@ quantity: area levelCategory: '2' commonCode: M47 name: 'circular mil ' -conversionFactor: 5,067 075 x 10⁻¹⁰ m² +conversionFactor: '5,067 075 x 10⁻¹⁰ m²' symbol: cmil description: >- Unit of an area, of which the size is given by a diameter of length of 1 mm (0,001 in) based on the formula: area = p·(diameter/2)². id: un-cefact-cc-M47 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31407,18 +31407,18 @@ quantity: area levelCategory: '2' commonCode: M48 name: 'square mile (based on U.S. survey foot) ' -conversionFactor: 2,589 998 x 10⁶ m² +conversionFactor: '2,589 998 x 10⁶ m²' symbol: mi² (US survey) -description: Unit of the area, which is mainly common in the agriculture and forestry. +description: 'Unit of the area, which is mainly common in the agriculture and forestry.' id: un-cefact-cc-M48 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31431,39 +31431,39 @@ quantity: >- levelCategory: '2' commonCode: M49 name: chain (based on U.S. survey foot) -conversionFactor: 2,011684 x 10 m +conversionFactor: '2,011684 x 10 m' symbol: 'ch (US survey) ' description: Unit of the length according the Anglo-American system of units. id: un-cefact-cc-M49 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '39' quantity: activity levelCategory: 2S commonCode: M5 name: microcurie -conversionFactor: 3,7 x 10⁴ Bq +conversionFactor: '3,7 x 10⁴ Bq' symbol: µCi id: un-cefact-cc-M5 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31476,20 +31476,20 @@ quantity: >- levelCategory: '2' commonCode: M50 name: furlong -conversionFactor: 2,011 68 x 10² m +conversionFactor: '2,011 68 x 10² m' symbol: fur description: >- Unit commonly used in Great Britain at rural distances: 1 furlong = 40 rods = 10 chains (UK) = 1/8 mile = 1/10 furlong = 220 yards = 660 foot. id: un-cefact-cc-M50 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31502,18 +31502,18 @@ quantity: >- levelCategory: '2' commonCode: M51 name: 'foot (U.S. survey) ' -conversionFactor: 3,048 006 x 10⁻¹ m +conversionFactor: '3,048 006 x 10⁻¹ m' symbol: 'ft (US survey) ' description: "Unit commonly used in the United States for ordnance survey.\r" id: un-cefact-cc-M51 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31526,18 +31526,18 @@ quantity: >- levelCategory: '2' commonCode: M52 name: 'mile (based on U.S. survey foot) ' -conversionFactor: 1,609347 x 10³ m +conversionFactor: '1,609347 x 10³ m' symbol: 'mi (US survey) ' description: Unit commonly used in the United States for ordnance survey. id: un-cefact-cc-M52 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31555,13 +31555,13 @@ symbol: m/Pa description: SI base unit metre divided by the derived SI unit pascal. id: un-cefact-cc-M53 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31579,13 +31579,13 @@ description: >- movement. id: un-cefact-cc-M55 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31601,64 +31601,64 @@ symbol: shake description: Unit for a very short period. id: un-cefact-cc-M56 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '199' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M57 name: 'mile per minute ' -conversionFactor: 26,822 4 m/s +conversionFactor: '26,822 4 m/s' symbol: mi/min description: Unit of velocity from the Imperial system of units. id: un-cefact-cc-M57 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '200' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M58 name: 'mile per second ' -conversionFactor: 1,609 344 x 10³ m/s +conversionFactor: '1,609 344 x 10³ m/s' symbol: mi/s description: Unit of the velocity from the Imperial system of units. id: un-cefact-cc-M58 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '181' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: 1S commonCode: M59 name: metre per second pascal @@ -31669,66 +31669,66 @@ description: >- derived SI unit pascal. id: un-cefact-cc-M59 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '201' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M60 name: metre per hour -conversionFactor: 2,777 78 x 10⁻⁴ m/s +conversionFactor: '2,777 78 x 10⁻⁴ m/s' symbol: m/h description: SI base unit metre divided by the unit hour. id: un-cefact-cc-M60 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '202' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M61 name: inch per year -conversionFactor: 8,048 774 x 10⁻¹⁰ m/s +conversionFactor: '8,048 774 x 10⁻¹⁰ m/s' symbol: in/y description: >- Unit of the length according to the Anglo-American and Imperial system of units divided by the unit common year with 365 days. id: un-cefact-cc-M61 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '203' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M62 name: 'kilometre per second ' @@ -31737,109 +31737,109 @@ symbol: km/s description: 1000-fold of the SI base unit metre divided by the SI base unit second. id: un-cefact-cc-M62 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '204' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M63 name: inch per minute -conversionFactor: 4,233 333 x 10⁻⁴ m/s +conversionFactor: '4,233 333 x 10⁻⁴ m/s' symbol: in/min description: >- Unit inch according to the Anglo-American and Imperial system of units divided by the unit minute. id: un-cefact-cc-M63 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '205' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M64 name: yard per second -conversionFactor: 9,144 x 10⁻¹ m/s +conversionFactor: '9,144 x 10⁻¹ m/s' symbol: yd/s description: >- Unit yard according to the Anglo-American and Imperial system of units divided by the SI base unit second. id: un-cefact-cc-M64 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '206' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M65 name: yard per minute -conversionFactor: 1,524 x 10⁻² m/s +conversionFactor: '1,524 x 10⁻² m/s' symbol: yd/min description: >- Unit yard according to the Anglo-American and Imperial system of units divided by the unit minute. id: un-cefact-cc-M65 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '207' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '2' commonCode: M66 name: yard per hour -conversionFactor: 2,54 x 10⁻⁴ m/s +conversionFactor: '2,54 x 10⁻⁴ m/s' symbol: yd/h description: >- Unit yard according to the Anglo-American and Imperial system of units divided by the unit hour. id: un-cefact-cc-M66 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31850,20 +31850,20 @@ quantity: volume levelCategory: '2' commonCode: M67 name: acre-foot (based on U.S. survey foot) -conversionFactor: 1,233 489 x 10³ m³ +conversionFactor: '1,233 489 x 10³ m³' symbol: acre-ft (US survey) description: >- Unit of the volume, which is used in the United States to measure/gauge the capacity of reservoirs. id: un-cefact-cc-M67 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31874,20 +31874,20 @@ quantity: volume levelCategory: '2' commonCode: M68 name: cord (128 ft3) -conversionFactor: 3,624 556 m³ +conversionFactor: '3,624 556 m³' symbol: cord description: >- Traditional unit of the volume of stacked firewood which has been measured with a cord. id: un-cefact-cc-M68 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31898,18 +31898,18 @@ quantity: volume levelCategory: '2' commonCode: M69 name: cubic mile (UK statute) -conversionFactor: 4,168 182 x 10⁹ m³ +conversionFactor: '4,168 182 x 10⁹ m³' symbol: mi³ description: Unit of volume according to the Imperial system of units. id: un-cefact-cc-M69 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31922,17 +31922,17 @@ quantity: >- levelCategory: '2' commonCode: M7 name: micro-inch -conversionFactor: 25,4 x 10⁻⁹ m +conversionFactor: '25,4 x 10⁻⁹ m' symbol: µin id: un-cefact-cc-M7 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31943,18 +31943,18 @@ quantity: volume levelCategory: '2' commonCode: M70 name: 'ton, register ' -conversionFactor: 2,831 685 m³ +conversionFactor: '2,831 685 m³' symbol: RT description: Traditional unit of the cargo capacity. id: un-cefact-cc-M70 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -31972,20 +31972,20 @@ description: >- unit pascal. id: un-cefact-cc-M71 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '02' sector: PERIODIC_AND_RELATED_PHASES groupId: '22' -quantity: level of a field quantity, level of a power quantity +quantity: 'level of a field quantity, level of a power quantity' levelCategory: 1M commonCode: M72 name: bel @@ -31994,20 +31994,20 @@ symbol: B description: Logarithmic relationship to base 10. id: un-cefact-cc-M72 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '72' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: 1M commonCode: M73 name: kilogram per cubic metre pascal @@ -32018,20 +32018,20 @@ description: >- metre with exponent 3 and the derived SI unit pascal. id: un-cefact-cc-M73 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '99' -quantity: density, mass density, volumic mass +quantity: 'density, mass density, volumic mass' levelCategory: '2' commonCode: M74 name: kilogram per pascal @@ -32040,68 +32040,68 @@ symbol: kg/Pa description: SI base unit kilogram divided by the derived SI unit pascal. id: un-cefact-cc-M74 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '148' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: M75 name: kilopound-force -conversionFactor: 4,448 222 x 10³ N +conversionFactor: '4,448 222 x 10³ N' symbol: kip description: >- 1000-fold of the unit of the force pound-force (lbf) according to the Anglo-American system of units with the relationship. id: un-cefact-cc-M75 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '149' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: M76 name: poundal -conversionFactor: 1,382 550 x 10⁻¹ N +conversionFactor: '1,382 550 x 10⁻¹ N' symbol: pdl description: >- Non SI-conforming unit of the power, which corresponds to a mass of a pound multiplied with the acceleration of a foot per square second. id: un-cefact-cc-M76 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '150' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: M77 name: kilogram metre per second squared @@ -32112,24 +32112,24 @@ description: >- power of the SI base unit second by exponent 2. id: un-cefact-cc-M77 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '151' -quantity: force, weight +quantity: 'force, weight' levelCategory: '2' commonCode: M78 name: pond -conversionFactor: 9,806 65 x 10⁻³ N +conversionFactor: '9,806 65 x 10⁻³ N' symbol: p description: >- 0,001-fold of the unit of the weight, defined as a mass of 1 kg which finds @@ -32137,13 +32137,13 @@ description: >- which corresponds to a strength of 9,806 65 newton. id: un-cefact-cc-M78 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32154,20 +32154,20 @@ quantity: kinematic viscosity levelCategory: '2' commonCode: M79 name: 'square foot per hour ' -conversionFactor: 2,580 64 x 10⁻⁵ m²/s +conversionFactor: '2,580 64 x 10⁻⁵ m²/s' symbol: ft²/h description: >- Power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2 divided by the unit of time hour. id: un-cefact-cc-M79 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32185,13 +32185,13 @@ description: >- pascal. id: un-cefact-cc-M80 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32209,13 +32209,13 @@ description: >- the SI base unit second. id: un-cefact-cc-M81 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32233,59 +32233,59 @@ description: >- unit second and the derived SI unit pascal. id: un-cefact-cc-M82 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '118' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: '2' commonCode: M83 name: 'denier ' -conversionFactor: 1,111 111 x 10⁻⁷ kg/m +conversionFactor: '1,111 111 x 10⁻⁷ kg/m' symbol: den description: >- Traditional unit for the indication of the linear mass of textile fibers and yarns. id: un-cefact-cc-M83 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '119' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: '2' commonCode: M84 name: 'pound per yard ' -conversionFactor: 4,960 546 x 10⁻¹ kg/m +conversionFactor: '4,960 546 x 10⁻¹ kg/m' symbol: lb/yd description: Unit for linear mass according to avoirdupois system of units. id: un-cefact-cc-M84 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32295,8 +32295,8 @@ groupId: '27' quantity: mass levelCategory: '2' commonCode: M85 -name: ton, assay -conversionFactor: 2,916 667 x 10⁻² kg +name: 'ton, assay' +conversionFactor: '2,916 667 x 10⁻² kg' description: >- 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 @@ -32304,13 +32304,13 @@ description: >- ounces in a short ton (1 000 lb)). id: un-cefact-cc-M85 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32321,18 +32321,18 @@ quantity: mass levelCategory: '2' commonCode: M86 name: pfund -conversionFactor: 0,5 kg +conversionFactor: '0,5 kg' symbol: pfd description: Outdated unit of the mass used in Germany. id: un-cefact-cc-M86 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32350,13 +32350,13 @@ description: >- the derived SI unit pascal. id: un-cefact-cc-M87 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32367,18 +32367,18 @@ quantity: mass flow rate levelCategory: '2' commonCode: M88 name: tonne per month -conversionFactor: 3,802 570 537 68 x 10⁻⁴ kg/s +conversionFactor: '3,802 570 537 68 x 10⁻⁴ kg/s' symbol: t/mo description: Unit tonne divided by the unit month. id: un-cefact-cc-M88 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32389,18 +32389,18 @@ quantity: mass flow rate levelCategory: '2' commonCode: M89 name: tonne per year -conversionFactor: 3,168 808 781 x 10⁻⁵ kg/s +conversionFactor: '3,168 808 781 x 10⁻⁵ kg/s' symbol: t/y description: Unit tonne divided by the unit year with 365 days. id: un-cefact-cc-M89 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32410,13 +32410,13 @@ levelCategory: '3.9' symbol: MBTU/kft³ id: un-cefact-cc-M9 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32427,20 +32427,20 @@ quantity: mass flow rate levelCategory: '2' commonCode: M90 name: kilopound per hour -conversionFactor: 0,125 997 889 kg/s +conversionFactor: '0,125 997 889 kg/s' symbol: klb/h description: >- 1000-fold of the unit of the mass avoirdupois pound according to the avoirdupois unit system divided by the unit hour. id: un-cefact-cc-M90 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32459,24 +32459,24 @@ description: >- avoirdupois unit system. id: un-cefact-cc-M91 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '180' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: M92 name: pound-force foot -conversionFactor: 1,355 818 N x m +conversionFactor: '1,355 818 N x m' symbol: lbf·ft description: >- Product of the unit pound-force according to the Anglo-American system of @@ -32484,20 +32484,20 @@ description: >- system of units. id: un-cefact-cc-M92 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '169' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1M commonCode: M93 name: newton metre per radian @@ -32508,20 +32508,20 @@ description: >- the unit radian. id: un-cefact-cc-M93 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '163' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: 1S commonCode: M94 name: kilogram metre @@ -32532,68 +32532,68 @@ description: >- unit metre. id: un-cefact-cc-M94 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '181' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: M95 name: poundal foot -conversionFactor: 4,214 011 x 10⁻² N x m +conversionFactor: '4,214 011 x 10⁻² N x m' symbol: pdl·ft description: >- Product of the non SI-conforming unit of the force poundal and the unit foot according to the Anglo-American and Imperial system of units . id: un-cefact-cc-M95 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '182' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: M96 name: poundal inch -conversionFactor: 3,511 677 10⁻³ N x m +conversionFactor: '3,511 677 10⁻³ N x m' symbol: pdl·in description: >- Product of the non SI-conforming unit of the force poundal and the unit inch according to the Anglo-American and Imperial system of units . id: un-cefact-cc-M96 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '183' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '2' commonCode: M97 name: dyne metre @@ -32602,13 +32602,13 @@ symbol: dyn·m description: CGS (Centimetre-Gram-Second system) unit of the rotational moment. id: un-cefact-cc-M97 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32626,13 +32626,13 @@ description: >- metre divided by the SI base unit second. id: un-cefact-cc-M98 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32650,13 +32650,13 @@ description: >- the SI base unit metre divided by the SI base unit second. id: un-cefact-cc-M99 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32666,13 +32666,13 @@ name: machine per unit levelCategory: '3.9' id: un-cefact-cc-MA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32685,13 +32685,13 @@ levelCategory: '3.1' symbol: Mvar·h id: un-cefact-cc-MAH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32706,13 +32706,13 @@ conversionFactor: 10³ m³ symbol: Ml id: un-cefact-cc-MAL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32729,13 +32729,13 @@ conversionFactor: 10⁶ m symbol: Mm id: un-cefact-cc-MAM meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32754,13 +32754,13 @@ description: >- sine of the phase angle between them is 1. id: un-cefact-cc-MAR meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32779,13 +32779,13 @@ description: >- factor. id: un-cefact-cc-MAW meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32795,13 +32795,13 @@ description: A unit of count defining the number of one thousand brick equivalen levelCategory: '3.5' id: un-cefact-cc-MBE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32811,13 +32811,13 @@ description: A unit of volume equal to one thousand board foot. levelCategory: '3.5' id: un-cefact-cc-MBF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32834,13 +32834,13 @@ conversionFactor: 10² Pa symbol: mbar id: un-cefact-cc-MBR meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32855,34 +32855,34 @@ conversionFactor: 10⁻⁹ kg symbol: µg id: un-cefact-cc-MC meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '09' +groupNumber: 09 sector: ATOMIC_AND_NUCLEAR_PHYSICS groupId: '38' quantity: activity levelCategory: 2S commonCode: MCU name: millicurie -conversionFactor: 3,7 x 10⁷ Bq +conversionFactor: '3,7 x 10⁷ Bq' symbol: mCi id: un-cefact-cc-MCU meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32894,13 +32894,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-MD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32910,13 +32910,13 @@ name: milligram per square foot per side levelCategory: '3.1' id: un-cefact-cc-MF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32931,13 +32931,13 @@ conversionFactor: 10⁻⁶ kg symbol: mg id: un-cefact-cc-MGM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32952,13 +32952,13 @@ conversionFactor: 10⁶ Hz symbol: MHz id: un-cefact-cc-MHZ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32969,17 +32969,17 @@ quantity: area levelCategory: '2' commonCode: MIK name: square mile (statute mile) -conversionFactor: 2,589 988 km² +conversionFactor: '2,589 988 km²' symbol: mi² id: un-cefact-cc-MIK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -32989,13 +32989,13 @@ levelCategory: '3.7' conversionFactor: 10³ id: un-cefact-cc-MIL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33005,18 +33005,18 @@ groupId: '154' quantity: time levelCategory: '1' commonCode: MIN -name: minute [unit of time] +name: 'minute [unit of time]' conversionFactor: 60 s symbol: min id: un-cefact-cc-MIN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33026,13 +33026,13 @@ levelCategory: '3.7' conversionFactor: 10⁶ id: un-cefact-cc-MIO meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33044,13 +33044,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-MIU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33061,13 +33061,13 @@ levelCategory: '3.5' symbol: mg/in² id: un-cefact-cc-MK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33079,13 +33079,13 @@ levelCategory: '3.2' symbol: m²·d id: un-cefact-cc-MKD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33097,13 +33097,13 @@ levelCategory: '3.2' symbol: m²·mo id: un-cefact-cc-MKM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33115,13 +33115,13 @@ levelCategory: '3.2' symbol: m²· wk id: un-cefact-cc-MKW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33132,13 +33132,13 @@ levelCategory: '3.7' conversionFactor: 10⁹ id: un-cefact-cc-MLD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33153,13 +33153,13 @@ conversionFactor: 10⁻⁶ m³ symbol: ml id: un-cefact-cc-MLT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33174,13 +33174,13 @@ conversionFactor: 10⁻⁶ m² symbol: mm² id: un-cefact-cc-MMK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33195,13 +33195,13 @@ conversionFactor: 10⁻⁹ m³ symbol: mm³ id: un-cefact-cc-MMQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33218,31 +33218,31 @@ conversionFactor: 10⁻³ m symbol: mm id: un-cefact-cc-MMT meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: MND -name: kilogram, dry weight +name: 'kilogram, dry weight' description: >- A unit of mass defining the number of kilograms of a product, disregarding the water content of the product. levelCategory: '3.1' id: un-cefact-cc-MND meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33253,18 +33253,18 @@ quantity: time levelCategory: '2' commonCode: MON name: month -conversionFactor: 2,629 800 x 10⁶ s +conversionFactor: '2,629 800 x 10⁶ s' symbol: mo -description: Unit of time equal to 1/12 of a year of 365,25 days. +description: 'Unit of time equal to 1/12 of a year of 365,25 days.' id: un-cefact-cc-MON meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33281,13 +33281,13 @@ conversionFactor: 10⁶ Pa symbol: MPa id: un-cefact-cc-MPA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33298,13 +33298,13 @@ levelCategory: '3.8' conversionFactor: 10³m id: un-cefact-cc-MQ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33316,13 +33316,13 @@ levelCategory: '3.2' symbol: m³·d id: un-cefact-cc-MQD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33333,17 +33333,17 @@ quantity: volume flow rate levelCategory: 1M commonCode: MQH name: cubic metre per hour -conversionFactor: 2,777 78 x 10⁻⁴ m³/s +conversionFactor: '2,777 78 x 10⁻⁴ m³/s' symbol: m³/h id: un-cefact-cc-MQH meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33355,13 +33355,13 @@ levelCategory: '3.2' symbol: m³·mo id: un-cefact-cc-MQM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33376,13 +33376,13 @@ conversionFactor: m³/s symbol: m³/s id: un-cefact-cc-MQS meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33394,13 +33394,13 @@ levelCategory: '3.2' symbol: m³·wk id: un-cefact-cc-MQW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33412,13 +33412,13 @@ levelCategory: '3.2' symbol: m·day id: un-cefact-cc-MRD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33430,38 +33430,38 @@ levelCategory: '3.2' symbol: m·mo id: un-cefact-cc-MRM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- status: ADDED commonCode: MRW name: Metre Week -description: Unit for measuring physical dimensions and time, as required by DIN 18451 +description: 'Unit for measuring physical dimensions and time, as required by DIN 18451' levelCategory: '3.2' symbol: m·wk id: un-cefact-cc-MRW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '208' -quantity: acceleration, acceleration of free fall, acceleration due to gravity +quantity: 'acceleration, acceleration of free fall, acceleration due to gravity' levelCategory: '1' commonCode: MSK name: metre per second squared @@ -33469,13 +33469,13 @@ conversionFactor: m/s² symbol: m/s² id: un-cefact-cc-MSK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33488,13 +33488,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-MT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33509,13 +33509,13 @@ conversionFactor: m² symbol: m² id: un-cefact-cc-MTK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33531,13 +33531,13 @@ symbol: m³ description: 'Synonym: metre cubed' id: un-cefact-cc-MTQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33554,20 +33554,20 @@ conversionFactor: m symbol: m id: un-cefact-cc-MTR meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.870Z' + modified: '2024-02-16T09:11:13.870Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '01' sector: SPACE_AND_TIME groupId: '173' -quantity: velocity, phase velocity, group velocity +quantity: 'velocity, phase velocity, group velocity' levelCategory: '1' commonCode: MTS name: metre per second @@ -33575,13 +33575,13 @@ conversionFactor: m/s symbol: m/s id: un-cefact-cc-MTS meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33591,13 +33591,13 @@ name: number of mults levelCategory: '3.7' id: un-cefact-cc-MV meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33612,37 +33612,37 @@ conversionFactor: 10⁶ V x A symbol: MV·A id: un-cefact-cc-MVA meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '331' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: 1S commonCode: MWH name: "megawatt hour (1000\_kW.h)" -conversionFactor: 3,6 x 10⁹ J +conversionFactor: '3,6 x 10⁹ J' symbol: MW·h description: >- A unit of power defining the total amount of bulk energy transferred or consumed. id: un-cefact-cc-MWH meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33654,13 +33654,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-N1 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33671,7 +33671,7 @@ quantity: momentum levelCategory: '2' commonCode: N10 name: pound foot per second -conversionFactor: 1,382 550 x 10⁻¹ kg x m/s +conversionFactor: '1,382 550 x 10⁻¹ kg x m/s' symbol: lb·(ft/s) description: >- Product of the avoirdupois pound according to the avoirdupois unit system and @@ -33679,13 +33679,13 @@ description: >- divided by the SI base unit second. id: un-cefact-cc-N10 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33696,7 +33696,7 @@ quantity: momentum levelCategory: '2' commonCode: N11 name: pound inch per second -conversionFactor: 1,152 125 x 10⁻² kg x m/s +conversionFactor: '1,152 125 x 10⁻² kg x m/s' symbol: lb·(in/s) description: >- Product of the avoirdupois pound according to the avoirdupois unit system and @@ -33704,13 +33704,13 @@ description: >- divided by the SI base unit second. id: un-cefact-cc-N11 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33721,18 +33721,18 @@ quantity: power levelCategory: '2' commonCode: N12 name: Pferdestaerke -conversionFactor: 7,354 988 x 10² W +conversionFactor: '7,354 988 x 10² W' symbol: PS description: 'Obsolete unit of the power relating to DIN 1301-3:1979: 1 PS = 735,498 75 W.' id: un-cefact-cc-N12 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33745,7 +33745,7 @@ quantity: >- levelCategory: '2' commonCode: N13 name: centimetre of mercury (0 ºC) -conversionFactor: 1,333 22 x 10³ Pa +conversionFactor: '1,333 22 x 10³ Pa' symbol: cmHg (0 ºC) description: >- Non SI-conforming unit of pressure, at which a value of 1 cmHg meets the @@ -33753,13 +33753,13 @@ description: >- a height of 1 centimetre . id: un-cefact-cc-N13 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33772,7 +33772,7 @@ quantity: >- levelCategory: '2' commonCode: N14 name: centimetre of water (4 ºC) -conversionFactor: 9,806 38 x 10 Pa +conversionFactor: '9,806 38 x 10 Pa' symbol: cmH₂O (4 °C) description: >- Non SI-conforming unit of pressure, at which a value of 1 cmH2O meets the @@ -33780,13 +33780,13 @@ description: >- °C with a height of 1 centimetre . id: un-cefact-cc-N14 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33799,8 +33799,8 @@ quantity: >- levelCategory: '2' commonCode: N15 name: foot of water (39.2 ºF) -conversionFactor: 2,988 98 x 10³ Pa -symbol: ftH₂O (39,2 ºF) +conversionFactor: '2,988 98 x 10³ Pa' +symbol: 'ftH₂O (39,2 ºF)' description: >- Non SI-conforming unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 ftH2O is equivalent to the @@ -33808,13 +33808,13 @@ description: >- with a height of 1 foot . id: un-cefact-cc-N15 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33827,7 +33827,7 @@ quantity: >- levelCategory: '2' commonCode: N16 name: inch of mercury (32 ºF) -conversionFactor: 3,386 38 x 10³ Pa +conversionFactor: '3,386 38 x 10³ Pa' symbol: inHG (32 ºF) description: >- Non SI-conforming unit of pressure according to the Anglo-American and @@ -33836,13 +33836,13 @@ description: >- height of 1 inch. id: un-cefact-cc-N16 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33855,7 +33855,7 @@ quantity: >- levelCategory: '2' commonCode: N17 name: inch of mercury (60 ºF) -conversionFactor: 3,376 85 x 10³ Pa +conversionFactor: '3,376 85 x 10³ Pa' symbol: inHg (60 ºF) description: >- Non SI-conforming unit of pressure according to the Anglo-American and @@ -33864,13 +33864,13 @@ description: >- height of 1 inch. id: un-cefact-cc-N17 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33883,8 +33883,8 @@ quantity: >- levelCategory: '2' commonCode: N18 name: inch of water (39.2 ºF) -conversionFactor: 2,490 82 × 10² Pa -symbol: inH₂O (39,2 ºF) +conversionFactor: '2,490 82 × 10² Pa' +symbol: 'inH₂O (39,2 ºF)' description: >- Non SI-conforming unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 inH2O meets the static @@ -33892,13 +33892,13 @@ description: >- with a height of 1 inch . id: un-cefact-cc-N18 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33911,7 +33911,7 @@ quantity: >- levelCategory: '2' commonCode: N19 name: inch of water (60 ºF) -conversionFactor: 2,488 4 × 10² Pa +conversionFactor: '2,488 4 × 10² Pa' symbol: inH₂O (60 ºF) description: >- Non SI-conforming unit of pressure according to the Anglo-American and @@ -33920,13 +33920,13 @@ description: >- a height of 1 inch . id: un-cefact-cc-N19 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33936,13 +33936,13 @@ name: number of lines levelCategory: '3.9' id: un-cefact-cc-N2 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33955,7 +33955,7 @@ quantity: >- levelCategory: '2' commonCode: N20 name: kip per square inch -conversionFactor: 6,894 757 x 10⁶ Pa +conversionFactor: '6,894 757 x 10⁶ Pa' symbol: ksi description: >- Non SI-conforming unit of the pressure according to the Anglo-American system @@ -33963,13 +33963,13 @@ description: >- power of the unit inch by exponent 2. id: un-cefact-cc-N20 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -33982,20 +33982,20 @@ quantity: >- levelCategory: '2' commonCode: N21 name: 'poundal per square foot ' -conversionFactor: 1,488 164 Pa +conversionFactor: '1,488 164 Pa' symbol: pdl/ft² description: >- Non SI-conforming unit of pressure by the Imperial system of units according to NIST: 1 pdl/ft² = 1,488 164 Pa. id: un-cefact-cc-N21 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34008,7 +34008,7 @@ quantity: >- levelCategory: '2' commonCode: N22 name: 'ounce (avoirdupois) per square inch ' -conversionFactor: 4,394 185 x 10 kg/m² +conversionFactor: '4,394 185 x 10 kg/m²' symbol: oz/in² description: >- Unit of the surface specific mass (avoirdupois ounce according to the @@ -34016,13 +34016,13 @@ description: >- the Anglo-American and Imperial system of units). id: un-cefact-cc-N22 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34035,20 +34035,20 @@ quantity: >- levelCategory: '2' commonCode: N23 name: conventional metre of water -conversionFactor: 9,806 65 x 10³ Pa +conversionFactor: '9,806 65 x 10³ Pa' symbol: mH₂O description: >- Not SI-conforming unit of pressure, whereas a value of 1 mH2O is equivalent to the static pressure, which is produced by one metre high water column . id: un-cefact-cc-N23 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34068,13 +34068,13 @@ description: >- power of the SI base unit meter by exponent 2. id: un-cefact-cc-N24 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34087,7 +34087,7 @@ quantity: >- levelCategory: '2' commonCode: N25 name: pound per square yard -conversionFactor: 5,424 919 x 10⁻¹ kg/m² +conversionFactor: '5,424 919 x 10⁻¹ kg/m²' symbol: lb/yd² description: >- Unit for areal-related mass as a unit pound according to the avoirdupois unit @@ -34095,13 +34095,13 @@ description: >- and Imperial system of units with exponent 2. id: un-cefact-cc-N25 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34114,20 +34114,20 @@ quantity: >- levelCategory: '2' commonCode: N26 name: poundal per square inch -conversionFactor: 2,142 957 × 10² Pa +conversionFactor: '2,142 957 × 10² Pa' symbol: pdl/in² description: >- Non SI-conforming unit of the pressure according to the Imperial system of units (poundal by square inch). id: un-cefact-cc-N26 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34138,27 +34138,27 @@ quantity: second polar moment of area levelCategory: '2' commonCode: N27 name: 'foot to the fourth power ' -conversionFactor: 8,630 975 x 10⁻³ m⁴ +conversionFactor: '8,630 975 x 10⁻³ m⁴' symbol: ft⁴ description: >- Power of the unit foot according to the Anglo-American and Imperial system of units by exponent 4 according to NIST: 1 ft4 = 8,630 975 m4. id: un-cefact-cc-N27 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '107' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: 1M commonCode: N28 name: cubic decimetre per kilogram @@ -34169,24 +34169,24 @@ description: >- SI based unit kilogram. id: un-cefact-cc-N28 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '108' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: '2' commonCode: N29 name: cubic foot per pound -conversionFactor: 6,242 796 x 10⁻² m³/kg +conversionFactor: '6,242 796 x 10⁻² m³/kg' symbol: ft³/lb description: >- Power of the unit foot according to the Anglo-American and Imperial system of @@ -34194,40 +34194,40 @@ description: >- avoirdupois unit system. id: un-cefact-cc-N29 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: N3 name: print point levelCategory: '3.5' -conversionFactor: 0,013 8 in (approx) +conversionFactor: '0,013 8 in (approx)' id: un-cefact-cc-N3 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '109' -quantity: specific volume, massic volume +quantity: 'specific volume, massic volume' levelCategory: '2' commonCode: N30 name: cubic inch per pound -conversionFactor: 3,612 728 x 10⁻⁵ m³/kg +conversionFactor: '3,612 728 x 10⁻⁵ m³/kg' symbol: in³/lb description: >- Power of the unit inch according to the Anglo-American and Imperial system of @@ -34235,13 +34235,13 @@ description: >- avoirdupois unit system . id: un-cefact-cc-N30 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34257,13 +34257,13 @@ symbol: kN/m description: 1000-fold of the derived SI unit newton divided by the SI base unit metre. id: un-cefact-cc-N31 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34274,20 +34274,20 @@ quantity: surface tension levelCategory: '2' commonCode: N32 name: poundal per inch -conversionFactor: 5,443 110 N/m +conversionFactor: '5,443 110 N/m' symbol: pdl/in description: >- Non SI-conforming unit of the surface tension according to the Imperial unit system as quotient poundal by inch. id: un-cefact-cc-N32 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34298,18 +34298,18 @@ quantity: surface tension levelCategory: '2' commonCode: N33 name: pound-force per yard -conversionFactor: 4,864 635 N/m +conversionFactor: '4,864 635 N/m' symbol: lbf/yd description: Unit of force per unit length based on the Anglo-American system of units. id: un-cefact-cc-N33 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34320,18 +34320,18 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: N34 name: 'poundal second per square foot ' -conversionFactor: 1,488 164 Pa x s +conversionFactor: '1,488 164 Pa x s' symbol: (pdl/ft²)·s description: Non SI-conforming unit of viscosity. id: un-cefact-cc-N34 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34342,20 +34342,20 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: N35 name: poise per pascal -conversionFactor: 0,1 s +conversionFactor: '0,1 s' symbol: P/Pa description: >- CGS (Centimetre-Gram-Second system) unit poise divided by the derived SI unit pascal. id: un-cefact-cc-N35 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34373,13 +34373,13 @@ description: >- square metre) multiplied with the SI base unit second. id: un-cefact-cc-N36 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34397,13 +34397,13 @@ description: >- the SI base unit metre and by the SI base unit second. id: un-cefact-cc-N37 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34414,20 +34414,20 @@ quantity: viscosity (dynamic viscosity) levelCategory: '1' commonCode: N38 name: kilogram per metre minute -conversionFactor: 1,666 67 × 10⁻² Pa x s +conversionFactor: '1,666 67 × 10⁻² Pa x s' symbol: kg/(m·min) description: >- Unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit minute. id: un-cefact-cc-N38 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34438,20 +34438,20 @@ quantity: viscosity (dynamic viscosity) levelCategory: 1M commonCode: N39 name: kilogram per metre day -conversionFactor: 1,157 41 × 10⁻⁵ Pa x s +conversionFactor: '1,157 41 × 10⁻⁵ Pa x s' symbol: kg/(m·d) description: >- Unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit day. id: un-cefact-cc-N39 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34462,20 +34462,20 @@ quantity: viscosity (dynamic viscosity) levelCategory: 1M commonCode: N40 name: kilogram per metre hour -conversionFactor: 2,777 78 × 10⁻⁴ Pa x s +conversionFactor: '2,777 78 × 10⁻⁴ Pa x s' symbol: kg/(m·h) description: >- Unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit hour. id: un-cefact-cc-N40 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34486,7 +34486,7 @@ quantity: viscosity (dynamic viscosity) levelCategory: 1M commonCode: N41 name: gram per centimetre second -conversionFactor: 0,1 Pa x s +conversionFactor: '0,1 Pa x s' symbol: g/(cm·s) description: >- Unit of the dynamic viscosity as a quotient of the 0,001-fold of the SI base @@ -34494,13 +34494,13 @@ description: >- unit second. id: un-cefact-cc-N41 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34511,7 +34511,7 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: N42 name: poundal second per square inch -conversionFactor: 2,142 957 x 10² Pa x s +conversionFactor: '2,142 957 x 10² Pa x s' symbol: (pdl/in²)·s description: >- Non SI-conforming unit of dynamic viscosity according to the Imperial system @@ -34519,13 +34519,13 @@ description: >- by the SI base unit second. id: un-cefact-cc-N42 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34536,18 +34536,18 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: N43 name: pound per foot minute -conversionFactor: 2,480 273 x 10⁻² Pa x s +conversionFactor: '2,480 273 x 10⁻² Pa x s' symbol: lb/(ft·min) description: Unit of the dynamic viscosity according to the Anglo-American unit system. id: un-cefact-cc-N43 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34558,18 +34558,18 @@ quantity: viscosity (dynamic viscosity) levelCategory: '2' commonCode: N44 name: pound per foot day -conversionFactor: 1,722 412 x 10⁻⁵ Pa x s +conversionFactor: '1,722 412 x 10⁻⁵ Pa x s' symbol: lb/(ft·d) description: Unit of the dynamic viscosity according to the Anglo-American unit system. id: un-cefact-cc-N44 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34587,59 +34587,59 @@ description: >- base unit second and the derived SI base unit pascal. id: un-cefact-cc-N45 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '342' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '2' commonCode: N46 name: foot poundal -conversionFactor: 4,214 011 x 10⁻² J +conversionFactor: '4,214 011 x 10⁻² J' symbol: ft·pdl description: Unit of the work (force-path). id: un-cefact-cc-N46 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '343' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '2' commonCode: N47 name: inch poundal -conversionFactor: 3,511 677 x 10⁻³ J +conversionFactor: '3,511 677 x 10⁻³ J' symbol: in·pdl description: >- Unit of work (force multiplied by path) according to the Imperial system of units as a product unit inch multiplied by poundal. id: un-cefact-cc-N47 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34657,13 +34657,13 @@ description: >- metre by exponent 2. id: un-cefact-cc-N48 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34674,20 +34674,20 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N49 name: 'watt per square inch ' -conversionFactor: 1,550 003 x 10³ W/m² +conversionFactor: '1,550 003 x 10³ W/m²' symbol: W/in² description: >- Derived SI unit watt divided by the power of the unit inch according to the Anglo-American and Imperial system of units by exponent 2. id: un-cefact-cc-N49 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34698,18 +34698,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N50 name: British thermal unit (international table) per square foot hour -conversionFactor: 3,154 591 W/m² +conversionFactor: '3,154 591 W/m²' symbol: BtuIT/(ft²·h) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N50 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34720,18 +34720,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N51 name: British thermal unit (thermochemical) per square foot hour -conversionFactor: 3,152 481 W/m² +conversionFactor: '3,152 481 W/m²' symbol: Btuth/(ft²·h) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N51 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34742,18 +34742,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N52 name: British thermal unit (thermochemical) per square foot minute -conversionFactor: 1,891 489 x 10² W/m² +conversionFactor: '1,891 489 x 10² W/m²' symbol: 'Btuth/(ft²·min) ' description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N52 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34764,18 +34764,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N53 name: British thermal unit (international table) per square foot second -conversionFactor: 1,135 653 x 10⁴ W/m² +conversionFactor: '1,135 653 x 10⁴ W/m²' symbol: BtuIT/(ft²·s) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N53 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34786,18 +34786,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N54 name: British thermal unit (thermochemical) per square foot second -conversionFactor: 1,134 893 x 10⁴ W/m² +conversionFactor: '1,134 893 x 10⁴ W/m²' symbol: Btuth/(ft²·s) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N54 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34808,18 +34808,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N55 name: British thermal unit (international table) per square inch second -conversionFactor: 1,634 246 x 10⁶ W/m² +conversionFactor: '1,634 246 x 10⁶ W/m²' symbol: BtuIT/(in²·s) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N55 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34830,18 +34830,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N56 name: calorie (thermochemical) per square centimetre minute -conversionFactor: 6,973 333 x 10² W/m² +conversionFactor: '6,973 333 x 10² W/m²' symbol: calth/(cm²·min) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N56 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34852,18 +34852,18 @@ quantity: density of heat flow rate levelCategory: '2' commonCode: N57 name: calorie (thermochemical) per square centimetre second -conversionFactor: 4,184 x 10⁴ W/m² +conversionFactor: '4,184 x 10⁴ W/m²' symbol: calth/(cm²·s) description: Unit of the surface heat flux according to the Imperial system of units. id: un-cefact-cc-N57 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34874,18 +34874,18 @@ quantity: energy density levelCategory: '2' commonCode: N58 name: 'British thermal unit (international table) per cubic foot ' -conversionFactor: 3,725 895 x10⁴ J/m³ +conversionFactor: '3,725 895 x10⁴ J/m³' symbol: BtuIT/ft³ description: Unit of the energy density according to the Imperial system of units. id: un-cefact-cc-N58 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -34896,117 +34896,117 @@ quantity: energy density levelCategory: '2' commonCode: N59 name: British thermal unit (thermochemical) per cubic foot -conversionFactor: 3,723 403 x10⁴ J/m³ +conversionFactor: '3,723 403 x10⁴ J/m³' symbol: Btuth/ft³ description: Unit of the energy density according to the Imperial system of units. id: un-cefact-cc-N59 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '123' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: N60 name: British thermal unit (international table) per degree Fahrenheit -conversionFactor: 1,899 101 x 10³ J/K +conversionFactor: '1,899 101 x 10³ J/K' symbol: BtuIT/ºF description: Unit of the heat capacity according to the Imperial system of units. id: un-cefact-cc-N60 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '124' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: N61 name: British thermal unit (thermochemical) per degree Fahrenheit -conversionFactor: 1,897 830 x 10³ J/K +conversionFactor: '1,897 830 x 10³ J/K' symbol: Btuth/ºF description: Unit of the heat capacity according to the Imperial system of units. id: un-cefact-cc-N61 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '125' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: N62 name: British thermal unit (international table) per degree Rankine -conversionFactor: 1,899 101 x 10³ J/K +conversionFactor: '1,899 101 x 10³ J/K' symbol: BtuIT/ºR description: Unit of the heat capacity according to the Imperial system of units. id: un-cefact-cc-N62 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '126' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: N63 name: British thermal unit (thermochemical) per degree Rankine -conversionFactor: 1,897 830 x 10³ J/K +conversionFactor: '1,897 830 x 10³ J/K' symbol: Btuth/ºR description: Unit of the heat capacity according to the Imperial system of units. id: un-cefact-cc-N63 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '127' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: N64 name: British thermal unit (thermochemical) per pound degree Rankine -conversionFactor: 4,184 x 10³ J/(kg x K) +conversionFactor: '4,184 x 10³ J/(kg x K)' symbol: (Btuth/°R)/lb description: >- Unit of the heat capacity (British thermal unit according to the international @@ -35015,24 +35015,24 @@ description: >- system of units. id: un-cefact-cc-N64 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '128' -quantity: heat capacity, entropy +quantity: 'heat capacity, entropy' levelCategory: '2' commonCode: N65 name: kilocalorie (international table) per gram kelvin -conversionFactor: 4,186 8 x 10⁶ J/(kg x K) +conversionFactor: '4,186 8 x 10⁶ J/(kg x K)' symbol: (kcalIT/K)/g description: >- Unit of the mass-related heat capacity as quotient 1000-fold of the calorie @@ -35040,13 +35040,13 @@ description: >- units kilogram and kelvin. id: un-cefact-cc-N65 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35059,20 +35059,20 @@ quantity: >- levelCategory: '2' commonCode: N66 name: 'British thermal unit (39 ºF) ' -conversionFactor: 1,059 67 x 10³ J +conversionFactor: '1,059 67 x 10³ J' symbol: 'Btu (39 ºF) ' description: >- Unit of heat energy according to the Imperial system of units in a reference temperature of 39 °F. id: un-cefact-cc-N66 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35085,20 +35085,20 @@ quantity: >- levelCategory: '2' commonCode: N67 name: British thermal unit (59 ºF) -conversionFactor: 1,054 80 x 10³ J +conversionFactor: '1,054 80 x 10³ J' symbol: Btu (59 ºF) description: >- Unit of heat energy according to the Imperial system of units in a reference temperature of 59 °F. id: un-cefact-cc-N67 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35111,20 +35111,20 @@ quantity: >- levelCategory: '2' commonCode: N68 name: 'British thermal unit (60 ºF) ' -conversionFactor: 1,054 68 x 10³ J +conversionFactor: '1,054 68 x 10³ J' symbol: 'Btu (60 ºF) ' description: >- Unit of head energy according to the Imperial system of units at a reference temperature of 60 °F. id: un-cefact-cc-N68 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35137,7 +35137,7 @@ quantity: >- levelCategory: '2' commonCode: N69 name: 'calorie (20 ºC) ' -conversionFactor: 4,181 90 x J +conversionFactor: '4,181 90 x J' symbol: cal₂₀ description: >- Unit for quantity of heat, which is to be required for 1 g air free water at a @@ -35145,13 +35145,13 @@ description: >- atmosphere at sea level, from 19,5 °C on 20,5 °C. id: un-cefact-cc-N69 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35164,18 +35164,18 @@ quantity: >- levelCategory: '2' commonCode: N70 name: quad (1015 BtuIT) -conversionFactor: 1,055 056 × 10¹⁸ J +conversionFactor: '1,055 056 × 10¹⁸ J' symbol: quad description: Unit of heat energy according to the imperial system of units. id: un-cefact-cc-N70 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35188,20 +35188,20 @@ quantity: >- levelCategory: '2' commonCode: N71 name: therm (EC) -conversionFactor: 1,055 06 × 10⁸ J +conversionFactor: '1,055 06 × 10⁸ J' symbol: thm (EC) description: >- Unit of heat energy in commercial use, within the EU defined: 1 thm (EC) = 100 000 BtuIT. id: un-cefact-cc-N71 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35214,42 +35214,42 @@ quantity: >- levelCategory: '2' commonCode: N72 name: therm (U.S.) -conversionFactor: 1,054 804 × 10⁸ J +conversionFactor: '1,054 804 × 10⁸ J' symbol: thm (US) description: Unit of heat energy in commercial use. id: un-cefact-cc-N72 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '04' sector: HEAT groupId: '142' -quantity: massic Helmholtz free energy, +quantity: 'massic Helmholtz free energy,' levelCategory: '2' commonCode: N73 name: British thermal unit (thermochemical) per pound -conversionFactor: 2,324 444 x 10³ J/kg +conversionFactor: '2,324 444 x 10³ J/kg' symbol: Btuth/lb description: >- Unit of the heat energy according to the Imperial system of units divided the unit avoirdupois pound according to the avoirdupois system of units. id: un-cefact-cc-N73 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35262,20 +35262,20 @@ commonCode: N74 name: >- British thermal unit (international table) per hour square foot degree Fahrenheit -conversionFactor: 5,678 263 W/(m² x K) +conversionFactor: '5,678 263 W/(m² x K)' symbol: BtuIT/(h·ft²·ºF) description: >- Unit of the heat transition coefficient according to the Imperial system of units. id: un-cefact-cc-N74 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35286,20 +35286,20 @@ quantity: surface coefficient of heat transfer levelCategory: '2' commonCode: N75 name: British thermal unit (thermochemical) per hour square foot degree Fahrenheit -conversionFactor: 5,674 466 W/(m² x K) +conversionFactor: '5,674 466 W/(m² x K)' symbol: Btuth/(h·ft²·ºF) description: >- Unit of the heat transition coefficient according to the imperial system of units. id: un-cefact-cc-N75 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35312,20 +35312,20 @@ commonCode: N76 name: >- British thermal unit (international table) per second square foot degree Fahrenheit -conversionFactor: 2,044 175 x 10⁴ W/(m² x K) +conversionFactor: '2,044 175 x 10⁴ W/(m² x K)' symbol: BtuIT/(s·ft²·ºF) description: >- Unit of the heat transition coefficient according to the imperial system of units. id: un-cefact-cc-N76 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35336,20 +35336,20 @@ quantity: surface coefficient of heat transfer levelCategory: '2' commonCode: N77 name: British thermal unit (thermochemical) per second square foot degree Fahrenheit -conversionFactor: 2,042 808 x 10⁴ W/(m² x K) +conversionFactor: '2,042 808 x 10⁴ W/(m² x K)' symbol: 'Btuth/(s·ft²·ºF) ' description: >- Unit of the heat transition coefficient according to the imperial system of units. id: un-cefact-cc-N77 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35367,13 +35367,13 @@ description: >- the SI base unit metre by exponent 2 and the SI base unit kelvin. id: un-cefact-cc-N78 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35389,13 +35389,13 @@ symbol: K/Pa description: SI base unit kelvin divided by the derived SI unit pascal. id: un-cefact-cc-N79 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35413,13 +35413,13 @@ description: >- unit for temperature degree Celsius. id: un-cefact-cc-N80 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35437,13 +35437,13 @@ description: >- unit metre and the SI base unit kelvin. id: un-cefact-cc-N81 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35461,13 +35461,13 @@ description: >- unit metre and the unit for temperature degree Celsius. id: un-cefact-cc-N82 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35485,13 +35485,13 @@ description: >- SI base unit metre. id: un-cefact-cc-N83 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35502,20 +35502,20 @@ quantity: thermal resistance levelCategory: '2' commonCode: N84 name: degree Fahrenheit hour per British thermal unit (international table) -conversionFactor: 1,895 634 K/W +conversionFactor: '1,895 634 K/W' symbol: ºF/(BtuIT/h) description: >- Non SI-conforming unit of the thermal resistance according to the Imperial system of units. id: un-cefact-cc-N84 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35526,20 +35526,20 @@ quantity: thermal resistance levelCategory: '2' commonCode: N85 name: degree Fahrenheit hour per British thermal unit (thermochemical) -conversionFactor: 1,896 903 K/W +conversionFactor: '1,896 903 K/W' symbol: ºF/(Btuth/h) description: >- Non SI-conforming unit of the thermal resistance according to the Imperial system of units. id: un-cefact-cc-N85 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35550,20 +35550,20 @@ quantity: thermal resistance levelCategory: '2' commonCode: N86 name: degree Fahrenheit second per British thermal unit (international table) -conversionFactor: 5,265 651 x 10⁻⁴ K/W +conversionFactor: '5,265 651 x 10⁻⁴ K/W' symbol: ºF/(BtuIT/s) description: >- Non SI-conforming unit of the thermal resistance according to the Imperial system of units. id: un-cefact-cc-N86 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35574,20 +35574,20 @@ quantity: thermal resistance levelCategory: '2' commonCode: N87 name: degree Fahrenheit second per British thermal unit (thermochemical) -conversionFactor: 5,269 175 x 10⁻⁴ K/W +conversionFactor: '5,269 175 x 10⁻⁴ K/W' symbol: ºF/(Btuth/s) description: >- Non SI-conforming unit of the thermal resistance according to the Imperial system of units. id: un-cefact-cc-N87 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35600,18 +35600,18 @@ commonCode: N88 name: >- degree Fahrenheit hour square foot per British thermal unit (international table) inch -conversionFactor: 6,933 472 K x m/W +conversionFactor: '6,933 472 K x m/W' symbol: ºF·h·ft²/(BtuIT·in) description: Unit of specific thermal resistance according to the Imperial system of units. id: un-cefact-cc-N88 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35624,18 +35624,18 @@ commonCode: N89 name: >- degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch -conversionFactor: 6,938 112 K x m/W +conversionFactor: '6,938 112 K x m/W' symbol: ºF·h·ft²/(Btuth·in) description: Unit of specific thermal resistance according to the Imperial system of units. id: un-cefact-cc-N89 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35651,20 +35651,20 @@ symbol: kF description: 1000-fold of the derived SI unit farad. id: un-cefact-cc-N90 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '205' -quantity: coefficient, performance characteristic +quantity: 'coefficient, performance characteristic' levelCategory: '1' commonCode: N91 name: reciprocal joule @@ -35673,13 +35673,13 @@ symbol: 1/J description: Reciprocal of the derived SI unit joule. id: un-cefact-cc-N91 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35694,16 +35694,16 @@ commonCode: N92 name: picosiemens conversionFactor: 10⁻¹² S symbol: pS -description: 0,000 000 000 001-fold of the derived SI unit siemens. +description: '0,000 000 000 001-fold of the derived SI unit siemens.' id: un-cefact-cc-N92 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35719,24 +35719,24 @@ symbol: A/Pa description: SI base unit ampere divided by the derived SI unit pascal. id: un-cefact-cc-N93 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '24' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: '2' commonCode: N94 name: franklin -conversionFactor: 3,335 641 x 10⁻¹⁰ C +conversionFactor: '3,335 641 x 10⁻¹⁰ C' symbol: Fr description: >- CGS (Centimetre-Gram-Second system) unit of the electrical charge, where the @@ -35744,20 +35744,20 @@ description: >- performed at a distance of 1 cm. id: un-cefact-cc-N94 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '23' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1M commonCode: N95 name: ampere minute @@ -35768,13 +35768,13 @@ description: >- steady flow of one ampere for one minute.. id: un-cefact-cc-N95 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35795,13 +35795,13 @@ description: >- length with negligible cross-section in the distance of 1 cm. id: un-cefact-cc-N96 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35814,7 +35814,7 @@ quantity: >- levelCategory: '2' commonCode: N97 name: gilbert -conversionFactor: 7,957 747 x 10⁻¹ A +conversionFactor: '7,957 747 x 10⁻¹ A' symbol: Gi description: >- CGS (Centimetre-Gram-Second system) unit of the magnetomotive force, which is @@ -35822,13 +35822,13 @@ description: >- pol with 1 erg. id: un-cefact-cc-N97 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35844,13 +35844,13 @@ symbol: V/Pa description: Derived SI unit volt divided by the derived SI unit pascal. id: un-cefact-cc-N98 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35865,16 +35865,16 @@ commonCode: N99 name: picovolt conversionFactor: 10⁻¹² V symbol: pV -description: 0,000 000 000 001-fold of the derived SI unit volt. +description: '0,000 000 000 001-fold of the derived SI unit volt.' id: un-cefact-cc-N99 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35889,13 +35889,13 @@ conversionFactor: 10⁻⁶ 1 symbol: mg/kg id: un-cefact-cc-NA meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.874Z' + modified: '2024-02-16T09:11:13.874Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35905,13 +35905,13 @@ description: 'A unit of count defining the number of articles (article: item).' levelCategory: '3.7' id: un-cefact-cc-NAR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35921,13 +35921,13 @@ name: barge levelCategory: '3.4' id: un-cefact-cc-NB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35937,13 +35937,13 @@ name: number of bobbins levelCategory: '3.7' id: un-cefact-cc-NBB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35953,13 +35953,13 @@ name: car levelCategory: '3.5' id: un-cefact-cc-NC meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35971,13 +35971,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-NCL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -35987,13 +35987,13 @@ name: net barrel levelCategory: '3.1' id: un-cefact-cc-ND meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36003,20 +36003,20 @@ name: net litre levelCategory: '3.1' id: un-cefact-cc-NE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '137' -quantity: force, weight +quantity: 'force, weight' levelCategory: '1' commonCode: NEW name: newton @@ -36024,13 +36024,13 @@ conversionFactor: (kg x m)/s² symbol: 'N' id: un-cefact-cc-NEW meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36040,13 +36040,13 @@ description: A unit of count defining the number of messages. levelCategory: '3.9' id: un-cefact-cc-NF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36056,13 +36056,13 @@ name: net gallon (us) levelCategory: '3.1' id: un-cefact-cc-NG meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36072,13 +36072,13 @@ name: message hour levelCategory: '3.5' id: un-cefact-cc-NH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36088,13 +36088,13 @@ name: net imperial gallon levelCategory: '3.1' id: un-cefact-cc-NI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36105,13 +36105,13 @@ levelCategory: '3.8' symbol: () id: un-cefact-cc-NIL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36121,13 +36121,13 @@ description: A unit of count defining the number of international units. levelCategory: '3.7' id: un-cefact-cc-NIU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36137,13 +36137,13 @@ name: number of screens levelCategory: '3.7' id: un-cefact-cc-NJ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36155,13 +36155,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-NL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36176,13 +36176,13 @@ conversionFactor: m3 description: Normalised cubic metre (temperature 0°C and pressure 101325 millibars ) id: un-cefact-cc-NM3 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36199,13 +36199,13 @@ conversionFactor: 1 852 m symbol: n mile id: un-cefact-cc-NMI meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36217,13 +36217,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-NMP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36233,13 +36233,13 @@ name: train levelCategory: '3.5' id: un-cefact-cc-NN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36249,13 +36249,13 @@ name: number of parcels levelCategory: '3.7' id: un-cefact-cc-NPL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36267,13 +36267,13 @@ levelCategory: '3.7' conversionFactor: use pair id: un-cefact-cc-NPR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36285,13 +36285,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-NPT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36306,13 +36306,13 @@ name: mho conversionFactor: S id: un-cefact-cc-NQ meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36327,13 +36327,13 @@ name: micromho conversionFactor: 10⁻⁶ S id: un-cefact-cc-NR meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36346,13 +36346,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-NRL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36364,13 +36364,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-NT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36384,13 +36384,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-NTT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36404,20 +36404,20 @@ levelCategory: '3.5' symbol: NTU id: un-cefact-cc-NTU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '155' -quantity: moment of force, moment of a couple, torque +quantity: 'moment of force, moment of a couple, torque' levelCategory: '1' commonCode: NU name: newton metre @@ -36425,13 +36425,13 @@ conversionFactor: N x m symbol: N·m id: un-cefact-cc-NU meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36441,13 +36441,13 @@ name: vehicle levelCategory: '3.4' id: un-cefact-cc-NV meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36461,13 +36461,13 @@ symbol: ‰ conversionFactor: 1 x 10⁻³ id: un-cefact-cc-NX meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36477,13 +36477,13 @@ name: pound per air dry metric ton levelCategory: '3.5' id: un-cefact-cc-NY meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36495,13 +36495,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-OA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36514,13 +36514,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-ODE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36532,13 +36532,13 @@ description: > levelCategory: '3.1' id: un-cefact-cc-ODG meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36550,13 +36550,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-ODK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36568,13 +36568,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-ODM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36591,34 +36591,34 @@ conversionFactor: Ω symbol: Ω id: un-cefact-cc-OHM meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '126' -quantity: surface density, areic mass +quantity: 'surface density, areic mass' levelCategory: '2' commonCode: 'ON' name: ounce per square yard -conversionFactor: 3,390 575 x 10⁻² kg/m² +conversionFactor: '3,390 575 x 10⁻² kg/m²' symbol: oz/yd² id: un-cefact-cc-ON meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36629,17 +36629,17 @@ quantity: mass levelCategory: '2' commonCode: ONZ name: ounce (avoirdupois) -conversionFactor: 2,834 952 x 10⁻² kg +conversionFactor: '2,834 952 x 10⁻² kg' symbol: oz id: un-cefact-cc-ONZ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36649,13 +36649,13 @@ name: two pack levelCategory: '3.2' id: un-cefact-cc-OP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36671,13 +36671,13 @@ symbol: o/min description: The number of oscillation per minute id: un-cefact-cc-OPM meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36687,13 +36687,13 @@ description: A unit of time defining the number of overtime hours. levelCategory: '3.1' id: un-cefact-cc-OT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36706,13 +36706,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-OZ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36723,17 +36723,17 @@ quantity: volume levelCategory: '2' commonCode: OZA name: fluid ounce (US) -conversionFactor: 2,957 353 x 10⁻⁵ m³ +conversionFactor: '2,957 353 x 10⁻⁵ m³' symbol: fl oz (US) id: un-cefact-cc-OZA meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36744,17 +36744,17 @@ quantity: volume levelCategory: '2' commonCode: OZI name: fluid ounce (UK) -conversionFactor: 2,841 306 x 10⁻⁵ m³ +conversionFactor: '2,841 306 x 10⁻⁵ m³' symbol: fl oz (UK) id: un-cefact-cc-OZI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36764,13 +36764,13 @@ name: page - electronic levelCategory: '3.9' id: un-cefact-cc-P0 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36782,13 +36782,13 @@ symbol: '% or pct' conversionFactor: 1 x 10⁻² id: un-cefact-cc-P1 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36804,13 +36804,13 @@ symbol: C/m description: Derived SI unit coulomb divided by the SI base unit metre. id: un-cefact-cc-P10 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -36826,20 +36826,20 @@ symbol: kWb description: 1000 fold of the derived SI unit weber. id: un-cefact-cc-P11 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '101' -quantity: magnetic flux density, magnetic induction, magnetic polarization +quantity: 'magnetic flux density, magnetic induction, magnetic polarization' levelCategory: '2' commonCode: P12 name: gamma @@ -36848,20 +36848,20 @@ symbol: γ description: Unit of magnetic flow density. id: un-cefact-cc-P12 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '100' -quantity: magnetic flux density, magnetic induction, magnetic polarization +quantity: 'magnetic flux density, magnetic induction, magnetic polarization' levelCategory: 1M commonCode: P13 name: kilotesla @@ -36870,20 +36870,20 @@ symbol: kT description: 1000-fold of the derived SI unit tesla. id: un-cefact-cc-P13 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '178' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: '1' commonCode: P14 name: joule per second @@ -36892,86 +36892,86 @@ symbol: J/s description: Quotient of the derived SI unit joule divided by the SI base unit second. id: un-cefact-cc-P14 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '184' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P15 name: joule per minute -conversionFactor: 1,666 67 × 10⁻² W +conversionFactor: '1,666 67 × 10⁻² W' symbol: J/min description: Quotient from the derived SI unit joule divided by the unit minute. id: un-cefact-cc-P15 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '185' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P16 name: joule per hour -conversionFactor: 2,777 78 × 10⁻⁴ W +conversionFactor: '2,777 78 × 10⁻⁴ W' symbol: J/h description: Quotient from the derived SI unit joule divided by the unit hour. id: un-cefact-cc-P16 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '186' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P17 name: joule per day -conversionFactor: 1,157 41 × 10⁻⁵ W +conversionFactor: '1,157 41 × 10⁻⁵ W' symbol: J/d description: Quotient from the derived SI unit joule divided by the unit day. id: un-cefact-cc-P17 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '187' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P18 name: kilojoule per second @@ -36982,106 +36982,106 @@ description: >- base unit second. id: un-cefact-cc-P18 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '188' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P19 name: kilojoule per minute -conversionFactor: 1,666 67 × 10 W +conversionFactor: '1,666 67 × 10 W' symbol: kJ/min description: >- Quotient from the 1000-fold of the derived SI unit joule divided by the unit minute. id: un-cefact-cc-P19 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '116' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: '2' commonCode: P2 name: pound per foot -conversionFactor: 1,488 164 kg/m +conversionFactor: '1,488 164 kg/m' symbol: lb/ft id: un-cefact-cc-P2 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '189' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P20 name: kilojoule per hour -conversionFactor: 2,777 78 x 10⁻¹ W +conversionFactor: '2,777 78 x 10⁻¹ W' symbol: kJ/h description: >- Quotient from the 1000-fold of the derived SI unit joule divided by the unit hour. id: un-cefact-cc-P20 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '190' -quantity: power (for direct current), active power +quantity: 'power (for direct current), active power' levelCategory: 1M commonCode: P21 name: kilojoule per day -conversionFactor: 1,157 41 x 10⁻² W +conversionFactor: '1,157 41 x 10⁻² W' symbol: kJ/d description: >- Quotient from the 1000-fold of the derived SI unit joule divided by the unit day. id: un-cefact-cc-P21 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37096,16 +37096,16 @@ commonCode: P22 name: nanoohm conversionFactor: "10⁻⁹\_Ω" symbol: nΩ -description: 0,000 000 001-fold of the derived SI unit ohm. +description: '0,000 000 001-fold of the derived SI unit ohm.' id: un-cefact-cc-P22 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37121,20 +37121,20 @@ symbol: 'Ω·cmil/ft ' description: Unit of resistivity. id: un-cefact-cc-P23 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '119' -quantity: self inductance, mutual inductance, permeance +quantity: 'self inductance, mutual inductance, permeance' levelCategory: 1M commonCode: P24 name: kilohenry @@ -37143,13 +37143,13 @@ symbol: kH description: 1000-fold of the derived SI unit henry. id: un-cefact-cc-P24 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37160,20 +37160,20 @@ quantity: illuminance levelCategory: '2' commonCode: P25 name: 'lumen per square foot ' -conversionFactor: 1,076 391 x 10¹ cd x sr / m² +conversionFactor: '1,076 391 x 10¹ cd x sr / m²' symbol: lm/ft² description: >- Derived SI unit lumen divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2. id: un-cefact-cc-P25 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37191,13 +37191,13 @@ description: >- by square centimetre. id: un-cefact-cc-P26 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37208,7 +37208,7 @@ quantity: illuminance levelCategory: '2' commonCode: P27 name: footcandle -conversionFactor: 1,076 391 x 10¹ cd x sr / m² +conversionFactor: '1,076 391 x 10¹ cd x sr / m²' symbol: ftc description: >- Non SI conform traditional unit, defined as density of light which impinges on @@ -37216,13 +37216,13 @@ description: >- with an intensity of an international candle. id: un-cefact-cc-P27 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37233,20 +37233,20 @@ quantity: luminance levelCategory: '2' commonCode: P28 name: 'candela per square inch ' -conversionFactor: 1,550 003 x 10³ cd/m² +conversionFactor: '1,550 003 x 10³ cd/m²' symbol: cd/in² description: >- SI base unit candela divided by the power of unit inch according to the Anglo-American and Imperial system of units by exponent 2. id: un-cefact-cc-P28 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37257,20 +37257,20 @@ quantity: luminance levelCategory: '2' commonCode: P29 name: footlambert -conversionFactor: 3,426 259 cd/m² +conversionFactor: '3,426 259 cd/m²' symbol: ftL description: >- Unit of the luminance according to the Anglo-American system of units, defined as emitted or reflected luminance of a lm/ft². id: un-cefact-cc-P29 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37280,13 +37280,13 @@ name: three pack levelCategory: '3.2' id: un-cefact-cc-P3 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37297,20 +37297,20 @@ quantity: luminance levelCategory: '2' commonCode: P30 name: lambert -conversionFactor: 3,183 099 x 10³ cd/m² +conversionFactor: '3,183 099 x 10³ cd/m²' symbol: Lb description: >- CGS (Centimetre-Gram-Second system) unit of luminance, defined as the emitted or reflected luminance by one lumen per square centimetre. id: un-cefact-cc-P30 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37328,13 +37328,13 @@ description: >- reflected luminance by one lumen per square centimetre. id: un-cefact-cc-P31 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37345,20 +37345,20 @@ quantity: luminance levelCategory: '2' commonCode: P32 name: candela per square foot -conversionFactor: 1,076 391 x 10 cd/m² +conversionFactor: '1,076 391 x 10 cd/m²' symbol: cd/ft² description: >- Base unit SI candela divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2. id: un-cefact-cc-P32 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37374,13 +37374,13 @@ symbol: kcd description: 1000-fold of the SI base unit candela. id: un-cefact-cc-P33 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37393,16 +37393,16 @@ commonCode: P34 name: millicandela conversionFactor: 10⁻³ cd symbol: mcd -description: 0,001-fold of the SI base unit candela. +description: '0,001-fold of the SI base unit candela.' id: un-cefact-cc-P34 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37413,20 +37413,20 @@ quantity: luminous intensity levelCategory: '2' commonCode: P35 name: Hefner-Kerze -conversionFactor: 0,903 cd +conversionFactor: '0,903 cd' symbol: HK description: >- Obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979: 1 HK = 0,903 cd. id: un-cefact-cc-P35 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37437,92 +37437,92 @@ quantity: luminous intensity levelCategory: '2' commonCode: P36 name: 'international candle ' -conversionFactor: 1,019 cd +conversionFactor: '1,019 cd' symbol: IK description: >- Obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979: 1 HK = 1,019 cd. id: un-cefact-cc-P36 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '25' -quantity: radiant energy fluence, radiance exposure +quantity: 'radiant energy fluence, radiance exposure' levelCategory: '2' commonCode: P37 name: British thermal unit (international table) per square foot -conversionFactor: 1,135 653 x 10⁴ J/m² +conversionFactor: '1,135 653 x 10⁴ J/m²' symbol: BtuIT/ft² description: >- Unit of the areal-related energy transmission according to the Imperial system of units. id: un-cefact-cc-P37 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '26' -quantity: radiant energy fluence, radiance exposure +quantity: 'radiant energy fluence, radiance exposure' levelCategory: '2' commonCode: P38 name: British thermal unit (thermochemical) per square foot -conversionFactor: 1,134 893 x 10⁴ J/m² +conversionFactor: '1,134 893 x 10⁴ J/m²' symbol: Btuth/ft² description: >- Unit of the areal-related energy transmission according to the Imperial system of units. id: un-cefact-cc-P38 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '27' -quantity: radiant energy fluence, radiance exposure +quantity: 'radiant energy fluence, radiance exposure' levelCategory: '2' commonCode: P39 name: 'calorie (thermochemical) per square centimetre ' -conversionFactor: 4,184 x 10⁴ J/m² +conversionFactor: '4,184 x 10⁴ J/m²' symbol: calth/cm² description: >- Unit of the areal-related energy transmission according to the Imperial system of units. id: un-cefact-cc-P39 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37532,24 +37532,24 @@ name: four pack levelCategory: '3.2' id: un-cefact-cc-P4 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '06' sector: LIGHT_AND_RELATED_ELECTROMAGNETIC_RADIATIONS groupId: '28' -quantity: radiant energy fluence, radiance exposure +quantity: 'radiant energy fluence, radiance exposure' levelCategory: '2' commonCode: P40 name: langley -conversionFactor: 4,184 x 10⁴ J/m² +conversionFactor: '4,184 x 10⁴ J/m²' symbol: Ly description: >- CGS (Centimetre-Gram-Second system) unit of the areal-related energy @@ -37557,13 +37557,13 @@ description: >- on the earth's surface). id: un-cefact-cc-P40 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37581,13 +37581,13 @@ description: >- f1 and f2, when f2/f1 = 10. id: un-cefact-cc-P41 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37605,20 +37605,20 @@ description: >- exponent 2 and the SI base unit second. id: un-cefact-cc-P42 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '07' sector: ACOUSTICS groupId: '36' -quantity: sound pressure level, sound power level +quantity: 'sound pressure level, sound power level' levelCategory: 1M commonCode: P43 name: bel per metre @@ -37627,24 +37627,24 @@ symbol: B/m description: Unit bel divided by the SI base unit metre. id: un-cefact-cc-P43 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '9' quantity: amount of substance levelCategory: '2' commonCode: P44 name: pound mole -conversionFactor: 453,592 4 mol +conversionFactor: '453,592 4 mol' symbol: lbmol description: >- Non SI-conforming unit of quantity of a substance relating that one pound mole @@ -37652,24 +37652,24 @@ description: >- molecular weight of one molecule of this composition in atomic mass units. id: un-cefact-cc-P44 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '66' quantity: catalytic activity levelCategory: '2' commonCode: P45 name: pound mole per second -conversionFactor: 4,535 924 x 10² mol/s +conversionFactor: '4,535 924 x 10² mol/s' symbol: lbmol/s description: >- Non SI-conforming unit of the power of the amount of substance non-SI @@ -37678,24 +37678,24 @@ description: >- a molecule of this composition in atomic mass units. id: un-cefact-cc-P45 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '67' quantity: catalytic activity levelCategory: '2' commonCode: P46 name: pound mole per minute -conversionFactor: 7,559 873 mol/s +conversionFactor: '7,559 873 mol/s' symbol: lbmol/h description: >- Non SI-conforming unit of the power of the amount of substance non-SI @@ -37704,17 +37704,17 @@ description: >- a molecule of this composition in atomic mass units. id: un-cefact-cc-P46 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '55' quantity: ionic strength @@ -37726,17 +37726,17 @@ symbol: kmol/kg description: 1000-fold of the SI base unit mol divided by the SI base unit kilogram. id: un-cefact-cc-P47 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '56' quantity: ionic strength @@ -37750,17 +37750,17 @@ description: >- pound for mass according to the avoirdupois unit system. id: un-cefact-cc-P48 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '94' quantity: magnetic dipole moment @@ -37774,13 +37774,13 @@ description: >- exponent 2 divided by the SI base unit ampere. id: un-cefact-cc-P49 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37792,17 +37792,17 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-P5 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '95' quantity: magnetic dipole moment @@ -37814,17 +37814,17 @@ symbol: Wb·m description: Product of the derived SI unit weber and SI base unit metre. id: un-cefact-cc-P50 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '39' quantity: >- @@ -37840,17 +37840,17 @@ description: >- derived SI unit pascal. id: un-cefact-cc-P51 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '40' quantity: >- @@ -37866,13 +37866,13 @@ description: >- metre with exponent 3 and the derived SI unit pascal. id: un-cefact-cc-P52 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37883,7 +37883,7 @@ quantity: magnetic flux quantum levelCategory: '2' commonCode: P53 name: 'unit pole ' -conversionFactor: 1,256 637 x 10⁻⁷ Wb +conversionFactor: '1,256 637 x 10⁻⁷ Wb' symbol: 'unit pole ' description: >- CGS (Centimetre-Gram-Second system) unit for magnetic flux of a magnetic pole @@ -37891,13 +37891,13 @@ description: >- cm). id: un-cefact-cc-P53 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37910,16 +37910,16 @@ commonCode: P54 name: milligray per second conversionFactor: 10⁻³ Gy/s symbol: mGy/s -description: 0,001-fold of the derived SI unit gray divided by the SI base unit second. +description: '0,001-fold of the derived SI unit gray divided by the SI base unit second.' id: un-cefact-cc-P54 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37932,16 +37932,16 @@ commonCode: P55 name: microgray per second conversionFactor: 10⁻⁶ Gy/s symbol: µGy/s -description: 0,000 001-fold of the derived SI unit gray divided by the SI base unit second. +description: '0,000 001-fold of the derived SI unit gray divided by the SI base unit second.' id: un-cefact-cc-P55 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37959,13 +37959,13 @@ description: >- second. id: un-cefact-cc-P56 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37976,18 +37976,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P57 name: gray per minute -conversionFactor: 1,666 67 × 10⁻² Gy/s +conversionFactor: '1,666 67 × 10⁻² Gy/s' symbol: Gy/min description: SI derived unit gray divided by the unit minute. id: un-cefact-cc-P57 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -37998,18 +37998,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P58 name: milligray per minute -conversionFactor: 1,666 67 × 10⁻⁵ Gy/s +conversionFactor: '1,666 67 × 10⁻⁵ Gy/s' symbol: mGy/min -description: 0,001-fold of the derived SI unit gray divided by the unit minute. +description: '0,001-fold of the derived SI unit gray divided by the unit minute.' id: un-cefact-cc-P58 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38020,18 +38020,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P59 name: microgray per minute -conversionFactor: 1,666 67 × 10⁻⁸ Gy/s +conversionFactor: '1,666 67 × 10⁻⁸ Gy/s' symbol: µGy/min -description: 0,000 001-fold of the derived SI unit gray divided by the unit minute. +description: '0,000 001-fold of the derived SI unit gray divided by the unit minute.' id: un-cefact-cc-P59 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38041,13 +38041,13 @@ name: six pack levelCategory: '3.2' id: un-cefact-cc-P6 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38058,18 +38058,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P60 name: nanogray per minute -conversionFactor: 1,666 67 × 10⁻¹¹ Gy/s +conversionFactor: '1,666 67 × 10⁻¹¹ Gy/s' symbol: nGy/min -description: 0,000 000 001-fold of the derived SI unit gray divided by the unit minute. +description: '0,000 000 001-fold of the derived SI unit gray divided by the unit minute.' id: un-cefact-cc-P60 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38080,18 +38080,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P61 name: gray per hour -conversionFactor: 2,777 78 × 10⁻⁴ Gy/s +conversionFactor: '2,777 78 × 10⁻⁴ Gy/s' symbol: Gy/h description: SI derived unit gray divided by the unit hour. id: un-cefact-cc-P61 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38102,18 +38102,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P62 name: milligray per hour -conversionFactor: 2,777 78 × 10⁻⁷ Gy/s +conversionFactor: '2,777 78 × 10⁻⁷ Gy/s' symbol: mGy/h -description: 0,001-fold of the derived SI unit gray divided by the unit hour. +description: '0,001-fold of the derived SI unit gray divided by the unit hour.' id: un-cefact-cc-P62 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38124,18 +38124,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P63 name: microgray per hour -conversionFactor: 2,777 78 × 10⁻¹⁰ Gy/s +conversionFactor: '2,777 78 × 10⁻¹⁰ Gy/s' symbol: µGy/h -description: 0,000 001-fold of the derived SI unit gray divided by the unit hour. +description: '0,000 001-fold of the derived SI unit gray divided by the unit hour.' id: un-cefact-cc-P63 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38146,18 +38146,18 @@ quantity: absorbed dose rate levelCategory: 1M commonCode: P64 name: nanogray per hour -conversionFactor: 2,777 78 × 10⁻¹³ Gy/s +conversionFactor: '2,777 78 × 10⁻¹³ Gy/s' symbol: nGy/h -description: 0,000 000 001-fold of the derived SI unit gray divided by the unit hour. +description: '0,000 000 001-fold of the derived SI unit gray divided by the unit hour.' id: un-cefact-cc-P64 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38173,13 +38173,13 @@ symbol: Sv/s description: Derived SI unit sievert divided by the SI base unit second. id: un-cefact-cc-P65 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38192,16 +38192,16 @@ commonCode: P66 name: millisievert per second conversionFactor: 10⁻³ Sv/s symbol: mSv/s -description: 0,001-fold of the derived SI unit sievert divided by the SI base unit second. +description: '0,001-fold of the derived SI unit sievert divided by the SI base unit second.' id: un-cefact-cc-P66 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38219,13 +38219,13 @@ description: >- second. id: un-cefact-cc-P67 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38243,13 +38243,13 @@ description: >- second. id: un-cefact-cc-P68 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38267,13 +38267,13 @@ description: >- J/(kg·s) = 1 Sv/s. id: un-cefact-cc-P69 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38283,13 +38283,13 @@ name: seven pack levelCategory: '3.2' id: un-cefact-cc-P7 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38300,18 +38300,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P70 name: sievert per hour -conversionFactor: 2,777 78 × 10⁻⁴ Sv/s +conversionFactor: '2,777 78 × 10⁻⁴ Sv/s' symbol: Sv/h description: Derived SI unit sievert divided by the unit hour. id: un-cefact-cc-P70 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38322,18 +38322,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P71 name: millisievert per hour -conversionFactor: 0,277 777 778 × 10⁻⁷ Sv/s +conversionFactor: '0,277 777 778 × 10⁻⁷ Sv/s' symbol: mSv/h -description: 0,001-fold of the derived SI unit sievert divided by the unit hour. +description: '0,001-fold of the derived SI unit sievert divided by the unit hour.' id: un-cefact-cc-P71 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38344,18 +38344,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P72 name: microsievert per hour -conversionFactor: 0,277 777 778 × 10⁻¹⁰ Sv/s +conversionFactor: '0,277 777 778 × 10⁻¹⁰ Sv/s' symbol: µSv/h -description: 0,000 001-fold of the derived SI unit sievert divided by the unit hour. +description: '0,000 001-fold of the derived SI unit sievert divided by the unit hour.' id: un-cefact-cc-P72 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38366,18 +38366,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P73 name: nanosievert per hour -conversionFactor: 0,277 777 778 × 10⁻¹³ Sv/s +conversionFactor: '0,277 777 778 × 10⁻¹³ Sv/s' symbol: nSv/h -description: 0,000 000 001-fold of the derived SI unit sievert divided by the unit hour. +description: '0,000 000 001-fold of the derived SI unit sievert divided by the unit hour.' id: un-cefact-cc-P73 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38388,18 +38388,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P74 name: sievert per minute -conversionFactor: 0,016 666 Sv/s +conversionFactor: '0,016 666 Sv/s' symbol: Sv/min description: Derived SI unit sievert divided by the unit minute. id: un-cefact-cc-P74 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38410,18 +38410,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P75 name: millisievert per minute -conversionFactor: 1,666 666 667 × 10⁻⁵ Sv/s +conversionFactor: '1,666 666 667 × 10⁻⁵ Sv/s' symbol: mSv/min -description: 0,001-fold of the derived SI unit sievert divided by the unit minute. +description: '0,001-fold of the derived SI unit sievert divided by the unit minute.' id: un-cefact-cc-P75 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38432,18 +38432,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P76 name: microsievert per minute -conversionFactor: 1,666 666 667 × 10⁻⁸ Sv/s +conversionFactor: '1,666 666 667 × 10⁻⁸ Sv/s' symbol: µSv/min -description: 0,000 001-fold of the derived SI unit sievert divided by the unit minute. +description: '0,000 001-fold of the derived SI unit sievert divided by the unit minute.' id: un-cefact-cc-P76 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38454,18 +38454,18 @@ quantity: equivalence dose output levelCategory: '2' commonCode: P77 name: nanosievert per minute -conversionFactor: 1,666 666 667 × 10⁻¹¹ Sv/s +conversionFactor: '1,666 666 667 × 10⁻¹¹ Sv/s' symbol: nSv/min -description: 0,000 000 001-fold of the derived SI unit sievert divided by the unit minute. +description: '0,000 000 001-fold of the derived SI unit sievert divided by the unit minute.' id: un-cefact-cc-P77 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38476,20 +38476,20 @@ quantity: particle fluence levelCategory: '2' commonCode: P78 name: reciprocal square inch -conversionFactor: 1,550 003 x 10³ m⁻² +conversionFactor: '1,550 003 x 10³ m⁻²' symbol: 1/in² description: >- Complement of the power of the unit inch according to the Anglo-American and Imperial system of units by exponent 2. id: un-cefact-cc-P78 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38508,13 +38508,13 @@ description: >- the power of the SI base unit metre by exponent 2. id: un-cefact-cc-P79 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38524,13 +38524,13 @@ name: eight pack levelCategory: '3.2' id: un-cefact-cc-P8 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38543,16 +38543,16 @@ commonCode: P80 name: millipascal per metre conversionFactor: 10⁻³ kg/(m² x s²) symbol: mPa/m -description: 0,001-fold of the derived SI unit pascal divided by the SI base unit metre. +description: '0,001-fold of the derived SI unit pascal divided by the SI base unit metre.' id: un-cefact-cc-P80 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38568,13 +38568,13 @@ symbol: kPa/m description: 1000-fold of the derived SI unit pascal divided by the SI base unit metre. id: un-cefact-cc-P81 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38590,13 +38590,13 @@ symbol: hPa/m description: 100-fold of the derived SI unit pascal divided by the SI base unit metre. id: un-cefact-cc-P82 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38607,18 +38607,18 @@ quantity: hardness index levelCategory: '2' commonCode: P83 name: standard atmosphere per metre -conversionFactor: 1,013 25 x 10⁵ kg/(m² x s²) +conversionFactor: '1,013 25 x 10⁵ kg/(m² x s²)' symbol: Atm/m description: Outdated unit of the pressure divided by the SI base unit metre. id: un-cefact-cc-P83 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38629,20 +38629,20 @@ quantity: hardness index levelCategory: '2' commonCode: P84 name: technical atmosphere per metre -conversionFactor: 9,806 65 x 10⁴ kg/(m² x s²) +conversionFactor: '9,806 65 x 10⁴ kg/(m² x s²)' symbol: at/m description: >- Obsolete and non-legal unit of the pressure which is generated by a 10 metre water column divided by the SI base unit metre. id: un-cefact-cc-P84 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38653,20 +38653,20 @@ quantity: hardness index levelCategory: '2' commonCode: P85 name: torr per metre -conversionFactor: 1,333 224 x 10² kg/(m² x s²) +conversionFactor: '1,333 224 x 10² kg/(m² x s²)' symbol: Torr/m description: >- CGS (Centimetre-Gram-Second system) unit of the pressure divided by the SI base unit metre. id: un-cefact-cc-P85 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38677,7 +38677,7 @@ quantity: hardness index levelCategory: '2' commonCode: P86 name: psi per inch -conversionFactor: 2,714 471 x 10⁵ kg/(m² x s²) +conversionFactor: '2,714 471 x 10⁵ kg/(m² x s²)' symbol: psi/in description: >- Compound unit for pressure (pound-force according to the Anglo-American unit @@ -38686,13 +38686,13 @@ description: >- according to the Anglo-American and Imperial system of units . id: un-cefact-cc-P86 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38710,13 +38710,13 @@ description: >- in square metres. id: un-cefact-cc-P87 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38728,13 +38728,13 @@ symbol: rhe conversionFactor: 10 m x kg⁻¹ x s id: un-cefact-cc-P88 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38745,16 +38745,16 @@ description: >- Imperial system of units. levelCategory: '3.5' symbol: lbf·ft/in -conversionFactor: 53,378 66 m x kg / s² +conversionFactor: '53,378 66 m x kg / s²' id: un-cefact-cc-P89 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38764,13 +38764,13 @@ name: nine pack levelCategory: '3.2' id: un-cefact-cc-P9 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38781,16 +38781,16 @@ description: >- Imperial system of units. levelCategory: '3.5' symbol: lbf·in/in -conversionFactor: 4,448 222 m x kg / s² +conversionFactor: '4,448 222 m x kg / s²' id: un-cefact-cc-P90 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38803,16 +38803,16 @@ description: >- one inch mercury per hour. levelCategory: '3.5' symbol: 'perm (0 ºC) ' -conversionFactor: 5,721 35 x 10⁻¹¹ kg/(m² x Pa x s) +conversionFactor: '5,721 35 x 10⁻¹¹ kg/(m² x Pa x s)' id: un-cefact-cc-P91 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38825,16 +38825,16 @@ description: >- of one inch mercury per hour. levelCategory: '3.5' symbol: 'perm (23 ºC) ' -conversionFactor: 5,745 25 x 10⁻¹¹ kg/(m² x Pa x s) +conversionFactor: '5,745 25 x 10⁻¹¹ kg/(m² x Pa x s)' id: un-cefact-cc-P92 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38846,13 +38846,13 @@ symbol: byte/s conversionFactor: byte/s id: un-cefact-cc-P93 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38864,13 +38864,13 @@ symbol: kbyte/s conversionFactor: 10³ byte/s id: un-cefact-cc-P94 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38882,13 +38882,13 @@ symbol: Mbyte/s conversionFactor: 10⁶ byte/s id: un-cefact-cc-P95 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38900,13 +38900,13 @@ symbol: 1/V conversionFactor: m⁻² x kg⁻¹ x s³ x A id: un-cefact-cc-P96 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38918,13 +38918,13 @@ symbol: 1/rad conversionFactor: 1/rad id: un-cefact-cc-P97 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38937,13 +38937,13 @@ levelCategory: '3.5' symbol: PaΣνB id: un-cefact-cc-P98 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38956,13 +38956,13 @@ levelCategory: '3.5' symbol: (mol/m³)∑νB id: un-cefact-cc-P99 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38975,13 +38975,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-PA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -38998,13 +38998,13 @@ conversionFactor: Pa symbol: Pa id: un-cefact-cc-PAL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39014,13 +39014,13 @@ name: pair inch levelCategory: '3.8' id: un-cefact-cc-PB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39032,13 +39032,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-PD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39048,13 +39048,13 @@ name: pound equivalent levelCategory: '3.1' id: un-cefact-cc-PE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39067,13 +39067,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-PF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39087,13 +39087,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-PFL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39106,13 +39106,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-PG meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39126,13 +39126,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-PGL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39144,13 +39144,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-PI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39165,13 +39165,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-PK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39184,13 +39184,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-PL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39203,13 +39203,13 @@ levelCategory: '3.5' symbol: °P id: un-cefact-cc-PLA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39219,13 +39219,13 @@ name: pound percentage levelCategory: '3.1' id: un-cefact-cc-PM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39235,34 +39235,34 @@ name: pound net levelCategory: '3.1' id: un-cefact-cc-PN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '117' -quantity: linear density, linear mass +quantity: 'linear density, linear mass' levelCategory: '2' commonCode: PO name: pound per inch of length -conversionFactor: 1,785 797 x 10¹ kg/m +conversionFactor: '1,785 797 x 10¹ kg/m' symbol: lb/in id: un-cefact-cc-PO meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39275,13 +39275,13 @@ levelCategory: '3.5' symbol: ppi id: un-cefact-cc-PQ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39292,13 +39292,13 @@ levelCategory: '3.7' conversionFactor: '2' id: un-cefact-cc-PR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39311,17 +39311,17 @@ quantity: >- levelCategory: '2' commonCode: PS name: pound-force per square inch -conversionFactor: 6,894 757 x 10³ Pa +conversionFactor: '6,894 757 x 10³ Pa' symbol: lbf/in² id: un-cefact-cc-PS meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39333,18 +39333,18 @@ levelCategory: '2' status: DEPRECATED commonCode: PT name: pint (US) -conversionFactor: 4, 731 76 x 10⁻⁴ m³ +conversionFactor: '4, 731 76 x 10⁻⁴ m³' symbol: pt (US) description: Use liquid pint (common code PTL) id: un-cefact-cc-PT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39355,17 +39355,17 @@ quantity: volume levelCategory: '2' commonCode: PTD name: dry pint (US) -conversionFactor: 5,506 105 x 10⁻⁴ m³ +conversionFactor: '5,506 105 x 10⁻⁴ m³' symbol: dry pt (US) id: un-cefact-cc-PTD meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39376,17 +39376,17 @@ quantity: volume levelCategory: '2' commonCode: PTI name: pint (UK) -conversionFactor: 5, 682 61 x 10⁻⁴ m³ +conversionFactor: '5, 682 61 x 10⁻⁴ m³' symbol: pt (UK) id: un-cefact-cc-PTI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39397,34 +39397,34 @@ quantity: volume levelCategory: '2' commonCode: PTL name: liquid pint (US) -conversionFactor: 4, 731 765 x 10⁻⁴ m³ +conversionFactor: '4, 731 765 x 10⁻⁴ m³' symbol: liq pt (US) id: un-cefact-cc-PTL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: PTN name: portion -description: A quantity of allowance of food allotted to, or enough for, one person. +description: 'A quantity of allowance of food allotted to, or enough for, one person.' levelCategory: '3.5' symbol: PTN id: un-cefact-cc-PTN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39437,13 +39437,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-PU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39453,13 +39453,13 @@ name: half pint (US) levelCategory: '3.8' id: un-cefact-cc-PV meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39469,13 +39469,13 @@ name: pound per inch of width levelCategory: '3.1' id: un-cefact-cc-PW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39485,13 +39485,13 @@ name: peck dry (US) levelCategory: '3.5' id: un-cefact-cc-PY meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39501,13 +39501,13 @@ name: peck dry (UK) levelCategory: '3.5' id: un-cefact-cc-PZ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39521,13 +39521,13 @@ symbol: J/T conversionFactor: m² x A id: un-cefact-cc-Q10 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39541,13 +39541,13 @@ symbol: E conversionFactor: 1 E id: un-cefact-cc-Q11 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39559,13 +39559,13 @@ symbol: o conversionFactor: 8 bit id: un-cefact-cc-Q12 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39577,13 +39577,13 @@ symbol: o/s conversionFactor: 8 bit/s id: un-cefact-cc-Q13 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39596,13 +39596,13 @@ levelCategory: '3.6' symbol: Sh id: un-cefact-cc-Q14 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39616,13 +39616,13 @@ levelCategory: '3.6' symbol: Hart id: un-cefact-cc-Q15 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39637,13 +39637,13 @@ symbol: nat conversionFactor: nat id: un-cefact-cc-Q16 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39658,13 +39658,13 @@ symbol: Sh/s conversionFactor: Sh/s id: un-cefact-cc-Q17 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39679,13 +39679,13 @@ symbol: Hart/s conversionFactor: Hart/s id: un-cefact-cc-Q18 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39700,13 +39700,13 @@ symbol: nat/s conversionFactor: nat/s id: un-cefact-cc-Q19 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39721,13 +39721,13 @@ symbol: s/kg conversionFactor: kg⁻¹ x s id: un-cefact-cc-Q20 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39743,13 +39743,13 @@ symbol: W·m² conversionFactor: m⁴ x kg x s⁻³ id: un-cefact-cc-Q21 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39764,13 +39764,13 @@ symbol: 1/(Hz·rad·m³) conversionFactor: m⁻³ x s x rad⁻¹ id: un-cefact-cc-Q22 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39785,13 +39785,13 @@ symbol: 1/Wb conversionFactor: m⁻² x kg⁻¹ x s² x A id: un-cefact-cc-Q23 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39802,16 +39802,16 @@ description: >- system of units. levelCategory: '3.5' symbol: 1/in -conversionFactor: 39,370 08 m⁻¹ +conversionFactor: '39,370 08 m⁻¹' id: un-cefact-cc-Q24 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39825,13 +39825,13 @@ symbol: dpt conversionFactor: m⁻¹ id: un-cefact-cc-Q25 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39845,13 +39845,13 @@ symbol: 1/1 conversionFactor: 1/1 id: un-cefact-cc-Q26 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39865,13 +39865,13 @@ symbol: N·m/m² conversionFactor: m x kg x s⁻² id: un-cefact-cc-Q27 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39883,13 +39883,13 @@ symbol: kg/(m²·Pa·s) conversionFactor: kg/(m² x Pa x s) id: un-cefact-cc-Q28 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39905,13 +39905,13 @@ symbol: µg/hg description: Microgram per hectogram. id: un-cefact-cc-Q29 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39923,17 +39923,17 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-Q3 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- -groupNumber: '08' +groupNumber: 08 sector: PHYSICAL_CHEMISTRY_AND_MOLECULAR_PHYSICS groupId: '96' quantity: acidity and alkalinity @@ -39947,13 +39947,13 @@ description: >- state the acidity or alkalinity of a chemical solution). id: un-cefact-cc-Q30 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.877Z' + modified: '2024-02-16T09:11:13.877Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39968,13 +39968,13 @@ conversionFactor: 10⁶ J/kg symbol: kJ/g id: un-cefact-cc-Q31 meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -39989,13 +39989,13 @@ conversionFactor: 10-18 m3 symbol: fl id: un-cefact-cc-Q32 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40010,13 +40010,13 @@ conversionFactor: 10-15 m3 symbol: pl id: un-cefact-cc-Q33 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40031,13 +40031,13 @@ conversionFactor: 10-12 m3 symbol: nl id: un-cefact-cc-Q34 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40055,13 +40055,13 @@ description: >- consumer per minute id: un-cefact-cc-Q35 meta: - created: '2023-09-29T15:00:32.676Z' - modified: '2023-09-29T15:00:32.676Z' + created: '2024-02-16T09:11:13.878Z' + modified: '2024-02-16T09:11:13.878Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40075,13 +40075,13 @@ symbol: m2/m3 conversionFactor: 1 m2/m3 id: un-cefact-cc-Q36 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40096,13 +40096,13 @@ conversionFactor: 1.15741 × 10-5 m3/s description: Standard cubic metre (temperature 15°C and pressure 101325 millibars ) per day id: un-cefact-cc-Q37 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40119,13 +40119,13 @@ description: >- hour id: un-cefact-cc-Q38 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40142,13 +40142,13 @@ description: >- day id: un-cefact-cc-Q39 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40165,13 +40165,13 @@ description: >- hour id: un-cefact-cc-Q40 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40186,13 +40186,13 @@ description: >- millibars). id: un-cefact-cc-Q41 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40207,13 +40207,13 @@ description: >- millibars). id: un-cefact-cc-Q42 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40223,13 +40223,13 @@ description: A unit of count defining the number of facsimile pages. levelCategory: '3.5' id: un-cefact-cc-QA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40239,13 +40239,13 @@ description: A unit of time defining the number of quarters (3 months). levelCategory: '3.8' id: un-cefact-cc-QAN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40258,13 +40258,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-QB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40275,13 +40275,13 @@ levelCategory: '3.7' conversionFactor: '3' id: un-cefact-cc-QD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40292,13 +40292,13 @@ levelCategory: '3.8' conversionFactor: 900 s id: un-cefact-cc-QH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40308,13 +40308,13 @@ name: quarter kilogram levelCategory: '3.8' id: un-cefact-cc-QK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40327,13 +40327,13 @@ levelCategory: '3.5' symbol: qr id: un-cefact-cc-QR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40345,18 +40345,18 @@ levelCategory: '2' status: DEPRECATED commonCode: QT name: quart (US) -conversionFactor: 0,946 352 9 x 10⁻³ m³ +conversionFactor: '0,946 352 9 x 10⁻³ m³' symbol: qt (US) description: Use liquid quart (common code QTL) id: un-cefact-cc-QT meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40367,17 +40367,17 @@ quantity: volume levelCategory: '2' commonCode: QTD name: dry quart (US) -conversionFactor: 1,101 221 x 10⁻³ m³ +conversionFactor: '1,101 221 x 10⁻³ m³' symbol: dry qt (US) id: un-cefact-cc-QTD meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40388,17 +40388,17 @@ quantity: volume levelCategory: '2' commonCode: QTI name: quart (UK) -conversionFactor: 1,136 522 5 x 10⁻³ m³ +conversionFactor: '1,136 522 5 x 10⁻³ m³' symbol: qt (UK) id: un-cefact-cc-QTI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40409,17 +40409,17 @@ quantity: volume levelCategory: '2' commonCode: QTL name: liquid quart (US) -conversionFactor: 9,463 529 x 10⁻⁴ m³ +conversionFactor: '9,463 529 x 10⁻⁴ m³' symbol: liq qt (US) id: un-cefact-cc-QTL meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40433,13 +40433,13 @@ symbol: Qr (UK) conversionFactor: "12,700\_59 kg" id: un-cefact-cc-QTR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40449,16 +40449,16 @@ description: >- A unit of count defining the number of picas. (pica: typographical length equal to 12 points or 4.22 mm (approx.)). levelCategory: '3.5' -conversionFactor: 4,217 518 x 10⁻³ m +conversionFactor: '4,217 518 x 10⁻³ m' id: un-cefact-cc-R1 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40468,16 +40468,16 @@ name: calorie description: Use International Table (IT) calorie (common code D70) levelCategory: '3.5' symbol: cal -conversionFactor: 4,186 8 J +conversionFactor: '4,186 8 J' id: un-cefact-cc-R4 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40488,13 +40488,13 @@ levelCategory: '3.8' conversionFactor: 10³m³ id: un-cefact-cc-R9 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40504,13 +40504,13 @@ name: rack levelCategory: '3.3' id: un-cefact-cc-RA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40523,13 +40523,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-RD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40542,13 +40542,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-RG meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40558,13 +40558,13 @@ description: A unit of time defining the number of hours of operation. levelCategory: '3.1' id: un-cefact-cc-RH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40574,13 +40574,13 @@ name: roll metric measure levelCategory: '3.3' id: un-cefact-cc-RK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40593,13 +40593,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-RL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40611,13 +40611,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-RM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40627,13 +40627,13 @@ name: ream metric measure levelCategory: '3.5' id: un-cefact-cc-RN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40646,13 +40646,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-RO meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40662,13 +40662,13 @@ description: A unit of count defining the number of rooms. levelCategory: '3.9' id: un-cefact-cc-ROM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40680,13 +40680,13 @@ description: >- levelCategory: '3.5' id: un-cefact-cc-RP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40697,18 +40697,18 @@ quantity: rotational frequency levelCategory: '1' commonCode: RPM name: revolutions per minute -conversionFactor: 1,67 x 10⁻²/s +conversionFactor: '1,67 x 10⁻²/s' symbol: r/min description: Refer ISO/TC12 SI Guide id: un-cefact-cc-RPM meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40724,13 +40724,13 @@ symbol: r/s description: Refer ISO/TC12 SI Guide id: un-cefact-cc-RPS meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40740,13 +40740,13 @@ name: reset levelCategory: '3.9' id: un-cefact-cc-RS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40759,13 +40759,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-RT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40775,13 +40775,13 @@ name: run levelCategory: '3.9' id: un-cefact-cc-RU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40792,18 +40792,18 @@ quantity: kinematic viscosity levelCategory: '2' commonCode: S3 name: square foot per second -conversionFactor: 0,092 903 04 m²/s +conversionFactor: '0,092 903 04 m²/s' symbol: ft²/s description: 'Synonym: foot squared per second' id: un-cefact-cc-S3 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40819,13 +40819,13 @@ symbol: m²/s description: 'Synonym: metre squared per second (square metres/second US)' id: un-cefact-cc-S4 meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40835,13 +40835,13 @@ name: sixty fourths of an inch levelCategory: '3.8' id: un-cefact-cc-S5 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40851,13 +40851,13 @@ name: session levelCategory: '3.9' id: un-cefact-cc-S6 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40867,13 +40867,13 @@ name: storage unit levelCategory: '3.9' id: un-cefact-cc-S7 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40883,13 +40883,13 @@ name: standard advertising unit levelCategory: '3.9' id: un-cefact-cc-S8 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.881Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40902,13 +40902,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-SA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.881Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40918,13 +40918,13 @@ description: A unit of time defining the number of half years (6 months). levelCategory: '3.8' id: un-cefact-cc-SAN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40935,29 +40935,29 @@ levelCategory: '3.7' conversionFactor: '20' id: un-cefact-cc-SCO meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: SCR name: scruple levelCategory: '3.5' -conversionFactor: 1,295 982 g +conversionFactor: '1,295 982 g' id: un-cefact-cc-SCR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40967,13 +40967,13 @@ name: solid pound levelCategory: '3.1' id: un-cefact-cc-SD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40983,13 +40983,13 @@ name: section levelCategory: '3.9' id: un-cefact-cc-SE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -40999,18 +40999,18 @@ groupId: '153' quantity: time levelCategory: '1' commonCode: SEC -name: second [unit of time] +name: 'second [unit of time]' conversionFactor: s symbol: s id: un-cefact-cc-SEC meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41022,13 +41022,13 @@ description: >- levelCategory: '3.2' id: un-cefact-cc-SET meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41038,13 +41038,13 @@ description: A unit of information equal to 64000 bytes. levelCategory: '3.9' id: un-cefact-cc-SG meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41055,13 +41055,13 @@ description: A unit of mass defining the number of tons for shipping. levelCategory: '3.4' id: un-cefact-cc-SHT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41078,13 +41078,13 @@ conversionFactor: A/V symbol: S id: un-cefact-cc-SIE meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41094,13 +41094,13 @@ name: split tank truck levelCategory: '3.4' id: un-cefact-cc-SK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41113,13 +41113,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-SL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41134,13 +41134,13 @@ conversionFactor: m3 description: Standard cubic metre (temperature 15°C and pressure 101325 millibars ) id: un-cefact-cc-SM3 meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41153,17 +41153,17 @@ quantity: >- levelCategory: '2' commonCode: SMI name: mile (statute mile) -conversionFactor: 1 609,344 m +conversionFactor: '1 609,344 m' symbol: mile id: un-cefact-cc-SMI meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41172,16 +41172,16 @@ commonCode: SN name: square rod levelCategory: '3.8' symbol: rd² -conversionFactor: 25,292 9 m² +conversionFactor: '25,292 9 m²' id: un-cefact-cc-SN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41194,13 +41194,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-SO meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41210,13 +41210,13 @@ name: shelf package levelCategory: '3.9' id: un-cefact-cc-SP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41226,31 +41226,31 @@ description: 'A unit of count defining the number of squares (square: rectangula levelCategory: '3.9' id: un-cefact-cc-SQ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: SQR -name: square, roofing +name: 'square, roofing' description: >- A unit of count defining the number of squares of roofing materials, measured in multiples of 100 square feet. levelCategory: '3.1' id: un-cefact-cc-SQR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41262,13 +41262,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-SR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41278,13 +41278,13 @@ name: sheet metric measure levelCategory: '3.3' id: un-cefact-cc-SS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41294,13 +41294,13 @@ name: short standard (7200 matches) levelCategory: '3.5' id: un-cefact-cc-SST meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41313,13 +41313,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-ST meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41331,13 +41331,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-STC meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41348,35 +41348,35 @@ quantity: mass levelCategory: '2' commonCode: STI name: stone (UK) -conversionFactor: 6,350 293 kg +conversionFactor: '6,350 293 kg' symbol: st id: un-cefact-cc-STI meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: STK -name: stick, cigarette +name: 'stick, cigarette' description: >- A unit of count defining the number of cigarettes in the smallest unit for stock-taking and/or duty computation. levelCategory: '3.9' id: un-cefact-cc-STK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41388,13 +41388,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-STL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41405,18 +41405,18 @@ quantity: mass levelCategory: '2' commonCode: STN name: ton (US) or short ton (UK/US) -conversionFactor: 0,907184 7 x 10³ kg +conversionFactor: '0,907184 7 x 10³ kg' symbol: ton (US) description: 'Synonym: net ton (2000 lb)' id: un-cefact-cc-STN meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41428,13 +41428,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-STW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41447,13 +41447,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-SV meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41465,13 +41465,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-SW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41483,13 +41483,13 @@ description: >- levelCategory: '3.4' id: un-cefact-cc-SX meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41501,13 +41501,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-SYR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41517,13 +41517,13 @@ description: A unit of count defining the number of lines in service. levelCategory: '3.5' id: un-cefact-cc-T0 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41533,13 +41533,13 @@ name: thousand pound gross levelCategory: '3.8' id: un-cefact-cc-T1 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41551,13 +41551,13 @@ description: >- levelCategory: '3.8' id: un-cefact-cc-T3 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41567,13 +41567,13 @@ name: thousand bag levelCategory: '3.8' id: un-cefact-cc-T4 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41583,13 +41583,13 @@ name: thousand casing levelCategory: '3.8' id: un-cefact-cc-T5 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41597,16 +41597,16 @@ status: MARKED_AS_DELETED commonCode: T6 name: thousand gallon (US) levelCategory: '3.8' -conversionFactor: 3,785 412 m³ +conversionFactor: '3,785 412 m³' id: un-cefact-cc-T6 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41616,13 +41616,13 @@ name: thousand impression levelCategory: '3.8' id: un-cefact-cc-T7 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41632,13 +41632,13 @@ name: thousand linear inch levelCategory: '3.8' id: un-cefact-cc-T8 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41648,34 +41648,34 @@ name: tenth cubic foot levelCategory: '3.8' id: un-cefact-cc-TA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '05' sector: ELECTRICITY_AND_MAGNETISM groupId: '15' -quantity: electric charge, quantity of electricity, electric flux (flux of displacement) +quantity: 'electric charge, quantity of electricity, electric flux (flux of displacement)' levelCategory: 1M commonCode: TAH name: kiloampere hour (thousand ampere hour) -conversionFactor: 3,6 x 10⁶ C +conversionFactor: '3,6 x 10⁶ C' symbol: kA·h id: un-cefact-cc-TAH meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.875Z' + modified: '2024-02-16T09:11:13.875Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41690,13 +41690,13 @@ symbol: TAN conversionFactor: 'mg KOH/g ' id: un-cefact-cc-TAN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41706,13 +41706,13 @@ name: truckload levelCategory: '3.4' id: un-cefact-cc-TC meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41720,16 +41720,16 @@ status: MARKED_AS_DELETED commonCode: TD name: therm levelCategory: '3.8' -conversionFactor: 10⁵ x 1 055,056 J +conversionFactor: '10⁵ x 1 055,056 J' id: un-cefact-cc-TD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41739,13 +41739,13 @@ name: tote levelCategory: '3.3' id: un-cefact-cc-TE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41755,13 +41755,13 @@ name: ten square yard levelCategory: '3.8' id: un-cefact-cc-TF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41770,49 +41770,49 @@ name: thousand square inch levelCategory: '3.8' id: un-cefact-cc-TI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: TIC -name: metric ton, including container +name: 'metric ton, including container' description: >- A unit of mass defining the number of metric tons of a product, including its container. levelCategory: '3.1' id: un-cefact-cc-TIC meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: TIP -name: metric ton, including inner packaging +name: 'metric ton, including inner packaging' description: >- A unit of mass defining the number of metric tons of a product, including its inner packaging materials. levelCategory: '3.1' id: un-cefact-cc-TIP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41822,32 +41822,32 @@ name: thousand square centimetre levelCategory: '3.8' id: un-cefact-cc-TJ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- status: MARKED_AS_DELETED commonCode: TK -name: tank, rectangular +name: 'tank, rectangular' description: >- Use UN/ECE Recommendation 21 (refer to Note 2 in the spreadsheet introduction, 1st sheet). levelCategory: '3.4' id: un-cefact-cc-TK meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41861,13 +41861,13 @@ symbol: t·km conversionFactor: 10⁶ kg x m id: un-cefact-cc-TKM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41877,31 +41877,31 @@ name: thousand foot (linear) levelCategory: '3.8' id: un-cefact-cc-TL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- commonCode: TMS -name: kilogram of imported meat, less offal +name: 'kilogram of imported meat, less offal' description: >- A unit of mass equal to one thousand grams of imported meat, disregarding less valuable by-products such as the entrails. levelCategory: '3.5' id: un-cefact-cc-TMS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41914,13 +41914,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-TN meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41936,13 +41936,13 @@ symbol: t description: 'Synonym: metric ton' id: un-cefact-cc-TNE meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.872Z' + modified: '2024-02-16T09:11:13.872Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41952,13 +41952,13 @@ description: A unit of count defining the number of items in multiples of 10. levelCategory: '3.2' id: un-cefact-cc-TP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41970,13 +41970,13 @@ symbol: TPI conversionFactor: 0.0254 /m id: un-cefact-cc-TPI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -41988,13 +41988,13 @@ description: >- levelCategory: '3.8' id: un-cefact-cc-TPR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42004,13 +42004,13 @@ name: thousand foot levelCategory: '3.8' id: un-cefact-cc-TQ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42019,16 +42019,16 @@ name: thousand cubic metre per day description: A unit of volume equal to one thousand cubic metres per day. levelCategory: '3.8' symbol: km³/d -conversionFactor: 1,157 41 x 10⁻² m³/s +conversionFactor: '1,157 41 x 10⁻² m³/s' id: un-cefact-cc-TQD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42038,13 +42038,13 @@ name: ten square foot levelCategory: '3.8' id: un-cefact-cc-TR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42054,13 +42054,13 @@ levelCategory: '3.7' conversionFactor: 10¹⁸ id: un-cefact-cc-TRL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42070,13 +42070,13 @@ name: thousand square foot levelCategory: '3.8' id: un-cefact-cc-TS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42086,13 +42086,13 @@ name: tonne of substance 90 % dry levelCategory: '3.1' id: un-cefact-cc-TSD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42102,13 +42102,13 @@ name: ton of steam per hour levelCategory: '3.1' id: un-cefact-cc-TSH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42120,13 +42120,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-TST meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42136,13 +42136,13 @@ name: thousand linear metre levelCategory: '3.8' id: un-cefact-cc-TT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42154,13 +42154,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-TTS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42173,13 +42173,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-TU meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42190,13 +42190,13 @@ levelCategory: '3.8' conversionFactor: 10³kg id: un-cefact-cc-TV meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42206,32 +42206,32 @@ name: thousand sheet levelCategory: '3.8' id: un-cefact-cc-TW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- status: MARKED_AS_DELETED commonCode: TY -name: tank, cylindrical +name: 'tank, cylindrical' description: >- Use UN/ECE Recommendation 21 (refer to Note 2 in the spreadsheet introduction, 1st sheet). levelCategory: '3.4' id: un-cefact-cc-TY meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42243,13 +42243,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-U1 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42261,13 +42261,13 @@ description: >- levelCategory: '3.9' id: un-cefact-cc-U2 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42281,17 +42281,17 @@ levelCategory: '2' status: DEPRECATED commonCode: UA name: torr -conversionFactor: 133,322 4 Pa +conversionFactor: '133,322 4 Pa' symbol: Torr id: un-cefact-cc-UA meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42301,13 +42301,13 @@ description: A unit of count defining the average number of lines in service. levelCategory: '3.5' id: un-cefact-cc-UB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42317,13 +42317,13 @@ description: A unit of count defining the number of network access ports. levelCategory: '3.5' id: un-cefact-cc-UC meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42334,13 +42334,13 @@ levelCategory: '3.8' conversionFactor: 6 s id: un-cefact-cc-UD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42351,13 +42351,13 @@ levelCategory: '3.8' conversionFactor: 360 s id: un-cefact-cc-UE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42367,13 +42367,13 @@ name: usage per telecommunication line average levelCategory: '3.5' id: un-cefact-cc-UF meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42383,13 +42383,13 @@ name: ten thousand yard levelCategory: '3.8' id: un-cefact-cc-UH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42399,13 +42399,13 @@ name: million unit levelCategory: '3.8' id: un-cefact-cc-UM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42416,13 +42416,13 @@ symbol: V·A / kg conversionFactor: V x A / kg id: un-cefact-cc-VA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42435,13 +42435,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-VI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42458,13 +42458,13 @@ conversionFactor: V symbol: V id: un-cefact-cc-VLT meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42476,13 +42476,13 @@ description: >- levelCategory: '3.7' id: un-cefact-cc-VP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42495,13 +42495,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-VQ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42511,13 +42511,13 @@ name: visit levelCategory: '3.9' id: un-cefact-cc-VS meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42529,13 +42529,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-W2 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42545,13 +42545,13 @@ name: two week levelCategory: '3.8' id: un-cefact-cc-W4 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42562,13 +42562,13 @@ symbol: W/kg conversionFactor: 1 W/kg id: un-cefact-cc-WA meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42580,13 +42580,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-WB meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42596,16 +42596,16 @@ description: >- A unit of volume used for measuring lumber. One board foot equals 1/12 of a cubic foot. levelCategory: '3.5' -conversionFactor: 3,63 m³ +conversionFactor: '3,63 m³' id: un-cefact-cc-WCD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42617,13 +42617,13 @@ description: >- levelCategory: '3.1' id: un-cefact-cc-WE meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42638,13 +42638,13 @@ conversionFactor: Wb symbol: Wb id: un-cefact-cc-WEB meta: - created: '2023-09-29T15:00:32.675Z' - modified: '2023-09-29T15:00:32.675Z' + created: '2024-02-16T09:11:13.876Z' + modified: '2024-02-16T09:11:13.876Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42655,17 +42655,17 @@ quantity: time levelCategory: '2' commonCode: WEE name: week -conversionFactor: 6,048 x 10⁵ s +conversionFactor: '6,048 x 10⁵ s' symbol: wk id: un-cefact-cc-WEE meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42675,13 +42675,13 @@ description: A unit of volume equal to 231 cubic inches. levelCategory: '3.1' id: un-cefact-cc-WG meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42691,34 +42691,34 @@ name: wheel levelCategory: '3.9' id: un-cefact-cc-WH meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- groupNumber: '03' sector: MECHANICS groupId: '330' -quantity: work, energy, potential energy, kinetic energy +quantity: 'work, energy, potential energy, kinetic energy' levelCategory: '1' commonCode: WHR name: watt hour -conversionFactor: 3,6 x 10³ J +conversionFactor: '3,6 x 10³ J' symbol: W·h id: un-cefact-cc-WHR meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42728,13 +42728,13 @@ name: weight per square inch levelCategory: '3.9' id: un-cefact-cc-WI meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42744,13 +42744,13 @@ description: A unit of time defining the number of working months. levelCategory: '3.1' id: un-cefact-cc-WM meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42760,13 +42760,13 @@ name: wrap levelCategory: '3.3' id: un-cefact-cc-WR meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42777,16 +42777,16 @@ description: |- Synonym: standard cubic foot levelCategory: '3.5' symbol: std -conversionFactor: 4,672 m³ +conversionFactor: '4,672 m³' id: un-cefact-cc-WSD meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42801,13 +42801,13 @@ conversionFactor: W symbol: W id: un-cefact-cc-WTT meta: - created: '2023-09-29T15:00:32.674Z' - modified: '2023-09-29T15:00:32.674Z' + created: '2024-02-16T09:11:13.873Z' + modified: '2024-02-16T09:11:13.873Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42818,13 +42818,13 @@ description: A unit of volume equal to the number of millilitres of water. levelCategory: '3.1' id: un-cefact-cc-WW meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42837,18 +42837,18 @@ quantity: >- levelCategory: '2' commonCode: X1 name: Gunter's chain -conversionFactor: 20,116 8 m +conversionFactor: '20,116 8 m' symbol: ch (UK) description: "A unit of distance used or formerly used by\_British surveyors." id: un-cefact-cc-X1 meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42859,17 +42859,17 @@ quantity: area levelCategory: '2' commonCode: YDK name: square yard -conversionFactor: 8,361 274 x 10⁻¹ m² +conversionFactor: '8,361 274 x 10⁻¹ m²' symbol: yd² id: un-cefact-cc-YDK meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42880,17 +42880,17 @@ quantity: volume levelCategory: '2' commonCode: YDQ name: cubic yard -conversionFactor: 0,764 555 m³ +conversionFactor: '0,764 555 m³' symbol: yd³ id: un-cefact-cc-YDQ meta: - created: '2023-09-29T15:00:32.673Z' - modified: '2023-09-29T15:00:32.673Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42900,13 +42900,13 @@ name: hundred linear yard levelCategory: '3.8' id: un-cefact-cc-YL meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42919,17 +42919,17 @@ quantity: >- levelCategory: '2' commonCode: YRD name: yard -conversionFactor: 0,914 4 m +conversionFactor: '0,914 4 m' symbol: yd id: un-cefact-cc-YRD meta: - created: '2023-09-29T15:00:32.672Z' - modified: '2023-09-29T15:00:32.672Z' + created: '2024-02-16T09:11:13.871Z' + modified: '2024-02-16T09:11:13.871Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42939,13 +42939,13 @@ name: ten yard levelCategory: '3.8' id: un-cefact-cc-YT meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42955,13 +42955,13 @@ name: lift van levelCategory: '3.4' id: un-cefact-cc-Z1 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42971,13 +42971,13 @@ description: A unit of count defining the number of hanging containers. levelCategory: '3.9' id: un-cefact-cc-Z11 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -42990,13 +42990,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-Z2 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43009,13 +43009,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-Z3 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43028,13 +43028,13 @@ description: >- levelCategory: '3.3' id: un-cefact-cc-Z4 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43044,13 +43044,13 @@ name: lug levelCategory: '3.9' id: un-cefact-cc-Z5 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43060,13 +43060,13 @@ name: conference point levelCategory: '3.5' id: un-cefact-cc-Z6 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43076,13 +43076,13 @@ name: newspage agate line levelCategory: '3.9' id: un-cefact-cc-Z8 meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43092,13 +43092,13 @@ description: A unit of count defining the number of pages. levelCategory: '3.5' id: un-cefact-cc-ZP meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system --- @@ -43108,11 +43108,11 @@ description: A unit of measure as agreed in common between two or more parties. levelCategory: '3.9' id: un-cefact-cc-ZZ meta: - created: '2023-09-29T15:00:32.678Z' - modified: '2023-09-29T15:00:32.678Z' + created: '2024-02-16T09:11:13.882Z' + modified: '2024-02-16T09:11:13.882Z' modifiedBy: '' owners: - - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity - value: urn:restorecommerce:acs:model:organization.Organization - - id: urn:restorecommerce:acs:names:ownerInstance + - id: 'urn:restorecommerce:acs:names:ownerIndicatoryEntity' + value: 'urn:restorecommerce:acs:model:organization.Organization' + - id: 'urn:restorecommerce:acs:names:ownerInstance' value: system diff --git a/datasets/system/data/seed-data/rules.yaml b/datasets/system/data/seed-data/rules.yaml index ae62c08..5714e29 100644 --- a/datasets/system/data/seed-data/rules.yaml +++ b/datasets/system/data/seed-data/rules.yaml @@ -340,6 +340,39 @@ attributes: - id: urn:restorecommerce:acs:names:ownerInstance value: system +--- + id: user-permits-all-owned + name: User Permits All Owned + description: Permits all if resource is owned by subject + target: + subjects: + - id: urn:restorecommerce:acs:names:role + value: user-r-id + - id: urn:restorecommerce:acs:names:roleScopingEntity + value: urn:restorecommerce:acs:model:user.User + - id: urn:restorecommerce:acs:names:hierarchicalRoleScoping + value: "false" + actions: [ ] + resources: [ ] + effect: PERMIT + condition: " + !context?.resources?.some( + resource => resource?.user_id !== context.subject?.id + || resource?.private?.user_id !== context.subject?.id + ) + " + evaluationCacheable: false + contextQuery: + filters: [ ] + query: "" + meta: + modifiedBy: "" + owners: + - id: urn:restorecommerce:acs:names:ownerIndicatoryEntity + value: urn:restorecommerce:acs:model:organization.Organization + attributes: + - id: urn:restorecommerce:acs:names:ownerInstance + value: system --- id: user-permits-create-owned name: User Permits Create Owned diff --git a/datasets/system/generator/unit_codes/package.json b/datasets/system/generator/unit_codes/package.json new file mode 100644 index 0000000..0b41a79 --- /dev/null +++ b/datasets/system/generator/unit_codes/package.json @@ -0,0 +1,19 @@ +{ + "name": "@restorecommerce/dataset-system-units-transformer", + "version": "0.1.0", + "description": "Util for generating units from XLS data set", + "license": "MIT", + "keywords": [ + "restorecommerce", + "system", + "data" + ], + "dependencies": { + "node-xlsx": "^0.23.0", + "js-yaml": "^3.14.0" + }, + "scripts": {}, + "engines": { + "node": ">= 18.0.0" + } +} diff --git a/datasets/system/generator/unit_codes/transform.js b/datasets/system/generator/unit_codes/transform.js index 423ba02..ef43e91 100644 --- a/datasets/system/generator/unit_codes/transform.js +++ b/datasets/system/generator/unit_codes/transform.js @@ -1,5 +1,5 @@ -const xlsx = require('node-xlsx'); const fs = require('fs'); +const xlsx = require('node-xlsx'); const yaml = require('js-yaml'); const headerMapping = { @@ -43,7 +43,7 @@ const sectorMapping = { const workSheetsFromFile = xlsx.parse(`${__dirname}/rec20_Rev15e-2020.xls`); -export function transform() { +function transform() { const codes = {}; for (let i = 1; i < 3; i += 1) { @@ -106,4 +106,6 @@ export function transform() { const outDir = `${__dirname}/../../data/generated/`; fs.mkdirSync(outDir, { recursive: true }); fs.writeFileSync(`${outDir}unit_codes.yaml`, values.map(yaml.dump).join('\n---\n')); -} \ No newline at end of file +}; + +transform(); \ No newline at end of file diff --git a/lerna.json b/lerna.json new file mode 100644 index 0000000..b37de9b --- /dev/null +++ b/lerna.json @@ -0,0 +1,13 @@ +{ + "packages": [ + "datasets/*" + ], + "ignoreChanges": [ + "**/node_modules/**", + "**/package.json", + "**/*.md", + "**/perf/**" + ], + "version": "independent", + "$schema": "node_modules/lerna/schemas/lerna-schema.json" +} diff --git a/package-lock.json b/package-lock.json index b7f8fe1..75539d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,763 +1,704 @@ { "name": "@restorecommerce/datasets", "version": "0.1.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@restorecommerce/datasets", "version": "0.1.0", "license": "MIT", + "workspaces": [ + "datasets/**" + ], "dependencies": { "@restorecommerce/gql-bot": "^1.0.1", "commander": "^9.4.1", - "dotenv": "^16.0.3", - "formdata-node": "^4.3.3", - "node-fetch": "^3.2.9", - "prompt": "^1.3.0", - "typescript": "^4.8.4" + "dotenv": "^16.0.3" }, "devDependencies": { + "@babel/eslint-parser": "^7.23.10", "@restorecommerce/eslint-config-restorecommerce": "^0.1.5", - "@restorecommerce/rc-grpc-clients": "^3.0.0", - "@types/node": "^18.11.7", - "babel-eslint": "^10.0.3", "eslint": "^8.26.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-json": "^3.1.0", - "node-xlsx": "^0.23.0", + "lerna": "^8.1.2", "npm-run-all": "^4.1.5" }, "engines": { "node": ">= 18.0.0" } }, - "node_modules/@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "dev": true, + "datasets/demo-shop/generator/catalog": { + "name": "@restorecommerce/dataset-demoshop-catalog-transformer", + "version": "0.1.0", + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.12.13" + "csv-parser": "^2.3.1", + "js-yaml": "^3.14.0", + "object-hash": "^2.0.0", + "uuid": "^3.3.3" + }, + "engines": { + "node": ">= 18.0.0" } }, - "node_modules/@babel/generator": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.16.tgz", - "integrity": "sha512-grBBR75UnKOcUWMp8WoDxNsWCFl//XCK6HWTrBQKTr5SV9f5g0pNOjdyzi/DTBv12S9GnYPInIXQBTky7OXEMg==", - "dev": true, + "datasets/demo-shop/generator/catalog/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dependencies": { - "@babel/types": "^7.13.16", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", - "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", - "dev": true, + "datasets/demo-shop/generator/catalog/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dependencies": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.12.13" + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", - "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", - "dev": true, + "datasets/demo-shop/generator/catalog/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "datasets/demo-shop/generator/catalog/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "datasets/system/generator/unit_codes": { + "name": "@restorecommerce/dataset-system-units-transformer", + "version": "0.1.0", + "license": "MIT", "dependencies": { - "@babel/types": "^7.12.13" + "js-yaml": "^3.14.0", + "node-xlsx": "^0.23.0" + }, + "engines": { + "node": ">= 18.0.0" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", - "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", - "dev": true, + "datasets/system/generator/unit_codes/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dependencies": { - "@babel/types": "^7.12.13" + "sprintf-js": "~1.0.2" } }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", - "dev": true + "datasets/system/generator/unit_codes/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } }, - "node_modules/@babel/highlight": { - "version": "7.13.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", - "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", + "datasets/system/generator/unit_codes/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@babel/parser": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.16.tgz", - "integrity": "sha512-6bAg36mCwuqLO0hbR+z7PHuqWiCeP7Dzg73OpQwsAB1Eb8HnGEz5xYBzCfbu+YjoaJsJs+qheDxVAuqbt3ILEw==", + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, - "bin": { - "parser": "bin/babel-parser.js" + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, - "node_modules/@babel/template": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", - "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@babel/traverse": { - "version": "7.13.17", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.17.tgz", - "integrity": "sha512-BMnZn0R+X6ayqm3C3To7o1j7Q020gWdqdyP50KEoVqaCO2c/Im7sYZSmVgvefp8TTMQ+9CtwuBp0Z1CZ8V3Pvg==", + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.13.16", - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.13.16", - "@babel/types": "^7.13.17", - "debug": "^4.1.0", - "globals": "^11.1.0" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@babel/types": { - "version": "7.13.17", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.17.tgz", - "integrity": "sha512-RawydLgxbOPDlTLJNtoIypwdmAy//uQIzlKt2+iBiJaRlVuI6QLUxVAyWGNfOzp8Yu4L4lLIacoCyTNtpb4wiA==", + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.12.11", - "to-fast-properties": "^2.0.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "engines": { - "node": ">=0.1.90" + "node": ">=4" } }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" + "color-name": "1.1.3" } }, - "node_modules/@elastic/ecs-helpers": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@elastic/ecs-helpers/-/ecs-helpers-1.1.0.tgz", - "integrity": "sha512-MDLb2aFeGjg46O5mLpdCzT5yOUDnXToJSrco2ShqGIXxNJaM8uJjX+4nd+hRYV4Vex8YJyDtOFEVBldQct6ndg==", + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "optional": true, - "dependencies": { - "fast-json-stringify": "^2.4.1" - }, "engines": { - "node": ">=10" + "node": ">=0.8.0" } }, - "node_modules/@elastic/ecs-pino-format": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@elastic/ecs-pino-format/-/ecs-pino-format-1.3.0.tgz", - "integrity": "sha512-U8D57gPECYoRCcwREsrXKBtqeyFFF/KAwHi4rG1u/oQhAg91Kzw8ZtUQJXD/DMDieLOqtbItFr2FRBWI3t3wog==", + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "optional": true, - "dependencies": { - "@elastic/ecs-helpers": "^1.1.0" - }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/@elastic/elasticsearch": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/@elastic/elasticsearch/-/elasticsearch-8.8.0.tgz", - "integrity": "sha512-IOydHcLpg9tDcLpikDrN5hx7LADEmkgHswgqTcCYXKS3FVIrfs3Rc6ALu7WU45Qe/JH0xhmwJkWVjsAk6C/nBg==", + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "@elastic/transport": "^8.3.1", - "tslib": "^2.4.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=14" + "node": ">=4" } }, - "node_modules/@elastic/elasticsearch/node_modules/tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - }, - "node_modules/@elastic/transport": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/@elastic/transport/-/transport-8.3.1.tgz", - "integrity": "sha512-jv/Yp2VLvv5tSMEOF8iGrtL2YsYHbpf4s+nDsItxUTLFTzuJGpnsB/xBlfsoT2kAYEnWHiSJuqrbRcpXEI/SEQ==", + "node_modules/@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", "dev": true, - "dependencies": { - "debug": "^4.3.4", - "hpagent": "^1.0.0", - "ms": "^2.1.3", - "secure-json-parse": "^2.4.0", - "tslib": "^2.4.0", - "undici": "^5.5.1" - }, + "peer": true, "engines": { - "node": ">=14" + "node": ">=6.9.0" } }, - "node_modules/@elastic/transport/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/@elastic/transport/node_modules/tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - }, - "node_modules/@eslint/eslintrc": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", - "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", + "node_modules/@babel/core": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", "dev": true, + "peer": true, "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.15.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=6.9.0" }, "funding": { - "url": "https://opencollective.com/eslint" + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "node_modules/@babel/core/node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" + "peer": true, + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "node_modules/@babel/eslint-parser": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz", + "integrity": "sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==", "dev": true, + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, "engines": { - "node": ">= 4" + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0" } }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@grpc/grpc-js": { - "version": "1.8.14", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz", - "integrity": "sha512-w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A==", + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", "dev": true, "dependencies": { - "@grpc/proto-loader": "^0.7.0", - "@types/node": ">=12.12.47" + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" }, "engines": { - "node": "^8.13.0 || >=10.10.0" + "node": ">=6.9.0" } }, - "node_modules/@grpc/proto-loader": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz", - "integrity": "sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dev": true, + "peer": true, "dependencies": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^7.0.0", - "yargs": "^17.7.2" - }, - "bin": { - "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.6", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.6.tgz", - "integrity": "sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg==", + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, + "peer": true, "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=10.10.0" + "yallist": "^3.0.2" } }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true + "peer": true }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@babel/types": "^7.22.5" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" } }, - "node_modules/@opentelemetry/api": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.1.tgz", - "integrity": "sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA==", + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dev": true, - "optional": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, "engines": { - "node": ">=8.0.0" + "node": ">=6.9.0" } }, - "node_modules/@opentelemetry/core": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.13.0.tgz", - "integrity": "sha512-2dBX3Sj99H96uwJKvc2w9NOiNgbvAO6mOFJFramNkKfS9O4Um+VWgpnlAazoYjT6kUJ1MP70KQ5ngD4ed+4NUw==", + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", "dev": true, - "optional": true, + "peer": true, "dependencies": { - "@opentelemetry/semantic-conventions": "1.13.0" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { - "node": ">=14" + "node": ">=6.9.0" }, "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.5.0" + "@babel/core": "^7.0.0" } }, - "node_modules/@opentelemetry/resources": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.13.0.tgz", - "integrity": "sha512-euqjOkiN6xhjE//0vQYGvbStxoD/WWQRhDiO0OTLlnLBO9Yw2Gd/VoSx2H+svsebjzYk5OxLuREBmcdw6rbUNg==", + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, - "optional": true, + "peer": true, "dependencies": { - "@opentelemetry/core": "1.13.0", - "@opentelemetry/semantic-conventions": "1.13.0" + "@babel/types": "^7.22.5" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.5.0" + "node": ">=6.9.0" } }, - "node_modules/@opentelemetry/sdk-metrics": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.13.0.tgz", - "integrity": "sha512-MOjZX6AnSOqLliCcZUrb+DQKjAWXBiGeICGbHAGe5w0BB18PJIeIo995lO5JSaFfHpmUMgJButTPfJJD27W3Vg==", + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, - "optional": true, "dependencies": { - "@opentelemetry/core": "1.13.0", - "@opentelemetry/resources": "1.13.0", - "lodash.merge": "4.6.2" + "@babel/types": "^7.22.5" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.3.0 <1.5.0" + "node": ">=6.9.0" } }, - "node_modules/@opentelemetry/semantic-conventions": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.13.0.tgz", - "integrity": "sha512-LMGqfSZkaMQXqewO0o1wvWr/2fQdCh4a3Sqlxka/UsJCe0cfLulh6x2aqnKLnsrSGiCq5rSCwvINd152i0nCqw==", + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", "dev": true, - "optional": true, "engines": { - "node": ">=14" + "node": ">=6.9.0" } }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", - "dev": true + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "dev": true + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", - "dev": true - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", - "dev": true - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "node_modules/@babel/helpers": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", "dev": true, + "peer": true, "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "dev": true - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", - "dev": true - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", - "dev": true - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", - "dev": true - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", - "dev": true + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@restorecommerce/eslint-config-restorecommerce/-/eslint-config-restorecommerce-0.1.5.tgz", - "integrity": "sha512-SK9sU5HKu/tBaSilm9wHzujJOIb23Wdj3u8CJcYIaG5Kz77vTS24TEZkVi2mzM5yd6hNEjnkqB/geDcEg1lK1Q==", + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "babel-eslint": "^10.0.3", - "eslint": "^6.4.0", - "eslint-config-airbnb-base": "^14.0.0", - "eslint-plugin-import": "^2.18.2", - "eslint-plugin-json": "^1.4.0" + "color-convert": "^1.9.0" }, "engines": { - "node": ">= 10.0.0" + "node": ">=4" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "color-name": "1.1.3" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { "node": ">=4" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=4.8" + "node": ">=4" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/@babel/parser": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", "dev": true, "bin": { - "semver": "bin/semver" + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", - "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", + "node_modules/@babel/template": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", + "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.10.0", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^1.4.3", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.1.2", - "esquery": "^1.0.1", - "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "inquirer": "^7.0.0", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.14", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.3", - "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^6.1.2", - "strip-ansi": "^5.2.0", - "strip-json-comments": "^3.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9" }, "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=6.9.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint-config-airbnb-base": { - "version": "14.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", - "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", - "dev": true, - "dependencies": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.2" + "node_modules/@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", + "globals": "^11.1.0" }, "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", - "eslint-plugin-import": "^2.22.1" + "node": ">=6.9.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint-plugin-json": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz", - "integrity": "sha512-CECvgRAWtUzuepdlPWd+VA7fhyF9HT183pZnl8wQw5x699Mk/MbME/q8xtULBfooi3LUbj6fToieNmsvUcDxWA==", + "node_modules/@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", "dev": true, "dependencies": { - "vscode-json-languageservice": "^3.2.1" + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.9.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">=6" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "dependencies": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" - }, "engines": { - "node": ">=6.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", "dev": true, - "dependencies": { - "flat-cache": "^2.0.1" - }, "engines": { - "node": ">=4" + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": ">=4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", - "dev": true - }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { - "type-fest": "^0.8.1" + "type-fest": "^0.20.2" }, "engines": { "node": ">=8" @@ -766,278 +707,396 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { - "node": ">=4" - } - }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "node": ">=10" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, "engines": { - "node": ">= 0.8.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" }, "engines": { - "node": ">= 0.8.0" + "node": ">=10.10.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "engines": { - "node": ">=4" + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true + }, + "node_modules/@hutson/parse-repository-url": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=6.9.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, "engines": { - "node": ">=6.5.0" + "node": ">=12" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, - "dependencies": { - "glob": "^7.1.3" + "engines": { + "node": ">=12" }, - "bin": { - "rimraf": "bin.js" + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dev": true, "dependencies": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=6.0.0" } }, - "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@restorecommerce/gql-bot": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@restorecommerce/gql-bot/-/gql-bot-1.0.1.tgz", - "integrity": "sha512-+OhSEDQPyBCbSNhebub/yCi9MMWhQGfxvdCqUwShVY5HfJ7udSiokRXHk/UQV6pxtwJTRyKFngEAvHEYZK2YAw==", - "dependencies": { - "apollo-cache-inmemory": "^1.6.6", - "apollo-client": "^2.6.10", - "apollo-link-http": "^1.5.17", - "chalk": "^4.1.2", - "color-hash": "^2.0.1", - "graphql": "^15.5.0", - "graphql-tag": "^2.12.6", - "js-yaml": "^4.1.0", + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@lerna/create": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@lerna/create/-/create-8.1.2.tgz", + "integrity": "sha512-GzScCIkAW3tg3+Yn/MKCH9963bzG+zpjGz2NdfYDlYWI7p0f/SH46v1dqpPpYmZ2E/m3JK8HjTNNNL8eIm8/YQ==", + "dev": true, + "dependencies": { + "@npmcli/run-script": "7.0.2", + "@nx/devkit": ">=17.1.2 < 19", + "@octokit/plugin-enterprise-rest": "6.0.1", + "@octokit/rest": "19.0.11", + "byte-size": "8.1.1", + "chalk": "4.1.0", + "clone-deep": "4.0.1", + "cmd-shim": "6.0.1", + "columnify": "1.6.0", + "conventional-changelog-core": "5.0.1", + "conventional-recommended-bump": "7.0.1", + "cosmiconfig": "^8.2.0", + "dedent": "0.7.0", + "execa": "5.0.0", + "fs-extra": "^11.1.1", + "get-stream": "6.0.0", + "git-url-parse": "13.1.0", + "glob-parent": "5.1.2", + "globby": "11.1.0", + "graceful-fs": "4.2.11", + "has-unicode": "2.0.1", + "ini": "^1.3.8", + "init-package-json": "5.0.0", + "inquirer": "^8.2.4", + "is-ci": "3.0.1", + "is-stream": "2.0.0", + "js-yaml": "4.1.0", + "libnpmpublish": "7.3.0", + "load-json-file": "6.2.0", "lodash": "^4.17.21", - "node-fetch": "^2.6.0", - "promise-streams": "^2.1.1", - "readdirp": "^3.6.0", - "through2": "^4.0.2", - "yaml-document-stream": "^1.1.0" + "make-dir": "4.0.0", + "minimatch": "3.0.5", + "multimatch": "5.0.0", + "node-fetch": "2.6.7", + "npm-package-arg": "8.1.1", + "npm-packlist": "5.1.1", + "npm-registry-fetch": "^14.0.5", + "npmlog": "^6.0.2", + "nx": ">=17.1.2 < 19", + "p-map": "4.0.0", + "p-map-series": "2.1.0", + "p-queue": "6.6.2", + "p-reduce": "^2.1.0", + "pacote": "^17.0.5", + "pify": "5.0.0", + "read-cmd-shim": "4.0.0", + "read-package-json": "6.0.4", + "resolve-from": "5.0.0", + "rimraf": "^4.4.1", + "semver": "^7.3.4", + "signal-exit": "3.0.7", + "slash": "^3.0.0", + "ssri": "^9.0.1", + "strong-log-transformer": "2.1.0", + "tar": "6.1.11", + "temp-dir": "1.0.0", + "upath": "2.0.1", + "uuid": "^9.0.0", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "5.0.0", + "write-file-atomic": "5.0.1", + "write-pkg": "4.0.0", + "yargs": "17.7.2", + "yargs-parser": "21.1.1" }, "engines": { - "node": ">= 12.0.0" + "node": ">=18.0.0" } }, - "node_modules/@restorecommerce/gql-bot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@lerna/create/node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@restorecommerce/gql-bot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@lerna/create/node_modules/glob": { + "version": "9.3.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", + "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", + "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@lerna/create/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/@restorecommerce/gql-bot/node_modules/color-convert": { + "node_modules/@lerna/create/node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, "dependencies": { - "color-name": "~1.1.4" + "balanced-match": "^1.0.0" + } + }, + "node_modules/@lerna/create/node_modules/glob/node_modules/minimatch": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", + "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@restorecommerce/gql-bot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "node_modules/@lerna/create/node_modules/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } }, - "node_modules/@restorecommerce/gql-bot/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@lerna/create/node_modules/minipass": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", + "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", + "dev": true, "engines": { "node": ">=8" } }, - "node_modules/@restorecommerce/gql-bot/node_modules/node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "node_modules/@lerna/create/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, "dependencies": { "whatwg-url": "^5.0.0" }, @@ -1053,820 +1112,863 @@ } } }, - "node_modules/@restorecommerce/gql-bot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/@lerna/create/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, "engines": { "node": ">=8" } }, - "node_modules/@restorecommerce/gql-bot/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/@restorecommerce/gql-bot/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/@restorecommerce/gql-bot/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "node_modules/@lerna/create/node_modules/rimraf": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz", + "integrity": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==", + "dev": true, "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "glob": "^9.2.0" + }, + "bin": { + "rimraf": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@restorecommerce/grpc-client": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@restorecommerce/grpc-client/-/grpc-client-2.0.1.tgz", - "integrity": "sha512-pd+nRyPxL/2zVPa4lMyQXefUYApiZrN+iYp1MqNAS73Azpy5+UHmJHaPpRi0TDFQE9FlCuh6eybSzQ3HAanp1w==", + "node_modules/@lerna/create/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "@grpc/grpc-js": "^1.8.14", - "@grpc/proto-loader": "^0.7.7", - "@restorecommerce/logger": "^1.2.3", - "cls-rtracer": "^2.6.3", - "lodash": "^4.17.21", - "nice-grpc": "^2.1.4", - "nice-grpc-client-middleware-deadline": "^2.0.6", - "protobufjs": "^7.2.3", - "retry": "^0.13.1", - "rxjs": "^7.8.1", - "uuid": "^9.0.0", - "winston": "^3.9.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 12.18.0" + "node": ">=10" } }, - "node_modules/@restorecommerce/grpc-client/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, "dependencies": { - "tslib": "^2.1.0" + "eslint-scope": "5.1.1" } }, - "node_modules/@restorecommerce/grpc-client/node_modules/tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } }, - "node_modules/@restorecommerce/grpc-client/node_modules/winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": ">= 12.0.0" + "node": ">= 8" } }, - "node_modules/@restorecommerce/logger": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@restorecommerce/logger/-/logger-1.2.3.tgz", - "integrity": "sha512-5zOxdEsE71Xl8yHlaEUwk90/M3rttEtqYSO/kRsn/z6Lk0gqtvC8e5O1wa/c02pVXPUc1jztg2GEnLBLEHmOKg==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { - "cls-hooked": "^4.2.2", - "cls-rtracer": "^2.6.3", - "lodash": "^4.17.21", - "source-map-support": "^0.5.21", - "winston": "^3.9.0", - "winston-elasticsearch": "^0.17.2" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, "engines": { - "node": ">= 12.18.0" + "node": ">= 8" } }, - "node_modules/@restorecommerce/logger/node_modules/winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", + "node_modules/@npmcli/agent": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.1.tgz", + "integrity": "sha512-H4FrOVtNyWC8MUwL3UfjOsAihHvT1Pe8POj3JvjXhSTJipsZMtgUALCT4mGyYZNxymkUfOw3PUj6dE4QPp6osQ==", "dev": true, "dependencies": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" }, "engines": { - "node": ">= 12.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/agent/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" } }, - "node_modules/@restorecommerce/rc-grpc-clients": { + "node_modules/@npmcli/fs": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@restorecommerce/rc-grpc-clients/-/rc-grpc-clients-3.1.0.tgz", - "integrity": "sha512-RJTDhGenLciOdxz6RSRSGhx0/6/BduDKpIYUoDQlC1HIMRAsAEMdeIofxgU0htdWLOlfMceEkhdi9p55eOTtUQ==", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", "dev": true, "dependencies": { - "@restorecommerce/grpc-client": "^2.0.1", - "@types/google-protobuf": "^3.15.6", - "google-protobuf": "^3.21.2", - "nice-grpc": "^2.1.4", - "nice-grpc-common": "^2.0.2", - "protobufjs": "^7.2.3", - "rxjs": "^7.8.1", - "ts-proto-descriptors": "^1.9.0" + "semver": "^7.3.5" }, "engines": { - "node": ">= 12.18.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@restorecommerce/rc-grpc-clients/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "tslib": "^2.1.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@restorecommerce/rc-grpc-clients/node_modules/tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - }, - "node_modules/@types/google-protobuf": { - "version": "3.15.6", - "resolved": "https://registry.npmjs.org/@types/google-protobuf/-/google-protobuf-3.15.6.tgz", - "integrity": "sha512-pYVNNJ+winC4aek+lZp93sIKxnXt5qMkuKmaqS3WGuTq0Bw1ZDYNBgzG5kkdtwcv+GmYJGo3yEg6z2cKKAiEdw==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/long": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", - "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.11.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.7.tgz", - "integrity": "sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==" - }, - "node_modules/@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==", - "dev": true - }, - "node_modules/@types/zen-observable": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.2.tgz", - "integrity": "sha512-HrCIVMLjE1MOozVoD86622S7aunluLb2PJdPfb3nYiEtohm8mIB/vyv0Fd37AdeMFrTUQXEunw78YloMA3Qilg==" - }, - "node_modules/@wry/context": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.4.4.tgz", - "integrity": "sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==", + "node_modules/@npmcli/git": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.4.tgz", + "integrity": "sha512-nr6/WezNzuYUppzXRaYu/W4aT5rLxdXqEFupbh6e/ovlYFQ8hpu1UUPV3Ir/YTl+74iXl2ZOMlGzudh9ZPUchQ==", + "dev": true, "dependencies": { - "@types/node": ">=6", - "tslib": "^1.9.3" + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@wry/equality": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.1.11.tgz", - "integrity": "sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==", - "dependencies": { - "tslib": "^1.9.3" + "node_modules/@npmcli/git/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" } }, - "node_modules/abort-controller-x": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/abort-controller-x/-/abort-controller-x-0.4.2.tgz", - "integrity": "sha512-5bgqvgogTIxTkQpkgDoFZHt2YS8uireyOkC4snQG2kaEKs7DI7Tgsu5xysjp9MxG+6OLICBOAL8TtKHzxQrlqw==", - "dev": true + "node_modules/@npmcli/git/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } }, - "node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "node_modules/@npmcli/git/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "bin": { - "acorn": "bin/acorn" + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.4.0" + "node": ">=10" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@npmcli/git/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/after-all-results": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/after-all-results/-/after-all-results-2.0.0.tgz", - "integrity": "sha512-2zHEyuhSJOuCrmas9YV0YL/MFCWLxe1dS6k/ENhgYrb/JqyMnadLN4iIAc9kkZrbElMDyyAGH/0J18OPErOWLg==", - "dev": true, - "optional": true - }, - "node_modules/agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "node_modules/@npmcli/git/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", "dev": true, - "optional": true, "dependencies": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" }, "engines": { - "node": ">= 8.0.0" + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/@npmcli/installed-package-contents": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", + "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "bin": { + "installed-package-contents": "lib/index.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", + "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "node_modules/@npmcli/installed-package-contents/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@npmcli/node-gyp": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", + "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", "dev": true, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/@npmcli/promise-spawn": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.1.tgz", + "integrity": "sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" + "which": "^4.0.0" }, "engines": { - "node": ">=4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/apollo-cache": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.3.5.tgz", - "integrity": "sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==", + "node_modules/@npmcli/promise-spawn/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@npmcli/promise-spawn/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, "dependencies": { - "apollo-utilities": "^1.3.4", - "tslib": "^1.10.0" + "isexe": "^3.1.1" }, - "peerDependencies": { - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/apollo-cache-inmemory": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz", - "integrity": "sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==", + "node_modules/@npmcli/run-script": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz", + "integrity": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==", + "dev": true, "dependencies": { - "apollo-cache": "^1.3.5", - "apollo-utilities": "^1.3.4", - "optimism": "^0.10.0", - "ts-invariant": "^0.4.0", - "tslib": "^1.10.0" + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" }, - "peerDependencies": { - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/apollo-client": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.6.10.tgz", - "integrity": "sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==", + "node_modules/@npmcli/run-script/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@npmcli/run-script/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, "dependencies": { - "@types/zen-observable": "^0.8.0", - "apollo-cache": "1.3.5", - "apollo-link": "^1.0.0", - "apollo-utilities": "1.3.4", - "symbol-observable": "^1.0.2", - "ts-invariant": "^0.4.0", - "tslib": "^1.10.0", - "zen-observable": "^0.8.0" + "isexe": "^3.1.1" }, - "peerDependencies": { - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" - } - }, - "node_modules/apollo-link": { - "version": "1.2.14", - "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.14.tgz", - "integrity": "sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==", - "dependencies": { - "apollo-utilities": "^1.3.0", - "ts-invariant": "^0.4.0", - "tslib": "^1.9.3", - "zen-observable-ts": "^0.8.21" + "bin": { + "node-which": "bin/which.js" }, - "peerDependencies": { - "graphql": "^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0" + "engines": { + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/apollo-link-http": { - "version": "1.5.17", - "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.17.tgz", - "integrity": "sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==", + "node_modules/@nrwl/devkit": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-18.0.4.tgz", + "integrity": "sha512-fKHnjg4/9MdFd2U4e8p6ja9fRa864DCyF70kB4YUB9NuUIgWLQ15Uj6wXC3xjdXmxQRyHDa7ORodVoFzdo4UCg==", + "dev": true, "dependencies": { - "apollo-link": "^1.2.14", - "apollo-link-http-common": "^0.2.16", - "tslib": "^1.9.3" - }, - "peerDependencies": { - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + "@nx/devkit": "18.0.4" } }, - "node_modules/apollo-link-http-common": { - "version": "0.2.16", - "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz", - "integrity": "sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==", + "node_modules/@nrwl/tao": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-18.0.4.tgz", + "integrity": "sha512-/PzGOJevlDQnp5RPXF3WDe+w1cdohGkY+mbJUgDVA4Q5JEPT1DtE10h9GgdHdzkPjVPNYsaI4Vs/53NUdlVHHA==", + "dev": true, "dependencies": { - "apollo-link": "^1.2.14", - "ts-invariant": "^0.4.0", - "tslib": "^1.9.3" + "nx": "18.0.4", + "tslib": "^2.3.0" }, - "peerDependencies": { - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + "bin": { + "tao": "index.js" } }, - "node_modules/apollo-utilities": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.3.4.tgz", - "integrity": "sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==", + "node_modules/@nrwl/tao/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@nx/devkit": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-18.0.4.tgz", + "integrity": "sha512-Vs1AXgOjMJyaWpKopD04dy0FwQ22n5ZR1bFf98Ab4Ht0WJwJE90IpUVAkwI03n5BYxAKOlQnFltsB4gu6Y8mZQ==", + "dev": true, "dependencies": { - "@wry/equality": "^0.1.2", - "fast-json-stable-stringify": "^2.0.0", - "ts-invariant": "^0.4.0", - "tslib": "^1.10.0" + "@nrwl/devkit": "18.0.4", + "ejs": "^3.1.7", + "enquirer": "~2.3.6", + "ignore": "^5.0.4", + "semver": "^7.5.3", + "tmp": "~0.2.1", + "tslib": "^2.3.0", + "yargs-parser": "21.1.1" }, "peerDependencies": { - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + "nx": ">= 16 <= 18" } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "node_modules/@nx/devkit/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "lru-cache": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "node_modules/@nx/devkit/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@nx/nx-darwin-arm64": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-18.0.4.tgz", + "integrity": "sha512-9KJVONxUwdnFHHRNocsg7q5pliOTTfbjlr3rvhLuroV5HeTJFhUipKCQrVEhLy8e4auRdLuSz/HsgpJat3Z2cg==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.7" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 10" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "node_modules/@nx/nx-darwin-x64": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-18.0.4.tgz", + "integrity": "sha512-rFKHjeU0Ngz1R7UJAsbncpqwuFDjUdpcvI783r6s2eP7JoiiwtDBXvDcHiy8Odk0lPYmwDELaFZBhvdENqaDNA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", - "es-shim-unscopables": "^1.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 10" } }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "node_modules/@nx/nx-freebsd-x64": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-18.0.4.tgz", + "integrity": "sha512-jJx47wgRoUxVpQ+WG5+yLdxtJVuVgjphiTMRc0LOfUwKQaEHWyCA0hMK5fNmo0FAHIhGVCb/j2j9FxnCWTWpkg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 10" } }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true - }, - "node_modules/async": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", - "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" - }, - "node_modules/async-cache": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/async-cache/-/async-cache-1.1.0.tgz", - "integrity": "sha512-YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g==", - "deprecated": "No longer maintained. Use [lru-cache](http://npm.im/lru-cache) version 7.6 or higher, and provide an asynchronous `fetchMethod` option.", + "node_modules/@nx/nx-linux-arm-gnueabihf": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-18.0.4.tgz", + "integrity": "sha512-C3qWbFhEMIdTzvAHlIUHecZN3YBu7bx3S0p3gPNGmEMUMbYHP2zMlimBrZIbAxzntyGqWCqhXiFB21QhJ0t1Dw==", + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "dependencies": { - "lru-cache": "^4.0.0" + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" } }, - "node_modules/async-cache/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "node_modules/@nx/nx-linux-arm64-gnu": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-18.0.4.tgz", + "integrity": "sha512-PxVMh9ikp8Q3hKagb66FAsek8O/08GcMF5dXBH7xc5AiQMaZ6Az/gAXOeHp274nmu3StQEpl9Il/YH6Z9f4V0w==", + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" } }, - "node_modules/async-cache/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "node_modules/@nx/nx-linux-arm64-musl": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-18.0.4.tgz", + "integrity": "sha512-Iz7Z4h2/dXJJvBcyeRHa+d3Ncc4Qz+OiGm6iRDXv4zjFm5EyC1tkSZIFNlNiRjmTToNHFr4savrCjCh8wRYejw==", + "cpu": [ + "arm64" + ], "dev": true, - "optional": true + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } }, - "node_modules/async-hook-jl": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/async-hook-jl/-/async-hook-jl-1.7.6.tgz", - "integrity": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==", + "node_modules/@nx/nx-linux-x64-gnu": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-18.0.4.tgz", + "integrity": "sha512-BVLkegIwxHnEB64VBraBxyC01D3C3dVNxq2b4iNaqr4mpWNmos+G/mvcTU3NS7W8ZjpBjlXgdEkpgkl2hMKTEA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "stack-chain": "^1.3.7" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^4.7 || >=6.9 || >=7.3" + "node": ">= 10" } }, - "node_modules/async-value": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/async-value/-/async-value-1.2.2.tgz", - "integrity": "sha512-8rwtYe32OAS1W9CTwvknoyts+mc3ta8N7Pi0h7AjkMaKvsFbr39K+gEfZ7Z81aPXQ1sK5M23lgLy1QfZpcpadQ==", + "node_modules/@nx/nx-linux-x64-musl": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-18.0.4.tgz", + "integrity": "sha512-WgVy41psjCE9uxjFi4P62UrWyKQ1e2IN2FZaIuwXEB9h8OU/+g9PFpL1Cs1llNoEKnapKXX4+9b5FHF9i7EKQw==", + "cpu": [ + "x64" + ], "dev": true, - "optional": true + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } }, - "node_modules/async-value-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/async-value-promise/-/async-value-promise-1.1.1.tgz", - "integrity": "sha512-c2RFDKjJle1rHa0YxN9Ysu97/QBu3Wa+NOejJxsX+1qVDJrkD3JL/GN1B3gaILAEXJXbu/4Z1lcoCHFESe/APA==", + "node_modules/@nx/nx-win32-arm64-msvc": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-18.0.4.tgz", + "integrity": "sha512-YoxhOrVKnS+kcNTnCg9M61cbigzGErYgnlI8kdZzH2ArD7mhv8bfZnSZUInf5Y8oDBVpKusel7AkCSofzSwigA==", + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "dependencies": { - "async-value": "^1.2.2" + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" } }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "node_modules/@nx/nx-win32-x64-msvc": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-18.0.4.tgz", + "integrity": "sha512-FdAdl5buvtUXp8hZVRkK0AZeiCu35l0u+yHsulNViYdh3OXRT1hYJ0CeqpxlLfvbHqB9JzDPtJtG0dpKHH/O0Q==", + "cpu": [ + "x64" + ], "dev": true, "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8.0.0" + "node": ">= 10" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "node_modules/@octokit/auth-token": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz", + "integrity": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">= 14" + } + }, + "node_modules/@octokit/core": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz", + "integrity": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==", + "dev": true, + "dependencies": { + "@octokit/auth-token": "^3.0.0", + "@octokit/graphql": "^5.0.0", + "@octokit/request": "^6.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 14" } }, - "node_modules/babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "node_modules/@octokit/endpoint": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz", + "integrity": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" }, "engines": { - "node": ">=6" + "node": ">= 14" + } + }, + "node_modules/@octokit/graphql": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz", + "integrity": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==", + "dev": true, + "dependencies": { + "@octokit/request": "^6.0.0", + "@octokit/types": "^9.0.0", + "universal-user-agent": "^6.0.0" }, - "peerDependencies": { - "eslint": ">= 4.12.1" + "engines": { + "node": ">= 14" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/@octokit/openapi-types": { + "version": "18.1.1", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.1.1.tgz", + "integrity": "sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==", "dev": true }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "node_modules/@octokit/plugin-enterprise-rest": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz", + "integrity": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==", + "dev": true + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz", + "integrity": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==", "dev": true, - "optional": true, "dependencies": { - "safe-buffer": "5.1.2" + "@octokit/tsconfig": "^1.0.2", + "@octokit/types": "^9.2.3" }, "engines": { - "node": ">= 0.8" + "node": ">= 14" + }, + "peerDependencies": { + "@octokit/core": ">=4" } }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/@octokit/plugin-request-log": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", "dev": true, - "optional": true + "peerDependencies": { + "@octokit/core": ">=3" + } }, - "node_modules/binary-search": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", - "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==", + "node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz", + "integrity": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==", "dev": true, - "optional": true - }, - "node_modules/bluebird": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz", - "integrity": "sha1-U0uQM8AiyVecVro7Plpcqvu2UOE=" + "dependencies": { + "@octokit/types": "^10.0.0" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "@octokit/core": ">=3" + } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/types": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-10.0.0.tgz", + "integrity": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@octokit/openapi-types": "^18.0.0" } }, - "node_modules/breadth-filter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/breadth-filter/-/breadth-filter-2.0.0.tgz", - "integrity": "sha512-thQShDXnFWSk2oVBixRCyrWsFoV5tfOpWKHmxwafHQDNxCfDBk539utpvytNjmlFrTMqz41poLwJvA1MW3z0MQ==", + "node_modules/@octokit/request": { + "version": "6.2.8", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz", + "integrity": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==", "dev": true, - "optional": true, "dependencies": { - "object.entries": "^1.0.4" + "@octokit/endpoint": "^7.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "node_modules/@octokit/request-error": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", + "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", "dev": true, "dependencies": { - "streamsearch": "^1.1.0" + "@octokit/types": "^9.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" }, "engines": { - "node": ">=10.16.0" + "node": ">= 14" } }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "node_modules/@octokit/rest": { + "version": "19.0.11", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz", + "integrity": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==", "dev": true, "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "@octokit/core": "^4.2.1", + "@octokit/plugin-paginate-rest": "^6.1.2", + "@octokit/plugin-request-log": "^1.0.4", + "@octokit/plugin-rest-endpoint-methods": "^7.1.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 14" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/@octokit/tsconfig": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz", + "integrity": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==", + "dev": true + }, + "node_modules/@octokit/types": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz", + "integrity": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "@octokit/openapi-types": "^18.0.0" } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "optional": true, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true + "node_modules/@restorecommerce/dataset-demoshop-catalog-transformer": { + "resolved": "datasets/demo-shop/generator/catalog", + "link": true }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/@restorecommerce/dataset-system-units-transformer": { + "resolved": "datasets/system/generator/unit_codes", + "link": true + }, + "node_modules/@restorecommerce/eslint-config-restorecommerce": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@restorecommerce/eslint-config-restorecommerce/-/eslint-config-restorecommerce-0.1.5.tgz", + "integrity": "sha512-SK9sU5HKu/tBaSilm9wHzujJOIb23Wdj3u8CJcYIaG5Kz77vTS24TEZkVi2mzM5yd6hNEjnkqB/geDcEg1lK1Q==", "dev": true, "dependencies": { - "restore-cursor": "^3.1.0" + "babel-eslint": "^10.0.3", + "eslint": "^6.4.0", + "eslint-config-airbnb-base": "^14.0.0", + "eslint-plugin-import": "^2.18.2", + "eslint-plugin-json": "^1.4.0" }, "engines": { - "node": ">=8" + "node": ">= 10.0.0" } }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">= 10" + "node": ">=0.4.0" } }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/cls-hooked": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/cls-hooked/-/cls-hooked-4.2.2.tgz", - "integrity": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "async-hook-jl": "^1.7.6", - "emitter-listener": "^1.0.1", - "semver": "^5.4.1" + "color-convert": "^1.9.0" }, "engines": { - "node": "^4.7 || >=6.9 || >=7.3 || >=8.2.1" + "node": ">=4" } }, - "node_modules/cls-hooked/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "bin": { - "semver": "bin/semver" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/cls-rtracer": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/cls-rtracer/-/cls-rtracer-2.6.3.tgz", - "integrity": "sha512-O7M/m2M/KfT9v+q7ka9nmsadS67ce9P8+1Zgm6VFamK56oFd1iCoJ9m8hYKUQpK4+RofyaexxHJlOBkxqCDs3Q==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "uuid": "^9.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=12.17.0 <13.0.0 || >=13.14.0 <14.0.0 || >=14.0.0" - } - }, - "node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" + "node": ">=4" } }, - "node_modules/color-convert": { + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", @@ -1875,1515 +1977,1351 @@ "color-name": "1.1.3" } }, - "node_modules/color-hash": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-hash/-/color-hash-2.0.1.tgz", - "integrity": "sha512-/wIYAQ3xL9ruURLmDbxAsXEsivaOfwWDUVy+zbWJZL3bnNQIDNSmmqbkNzeTOQvDdiz11Kb010UlJN7hUXLg/w==" - }, - "node_modules/color-name": { + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dev": true, - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "node_modules/commander": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.4.1.tgz", - "integrity": "sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==", + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, "engines": { - "node": "^12.20.0 || >=14" + "node": ">=4.8" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "node_modules/console-log-level": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/console-log-level/-/console-log-level-1.4.1.tgz", - "integrity": "sha512-VZzbIORbP+PPcN/gg3DXClTLPLg5Slwd5fL2MIc+o1qZ4BXBvWyc6QxPk6T/Mkr6IVjRpoAGf32XxP3ZWMVRcQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "optional": true + "bin": { + "semver": "bin/semver" + } }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "optional": true, "engines": { - "node": ">= 0.6" + "node": ">=0.8.0" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true, - "optional": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", + "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", "dev": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/cycle": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", - "integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI=", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "engines": { - "node": ">= 12" + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint-config-airbnb-base": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", + "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", "dev": true, "dependencies": { - "ms": "2.1.2" + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" }, "engines": { - "node": ">=6.0" + "node": ">= 6" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "peerDependencies": { + "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", + "eslint-plugin-import": "^2.22.1" } }, - "node_modules/deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint-plugin-json": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz", + "integrity": "sha512-CECvgRAWtUzuepdlPWd+VA7fhyF9HT183pZnl8wQw5x699Mk/MbME/q8xtULBfooi3LUbj6fToieNmsvUcDxWA==", "dev": true, - "optional": true, + "dependencies": { + "vscode-json-languageservice": "^3.2.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8.0.0" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/eslint/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" + "ansi-regex": "^4.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "optional": true, "engines": { - "node": ">= 0.8" + "node": ">=6" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" }, "engines": { "node": ">=6.0.0" } }, - "node_modules/dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, "engines": { - "node": ">=12" + "node": ">=4.0" } }, - "node_modules/elastic-apm-http-client": { - "version": "11.4.0", - "resolved": "https://registry.npmjs.org/elastic-apm-http-client/-/elastic-apm-http-client-11.4.0.tgz", - "integrity": "sha512-DxPy8MFrcL04qxMG4sxmI5yIKrFCIhJc2xx0eupE3qjCIIPHeLJaUrjFbQbsAnnuhC9sljWsEebtFweHj+Vmug==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", "dev": true, - "optional": true, "dependencies": { - "agentkeepalive": "^4.2.1", - "breadth-filter": "^2.0.0", - "end-of-stream": "^1.4.4", - "fast-safe-stringify": "^2.0.7", - "fast-stream-to-buffer": "^1.0.0", - "object-filter-sequence": "^1.0.0", - "readable-stream": "^3.4.0", - "semver": "^6.3.0", - "stream-chopper": "^3.0.1" + "flat-cache": "^2.0.1" }, "engines": { - "node": "^8.6.0 || 10 || >=12" + "node": ">=4" } }, - "node_modules/elastic-apm-node": { - "version": "3.46.0", - "resolved": "https://registry.npmjs.org/elastic-apm-node/-/elastic-apm-node-3.46.0.tgz", - "integrity": "sha512-MuM7Xe+5K7AkfFqrKWrvBJVFcS+hPcTKGj7yR/0/WHR5/r/ZjkBEX/t2bUMjgyHHG4lu5LH/RN86ScGdw1GG2w==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", "dev": true, - "optional": true, "dependencies": { - "@elastic/ecs-pino-format": "^1.2.0", - "@opentelemetry/api": "^1.4.1", - "@opentelemetry/core": "^1.11.0", - "@opentelemetry/sdk-metrics": "^1.12.0", - "after-all-results": "^2.0.0", - "async-cache": "^1.1.0", - "async-value-promise": "^1.1.1", - "basic-auth": "^2.0.1", - "cookie": "^0.5.0", - "core-util-is": "^1.0.2", - "elastic-apm-http-client": "11.4.0", - "end-of-stream": "^1.4.4", - "error-callsites": "^2.0.4", - "error-stack-parser": "^2.0.6", - "escape-string-regexp": "^4.0.0", - "fast-safe-stringify": "^2.0.7", - "http-headers": "^3.0.2", - "is-native": "^1.0.1", - "lru-cache": "^6.0.0", - "measured-reporting": "^1.51.1", - "module-details-from-path": "^1.0.3", - "monitor-event-loop-delay": "^1.0.0", - "object-filter-sequence": "^1.0.0", - "object-identity-map": "^1.0.2", - "original-url": "^1.2.3", - "pino": "^6.11.2", - "relative-microtime": "^2.0.0", - "require-in-the-middle": "^7.0.1", - "semver": "^6.3.0", - "shallow-clone-shim": "^2.0.0", - "source-map": "^0.8.0-beta.0", - "sql-summary": "^1.0.1", - "traverse": "^0.6.6", - "unicode-byte-truncate": "^1.0.0" + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" }, "engines": { - "node": ">=8.6.0" + "node": ">=4" } }, - "node_modules/elastic-apm-node/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "optional": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, "engines": { - "node": ">=10" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/elastic-apm-node/node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "optional": true, "dependencies": { - "whatwg-url": "^7.0.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">= 8" + "node": ">= 6" } }, - "node_modules/emitter-listener": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/emitter-listener/-/emitter-listener-1.1.2.tgz", - "integrity": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", "dev": true, "dependencies": { - "shimmer": "^1.2.0" + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", - "dev": true - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "optional": true, - "dependencies": { - "once": "^1.4.0" + "engines": { + "node": ">=4" } }, - "node_modules/error-callsites": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/error-callsites/-/error-callsites-2.0.4.tgz", - "integrity": "sha512-V877Ch4FC4FN178fDK1fsrHN4I1YQIBdtjKrHh3BUHMnh3SMvwUVrqkaOgDpUuevgSNna0RBq6Ox9SGlxYrigA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true, - "optional": true, "engines": { - "node": ">=6.x" + "node": ">= 4" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, "dependencies": { - "is-arrayish": "^0.2.1" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/error-ex/node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "optional": true, "dependencies": { - "stackframe": "^1.3.4" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 0.4" + "node": ">=7.0.0" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "has": "^1.0.3" + "engines": { + "node": ">=8" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, "engines": { - "node": ">=0.8.0" + "node": ">= 0.8.0" } }, - "node_modules/eslint": { - "version": "8.26.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz", - "integrity": "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.3.3", - "@humanwhocodes/config-array": "^0.11.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.15.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" + "minimist": "^1.2.6" }, "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "mkdirp": "bin/cmd.js" } }, - "node_modules/eslint-config-airbnb-base": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", - "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "dependencies": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.5", - "semver": "^6.3.0" + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" }, "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "peerDependencies": { - "eslint": "^7.32.0 || ^8.2.0", - "eslint-plugin-import": "^2.25.2" + "node": ">= 0.8.0" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, - "dependencies": { - "debug": "^3.2.7", - "resolve": "^1.20.0" + "engines": { + "node": ">=4" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" + "glob": "^7.1.3" }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "bin": { + "rimraf": "bin.js" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" } }, - "node_modules/eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" + "shebang-regex": "^1.0.0" }, "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/eslint-plugin-json": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-3.1.0.tgz", - "integrity": "sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "dev": true, "dependencies": { - "lodash": "^4.17.21", - "vscode-json-languageservice": "^4.1.6" + "prelude-ls": "~1.1.2" }, "engines": { - "node": ">=12.0" + "node": ">= 0.8.0" } }, - "node_modules/eslint-plugin-json/node_modules/vscode-json-languageservice": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz", - "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/vscode-json-languageservice": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.11.0.tgz", + "integrity": "sha512-QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==", "dev": true, "dependencies": { "jsonc-parser": "^3.0.0", - "vscode-languageserver-textdocument": "^1.0.3", - "vscode-languageserver-types": "^3.16.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "3.16.0-next.2", "vscode-nls": "^5.0.0", - "vscode-uri": "^3.0.3" + "vscode-uri": "^2.1.2" } }, - "node_modules/eslint-plugin-json/node_modules/vscode-languageserver-types": { - "version": "3.17.2", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.2.tgz", - "integrity": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/vscode-languageserver-types": { + "version": "3.16.0-next.2", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz", + "integrity": "sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==", "dev": true }, - "node_modules/eslint-plugin-json/node_modules/vscode-uri": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.6.tgz", - "integrity": "sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/vscode-uri": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", + "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==", "dev": true }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/@restorecommerce/eslint-config-restorecommerce/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/@restorecommerce/gql-bot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@restorecommerce/gql-bot/-/gql-bot-1.0.6.tgz", + "integrity": "sha512-9q22xsuSn5agqTFkZaiUy7JfdQW7vEKSi6d9Wjl3cGO3R7jZfMG4HbdJngvHqAxs40X5HBQdqyir4Li82cKjfA==", + "dependencies": { + "apollo-cache-inmemory": "^1.6.6", + "apollo-client": "^2.6.10", + "apollo-link-http": "^1.5.17", + "chalk": "^4.1.2", + "color-hash": "^2.0.2", + "graphql": "^15.5.0", + "graphql-tag": "^2.12.6", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "node-fetch": "^2.6.0", + "promise-streams": "^2.1.1", + "readdirp": "^3.6.0", + "through2": "^4.0.2", + "yaml-document-stream": "^1.1.0" }, "engines": { - "node": ">=8.0.0" + "node": ">= 12.0.0" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/@sigstore/bundle": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz", + "integrity": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "@sigstore/protobuf-specs": "^0.2.0" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "node_modules/@sigstore/core": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-1.0.0.tgz", + "integrity": "sha512-dW2qjbWLRKGu6MIDUTBuJwXCnR8zivcSpf5inUzk7y84zqy/dji0/uahppoIgMoKeR+6pUZucrwHfkQQtiG9Rw==", "dev": true, "engines": { - "node": ">=10" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz", + "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==", "dev": true, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@sigstore/sign": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz", + "integrity": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@sigstore/bundle": "^1.1.0", + "@sigstore/protobuf-specs": "^0.2.0", + "make-fetch-happen": "^11.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "node_modules/@sigstore/sign/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "debug": "4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 6.0.0" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@sigstore/sign/node_modules/cacache": { + "version": "17.1.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz", + "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/@sigstore/sign/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">= 6" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "node_modules/@sigstore/sign/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 6" } }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/@sigstore/sign/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=12" } }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/@sigstore/sign/node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", + "dev": true, + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/sign/node_modules/make-fetch-happen/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, "engines": { - "node": ">=4.0" + "node": ">=8" } }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/@sigstore/sign/node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "minipass": "^3.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">= 8" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "node_modules/@sigstore/sign/node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "type-fest": "^0.20.2" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@sigstore/sign/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/eslint/node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "node_modules/@sigstore/sign/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, "engines": { - "node": ">= 4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@sigstore/tuf": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz", + "integrity": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@sigstore/protobuf-specs": "^0.2.0", + "tuf-js": "^1.1.7" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/@sigstore/verify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-1.1.0.tgz", + "integrity": "sha512-1fTqnqyTBWvV7cftUUFtDcHPdSox0N3Ub7C0lRyReYx4zZUlNTZjCV+HPy4Lre+r45dV7Qx5JLKvqqsgxuyYfg==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "@sigstore/bundle": "^2.2.0", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/espree": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", - "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", + "node_modules/@sigstore/verify/node_modules/@sigstore/bundle": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.2.0.tgz", + "integrity": "sha512-5VI58qgNs76RDrwXNhpmyN/jKpq9evV/7f1XrcqcAfvxDl5SeVY/I5Rmfe96ULAV7/FK5dge9RBKGBJPhL1WsQ==", "dev": true, "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "@sigstore/protobuf-specs": "^0.3.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/espree/node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "node_modules/@sigstore/verify/node_modules/@sigstore/protobuf-specs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.0.tgz", + "integrity": "sha512-zxiQ66JFOjVvP9hbhGj/F/qNdsZfkGb/dVXSanNRNuAzMlr4MC95voPUBX8//ZNnmv3uSYzdfR/JSkrgvZTGxA==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, "engines": { - "node": ">=0.4.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 10" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/@tufjs/canonical-json": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", + "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "node_modules/@tufjs/models": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", + "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", "dev": true, "dependencies": { - "estraverse": "^5.1.0" + "@tufjs/canonical-json": "1.0.0", + "minimatch": "^9.0.0" }, "engines": { - "node": ">=0.10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "node_modules/@tufjs/models/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/@tufjs/models/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "estraverse": "^5.2.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=4.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true, - "engines": { - "node": ">=4.0" - } + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, + "node_modules/@types/node": { + "version": "20.11.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", + "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==", "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" + "undici-types": "~5.26.4" } }, - "node_modules/eyes": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", - "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=", - "engines": { - "node": "> 0.1.90" - } + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "node_modules/@types/zen-observable": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.7.tgz", + "integrity": "sha512-LKzNTjj+2j09wAo/vvVjzgw5qckJJzhdGgWHW7j69QIGdq/KnZrMAMIHQiWGl3Ccflh5/CudBAntTPYdprPltA==" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", "dev": true }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "node_modules/@wry/context": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.4.4.tgz", + "integrity": "sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==", + "dependencies": { + "@types/node": ">=6", + "tslib": "^1.9.3" + } }, - "node_modules/fast-json-stringify": { - "version": "2.7.13", - "resolved": "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-2.7.13.tgz", - "integrity": "sha512-ar+hQ4+OIurUGjSJD1anvYSDcUflywhKjfxnsW4TBTD7+u0tJufv6DKRWoQk3vI6YBOWMoz0TQtfbe7dxbQmvA==", - "dev": true, - "optional": true, + "node_modules/@wry/equality": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.1.11.tgz", + "integrity": "sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==", "dependencies": { - "ajv": "^6.11.0", - "deepmerge": "^4.2.2", - "rfdc": "^1.2.0", - "string-similarity": "^4.0.1" - }, - "engines": { - "node": ">= 10.0.0" + "tslib": "^1.9.3" } }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", "dev": true }, - "node_modules/fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", + "node_modules/@yarnpkg/parsers": { + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", "dev": true, - "optional": true, + "dependencies": { + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" + }, "engines": { - "node": ">=6" + "node": ">=14.15.0" } }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", - "dev": true, - "optional": true - }, - "node_modules/fast-stream-to-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-stream-to-buffer/-/fast-stream-to-buffer-1.0.0.tgz", - "integrity": "sha512-bI/544WUQlD2iXBibQbOMSmG07Hay7YrpXlKaeGTPT7H7pC0eitt3usak5vUwEvCGK/O7rUAM3iyQValGU22TQ==", + "node_modules/@yarnpkg/parsers/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "optional": true, "dependencies": { - "end-of-stream": "^1.4.1" + "sprintf-js": "~1.0.2" } }, - "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "node_modules/@yarnpkg/parsers/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==", - "dev": true - }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" - } - ], - "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": "^12.20 || >= 14.13" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/fetch-blob/node_modules/web-streams-polyfill": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", - "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", - "engines": { - "node": ">= 8" - } + "node_modules/@yarnpkg/parsers/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@yarnpkg/parsers/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/@zkochan/js-yaml": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", + "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "argparse": "^2.0.1" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/abbrev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=0.4.0" } }, - "node_modules/flatstr": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", - "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "optional": true - }, - "node_modules/flatted": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", - "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==", - "dev": true + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", + "node_modules/add-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", + "integrity": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==", "dev": true }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", "dev": true, "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/formdata-node": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", - "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", - "dependencies": { - "node-domexception": "1.0.0", - "web-streams-polyfill": "4.0.0-beta.3" + "debug": "^4.3.4" }, "engines": { - "node": ">= 12.20" + "node": ">= 14" } }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "dev": true, "dependencies": { - "fetch-blob": "^3.1.2" + "humanize-ms": "^1.2.1" }, "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/forwarded-parse": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/forwarded-parse/-/forwarded-parse-2.1.2.tgz", - "integrity": "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==", - "dev": true, - "optional": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 8.0.0" } }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=8" } }, - "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "type-fest": "^0.21.3" }, "engines": { - "node": "*" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "define-properties": "^1.1.3" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/google-protobuf": { - "version": "3.21.2", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.2.tgz", - "integrity": "sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==", - "dev": true - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, + "node_modules/apollo-cache": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.3.5.tgz", + "integrity": "sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==", "dependencies": { - "get-intrinsic": "^1.1.3" + "apollo-utilities": "^1.3.4", + "tslib": "^1.10.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "node_modules/apollo-cache-inmemory": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz", + "integrity": "sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==", + "dependencies": { + "apollo-cache": "^1.3.5", + "apollo-utilities": "^1.3.4", + "optimism": "^0.10.0", + "ts-invariant": "^0.4.0", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true + "node_modules/apollo-client": { + "version": "2.6.10", + "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.6.10.tgz", + "integrity": "sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==", + "dependencies": { + "@types/zen-observable": "^0.8.0", + "apollo-cache": "1.3.5", + "apollo-link": "^1.0.0", + "apollo-utilities": "1.3.4", + "symbol-observable": "^1.0.2", + "ts-invariant": "^0.4.0", + "tslib": "^1.10.0", + "zen-observable": "^0.8.0" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } }, - "node_modules/graphql": { - "version": "15.5.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.5.0.tgz", - "integrity": "sha512-OmaM7y0kaK31NKG31q4YbD2beNYa6jBBKtMFT6gLYJljHLJr42IqJ8KX08u3Li/0ifzTU5HjmoOOrwa5BRLeDA==", - "engines": { - "node": ">= 10.x" + "node_modules/apollo-link": { + "version": "1.2.14", + "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.14.tgz", + "integrity": "sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==", + "dependencies": { + "apollo-utilities": "^1.3.0", + "ts-invariant": "^0.4.0", + "tslib": "^1.9.3", + "zen-observable-ts": "^0.8.21" + }, + "peerDependencies": { + "graphql": "^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0" } }, - "node_modules/graphql-tag": { - "version": "2.12.6", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", - "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "node_modules/apollo-link-http": { + "version": "1.5.17", + "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.17.tgz", + "integrity": "sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==", "dependencies": { - "tslib": "^2.1.0" + "apollo-link": "^1.2.14", + "apollo-link-http-common": "^0.2.16", + "tslib": "^1.9.3" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } + }, + "node_modules/apollo-link-http-common": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz", + "integrity": "sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==", + "dependencies": { + "apollo-link": "^1.2.14", + "ts-invariant": "^0.4.0", + "tslib": "^1.9.3" }, "peerDependencies": { - "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" } }, - "node_modules/graphql-tag/node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "node_modules/apollo-utilities": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.3.4.tgz", + "integrity": "sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==", + "dependencies": { + "@wry/equality": "^0.1.2", + "fast-json-stable-stringify": "^2.0.0", + "ts-invariant": "^0.4.0", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", "dev": true, "dependencies": { - "function-bind": "^1.1.1" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">= 0.4.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { + "node_modules/array-differ": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/has-property-descriptors": { + "node_modules/array-ify": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/has-symbols": { + "node_modules/array.prototype.filter": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, "engines": { "node": ">= 0.4" }, @@ -3391,13 +3329,17 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/array.prototype.findlastindex": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", + "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -3406,262 +3348,359 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, "dependencies": { - "function-bind": "^1.1.2" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/hpagent": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz", - "integrity": "sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/http-headers": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/http-headers/-/http-headers-3.0.2.tgz", - "integrity": "sha512-87E1I+2Wg4dxxz4rcxElo3dxO/w1ZtgL1yA0Sb6vH3qU16vRKq1NjWQv9SCY3ly2OQROcoxHZOUpmelS+k6wOw==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, - "optional": true, "dependencies": { - "next-line": "^1.1.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, - "optional": true, "dependencies": { - "ms": "^2.0.0" + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true, "engines": { - "node": ">= 4" + "node": ">=4" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz", + "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==", "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "node_modules/axios": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", + "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", "dev": true, - "engines": { - "node": ">=0.8.19" + "dependencies": { + "follow-redirects": "^1.15.4", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, - "node_modules/inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" - }, - "engines": { - "node": ">=8.0.0" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/bluebird": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz", + "integrity": "sha512-UfFSr22dmHPQqPP9XWHRhq+gWnHCYguQGkXQlbyPtW5qTnhFWA8/iXg765tH0cAjy7l/zPJ1aBTO0g5XgA7kvQ==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" }, - "engines": { - "node": ">=10" + "bin": { + "browserslist": "cli.js" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "semver": "^7.0.0" } }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/builtins/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "node_modules/byte-size": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz", + "integrity": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, "engines": { - "node": ">= 0.4" + "node": ">=12.17" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/cacache": { + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.2.tgz", + "integrity": "sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "dev": true + "node_modules/cacache/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/cacache/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", "dev": true, "dependencies": { - "has-bigints": "^1.0.1" + "minipass": "^7.0.3" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -3670,821 +3709,934 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, "dependencies": { - "has": "^1.0.3" + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "node_modules/caniuse-lite": { + "version": "1.0.30001587", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz", + "integrity": "sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/is-finite": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, - "optional": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "restore-cursor": "^3.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/is-integer": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.7.tgz", - "integrity": "sha512-RPQc/s9yBHSvpi+hs9dYiJ2cuFeU6x3TyyIp8O2H6SKEltIvJOzRj9ToyvcStDvPR/pS4rxgr1oBFajQjZ2Szg==", + "node_modules/cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", "dev": true, - "optional": true, - "dependencies": { - "is-finite": "^1.0.0" + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-native": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-native/-/is-native-1.0.1.tgz", - "integrity": "sha512-I4z9hx+4u3/zyvpvGtAR+n7SodJugE+i2jiS8yfq1A9QAZY0KldLQz0SBptLC9ti7kBlpghWUwTKE2BA62eCcw==", + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true, - "optional": true, - "dependencies": { - "is-nil": "^1.0.0", - "to-source-code": "^1.0.0" + "engines": { + "node": ">= 10" } }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12" } }, - "node_modules/is-nil": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-nil/-/is-nil-1.0.1.tgz", - "integrity": "sha512-m2Rm8PhUFDNNhgvwZJjJG74a9h5CHU0fkA8WT+WGlCjyEbZ2jPwgb+ZxHu4np284EqNVyOsgppReK4qy/TwEwg==", - "dev": true, - "optional": true - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.8" } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "isobject": "^3.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/cmd-shim": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.1.tgz", + "integrity": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==", "dev": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "has-tostringtag": "^1.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=7.0.0" } }, - "node_modules/is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "node_modules/color-hash": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-hash/-/color-hash-2.0.2.tgz", + "integrity": "sha512-6exeENAqBTuIR1wIo36mR8xVVBv6l1hSLd7Qmvf6158Ld1L15/dbahR9VUOiX7GmGJBCnQyS0EY+I8x+wa7egg==" + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/columnify": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", + "integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==", "dev": true, "dependencies": { - "has-symbols": "^1.0.1" + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.0.0" } }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "dependencies": { - "which-typed-array": "^1.1.11" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/isexe": { + "node_modules/concat-stream": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } }, - "node_modules/js-sdsl": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz", - "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==", + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/conventional-changelog-angular": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", + "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", + "dev": true, "dependencies": { - "argparse": "^2.0.1" + "compare-func": "^2.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=16" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "node_modules/conventional-changelog-core": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz", + "integrity": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==", + "dev": true, + "dependencies": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^6.0.0", + "conventional-commits-parser": "^4.0.0", + "dateformat": "^3.0.3", + "get-pkg-repo": "^4.2.1", + "git-raw-commits": "^3.0.0", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^5.0.0", + "normalize-package-data": "^3.0.3", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true + "node_modules/conventional-changelog-preset-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz", + "integrity": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==", + "dev": true, + "engines": { + "node": ">=14" + } }, - "node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "node_modules/conventional-changelog-writer": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz", + "integrity": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==", "dev": true, "dependencies": { - "minimist": "^1.2.0" + "conventional-commits-filter": "^3.0.0", + "dateformat": "^3.0.3", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "meow": "^8.1.2", + "semver": "^7.0.0", + "split": "^1.0.1" }, "bin": { - "json5": "lib/cli.js" + "conventional-changelog-writer": "cli.js" + }, + "engines": { + "node": ">=14" } }, - "node_modules/jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", - "dev": true - }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", - "dev": true - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/conventional-changelog-writer/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 0.8.0" + "node": ">=10" } }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "node_modules/conventional-commits-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz", + "integrity": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "lodash.ismatch": "^4.4.0", + "modify-values": "^1.0.1" }, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/conventional-commits-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz", + "integrity": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==", "dev": true, "dependencies": { - "p-locate": "^5.0.0" + "is-text-path": "^1.0.1", + "JSONStream": "^1.3.5", + "meow": "^8.1.2", + "split2": "^3.2.2" }, - "engines": { - "node": ">=10" + "bin": { + "conventional-commits-parser": "cli.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=14" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.omit": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==", - "dev": true - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "dev": true, - "optional": true - }, - "node_modules/logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", + "node_modules/conventional-recommended-bump": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz", + "integrity": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==", "dev": true, "dependencies": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" + "concat-stream": "^2.0.0", + "conventional-changelog-preset-loader": "^3.0.0", + "conventional-commits-filter": "^3.0.0", + "conventional-commits-parser": "^4.0.0", + "git-raw-commits": "^3.0.0", + "git-semver-tags": "^5.0.0", + "meow": "^8.1.2" + }, + "bin": { + "conventional-recommended-bump": "cli.js" + }, + "engines": { + "node": ">=14" } }, - "node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "peer": true + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, - "optional": true, "dependencies": { - "yallist": "^4.0.0" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/mapcap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mapcap/-/mapcap-1.0.0.tgz", - "integrity": "sha512-KcNlZSlFPx+r1jYZmxEbTVymG+dIctf10WmWkuhrhrblM+KMoF77HelwihL5cxYlORye79KoR4IlOOk99lUJ0g==", - "dev": true, - "optional": true - }, - "node_modules/measured-core": { - "version": "1.51.1", - "resolved": "https://registry.npmjs.org/measured-core/-/measured-core-1.51.1.tgz", - "integrity": "sha512-DZQP9SEwdqqYRvT2slMK81D/7xwdxXosZZBtLVfPSo6y5P672FBTbzHVdN4IQyUkUpcVOR9pIvtUy5Ryl7NKyg==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "optional": true, "dependencies": { - "binary-search": "^1.3.3", - "optional-js": "^2.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">= 5.12" + "node": ">= 8" } }, - "node_modules/measured-reporting": { - "version": "1.51.1", - "resolved": "https://registry.npmjs.org/measured-reporting/-/measured-reporting-1.51.1.tgz", - "integrity": "sha512-JCt+2u6XT1I5lG3SuYqywE0e62DJuAzBcfMzWGUhIYtPQV2Vm4HiYt/durqmzsAbZV181CEs+o/jMKWJKkYIWw==", - "dev": true, - "optional": true, + "node_modules/csv-parser": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/csv-parser/-/csv-parser-2.3.5.tgz", + "integrity": "sha512-LCHolC4AlNwL+5EuD5LH2VVNKpD8QixZW2zzK1XmrVYUaslFY4c5BooERHOCIubG9iv/DAyFjs4x0HvWNZuyWg==", "dependencies": { - "console-log-level": "^1.4.1", - "mapcap": "^1.0.0", - "measured-core": "^1.51.1", - "optional-js": "^2.0.0" + "minimist": "^1.2.0", + "through2": "^3.0.1" + }, + "bin": { + "csv-parser": "bin/csv-parser" }, "engines": { - "node": ">= 5.12" + "node": ">= 8.16.0" } }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "node_modules/csv-parser/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", "dev": true, "engines": { - "node": ">= 0.10.0" + "node": ">=8" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", "dev": true, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "ms": "2.1.2" }, "engines": { - "node": "*" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, "dependencies": { - "minimist": "^1.2.5" + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/module-details-from-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz", - "integrity": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==", - "dev": true, - "optional": true - }, - "node_modules/monitor-event-loop-delay": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/monitor-event-loop-delay/-/monitor-event-loop-delay-1.0.0.tgz", - "integrity": "sha512-YRIr1exCIfBDLZle8WHOfSo7Xg3M+phcZfq9Fx1L6Abo+atGp7cge5pM7PjyBn4s1oZI/BRD4EMrzQBbPpVb5Q==", + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, - "optional": true + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/next-line": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-line/-/next-line-1.1.0.tgz", - "integrity": "sha512-+I10J3wKNoKddNxn0CNpoZ3eTZuqxjNM3b1GImVx22+ePI+Y15P8g/j3WsbP0fhzzrFzrtjOAoq5NCCucswXOQ==", + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, - "optional": true + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/nice-grpc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/nice-grpc/-/nice-grpc-2.1.4.tgz", - "integrity": "sha512-ZCSnFxg/k6PM1zZ2u/SbuySTrpK7q4klwRE4ymAdiMfZM3Rl1LRUdqUslKSbSjd9XQHzi80Y5JJL5fE58lSrVA==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "dependencies": { - "@grpc/grpc-js": "^1.7.3", - "abort-controller-x": "^0.4.0", - "nice-grpc-common": "^2.0.2" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nice-grpc-client-middleware-deadline": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/nice-grpc-client-middleware-deadline/-/nice-grpc-client-middleware-deadline-2.0.6.tgz", - "integrity": "sha512-bbatthC3ElTyDgyig0w7FKhAMeuKvLiNO0W9ehxGgTqGV3KQnyUvTQvvOifu5PQ3pFbB/my9Fq0p9L7VDJRBBA==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, - "dependencies": { - "nice-grpc-common": "^2.0.2" + "engines": { + "node": ">=8" } }, - "node_modules/nice-grpc-common": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/nice-grpc-common/-/nice-grpc-common-2.0.2.tgz", - "integrity": "sha512-7RNWbls5kAL1QVUOXvBsv1uO0wPQK3lHv+cY1gwkTzirnG1Nop4cBJZubpgziNbaVc/bl9QJcyvsf/NQxa3rjQ==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "dependencies": { - "ts-error": "^1.0.6" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, - "node_modules/node-domexception": { + "node_modules/delegates": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "node_modules/detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==", + "dev": true, "engines": { - "node": ">=10.5.0" + "node": ">=4" } }, - "node_modules/node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/node-xlsx": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/node-xlsx/-/node-xlsx-0.23.0.tgz", - "integrity": "sha512-r3KaSZSsSrK92rbPXnX/vDdxURmPPik0rjJ3A+Pybzpjyrk4G6WyGfj8JIz5dMMEpCmWVpmO4qoVPBxnpLv/8Q==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz" - }, - "bin": { - "node-xlsx": "lib/bin/cli.js" + "path-type": "^4.0.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=8" } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "bin": { - "npm-run-all": "bin/npm-run-all/index.js", - "run-p": "bin/run-p/index.js", - "run-s": "bin/run-s/index.js" + "esutils": "^2.0.2" }, "engines": { - "node": ">= 4" + "node": ">=6.0.0" } }, - "node_modules/npm-run-all/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "is-obj": "^2.0.0" }, "engines": { - "node": ">=4.8" + "node": ">=8" } }, - "node_modules/npm-run-all/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true, + "node_modules/dotenv": { + "version": "16.4.4", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.4.tgz", + "integrity": "sha512-XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg==", "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" } }, - "node_modules/npm-run-all/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/dotenv-expand": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", "dev": true, - "bin": { - "semver": "bin/semver" + "engines": { + "node": ">=12" } }, - "node_modules/npm-run-all/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "dev": true, "dependencies": { - "shebang-regex": "^1.0.0" + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/npm-run-all/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/electron-to-chromium": { + "version": "1.4.672", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.672.tgz", + "integrity": "sha512-YYCy+goe3UqZqa3MOQCI5Mx/6HdBLzXL/mkbGCEWL3sP3Z1BP9zqAzeD3YEmLZlespYGFtyM8tRp5i2vfaUGCA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "peer": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" } }, - "node_modules/npm-run-all/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "optional": true, "dependencies": { - "isexe": "^2.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/object-filter-sequence": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/object-filter-sequence/-/object-filter-sequence-1.0.0.tgz", - "integrity": "sha512-CsubGNxhIEChNY4cXYuA6KXafztzHqzLLZ/y3Kasf3A+sa3lL9thq3z+7o0pZqzEinjXT6lXDPAfVWI59dUyzQ==", + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "optional": true + "dependencies": { + "once": "^1.4.0" + } }, - "node_modules/object-identity-map": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/object-identity-map/-/object-identity-map-1.0.2.tgz", - "integrity": "sha512-a2XZDGyYTngvGS67kWnqVdpoaJWsY7C1GhPJvejWAFCsUioTAaiTu8oBad7c6cI4McZxr4CmvnZeycK05iav5A==", + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, - "optional": true, "dependencies": { - "object.entries": "^1.1.0" + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" } }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz", + "integrity": "sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.7", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.2", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "hasown": "^2.0.1", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.0", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.1", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -4493,1015 +4645,1036 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" } }, - "node_modules/object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", "dev": true, "dependencies": { - "wrappy": "1" + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, "dependencies": { - "fn.name": "1.x.x" + "hasown": "^2.0.0" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "mimic-fn": "^2.1.0" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/optimism": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.10.3.tgz", - "integrity": "sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==", - "dependencies": { - "@wry/context": "^0.4.0" + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" } }, - "node_modules/optional-js": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/optional-js/-/optional-js-2.3.0.tgz", - "integrity": "sha512-B0LLi+Vg+eko++0z/b8zIv57kp7HKEzaPJo7LowJXMUKYdf+3XJGu/cw03h/JhIOsLnP+cG5QnTHAuicjA5fMw==", + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "optional": true + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": ">= 0.8.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/original-url": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/original-url/-/original-url-1.2.3.tgz", - "integrity": "sha512-BYm+pKYLtS4mVe/mgT3YKGtWV5HzN/XKiaIu1aK4rsxyjuHeTW9N+xVBEpJcY1onB3nccfH0RbzUEoimMqFUHQ==", + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", "dev": true, - "optional": true, "dependencies": { - "forwarded-parse": "^2.1.0" + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "ms": "^2.1.1" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "debug": "^3.2.7" }, "engines": { - "node": ">=10" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" + "ms": "^2.1.1" } }, - "node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/eslint-plugin-json": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-3.1.0.tgz", + "integrity": "sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==", "dev": true, + "dependencies": { + "lodash": "^4.17.21", + "vscode-json-languageservice": "^4.1.6" + }, "engines": { - "node": ">=8" + "node": ">=12.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { - "pify": "^3.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/picomatch": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz", - "integrity": "sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==", - "engines": { - "node": ">=8.6" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://opencollective.com/eslint" } }, - "node_modules/pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "node_modules/eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", + "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" + "dependencies": { + "eslint-visitor-keys": "^1.1.0" }, "engines": { - "node": ">=0.10" + "node": ">=6" } }, - "node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, "engines": { "node": ">=4" } }, - "node_modules/pino": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-6.14.0.tgz", - "integrity": "sha512-iuhEDel3Z3hF9Jfe44DPXR8l07bhjuFY3GMHIXbjnY9XcafbyDDwl2sN2vw2GjMPf5Nkoe+OFao7ffn9SXaKDg==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "optional": true, - "dependencies": { - "fast-redact": "^3.0.0", - "fast-safe-stringify": "^2.0.8", - "flatstr": "^1.0.12", - "pino-std-serializers": "^3.1.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "sonic-boom": "^1.0.2" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "bin": { - "pino": "bin.js" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/pino-std-serializers": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-3.2.0.tgz", - "integrity": "sha512-EqX4pwDPrt3MuOAAUBMU0Tk5kR/YcCM5fNPEzgCO2zJ5HfX0vbiH9HbJglnyeQsN96Kznae6MWD47pZB5avTrg==", - "dev": true, - "optional": true - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/process-warning": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", - "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", - "dev": true, - "optional": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/promise-streams": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/promise-streams/-/promise-streams-2.1.1.tgz", - "integrity": "sha1-cwnx02mDMOp/rasZIvE5iSKayFo=", - "dependencies": { - "bluebird": "^2.10.2" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">=0.12" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/prompt": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/prompt/-/prompt-1.3.0.tgz", - "integrity": "sha512-ZkaRWtaLBZl7KKAKndKYUL8WqNT+cQHKRZnT4RYYms48jQkFw3rrBL+/N5K/KtdEveHkxs982MX2BkDKub2ZMg==", - "dependencies": { - "@colors/colors": "1.5.0", - "async": "3.2.3", - "read": "1.0.x", - "revalidator": "0.1.x", - "winston": "2.x" + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">= 6.0.0" + "node": ">=4" } }, - "node_modules/protobufjs": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", - "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" + "estraverse": "^5.1.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=0.10" } }, - "node_modules/protobufjs/node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "dev": true - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "optional": true + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">=6" + "node": ">=4.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", - "dev": true, - "optional": true + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true }, - "node_modules/read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "node_modules/execa": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz", + "integrity": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==", + "dev": true, "dependencies": { - "mute-stream": "~0.0.4" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "dev": true + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" }, "engines": { "node": ">=4" } }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "os-tmpdir": "~1.0.2" }, "engines": { - "node": ">= 6" + "node": ">=0.6.0" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, "dependencies": { - "picomatch": "^2.2.1" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=8.10.0" + "node": ">=8.6.0" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/regexpp": { + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/figures": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/relative-microtime": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/relative-microtime/-/relative-microtime-2.0.0.tgz", - "integrity": "sha512-l18ha6HEZc+No/uK4GyAnNxgKW7nvEe35IaeN54sShMojtqik2a6GbTyuiezkjpPaqP874Z3lW5ysBo5irz4NA==", - "dev": true, - "optional": true - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/require-in-the-middle": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.1.1.tgz", - "integrity": "sha512-OScOjQjrrjhAdFpQmnkE/qbIBGCRFhQB/YaJhcC3CPOlmhe7llnW46Ac1J5+EjcNXOTnDdpF96Erw/yedsGksQ==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "optional": true, "dependencies": { - "debug": "^4.1.1", - "module-details-from-path": "^1.0.3", - "resolve": "^1.22.1" + "flat-cache": "^3.0.4" }, "engines": { - "node": ">=8.6.0" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "minimatch": "^5.0.1" } }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { - "node": ">= 4" + "node": ">=8" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/revalidator": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", - "integrity": "sha1-/s5hv6DBtSoga9axgZgYS91SOjs=", - "engines": { - "node": ">= 0.4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true, - "optional": true + "bin": { + "flat": "cli.js" + } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "node_modules/follow-redirects": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" } ], - "dependencies": { - "queue-microtask": "^1.2.2" + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "npm": ">=2.0.0" + "is-callable": "^1.1.3" } }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">=0.4" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=10" + "node": ">= 6" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/secure-json-parse": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", - "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14.14" } }, - "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "minipass": "^7.0.3" }, "engines": { - "node": ">= 0.4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/shallow-clone-shim": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shallow-clone-shim/-/shallow-clone-shim-2.0.0.tgz", - "integrity": "sha512-YRNymdiL3KGOoS67d73TEmk4tdPTO9GSMCoiphQsTcC9EtC+AOmMPjkyBkRoCJfW9ASsaZw1craaiw1dPN2D3Q==", - "dev": true, - "optional": true + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true, + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/shimmer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz", - "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==", + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "dev": true - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "dev": true, "dependencies": { - "is-arrayish": "^0.3.1" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/sonic-boom": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.4.1.tgz", - "integrity": "sha512-LRHh/A8tpW7ru89lrlkU4AszXt1dbwSjVWguGrmlxE7tawVmDBlI1PILMkXAxJTwqhgsEeTHzj36D5CmHgQmNg==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "optional": true, - "dependencies": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" + "peer": true, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/get-pkg-repo": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", "dev": true, + "dependencies": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", + "through2": "^2.0.0", + "yargs": "^16.2.0" + }, + "bin": { + "get-pkg-repo": "src/cli.js" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6.9.0" } }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "node_modules/get-pkg-repo/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "node_modules/get-pkg-repo/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "node_modules/get-pkg-repo/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", - "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", - "dev": true - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "node_modules/get-pkg-repo/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "node_modules/sql-summary": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sql-summary/-/sql-summary-1.0.1.tgz", - "integrity": "sha512-IpCr2tpnNkP3Jera4ncexsZUp0enJBLr+pHCyTweMUBrbJsTgQeLWx1FXLhoBj/MvcnUQpkgOn2EY8FKOkUzww==", + "node_modules/get-pkg-repo/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "optional": true - }, - "node_modules/stack-chain": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/stack-chain/-/stack-chain-1.3.7.tgz", - "integrity": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==", - "dev": true - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", - "engines": { - "node": "*" + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "node_modules/get-pkg-repo/node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, - "optional": true - }, - "node_modules/stream-chopper": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/stream-chopper/-/stream-chopper-3.0.1.tgz", - "integrity": "sha512-f7h+ly8baAE26iIjcp3VbnBkbIRGtrvV0X0xxFM/d7fwLTYnLzDPTXRKNxa2HZzohOrc96NTrR+FaV3mzOelNA==", - "dev": true, - "optional": true, "dependencies": { - "readable-stream": "^3.0.6" + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" } }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "node_modules/get-pkg-repo/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { - "node": ">=10.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "node_modules/get-pkg-repo/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, "dependencies": { - "safe-buffer": "~5.2.0" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" } }, - "node_modules/string-similarity": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz", - "integrity": "sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "node_modules/get-pkg-repo/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "optional": true + "engines": { + "node": ">=10" + } }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/string.prototype.padend": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz", - "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", + "node_modules/get-stream": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz", + "integrity": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" @@ -5510,295 +5683,321 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "node_modules/git-raw-commits": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-3.0.0.tgz", + "integrity": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "dargs": "^7.0.0", + "meow": "^8.1.2", + "split2": "^3.2.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=14" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "node_modules/git-remote-origin-url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/git-remote-origin-url/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/git-semver-tags": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-5.0.1.tgz", + "integrity": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "meow": "^8.1.2", + "semver": "^7.0.0" + }, + "bin": { + "git-semver-tags": "cli.js" }, "engines": { - "node": ">=8" + "node": ">=14" } }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/git-semver-tags/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" } }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/git-url-parse": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz", + "integrity": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" + "git-up": "^7.0.0" } }, - "node_modules/supports-preserve-symlinks-flag": { + "node_modules/gitconfiglocal": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==", + "dev": true, + "dependencies": { + "ini": "^1.3.2" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10.13.0" } }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", - "dev": true - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, "dependencies": { - "readable-stream": "3" + "balanced-match": "^1.0.0" } }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "os-tmpdir": "~1.0.2" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=0.6.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, "engines": { "node": ">=4" } }, - "node_modules/to-source-code": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/to-source-code/-/to-source-code-1.0.2.tgz", - "integrity": "sha512-YzWtjmNIf3E75eZYa7m1SCyl0vgOGoTzdpH3svfa8SUm5rqTgl9hnDolrAGOghCF9P2gsITXQoMrlujOoz+RPw==", + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, - "optional": true, "dependencies": { - "is-nil": "^1.0.0" + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "optional": true, "dependencies": { - "punycode": "^2.1.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/traverse": { - "version": "0.6.7", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", - "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, - "optional": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/ts-error": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/ts-error/-/ts-error-1.0.6.tgz", - "integrity": "sha512-tLJxacIQUM82IR7JO1UUkKlYuUTmoY9HBJAmNWFzheSlDS5SPMcNIepejHJa4BpPQLAcbRhRf3GDJzyj6rbKvA==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, - "node_modules/ts-invariant": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.4.4.tgz", - "integrity": "sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==", - "dependencies": { - "tslib": "^1.9.3" - } - }, - "node_modules/ts-proto-descriptors": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/ts-proto-descriptors/-/ts-proto-descriptors-1.9.0.tgz", - "integrity": "sha512-Ui8zA5Q4Jnq6JIGRraUWvECrqixxtwwin8GkhIkvwCpR+JcSPsxWe8HfTj5eHfyruGYI6Zjf96XlC87hTakHfQ==", - "dev": true, - "dependencies": { - "long": "^4.0.0", - "protobufjs": "^6.8.8" + "node_modules/graphql": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", + "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "engines": { + "node": ">= 10.x" } }, - "node_modules/ts-proto-descriptors/node_modules/protobufjs": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz", - "integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==", - "dev": true, - "hasInstallScript": true, + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" + "tslib": "^2.1.0" }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, - "node_modules/tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "node_modules/graphql-tag/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=6" } }, - "node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" + "es-define-property": "^1.0.0" }, - "engines": { - "node": ">= 0.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, "engines": { "node": ">= 0.4" }, @@ -5806,18 +6005,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, "engines": { "node": ">= 0.4" }, @@ -5825,5378 +6017,6482 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typescript": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", - "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/hasown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", + "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" }, "engines": { - "node": ">=4.2.0" + "node": ">= 0.4" } }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "lru-cache": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10" } }, - "node_modules/undici": { - "version": "5.22.1", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", - "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "dependencies": { - "busboy": "^1.6.0" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">=14.0" + "node": ">= 14" } }, - "node_modules/unicode-byte-truncate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unicode-byte-truncate/-/unicode-byte-truncate-1.0.0.tgz", - "integrity": "sha512-GQgHk6DodEoKddKQdjnv7xKS9G09XCfHWX0R4RKht+EbUMSiVEmtWHGFO8HUm+6NvWik3E2/DG4MxTitOLL64A==", + "node_modules/https-proxy-agent": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", "dev": true, - "optional": true, "dependencies": { - "is-integer": "^1.0.6", - "unicode-substring": "^0.1.0" + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/unicode-substring": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicode-substring/-/unicode-substring-0.1.0.tgz", - "integrity": "sha512-36Xaw9wXi7MB/3/EQZZHkZyyiRNa9i3k9YtPAz2KfqMVH2xutdXyMHn4Igarmnvr+wOrfWa/6njhY+jPpXN2EQ==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "optional": true + "engines": { + "node": ">=10.17.0" + } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, "dependencies": { - "punycode": "^2.1.0" + "ms": "^2.0.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "node_modules/uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, - "bin": { - "uuid": "dist/bin/uuid" + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "engines": { + "node": ">= 4" } }, - "node_modules/vscode-json-languageservice": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.11.0.tgz", - "integrity": "sha512-QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==", + "node_modules/ignore-walk": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", + "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", "dev": true, "dependencies": { - "jsonc-parser": "^3.0.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-languageserver-types": "3.16.0-next.2", - "vscode-nls": "^5.0.0", - "vscode-uri": "^2.1.2" - } - }, - "node_modules/vscode-languageserver-textdocument": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.7.tgz", - "integrity": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==", - "dev": true - }, - "node_modules/vscode-languageserver-types": { - "version": "3.16.0-next.2", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz", - "integrity": "sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==", - "dev": true - }, - "node_modules/vscode-nls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz", - "integrity": "sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==", - "dev": true - }, - "node_modules/vscode-uri": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", - "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==", - "dev": true - }, - "node_modules/web-streams-polyfill": { - "version": "4.0.0-beta.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", - "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "minimatch": "^5.0.1" + }, "engines": { - "node": ">= 14" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "node_modules/ignore-walk/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "optional": true + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, - "optional": true, "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/winston": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.5.tgz", - "integrity": "sha512-TWoamHt5yYvsMarGlGEQE59SbJHqGsZV8/lwC+iCcGeAe0vUaOh+Lv6SYM17ouzC/a/LB1/hz/7sxFBtlu1l4A==", - "dependencies": { - "async": "~1.0.0", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "stack-trace": "0.0.x" - }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, "engines": { - "node": ">= 0.10.0" + "node": ">=0.8.19" } }, - "node_modules/winston-elasticsearch": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/winston-elasticsearch/-/winston-elasticsearch-0.17.2.tgz", - "integrity": "sha512-9P5Y6p8HAWOvKh/sHfpDo+bzhSvPwDKHHoCVNT/cr2tjJU8t7TcSfTB9gfmhkiudCt2HnzvCBPFcN4DRpqNSng==", + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, - "dependencies": { - "@elastic/elasticsearch": "^8.6.0", - "dayjs": "^1.11.7", - "debug": "^4.3.4", - "lodash.defaults": "^4.2.0", - "lodash.omit": "^4.5.0", - "promise": "^8.3.0", - "retry": "^0.13.1", - "winston": "^3.8.2", - "winston-transport": "^4.5.0" - }, "engines": { - "node": ">= 8.0.0" - }, - "optionalDependencies": { - "elastic-apm-node": "^3.20.0" + "node": ">=8" } }, - "node_modules/winston-elasticsearch/node_modules/winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - }, - "engines": { - "node": ">= 12.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/init-package-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-5.0.0.tgz", + "integrity": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==", "dev": true, "dependencies": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" + "npm-package-arg": "^10.0.0", + "promzard": "^1.0.0", + "read": "^2.0.0", + "read-package-json": "^6.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": ">= 6.4.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/winston/node_modules/async": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", - "integrity": "sha1-+PwEyjoTeErenhZBr5hXjPvWR6k=" - }, - "node_modules/winston/node_modules/colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", + "node_modules/init-package-json/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "dev": true, + "dependencies": { + "lru-cache": "^7.5.1" + }, "engines": { - "node": ">=0.1.90" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "node_modules/init-package-json/node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/init-package-json/node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/init-package-json/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "lru-cache": "^6.0.0" }, - "engines": { - "node": ">=8" + "bin": { + "semver": "bin/semver.js" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=10" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/inquirer": { + "version": "8.2.6", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz", + "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^6.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=12.0.0" } }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "node_modules/write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "dependencies": { - "mkdirp": "^0.5.1" + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=4" + "node": ">= 0.4" } }, - "node_modules/xlsx": { - "version": "0.19.3", - "resolved": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz", - "integrity": "sha512-8IfgFctB7fkvqkTGF2MnrDrC6vzE28Wcc1aSbdDQ+4/WFtzfS73YuapbuaPZwGqpR2e0EeDMIrFOJubQVLWFNA==", + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", "dev": true, - "license": "Apache-2.0", - "bin": { - "xlsx": "bin/xlsx.njs" + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" }, "engines": { - "node": ">=0.8" + "node": ">= 12" } }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "optional": true + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true }, - "node_modules/yaml-document-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/yaml-document-stream/-/yaml-document-stream-1.1.0.tgz", - "integrity": "sha512-IYn6NCEeA2MT3rt2XeOLy9BJe/i5dTs3KUhpprXmoj/hFlkltunC0J2h6y4vDnMTPWzehOFjl7I+XXw8PLjENQ==", - "peerDependencies": { - "js-yaml": "^4.0.0" + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/zen-observable": { - "version": "0.8.15", - "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", - "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==" - }, - "node_modules/zen-observable-ts": { - "version": "0.8.21", - "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz", - "integrity": "sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, "dependencies": { - "tslib": "^1.9.3", - "zen-observable": "^0.8.0" + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/generator": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.16.tgz", - "integrity": "sha512-grBBR75UnKOcUWMp8WoDxNsWCFl//XCK6HWTrBQKTr5SV9f5g0pNOjdyzi/DTBv12S9GnYPInIXQBTky7OXEMg==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "requires": { - "@babel/types": "^7.13.16", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "engines": { + "node": ">=0.10.0" } }, - "@babel/helper-function-name": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", - "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.12.13" + "engines": { + "node": ">=8" } }, - "@babel/helper-get-function-arity": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", - "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "requires": { - "@babel/types": "^7.12.13" + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "@babel/helper-split-export-declaration": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", - "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, - "requires": { - "@babel/types": "^7.12.13" + "engines": { + "node": ">=8" } }, - "@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true }, - "@babel/highlight": { - "version": "7.13.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", - "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/parser": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.16.tgz", - "integrity": "sha512-6bAg36mCwuqLO0hbR+z7PHuqWiCeP7Dzg73OpQwsAB1Eb8HnGEz5xYBzCfbu+YjoaJsJs+qheDxVAuqbt3ILEw==", - "dev": true - }, - "@babel/template": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", - "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" - } - }, - "@babel/traverse": { - "version": "7.13.17", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.17.tgz", - "integrity": "sha512-BMnZn0R+X6ayqm3C3To7o1j7Q020gWdqdyP50KEoVqaCO2c/Im7sYZSmVgvefp8TTMQ+9CtwuBp0Z1CZ8V3Pvg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.13.16", - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.13.16", - "@babel/types": "^7.13.17", - "debug": "^4.1.0", - "globals": "^11.1.0" + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" } }, - "@babel/types": { - "version": "7.13.17", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.17.tgz", - "integrity": "sha512-RawydLgxbOPDlTLJNtoIypwdmAy//uQIzlKt2+iBiJaRlVuI6QLUxVAyWGNfOzp8Yu4L4lLIacoCyTNtpb4wiA==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "to-fast-properties": "^2.0.0" + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, - "requires": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" + "engines": { + "node": ">=8" } }, - "@elastic/ecs-helpers": { + "node_modules/is-plain-obj": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@elastic/ecs-helpers/-/ecs-helpers-1.1.0.tgz", - "integrity": "sha512-MDLb2aFeGjg46O5mLpdCzT5yOUDnXToJSrco2ShqGIXxNJaM8uJjX+4nd+hRYV4Vex8YJyDtOFEVBldQct6ndg==", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true, - "optional": true, - "requires": { - "fast-json-stringify": "^2.4.1" + "engines": { + "node": ">=0.10.0" } }, - "@elastic/ecs-pino-format": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@elastic/ecs-pino-format/-/ecs-pino-format-1.3.0.tgz", - "integrity": "sha512-U8D57gPECYoRCcwREsrXKBtqeyFFF/KAwHi4rG1u/oQhAg91Kzw8ZtUQJXD/DMDieLOqtbItFr2FRBWI3t3wog==", + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "optional": true, - "requires": { - "@elastic/ecs-helpers": "^1.1.0" + "engines": { + "node": ">=0.10.0" } }, - "@elastic/elasticsearch": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/@elastic/elasticsearch/-/elasticsearch-8.8.0.tgz", - "integrity": "sha512-IOydHcLpg9tDcLpikDrN5hx7LADEmkgHswgqTcCYXKS3FVIrfs3Rc6ALu7WU45Qe/JH0xhmwJkWVjsAk6C/nBg==", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, - "requires": { - "@elastic/transport": "^8.3.1", - "tslib": "^2.4.0" - }, "dependencies": { - "tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - } + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@elastic/transport": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/@elastic/transport/-/transport-8.3.1.tgz", - "integrity": "sha512-jv/Yp2VLvv5tSMEOF8iGrtL2YsYHbpf4s+nDsItxUTLFTzuJGpnsB/xBlfsoT2kAYEnWHiSJuqrbRcpXEI/SEQ==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, - "requires": { - "debug": "^4.3.4", - "hpagent": "^1.0.0", - "ms": "^2.1.3", - "secure-json-parse": "^2.4.0", - "tslib": "^2.4.0", - "undici": "^5.5.1" - }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - } + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@eslint/eslintrc": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", - "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.15.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, "dependencies": { - "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } + "protocols": "^2.0.1" } }, - "@grpc/grpc-js": { - "version": "1.8.14", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz", - "integrity": "sha512-w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A==", + "node_modules/is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", "dev": true, - "requires": { - "@grpc/proto-loader": "^0.7.0", - "@types/node": ">=12.12.47" + "engines": { + "node": ">=8" } }, - "@grpc/proto-loader": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz", - "integrity": "sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, - "requires": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^7.0.0", - "yargs": "^17.7.2" + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@humanwhocodes/config-array": { - "version": "0.11.6", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.6.tgz", - "integrity": "sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.4" + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@humanwhocodes/module-importer": { + "node_modules/is-text-path": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "dependencies": { + "text-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@opentelemetry/api": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.1.tgz", - "integrity": "sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA==", - "dev": true, - "optional": true - }, - "@opentelemetry/core": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.13.0.tgz", - "integrity": "sha512-2dBX3Sj99H96uwJKvc2w9NOiNgbvAO6mOFJFramNkKfS9O4Um+VWgpnlAazoYjT6kUJ1MP70KQ5ngD4ed+4NUw==", + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, - "optional": true, - "requires": { - "@opentelemetry/semantic-conventions": "1.13.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@opentelemetry/resources": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.13.0.tgz", - "integrity": "sha512-euqjOkiN6xhjE//0vQYGvbStxoD/WWQRhDiO0OTLlnLBO9Yw2Gd/VoSx2H+svsebjzYk5OxLuREBmcdw6rbUNg==", + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, - "optional": true, - "requires": { - "@opentelemetry/core": "1.13.0", - "@opentelemetry/semantic-conventions": "1.13.0" + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@opentelemetry/sdk-metrics": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.13.0.tgz", - "integrity": "sha512-MOjZX6AnSOqLliCcZUrb+DQKjAWXBiGeICGbHAGe5w0BB18PJIeIo995lO5JSaFfHpmUMgJButTPfJJD27W3Vg==", + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, - "optional": true, - "requires": { - "@opentelemetry/core": "1.13.0", - "@opentelemetry/resources": "1.13.0", - "lodash.merge": "4.6.2" + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "@opentelemetry/semantic-conventions": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.13.0.tgz", - "integrity": "sha512-LMGqfSZkaMQXqewO0o1wvWr/2fQdCh4a3Sqlxka/UsJCe0cfLulh6x2aqnKLnsrSGiCq5rSCwvINd152i0nCqw==", - "dev": true, - "optional": true - }, - "@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", - "dev": true - }, - "@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "dev": true - }, - "@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, - "requires": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" + "engines": { + "node": ">=0.10.0" } }, - "@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "dev": true - }, - "@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dev": true, + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", + "dev": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "dependencies": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lerna": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/lerna/-/lerna-8.1.2.tgz", + "integrity": "sha512-RCyBAn3XsqqvHbz3TxLfD7ylqzCi1A2UJnFEZmhURgx589vM3qYWQa/uOMeEEf565q6cAdtmulITciX1wgkAtw==", + "dev": true, + "dependencies": { + "@lerna/create": "8.1.2", + "@npmcli/run-script": "7.0.2", + "@nx/devkit": ">=17.1.2 < 19", + "@octokit/plugin-enterprise-rest": "6.0.1", + "@octokit/rest": "19.0.11", + "byte-size": "8.1.1", + "chalk": "4.1.0", + "clone-deep": "4.0.1", + "cmd-shim": "6.0.1", + "columnify": "1.6.0", + "conventional-changelog-angular": "7.0.0", + "conventional-changelog-core": "5.0.1", + "conventional-recommended-bump": "7.0.1", + "cosmiconfig": "^8.2.0", + "dedent": "0.7.0", + "envinfo": "7.8.1", + "execa": "5.0.0", + "fs-extra": "^11.1.1", + "get-port": "5.1.1", + "get-stream": "6.0.0", + "git-url-parse": "13.1.0", + "glob-parent": "5.1.2", + "globby": "11.1.0", + "graceful-fs": "4.2.11", + "has-unicode": "2.0.1", + "import-local": "3.1.0", + "ini": "^1.3.8", + "init-package-json": "5.0.0", + "inquirer": "^8.2.4", + "is-ci": "3.0.1", + "is-stream": "2.0.0", + "jest-diff": ">=29.4.3 < 30", + "js-yaml": "4.1.0", + "libnpmaccess": "7.0.2", + "libnpmpublish": "7.3.0", + "load-json-file": "6.2.0", + "lodash": "^4.17.21", + "make-dir": "4.0.0", + "minimatch": "3.0.5", + "multimatch": "5.0.0", + "node-fetch": "2.6.7", + "npm-package-arg": "8.1.1", + "npm-packlist": "5.1.1", + "npm-registry-fetch": "^14.0.5", + "npmlog": "^6.0.2", + "nx": ">=17.1.2 < 19", + "p-map": "4.0.0", + "p-map-series": "2.1.0", + "p-pipe": "3.1.0", + "p-queue": "6.6.2", + "p-reduce": "2.1.0", + "p-waterfall": "2.1.1", + "pacote": "^17.0.5", + "pify": "5.0.0", + "read-cmd-shim": "4.0.0", + "read-package-json": "6.0.4", + "resolve-from": "5.0.0", + "rimraf": "^4.4.1", + "semver": "^7.3.8", + "signal-exit": "3.0.7", + "slash": "3.0.0", + "ssri": "^9.0.1", + "strong-log-transformer": "2.1.0", + "tar": "6.1.11", + "temp-dir": "1.0.0", + "typescript": ">=3 < 6", + "upath": "2.0.1", + "uuid": "^9.0.0", + "validate-npm-package-license": "3.0.4", + "validate-npm-package-name": "5.0.0", + "write-file-atomic": "5.0.1", + "write-pkg": "4.0.0", + "yargs": "17.7.2", + "yargs-parser": "21.1.1" + }, + "bin": { + "lerna": "dist/cli.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/lerna/node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/lerna/node_modules/glob": { + "version": "9.3.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", + "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/lerna/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/lerna/node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/lerna/node_modules/glob/node_modules/minimatch": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", + "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/lerna/node_modules/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/lerna/node_modules/minipass": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", + "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/lerna/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/lerna/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/lerna/node_modules/rimraf": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz", + "integrity": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==", + "dev": true, + "dependencies": { + "glob": "^9.2.0" + }, + "bin": { + "rimraf": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/lerna/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/libnpmaccess": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-7.0.2.tgz", + "integrity": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==", + "dev": true, + "dependencies": { + "npm-package-arg": "^10.1.0", + "npm-registry-fetch": "^14.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmaccess/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "dev": true, + "dependencies": { + "lru-cache": "^7.5.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmaccess/node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/libnpmaccess/node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmaccess/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/libnpmpublish": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-7.3.0.tgz", + "integrity": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==", + "dev": true, + "dependencies": { + "ci-info": "^3.6.1", + "normalize-package-data": "^5.0.0", + "npm-package-arg": "^10.1.0", + "npm-registry-fetch": "^14.0.3", + "proc-log": "^3.0.0", + "semver": "^7.3.7", + "sigstore": "^1.4.0", + "ssri": "^10.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmpublish/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "dev": true, + "dependencies": { + "lru-cache": "^7.5.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmpublish/node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/libnpmpublish/node_modules/normalize-package-data": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", + "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", + "dev": true, + "dependencies": { + "hosted-git-info": "^6.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmpublish/node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/libnpmpublish/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/libnpmpublish/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/lines-and-columns": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz", + "integrity": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/load-json-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^5.0.0", + "strip-bom": "^4.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/load-json-file/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.ismatch": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-fetch-happen": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", + "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "dev": true, + "dependencies": { + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/meow/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-fetch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", + "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "dev": true, + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/modify-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multimatch": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", + "dev": true, + "dependencies": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/multimatch/node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, - "@restorecommerce/eslint-config-restorecommerce": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@restorecommerce/eslint-config-restorecommerce/-/eslint-config-restorecommerce-0.1.5.tgz", - "integrity": "sha512-SK9sU5HKu/tBaSilm9wHzujJOIb23Wdj3u8CJcYIaG5Kz77vTS24TEZkVi2mzM5yd6hNEjnkqB/geDcEg1lK1Q==", + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-gyp": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", + "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", "dev": true, - "requires": { - "babel-eslint": "^10.0.3", - "eslint": "^6.4.0", - "eslint-config-airbnb-base": "^14.0.0", - "eslint-plugin-import": "^2.18.2", - "eslint-plugin-json": "^1.4.0" + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/node-gyp/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/node-gyp/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", - "dev": true - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "eslint": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", - "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.10.0", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^1.4.3", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.1.2", - "esquery": "^1.0.1", - "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "inquirer": "^7.0.0", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.14", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.3", - "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^6.1.2", - "strip-ansi": "^5.2.0", - "strip-json-comments": "^3.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - } - }, - "eslint-config-airbnb-base": { - "version": "14.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", - "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", - "dev": true, - "requires": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.2" - } - }, - "eslint-plugin-json": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz", - "integrity": "sha512-CECvgRAWtUzuepdlPWd+VA7fhyF9HT183pZnl8wQw5x699Mk/MbME/q8xtULBfooi3LUbj6fToieNmsvUcDxWA==", - "dev": true, - "requires": { - "vscode-json-languageservice": "^3.2.1" - } - }, - "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" - } - }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", - "dev": true, - "requires": { - "flat-cache": "^2.0.1" - } - }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", - "dev": true, - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" - } - }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", - "dev": true - }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", - "dev": true, - "requires": { - "type-fest": "^0.8.1" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", - "dev": true - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" - } - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - }, - "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", - "dev": true, - "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" - } - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^16.13.0 || >=18.0.0" + } + }, + "node_modules/node-machine-id": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz", + "integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true, + "peer": true + }, + "node_modules/node-xlsx": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/node-xlsx/-/node-xlsx-0.23.0.tgz", + "integrity": "sha512-r3KaSZSsSrK92rbPXnX/vDdxURmPPik0rjJ3A+Pybzpjyrk4G6WyGfj8JIz5dMMEpCmWVpmO4qoVPBxnpLv/8Q==", + "dependencies": { + "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz" + }, + "bin": { + "node-xlsx": "lib/bin/cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/nopt": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", + "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "dev": true, + "dependencies": { + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dev": true, + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-install-checks": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz", + "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==", + "dev": true, + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-install-checks/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "@restorecommerce/gql-bot": { + "node_modules/npm-normalize-package-bin": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@restorecommerce/gql-bot/-/gql-bot-1.0.1.tgz", - "integrity": "sha512-+OhSEDQPyBCbSNhebub/yCi9MMWhQGfxvdCqUwShVY5HfJ7udSiokRXHk/UQV6pxtwJTRyKFngEAvHEYZK2YAw==", - "requires": { - "apollo-cache-inmemory": "^1.6.6", - "apollo-client": "^2.6.10", - "apollo-link-http": "^1.5.17", - "chalk": "^4.1.2", - "color-hash": "^2.0.1", - "graphql": "^15.5.0", - "graphql-tag": "^2.12.6", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "node-fetch": "^2.6.0", - "promise-streams": "^2.1.1", - "readdirp": "^3.6.0", - "through2": "^4.0.2", - "yaml-document-stream": "^1.1.0" + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "node_modules/npm-package-arg": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.1.tgz", + "integrity": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==", + "dev": true, + "dependencies": { + "hosted-git-info": "^3.0.6", + "semver": "^7.0.0", + "validate-npm-package-name": "^3.0.0" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-arg/node_modules/builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "dev": true + }, + "node_modules/npm-package-arg/node_modules/hosted-git-info": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", + "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - } + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-arg/node_modules/validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "dev": true, + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/npm-packlist": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.1.tgz", + "integrity": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==", + "dev": true, + "dependencies": { + "glob": "^8.0.1", + "ignore-walk": "^5.0.1", + "npm-bundled": "^1.1.2", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "npm-packlist": "bin/index.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-packlist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm-packlist/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@restorecommerce/grpc-client": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@restorecommerce/grpc-client/-/grpc-client-2.0.1.tgz", - "integrity": "sha512-pd+nRyPxL/2zVPa4lMyQXefUYApiZrN+iYp1MqNAS73Azpy5+UHmJHaPpRi0TDFQE9FlCuh6eybSzQ3HAanp1w==", - "dev": true, - "requires": { - "@grpc/grpc-js": "^1.8.14", - "@grpc/proto-loader": "^0.7.7", - "@restorecommerce/logger": "^1.2.3", - "cls-rtracer": "^2.6.3", - "lodash": "^4.17.21", - "nice-grpc": "^2.1.4", - "nice-grpc-client-middleware-deadline": "^2.0.6", - "protobufjs": "^7.2.3", - "retry": "^0.13.1", - "rxjs": "^7.8.1", - "uuid": "^9.0.0", - "winston": "^3.9.0" - }, + "node_modules/npm-packlist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, "dependencies": { - "rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "requires": { - "tslib": "^2.1.0" - } - }, - "tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - }, - "winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - } - } + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, - "@restorecommerce/logger": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@restorecommerce/logger/-/logger-1.2.3.tgz", - "integrity": "sha512-5zOxdEsE71Xl8yHlaEUwk90/M3rttEtqYSO/kRsn/z6Lk0gqtvC8e5O1wa/c02pVXPUc1jztg2GEnLBLEHmOKg==", + "node_modules/npm-pick-manifest": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz", + "integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==", "dev": true, - "requires": { - "cls-hooked": "^4.2.2", - "cls-rtracer": "^2.6.3", - "lodash": "^4.17.21", - "source-map-support": "^0.5.21", - "winston": "^3.9.0", - "winston-elasticsearch": "^0.17.2" - }, - "dependencies": { - "winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - } - } + "dependencies": { + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "@restorecommerce/rc-grpc-clients": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@restorecommerce/rc-grpc-clients/-/rc-grpc-clients-3.1.0.tgz", - "integrity": "sha512-RJTDhGenLciOdxz6RSRSGhx0/6/BduDKpIYUoDQlC1HIMRAsAEMdeIofxgU0htdWLOlfMceEkhdi9p55eOTtUQ==", - "dev": true, - "requires": { - "@restorecommerce/grpc-client": "^2.0.1", - "@types/google-protobuf": "^3.15.6", - "google-protobuf": "^3.21.2", - "nice-grpc": "^2.1.4", - "nice-grpc-common": "^2.0.2", - "protobufjs": "^7.2.3", - "rxjs": "^7.8.1", - "ts-proto-descriptors": "^1.9.0" - }, - "dependencies": { - "rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "requires": { - "tslib": "^2.1.0" - } - }, - "tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==", - "dev": true - } + "node_modules/npm-pick-manifest/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "@types/google-protobuf": { - "version": "3.15.6", - "resolved": "https://registry.npmjs.org/@types/google-protobuf/-/google-protobuf-3.15.6.tgz", - "integrity": "sha512-pYVNNJ+winC4aek+lZp93sIKxnXt5qMkuKmaqS3WGuTq0Bw1ZDYNBgzG5kkdtwcv+GmYJGo3yEg6z2cKKAiEdw==", - "dev": true - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true + "node_modules/npm-pick-manifest/node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } }, - "@types/long": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", - "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", - "dev": true + "node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "@types/node": { - "version": "18.11.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.7.tgz", - "integrity": "sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==" + "node_modules/npm-pick-manifest/node_modules/npm-package-arg": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", + "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", + "dev": true, + "dependencies": { + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } }, - "@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==", - "dev": true + "node_modules/npm-pick-manifest/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "@types/zen-observable": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.2.tgz", - "integrity": "sha512-HrCIVMLjE1MOozVoD86622S7aunluLb2PJdPfb3nYiEtohm8mIB/vyv0Fd37AdeMFrTUQXEunw78YloMA3Qilg==" + "node_modules/npm-registry-fetch": { + "version": "14.0.5", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", + "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", + "dev": true, + "dependencies": { + "make-fetch-happen": "^11.0.0", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^10.0.0", + "proc-log": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "@wry/context": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.4.4.tgz", - "integrity": "sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==", - "requires": { - "@types/node": ">=6", - "tslib": "^1.9.3" + "node_modules/npm-registry-fetch/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "@wry/equality": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.1.11.tgz", - "integrity": "sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==", - "requires": { - "tslib": "^1.9.3" + "node_modules/npm-registry-fetch/node_modules/cacache": { + "version": "17.1.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz", + "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "abort-controller-x": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/abort-controller-x/-/abort-controller-x-0.4.2.tgz", - "integrity": "sha512-5bgqvgogTIxTkQpkgDoFZHt2YS8uireyOkC4snQG2kaEKs7DI7Tgsu5xysjp9MxG+6OLICBOAL8TtKHzxQrlqw==", - "dev": true + "node_modules/npm-registry-fetch/node_modules/cacache/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true + "node_modules/npm-registry-fetch/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "dev": true, + "dependencies": { + "lru-cache": "^7.5.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/npm-registry-fetch/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "requires": {} + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } }, - "after-all-results": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/after-all-results/-/after-all-results-2.0.0.tgz", - "integrity": "sha512-2zHEyuhSJOuCrmas9YV0YL/MFCWLxe1dS6k/ENhgYrb/JqyMnadLN4iIAc9kkZrbElMDyyAGH/0J18OPErOWLg==", + "node_modules/npm-registry-fetch/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, - "optional": true + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } }, - "agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "node_modules/npm-registry-fetch/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "optional": true, - "requires": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" + "engines": { + "node": ">=12" } }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/npm-registry-fetch/node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/npm-registry-fetch/node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, - "requires": { - "type-fest": "^0.21.3" - }, "dependencies": { - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - } + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" } }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true + "node_modules/npm-registry-fetch/node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/npm-registry-fetch/node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", "dev": true, - "requires": { - "color-convert": "^1.9.0" + "dependencies": { + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "apollo-cache": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.3.5.tgz", - "integrity": "sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==", - "requires": { - "apollo-utilities": "^1.3.4", - "tslib": "^1.10.0" + "node_modules/npm-registry-fetch/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "apollo-cache-inmemory": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz", - "integrity": "sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==", - "requires": { - "apollo-cache": "^1.3.5", - "apollo-utilities": "^1.3.4", - "optimism": "^0.10.0", - "ts-invariant": "^0.4.0", - "tslib": "^1.10.0" + "node_modules/npm-registry-fetch/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "apollo-client": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.6.10.tgz", - "integrity": "sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==", - "requires": { - "@types/zen-observable": "^0.8.0", - "apollo-cache": "1.3.5", - "apollo-link": "^1.0.0", - "apollo-utilities": "1.3.4", - "symbol-observable": "^1.0.2", - "ts-invariant": "^0.4.0", - "tslib": "^1.10.0", - "zen-observable": "^0.8.0" + "node_modules/npm-registry-fetch/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" } }, - "apollo-link": { - "version": "1.2.14", - "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.14.tgz", - "integrity": "sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==", - "requires": { - "apollo-utilities": "^1.3.0", - "ts-invariant": "^0.4.0", - "tslib": "^1.9.3", - "zen-observable-ts": "^0.8.21" + "node_modules/npm-registry-fetch/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "apollo-link-http": { - "version": "1.5.17", - "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.17.tgz", - "integrity": "sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==", - "requires": { - "apollo-link": "^1.2.14", - "apollo-link-http-common": "^0.2.16", - "tslib": "^1.9.3" + "node_modules/npm-registry-fetch/node_modules/ssri/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" } }, - "apollo-link-http-common": { - "version": "0.2.16", - "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz", - "integrity": "sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==", - "requires": { - "apollo-link": "^1.2.14", - "ts-invariant": "^0.4.0", - "tslib": "^1.9.3" + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": ">= 4" } }, - "apollo-utilities": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.3.4.tgz", - "integrity": "sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==", - "requires": { - "@wry/equality": "^0.1.2", - "fast-json-stable-stringify": "^2.0.0", - "ts-invariant": "^0.4.0", - "tslib": "^1.10.0" + "node_modules/npm-run-all/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "node_modules/npm-run-all/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "node_modules/npm-run-all/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.7" + "dependencies": { + "color-name": "1.1.3" } }, - "array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "node_modules/npm-run-all/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", - "es-shim-unscopables": "^1.0.0" + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" } }, - "arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "node_modules/npm-run-all/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" + "engines": { + "node": ">=0.8.0" } }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true - }, - "async": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", - "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" - }, - "async-cache": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/async-cache/-/async-cache-1.1.0.tgz", - "integrity": "sha512-YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g==", + "node_modules/npm-run-all/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "optional": true, - "requires": { - "lru-cache": "^4.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "optional": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true, - "optional": true - } + "engines": { + "node": ">=4" } }, - "async-hook-jl": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/async-hook-jl/-/async-hook-jl-1.7.6.tgz", - "integrity": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==", + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, - "requires": { - "stack-chain": "^1.3.7" + "engines": { + "node": ">=4" } }, - "async-value": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/async-value/-/async-value-1.2.2.tgz", - "integrity": "sha512-8rwtYe32OAS1W9CTwvknoyts+mc3ta8N7Pi0h7AjkMaKvsFbr39K+gEfZ7Z81aPXQ1sK5M23lgLy1QfZpcpadQ==", + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "optional": true + "bin": { + "semver": "bin/semver" + } }, - "async-value-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/async-value-promise/-/async-value-promise-1.1.1.tgz", - "integrity": "sha512-c2RFDKjJle1rHa0YxN9Ysu97/QBu3Wa+NOejJxsX+1qVDJrkD3JL/GN1B3gaILAEXJXbu/4Z1lcoCHFESe/APA==", + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, - "optional": true, - "requires": { - "async-value": "^1.2.2" + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "atomic-sleep": { + "node_modules/npm-run-all/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, - "optional": true + "engines": { + "node": ">=0.10.0" + } }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true + "node_modules/npm-run-all/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } }, - "babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", "dev": true, - "optional": true, - "requires": { - "safe-buffer": "5.1.2" + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/nx": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/nx/-/nx-18.0.4.tgz", + "integrity": "sha512-Njb1fGppOw/wM7nOA1hYlLduV2aL4PdXSv5QS5cVYicHT5tw5RnG/0z4j9e6QfFj2EydxVeDUtlGR98diZ3/Yw==", + "dev": true, + "hasInstallScript": true, "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, + "@nrwl/tao": "18.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "3.0.0-rc.46", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.6.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^8.0.1", + "dotenv": "~16.3.1", + "dotenv-expand": "~10.0.0", + "enquirer": "~2.3.6", + "figures": "3.2.0", + "flat": "^5.0.2", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "jest-diff": "^29.4.1", + "js-yaml": "4.1.0", + "jsonc-parser": "3.2.0", + "lines-and-columns": "~2.0.3", + "minimatch": "9.0.3", + "node-machine-id": "1.1.12", + "npm-run-path": "^4.0.1", + "open": "^8.4.0", + "ora": "5.3.0", + "semver": "^7.5.3", + "string-width": "^4.2.3", + "strong-log-transformer": "^2.1.0", + "tar-stream": "~2.2.0", + "tmp": "~0.2.1", + "tsconfig-paths": "^4.1.2", + "tslib": "^2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + }, + "bin": { + "nx": "bin/nx.js", + "nx-cloud": "bin/nx-cloud.js" + }, + "optionalDependencies": { + "@nx/nx-darwin-arm64": "18.0.4", + "@nx/nx-darwin-x64": "18.0.4", + "@nx/nx-freebsd-x64": "18.0.4", + "@nx/nx-linux-arm-gnueabihf": "18.0.4", + "@nx/nx-linux-arm64-gnu": "18.0.4", + "@nx/nx-linux-arm64-musl": "18.0.4", + "@nx/nx-linux-x64-gnu": "18.0.4", + "@nx/nx-linux-x64-musl": "18.0.4", + "@nx/nx-win32-arm64-msvc": "18.0.4", + "@nx/nx-win32-x64-msvc": "18.0.4" + }, + "peerDependencies": { + "@swc-node/register": "^1.8.0", + "@swc/core": "^1.3.85" + }, + "peerDependenciesMeta": { + "@swc-node/register": { + "optional": true + }, + "@swc/core": { "optional": true } } }, - "binary-search": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", - "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==", + "node_modules/nx/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "optional": true - }, - "bluebird": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz", - "integrity": "sha1-U0uQM8AiyVecVro7Plpcqvu2UOE=" + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/nx/node_modules/dotenv": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz", + "integrity": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==", "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" } }, - "breadth-filter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/breadth-filter/-/breadth-filter-2.0.0.tgz", - "integrity": "sha512-thQShDXnFWSk2oVBixRCyrWsFoV5tfOpWKHmxwafHQDNxCfDBk539utpvytNjmlFrTMqz41poLwJvA1MW3z0MQ==", + "node_modules/nx/node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "optional": true, - "requires": { - "object.entries": "^1.0.4" + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" } }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "node_modules/nx/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "node_modules/nx/node_modules/ora": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz", + "integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==", "dev": true, - "requires": { - "streamsearch": "^1.1.0" + "dependencies": { + "bl": "^4.0.3", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "log-symbols": "^4.0.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "node_modules/nx/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, - "requires": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true + "node_modules/nx/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/nx/node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "node_modules/nx/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" + "node_modules/object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "engines": { + "node": ">= 6" } }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "engines": { + "node": ">= 0.4" } }, - "cls-hooked": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/cls-hooked/-/cls-hooked-4.2.2.tgz", - "integrity": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, - "requires": { - "async-hook-jl": "^1.7.6", - "emitter-listener": "^1.0.1", - "semver": "^5.4.1" - }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "cls-rtracer": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/cls-rtracer/-/cls-rtracer-2.6.3.tgz", - "integrity": "sha512-O7M/m2M/KfT9v+q7ka9nmsadS67ce9P8+1Zgm6VFamK56oFd1iCoJ9m8hYKUQpK4+RofyaexxHJlOBkxqCDs3Q==", + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", "dev": true, - "requires": { - "uuid": "^9.0.0" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" } }, - "color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", "dev": true, - "requires": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/object.groupby": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", + "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", "dev": true, - "requires": { - "color-name": "1.1.3" + "dependencies": { + "array.prototype.filter": "^1.0.3", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0" } }, - "color-hash": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-hash/-/color-hash-2.0.1.tgz", - "integrity": "sha512-/wIYAQ3xL9ruURLmDbxAsXEsivaOfwWDUVy+zbWJZL3bnNQIDNSmmqbkNzeTOQvDdiz11Kb010UlJN7hUXLg/w==" - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", "dev": true, - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "requires": { - "color": "^3.1.3", - "text-hex": "1.0.x" + "dependencies": { + "wrappy": "1" } }, - "commander": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.4.1.tgz", - "integrity": "sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==" + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true + "node_modules/optimism": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.10.3.tgz", + "integrity": "sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==", + "dependencies": { + "@wry/context": "^0.4.0" + } }, - "console-log-level": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/console-log-level/-/console-log-level-1.4.1.tgz", - "integrity": "sha512-VZzbIORbP+PPcN/gg3DXClTLPLg5Slwd5fL2MIc+o1qZ4BXBvWyc6QxPk6T/Mkr6IVjRpoAGf32XxP3ZWMVRcQ==", + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, - "optional": true + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, - "optional": true + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, - "optional": true + "engines": { + "node": ">=0.10.0" + } }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "engines": { + "node": ">=4" } }, - "cycle": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", - "integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI=" - }, - "data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" - }, - "dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "requires": { - "ms": "2.1.2" + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "optional": true + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, - "requires": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/p-map-series": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz", + "integrity": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==", "dev": true, - "requires": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "engines": { + "node": ">=8" } }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "node_modules/p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", "dev": true, - "optional": true + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/p-queue": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", "dev": true, - "requires": { - "esutils": "^2.0.2" + "dependencies": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" - }, - "elastic-apm-http-client": { - "version": "11.4.0", - "resolved": "https://registry.npmjs.org/elastic-apm-http-client/-/elastic-apm-http-client-11.4.0.tgz", - "integrity": "sha512-DxPy8MFrcL04qxMG4sxmI5yIKrFCIhJc2xx0eupE3qjCIIPHeLJaUrjFbQbsAnnuhC9sljWsEebtFweHj+Vmug==", + "node_modules/p-reduce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", "dev": true, - "optional": true, - "requires": { - "agentkeepalive": "^4.2.1", - "breadth-filter": "^2.0.0", - "end-of-stream": "^1.4.4", - "fast-safe-stringify": "^2.0.7", - "fast-stream-to-buffer": "^1.0.0", - "object-filter-sequence": "^1.0.0", - "readable-stream": "^3.4.0", - "semver": "^6.3.0", - "stream-chopper": "^3.0.1" + "engines": { + "node": ">=8" } }, - "elastic-apm-node": { - "version": "3.46.0", - "resolved": "https://registry.npmjs.org/elastic-apm-node/-/elastic-apm-node-3.46.0.tgz", - "integrity": "sha512-MuM7Xe+5K7AkfFqrKWrvBJVFcS+hPcTKGj7yR/0/WHR5/r/ZjkBEX/t2bUMjgyHHG4lu5LH/RN86ScGdw1GG2w==", + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", "dev": true, - "optional": true, - "requires": { - "@elastic/ecs-pino-format": "^1.2.0", - "@opentelemetry/api": "^1.4.1", - "@opentelemetry/core": "^1.11.0", - "@opentelemetry/sdk-metrics": "^1.12.0", - "after-all-results": "^2.0.0", - "async-cache": "^1.1.0", - "async-value-promise": "^1.1.1", - "basic-auth": "^2.0.1", - "cookie": "^0.5.0", - "core-util-is": "^1.0.2", - "elastic-apm-http-client": "11.4.0", - "end-of-stream": "^1.4.4", - "error-callsites": "^2.0.4", - "error-stack-parser": "^2.0.6", - "escape-string-regexp": "^4.0.0", - "fast-safe-stringify": "^2.0.7", - "http-headers": "^3.0.2", - "is-native": "^1.0.1", - "lru-cache": "^6.0.0", - "measured-reporting": "^1.51.1", - "module-details-from-path": "^1.0.3", - "monitor-event-loop-delay": "^1.0.0", - "object-filter-sequence": "^1.0.0", - "object-identity-map": "^1.0.2", - "original-url": "^1.2.3", - "pino": "^6.11.2", - "relative-microtime": "^2.0.0", - "require-in-the-middle": "^7.0.1", - "semver": "^6.3.0", - "shallow-clone-shim": "^2.0.0", - "source-map": "^0.8.0-beta.0", - "sql-summary": "^1.0.1", - "traverse": "^0.6.6", - "unicode-byte-truncate": "^1.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dev": true, - "optional": true, - "requires": { - "whatwg-url": "^7.0.0" - } - } + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "emitter-listener": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/emitter-listener/-/emitter-listener-1.1.2.tgz", - "integrity": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "requires": { - "shimmer": "^1.2.0" + "engines": { + "node": ">=6" } }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "node_modules/p-waterfall": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz", + "integrity": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==", + "dev": true, + "dependencies": { + "p-reduce": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", - "dev": true + "node_modules/pacote": { + "version": "17.0.6", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.6.tgz", + "integrity": "sha512-cJKrW21VRE8vVTRskJo78c/RCvwJCn1f4qgfxL4w77SOWrTCRcmfkYHlHtS0gqpgjv3zhXflRtgsrUCX5xwNnQ==", + "dev": true, + "dependencies": { + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.2.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/pacote/node_modules/@sigstore/bundle": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.2.0.tgz", + "integrity": "sha512-5VI58qgNs76RDrwXNhpmyN/jKpq9evV/7f1XrcqcAfvxDl5SeVY/I5Rmfe96ULAV7/FK5dge9RBKGBJPhL1WsQ==", "dev": true, - "optional": true, - "requires": { - "once": "^1.4.0" + "dependencies": { + "@sigstore/protobuf-specs": "^0.3.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "error-callsites": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/error-callsites/-/error-callsites-2.0.4.tgz", - "integrity": "sha512-V877Ch4FC4FN178fDK1fsrHN4I1YQIBdtjKrHh3BUHMnh3SMvwUVrqkaOgDpUuevgSNna0RBq6Ox9SGlxYrigA==", + "node_modules/pacote/node_modules/@sigstore/protobuf-specs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.0.tgz", + "integrity": "sha512-zxiQ66JFOjVvP9hbhGj/F/qNdsZfkGb/dVXSanNRNuAzMlr4MC95voPUBX8//ZNnmv3uSYzdfR/JSkrgvZTGxA==", "dev": true, - "optional": true + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/pacote/node_modules/@sigstore/sign": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.3.tgz", + "integrity": "sha512-LqlA+ffyN02yC7RKszCdMTS6bldZnIodiox+IkT8B2f8oRYXCB3LQ9roXeiEL21m64CVH1wyveYAORfD65WoSw==", "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - }, "dependencies": { - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - } + "@sigstore/bundle": "^2.2.0", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.0", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "node_modules/pacote/node_modules/@sigstore/tuf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.1.tgz", + "integrity": "sha512-9Iv40z652td/QbV0o5n/x25H9w6IYRt2pIGbTX55yFDYlApDQn/6YZomjz6+KBx69rXHLzHcbtTS586mDdFD+Q==", "dev": true, - "optional": true, - "requires": { - "stackframe": "^1.3.4" + "dependencies": { + "@sigstore/protobuf-specs": "^0.3.0", + "tuf-js": "^2.2.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "node_modules/pacote/node_modules/@tufjs/canonical-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz", + "integrity": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==", "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "node_modules/pacote/node_modules/@tufjs/models": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz", + "integrity": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==", "dev": true, - "requires": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" + "dependencies": { + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/pacote/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "requires": { - "has": "^1.0.3" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/pacote/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "node_modules/pacote/node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } }, - "eslint": { - "version": "8.26.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz", - "integrity": "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==", + "node_modules/pacote/node_modules/ignore-walk": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz", + "integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==", "dev": true, - "requires": { - "@eslint/eslintrc": "^1.3.3", - "@humanwhocodes/config-array": "^0.11.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.15.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "eslint-config-airbnb-base": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", - "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "node_modules/pacote/node_modules/json-parse-even-better-errors": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", + "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", "dev": true, - "requires": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.5", - "semver": "^6.3.0" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "node_modules/pacote/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, - "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "node_modules/pacote/node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, - "requires": { - "debug": "^3.2.7" - }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "node_modules/pacote/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "eslint-plugin-json": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-3.1.0.tgz", - "integrity": "sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==", + "node_modules/pacote/node_modules/npm-package-arg": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", + "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", "dev": true, - "requires": { - "lodash": "^4.17.21", - "vscode-json-languageservice": "^4.1.6" - }, "dependencies": { - "vscode-json-languageservice": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz", - "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==", - "dev": true, - "requires": { - "jsonc-parser": "^3.0.0", - "vscode-languageserver-textdocument": "^1.0.3", - "vscode-languageserver-types": "^3.16.0", - "vscode-nls": "^5.0.0", - "vscode-uri": "^3.0.3" - } - }, - "vscode-languageserver-types": { - "version": "3.17.2", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.2.tgz", - "integrity": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==", - "dev": true - }, - "vscode-uri": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.6.tgz", - "integrity": "sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==", - "dev": true - } + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/pacote/node_modules/npm-packlist": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz", + "integrity": "sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==", "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "dependencies": { + "ignore-walk": "^6.0.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/pacote/node_modules/npm-registry-fetch": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.1.0.tgz", + "integrity": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==", "dev": true, - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - } + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - }, - "espree": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", - "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", + "node_modules/pacote/node_modules/read-package-json": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz", + "integrity": "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==", "dev": true, - "requires": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - }, "dependencies": { - "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", - "dev": true - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - } + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true + "node_modules/pacote/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "node_modules/pacote/node_modules/sigstore": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.2.2.tgz", + "integrity": "sha512-2A3WvXkQurhuMgORgT60r6pOWiCOO5LlEqY2ADxGBDGVYLSo5HN0uLtb68YpVpuL/Vi8mLTe7+0Dx2Fq8lLqEg==", "dev": true, - "requires": { - "estraverse": "^5.1.0" - }, "dependencies": { - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true - } + "@sigstore/bundle": "^2.2.0", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.0", + "@sigstore/sign": "^2.2.3", + "@sigstore/tuf": "^2.3.1", + "@sigstore/verify": "^1.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/pacote/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", "dev": true, - "requires": { - "estraverse": "^5.2.0" - }, "dependencies": { - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true - } + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true + "node_modules/pacote/node_modules/tuf-js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.0.tgz", + "integrity": "sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==", + "dev": true, + "dependencies": { + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "eyes": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", - "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=" + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "node_modules/parse-json/node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-json-stringify": { - "version": "2.7.13", - "resolved": "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-2.7.13.tgz", - "integrity": "sha512-ar+hQ4+OIurUGjSJD1anvYSDcUflywhKjfxnsW4TBTD7+u0tJufv6DKRWoQk3vI6YBOWMoz0TQtfbe7dxbQmvA==", + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", "dev": true, - "optional": true, - "requires": { - "ajv": "^6.11.0", - "deepmerge": "^4.2.2", - "rfdc": "^1.2.0", - "string-similarity": "^4.0.1" + "dependencies": { + "protocols": "^2.0.0" } }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", "dev": true, - "optional": true + "dependencies": { + "parse-path": "^7.0.0" + } }, - "fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "optional": true + "engines": { + "node": ">=8" + } }, - "fast-stream-to-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-stream-to-buffer/-/fast-stream-to-buffer-1.0.0.tgz", - "integrity": "sha512-bI/544WUQlD2iXBibQbOMSmG07Hay7YrpXlKaeGTPT7H7pC0eitt3usak5vUwEvCGK/O7rUAM3iyQValGU22TQ==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "optional": true, - "requires": { - "end-of-stream": "^1.4.1" + "engines": { + "node": ">=0.10.0" } }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "requires": { - "reusify": "^1.0.4" + "engines": { + "node": ">=8" } }, - "fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "requires": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, "dependencies": { - "web-streams-polyfill": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", - "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" - } + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" + "engines": { + "node": "14 || >=16.14" } }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "requires": { - "flat-cache": "^3.0.4" + "engines": { + "node": ">=8" } }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "peer": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" } }, - "flatstr": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", - "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==", + "node_modules/pify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", "dev": true, - "optional": true - }, - "flatted": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", - "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==", - "dev": true - }, - "fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", - "dev": true + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "requires": { - "is-callable": "^1.1.3" + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "formdata-node": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", - "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", - "requires": { - "node-domexception": "1.0.0", - "web-streams-polyfill": "4.0.0-beta.3" + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "requires": { - "fetch-blob": "^3.1.2" + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "forwarded-parse": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/forwarded-parse/-/forwarded-parse-2.1.2.tgz", - "integrity": "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "optional": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "requires": { - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "engines": { + "node": ">= 0.8.0" } }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", "dev": true, - "requires": { - "is-glob": "^4.0.1" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, - "requires": { - "define-properties": "^1.1.3" + "engines": { + "node": ">=0.4.0" } }, - "google-protobuf": { - "version": "3.21.2", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.2.tgz", - "integrity": "sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==", + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", "dev": true }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" } }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "graphql": { - "version": "15.5.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.5.0.tgz", - "integrity": "sha512-OmaM7y0kaK31NKG31q4YbD2beNYa6jBBKtMFT6gLYJljHLJr42IqJ8KX08u3Li/0ifzTU5HjmoOOrwa5BRLeDA==" - }, - "graphql-tag": { - "version": "2.12.6", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", - "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", - "requires": { - "tslib": "^2.1.0" - }, + "node_modules/promise-streams": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/promise-streams/-/promise-streams-2.1.1.tgz", + "integrity": "sha512-C8VcyEeT4OIZ6/uUdXLokTpPn0Ea2jf3Vm0o+s4xlY+9LA24Ewxf3oN8bflFfXFlMvs40ptb9+R8pYWcDd695w==", "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } + "bluebird": "^2.10.2" + }, + "engines": { + "node": ">=0.12" } }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/promzard": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/promzard/-/promzard-1.0.0.tgz", + "integrity": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==", "dev": true, - "requires": { - "function-bind": "^1.1.1" + "dependencies": { + "read": "^2.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", "dev": true }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "dev": true }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" + "engines": { + "node": ">=6" } }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/read": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/read/-/read-2.1.0.tgz", + "integrity": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==", "dev": true, - "requires": { - "has-symbols": "^1.0.2" + "dependencies": { + "mute-stream": "~1.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "node_modules/read-cmd-shim": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz", + "integrity": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==", "dev": true, - "requires": { - "function-bind": "^1.1.2" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "hpagent": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz", - "integrity": "sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==", - "dev": true + "node_modules/read-package-json": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", + "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", + "dev": true, + "dependencies": { + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^5.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "http-headers": { + "node_modules/read-package-json-fast": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/http-headers/-/http-headers-3.0.2.tgz", - "integrity": "sha512-87E1I+2Wg4dxxz4rcxElo3dxO/w1ZtgL1yA0Sb6vH3qU16vRKq1NjWQv9SCY3ly2OQROcoxHZOUpmelS+k6wOw==", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", "dev": true, - "optional": true, - "requires": { - "next-line": "^1.1.0" + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", + "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", "dev": true, - "optional": true, - "requires": { - "ms": "^2.0.0" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/read-package-json-fast/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true + "node_modules/read-package-json/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "dev": true, + "dependencies": { + "lru-cache": "^7.5.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/read-package-json/node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "engines": { + "node": ">=12" } }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true + "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", + "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "node_modules/read-package-json/node_modules/normalize-package-data": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", + "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" + "dependencies": { + "hosted-git-info": "^6.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "node_modules/read-package-json/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "node_modules/read-package-json/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "node_modules/read-pkg-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", "dev": true, - "requires": { - "get-intrinsic": "^1.2.2", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "dev": true + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, - "requires": { - "has-bigints": "^1.0.1" + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" } }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/read-pkg-up/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "engines": { + "node": ">=4" } }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true - }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, - "requires": { - "has": "^1.0.3" + "engines": { + "node": ">=4" } }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, - "is-finite": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "node_modules/read-pkg/node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "requires": { - "is-extglob": "^2.1.1" + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "is-integer": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.7.tgz", - "integrity": "sha512-RPQc/s9yBHSvpi+hs9dYiJ2cuFeU6x3TyyIp8O2H6SKEltIvJOzRj9ToyvcStDvPR/pS4rxgr1oBFajQjZ2Szg==", + "node_modules/read-pkg/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, - "optional": true, - "requires": { - "is-finite": "^1.0.0" + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" } }, - "is-native": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-native/-/is-native-1.0.1.tgz", - "integrity": "sha512-I4z9hx+4u3/zyvpvGtAR+n7SodJugE+i2jiS8yfq1A9QAZY0KldLQz0SBptLC9ti7kBlpghWUwTKE2BA62eCcw==", + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, - "optional": true, - "requires": { - "is-nil": "^1.0.0", - "to-source-code": "^1.0.0" + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-nil": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-nil/-/is-nil-1.0.1.tgz", - "integrity": "sha512-m2Rm8PhUFDNNhgvwZJjJG74a9h5CHU0fkA8WT+WGlCjyEbZ2jPwgb+ZxHu4np284EqNVyOsgppReK4qy/TwEwg==", + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "optional": true + "engines": { + "node": ">=4" + } }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" + "bin": { + "semver": "bin/semver" } }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/read-pkg/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "engines": { + "node": ">=4" } }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "node_modules/read/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", "dev": true, - "requires": { - "call-bind": "^1.0.2" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "requires": { - "has-symbols": "^1.0.1" + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, - "requires": { - "which-typed-array": "^1.1.11" + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", "dev": true, - "requires": { - "call-bind": "^1.0.2" + "engines": { + "node": ">=6.5.0" } }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "js-sdsl": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz", - "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "requires": { - "argparse": "^2.0.1" + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, - "requires": { - "minimist": "^1.2.0" + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "jsonc-parser": { + "node_modules/resolve-cwd": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", - "dev": true - }, - "kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", - "dev": true + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "engines": { + "node": ">=8" } }, - "load-json-file": { + "node_modules/resolve-from": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "engines": { + "node": ">=4" } }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "requires": { - "p-locate": "^5.0.0" + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" } }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.omit": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==", - "dev": true - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, - "optional": true + "engines": { + "node": ">= 4" + } }, - "logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, - "optional": true, - "requires": { - "yallist": "^4.0.0" + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "mapcap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mapcap/-/mapcap-1.0.0.tgz", - "integrity": "sha512-KcNlZSlFPx+r1jYZmxEbTVymG+dIctf10WmWkuhrhrblM+KMoF77HelwihL5cxYlORye79KoR4IlOOk99lUJ0g==", + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "optional": true + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "measured-core": { - "version": "1.51.1", - "resolved": "https://registry.npmjs.org/measured-core/-/measured-core-1.51.1.tgz", - "integrity": "sha512-DZQP9SEwdqqYRvT2slMK81D/7xwdxXosZZBtLVfPSo6y5P672FBTbzHVdN4IQyUkUpcVOR9pIvtUy5Ryl7NKyg==", + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, - "optional": true, - "requires": { - "binary-search": "^1.3.3", - "optional-js": "^2.0.0" + "engines": { + "node": ">=0.12.0" } }, - "measured-reporting": { - "version": "1.51.1", - "resolved": "https://registry.npmjs.org/measured-reporting/-/measured-reporting-1.51.1.tgz", - "integrity": "sha512-JCt+2u6XT1I5lG3SuYqywE0e62DJuAzBcfMzWGUhIYtPQV2Vm4HiYt/durqmzsAbZV181CEs+o/jMKWJKkYIWw==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "optional": true, - "requires": { - "console-log-level": "^1.4.1", - "mapcap": "^1.0.0", - "measured-core": "^1.51.1", - "optional-js": "^2.0.0" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" } }, - "memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "dev": true - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, - "requires": { - "brace-expansion": "^1.1.7" + "dependencies": { + "tslib": "^2.1.0" } }, - "minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "node_modules/rxjs/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "node_modules/safe-array-concat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", "dev": true, - "requires": { - "minimist": "^1.2.5" + "dependencies": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "module-details-from-path": { + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz", - "integrity": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, - "optional": true + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "monitor-event-loop-delay": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/monitor-event-loop-delay/-/monitor-event-loop-delay-1.0.0.tgz", - "integrity": "sha512-YRIr1exCIfBDLZle8WHOfSo7Xg3M+phcZfq9Fx1L6Abo+atGp7cge5pM7PjyBn4s1oZI/BRD4EMrzQBbPpVb5Q==", + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "devOptional": true + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "optional": true + "bin": { + "semver": "bin/semver.js" + } }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } }, - "next-line": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-line/-/next-line-1.1.0.tgz", - "integrity": "sha512-+I10J3wKNoKddNxn0CNpoZ3eTZuqxjNM3b1GImVx22+ePI+Y15P8g/j3WsbP0fhzzrFzrtjOAoq5NCCucswXOQ==", + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, - "optional": true + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } }, - "nice-grpc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/nice-grpc/-/nice-grpc-2.1.4.tgz", - "integrity": "sha512-ZCSnFxg/k6PM1zZ2u/SbuySTrpK7q4klwRE4ymAdiMfZM3Rl1LRUdqUslKSbSjd9XQHzi80Y5JJL5fE58lSrVA==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "requires": { - "@grpc/grpc-js": "^1.7.3", - "abort-controller-x": "^0.4.0", - "nice-grpc-common": "^2.0.2" + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "nice-grpc-client-middleware-deadline": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/nice-grpc-client-middleware-deadline/-/nice-grpc-client-middleware-deadline-2.0.6.tgz", - "integrity": "sha512-bbatthC3ElTyDgyig0w7FKhAMeuKvLiNO0W9ehxGgTqGV3KQnyUvTQvvOifu5PQ3pFbB/my9Fq0p9L7VDJRBBA==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "requires": { - "nice-grpc-common": "^2.0.2" + "engines": { + "node": ">=8" } }, - "nice-grpc-common": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/nice-grpc-common/-/nice-grpc-common-2.0.2.tgz", - "integrity": "sha512-7RNWbls5kAL1QVUOXvBsv1uO0wPQK3lHv+cY1gwkTzirnG1Nop4cBJZubpgziNbaVc/bl9QJcyvsf/NQxa3rjQ==", + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", + "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", "dev": true, - "requires": { - "ts-error": "^1.0.6" + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - }, - "node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "requires": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - } - }, - "node-xlsx": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/node-xlsx/-/node-xlsx-0.23.0.tgz", - "integrity": "sha512-r3KaSZSsSrK92rbPXnX/vDdxURmPPik0rjJ3A+Pybzpjyrk4G6WyGfj8JIz5dMMEpCmWVpmO4qoVPBxnpLv/8Q==", + "node_modules/sigstore": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz", + "integrity": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==", "dev": true, - "requires": { - "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz" + "dependencies": { + "@sigstore/bundle": "^1.1.0", + "@sigstore/protobuf-specs": "^0.2.0", + "@sigstore/sign": "^1.0.0", + "@sigstore/tuf": "^1.0.3", + "make-fetch-happen": "^11.0.1" + }, + "bin": { + "sigstore": "bin/sigstore.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/sigstore/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, "dependencies": { - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - } + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "node_modules/sigstore/node_modules/cacache": { + "version": "17.1.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz", + "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==", "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true - }, - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "object-filter-sequence": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/object-filter-sequence/-/object-filter-sequence-1.0.0.tgz", - "integrity": "sha512-CsubGNxhIEChNY4cXYuA6KXafztzHqzLLZ/y3Kasf3A+sa3lL9thq3z+7o0pZqzEinjXT6lXDPAfVWI59dUyzQ==", + "node_modules/sigstore/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "optional": true + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } }, - "object-identity-map": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/object-identity-map/-/object-identity-map-1.0.2.tgz", - "integrity": "sha512-a2XZDGyYTngvGS67kWnqVdpoaJWsY7C1GhPJvejWAFCsUioTAaiTu8oBad7c6cI4McZxr4CmvnZeycK05iav5A==", + "node_modules/sigstore/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, - "optional": true, - "requires": { - "object.entries": "^1.1.0" + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/sigstore/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "engines": { + "node": ">=12" } }, - "object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "node_modules/sigstore/node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/sigstore/node_modules/make-fetch-happen/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "node_modules/sigstore/node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" } }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "node_modules/sigstore/node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "requires": { - "wrappy": "1" + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "node_modules/sigstore/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", "dev": true, - "requires": { - "fn.name": "1.x.x" + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/sigstore/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", "dev": true, - "requires": { - "mimic-fn": "^2.1.0" + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "optimism": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.10.3.tgz", - "integrity": "sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==", - "requires": { - "@wry/context": "^0.4.0" + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" } }, - "optional-js": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/optional-js/-/optional-js-2.3.0.tgz", - "integrity": "sha512-B0LLi+Vg+eko++0z/b8zIv57kp7HKEzaPJo7LowJXMUKYdf+3XJGu/cw03h/JhIOsLnP+cG5QnTHAuicjA5fMw==", + "node_modules/slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", "dev": true, - "optional": true + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "original-url": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/original-url/-/original-url-1.2.3.tgz", - "integrity": "sha512-BYm+pKYLtS4mVe/mgT3YKGtWV5HzN/XKiaIu1aK4rsxyjuHeTW9N+xVBEpJcY1onB3nccfH0RbzUEoimMqFUHQ==", + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "optional": true, - "requires": { - "forwarded-parse": "^2.1.0" + "dependencies": { + "color-name": "1.1.3" } }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "dev": true, - "requires": { - "yocto-queue": "^0.1.0" + "engines": { + "node": ">=4" } }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "dev": true, - "requires": { - "p-limit": "^3.0.2" + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/socks": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.3.tgz", + "integrity": "sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw==", "dev": true, - "requires": { - "callsites": "^3.0.0" + "dependencies": { + "ip-address": "^9.0.5", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" } }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" } }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", "dev": true, - "requires": { - "pify": "^3.0.0" + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "picomatch": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz", - "integrity": "sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==" - }, - "pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", - "dev": true - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "pino": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-6.14.0.tgz", - "integrity": "sha512-iuhEDel3Z3hF9Jfe44DPXR8l07bhjuFY3GMHIXbjnY9XcafbyDDwl2sN2vw2GjMPf5Nkoe+OFao7ffn9SXaKDg==", + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, - "optional": true, - "requires": { - "fast-redact": "^3.0.0", - "fast-safe-stringify": "^2.0.8", - "flatstr": "^1.0.12", - "pino-std-serializers": "^3.1.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "sonic-boom": "^1.0.2" + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "pino-std-serializers": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-3.2.0.tgz", - "integrity": "sha512-EqX4pwDPrt3MuOAAUBMU0Tk5kR/YcCM5fNPEzgCO2zJ5HfX0vbiH9HbJglnyeQsN96Kznae6MWD47pZB5avTrg==", - "dev": true, - "optional": true - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true }, - "process-warning": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", - "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "optional": true + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "node_modules/spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", "dev": true }, - "promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "node_modules/split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, - "requires": { - "asap": "~2.0.6" + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" } }, - "promise-streams": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/promise-streams/-/promise-streams-2.1.1.tgz", - "integrity": "sha1-cwnx02mDMOp/rasZIvE5iSKayFo=", - "requires": { - "bluebird": "^2.10.2" + "node_modules/split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "dependencies": { + "readable-stream": "^3.0.0" } }, - "prompt": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/prompt/-/prompt-1.3.0.tgz", - "integrity": "sha512-ZkaRWtaLBZl7KKAKndKYUL8WqNT+cQHKRZnT4RYYms48jQkFw3rrBL+/N5K/KtdEveHkxs982MX2BkDKub2ZMg==", - "requires": { - "@colors/colors": "1.5.0", - "async": "3.2.3", - "read": "1.0.x", - "revalidator": "0.1.x", - "winston": "2.x" - } + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "dev": true }, - "protobufjs": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", - "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", - "dev": true, - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - }, - "dependencies": { - "long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "dev": true - } + "node_modules/ssri": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "node_modules/ssri/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "optional": true - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } }, - "quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "optional": true - }, - "read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", - "requires": { - "mute-stream": "~0.0.4" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "node_modules/string.prototype.padend": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz", + "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "requires": { - "picomatch": "^2.2.1" + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "relative-microtime": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/relative-microtime/-/relative-microtime-2.0.0.tgz", - "integrity": "sha512-l18ha6HEZc+No/uK4GyAnNxgKW7nvEe35IaeN54sShMojtqik2a6GbTyuiezkjpPaqP874Z3lW5ysBo5irz4NA==", + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", "dev": true, - "optional": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "require-in-the-middle": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.1.1.tgz", - "integrity": "sha512-OScOjQjrrjhAdFpQmnkE/qbIBGCRFhQB/YaJhcC3CPOlmhe7llnW46Ac1J5+EjcNXOTnDdpF96Erw/yedsGksQ==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "optional": true, - "requires": { - "debug": "^4.1.1", - "module-details-from-path": "^1.0.3", - "resolve": "^1.22.1" + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "resolve-from": { + "node_modules/strip-bom": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "engines": { + "node": ">=8" } }, - "retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "revalidator": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", - "integrity": "sha1-/s5hv6DBtSoga9axgZgYS91SOjs=" - }, - "rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, - "optional": true + "engines": { + "node": ">=6" + } }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "requires": { - "glob": "^7.1.3" + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "requires": { - "queue-microtask": "^1.2.2" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "node_modules/strong-log-transformer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", "dev": true, - "requires": { - "tslib": "^1.9.0" + "dependencies": { + "duplexer": "^0.1.1", + "minimist": "^1.2.0", + "through": "^2.3.4" + }, + "bin": { + "sl-log-transformer": "bin/sl-log-transformer.js" + }, + "engines": { + "node": ">=4" } }, - "safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safe-regex-test": { + "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "secure-json-parse": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", - "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==", - "dev": true - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", - "dev": true, - "requires": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "node_modules/symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", + "engines": { + "node": ">=0.10.0" } }, - "set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "node_modules/table": { + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", "dev": true, - "requires": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "dependencies": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "shallow-clone-shim": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shallow-clone-shim/-/shallow-clone-shim-2.0.0.tgz", - "integrity": "sha512-YRNymdiL3KGOoS67d73TEmk4tdPTO9GSMCoiphQsTcC9EtC+AOmMPjkyBkRoCJfW9ASsaZw1craaiw1dPN2D3Q==", - "dev": true, - "optional": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/table/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", "dev": true, - "requires": { - "shebang-regex": "^3.0.0" + "engines": { + "node": ">=6" } }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true - }, - "shimmer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz", - "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==", + "node_modules/table/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/table/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "engines": { + "node": ">=4" } }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "dev": true - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "node_modules/table/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, - "requires": { - "is-arrayish": "^0.3.1" + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" } }, - "sonic-boom": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.4.1.tgz", - "integrity": "sha512-LRHh/A8tpW7ru89lrlkU4AszXt1dbwSjVWguGrmlxE7tawVmDBlI1PILMkXAxJTwqhgsEeTHzj36D5CmHgQmNg==", + "node_modules/table/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, - "optional": true, - "requires": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "node_modules/tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" } }, - "spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" } }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" } }, - "spdx-license-ids": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", - "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", - "dev": true - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "sql-summary": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sql-summary/-/sql-summary-1.0.1.tgz", - "integrity": "sha512-IpCr2tpnNkP3Jera4ncexsZUp0enJBLr+pHCyTweMUBrbJsTgQeLWx1FXLhoBj/MvcnUQpkgOn2EY8FKOkUzww==", + "node_modules/tar/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "optional": true - }, - "stack-chain": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/stack-chain/-/stack-chain-1.3.7.tgz", - "integrity": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==", - "dev": true - }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", "dev": true, - "optional": true + "engines": { + "node": ">=4" + } }, - "stream-chopper": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/stream-chopper/-/stream-chopper-3.0.1.tgz", - "integrity": "sha512-f7h+ly8baAE26iIjcp3VbnBkbIRGtrvV0X0xxFM/d7fwLTYnLzDPTXRKNxa2HZzohOrc96NTrR+FaV3mzOelNA==", + "node_modules/text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", "dev": true, - "optional": true, - "requires": { - "readable-stream": "^3.0.6" + "engines": { + "node": ">=0.10" } }, - "streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - } + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true }, - "string-similarity": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz", - "integrity": "sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==", - "dev": true, - "optional": true + "node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dependencies": { + "readable-stream": "3" + } }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" } }, - "string.prototype.padend": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz", - "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "engines": { + "node": ">=4" } }, - "string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "engines": { + "node": ">=8" } }, - "string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "node_modules/ts-invariant": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.4.4.tgz", + "integrity": "sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==", + "dependencies": { + "tslib": "^1.9.3" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, - "requires": { - "ansi-regex": "^5.0.1" + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "strip-bom": { + "node_modules/tsconfig-paths/node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "requires": { - "has-flag": "^3.0.0" + "engines": { + "node": ">=4" } }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" - }, - "text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", - "dev": true - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, - "through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "requires": { - "readable-stream": "3" + "node_modules/tuf-js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", + "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", + "dev": true, + "dependencies": { + "@tufjs/models": "1.0.4", + "debug": "^4.3.4", + "make-fetch-happen": "^11.1.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "node_modules/tuf-js/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - }, - "to-source-code": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/to-source-code/-/to-source-code-1.0.2.tgz", - "integrity": "sha512-YzWtjmNIf3E75eZYa7m1SCyl0vgOGoTzdpH3svfa8SUm5rqTgl9hnDolrAGOghCF9P2gsITXQoMrlujOoz+RPw==", + "node_modules/tuf-js/node_modules/cacache": { + "version": "17.1.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz", + "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==", "dev": true, - "optional": true, - "requires": { - "is-nil": "^1.0.0" + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "node_modules/tuf-js/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "optional": true, - "requires": { - "punycode": "^2.1.0" + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "traverse": { - "version": "0.6.7", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", - "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "node_modules/tuf-js/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, - "optional": true + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } }, - "triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", - "dev": true + "node_modules/tuf-js/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } }, - "ts-error": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/ts-error/-/ts-error-1.0.6.tgz", - "integrity": "sha512-tLJxacIQUM82IR7JO1UUkKlYuUTmoY9HBJAmNWFzheSlDS5SPMcNIepejHJa4BpPQLAcbRhRf3GDJzyj6rbKvA==", - "dev": true + "node_modules/tuf-js/node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", + "dev": true, + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/tuf-js/node_modules/make-fetch-happen/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "ts-invariant": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.4.4.tgz", - "integrity": "sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==", - "requires": { - "tslib": "^1.9.3" + "node_modules/tuf-js/node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" } }, - "ts-proto-descriptors": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/ts-proto-descriptors/-/ts-proto-descriptors-1.9.0.tgz", - "integrity": "sha512-Ui8zA5Q4Jnq6JIGRraUWvECrqixxtwwin8GkhIkvwCpR+JcSPsxWe8HfTj5eHfyruGYI6Zjf96XlC87hTakHfQ==", - "dev": true, - "requires": { - "long": "^4.0.0", - "protobufjs": "^6.8.8" - }, - "dependencies": { - "protobufjs": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz", - "integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==", - "dev": true, - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - } - } + "node_modules/tuf-js/node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "node_modules/tuf-js/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" } }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "node_modules/tuf-js/node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "type-check": { + "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "requires": { + "dependencies": { "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "node_modules/typed-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz", + "integrity": "sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" } }, - "typed-array-byte-length": { + "node_modules/typed-array-byte-length": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2", "for-each": "^0.3.3", "has-proto": "^1.0.1", "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "typed-array-byte-offset": { + "node_modules/typed-array-byte-offset": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", "dev": true, - "requires": { + "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "for-each": "^0.3.3", "has-proto": "^1.0.1", "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "typed-array-length": { + "node_modules/typed-array-length": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2", "for-each": "^0.3.3", "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" } }, - "typescript": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", - "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==" + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } }, - "unbox-primitive": { + "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "undici": { - "version": "5.22.1", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", - "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", "dev": true, - "requires": { - "busboy": "^1.6.0" + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "unicode-byte-truncate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unicode-byte-truncate/-/unicode-byte-truncate-1.0.0.tgz", - "integrity": "sha512-GQgHk6DodEoKddKQdjnv7xKS9G09XCfHWX0R4RKht+EbUMSiVEmtWHGFO8HUm+6NvWik3E2/DG4MxTitOLL64A==", + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", "dev": true, - "optional": true, - "requires": { - "is-integer": "^1.0.6", - "unicode-substring": "^0.1.0" + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "unicode-substring": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicode-substring/-/unicode-substring-0.1.0.tgz", - "integrity": "sha512-36Xaw9wXi7MB/3/EQZZHkZyyiRNa9i3k9YtPAz2KfqMVH2xutdXyMHn4Igarmnvr+wOrfWa/6njhY+jPpXN2EQ==", + "node_modules/universal-user-agent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "dev": true + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/upath": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, - "optional": true + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true, + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } }, - "uri-js": { + "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "requires": { + "dependencies": { "punycode": "^2.1.0" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, - "uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", - "dev": true + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", "dev": true }, - "validate-npm-package-license": { + "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "requires": { + "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "vscode-json-languageservice": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.11.0.tgz", - "integrity": "sha512-QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==", + "node_modules/validate-npm-package-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", + "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "dev": true, + "dependencies": { + "builtins": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/vscode-json-languageservice": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz", + "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==", "dev": true, - "requires": { + "dependencies": { "jsonc-parser": "^3.0.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-languageserver-types": "3.16.0-next.2", + "vscode-languageserver-textdocument": "^1.0.3", + "vscode-languageserver-types": "^3.16.0", "vscode-nls": "^5.0.0", - "vscode-uri": "^2.1.2" + "vscode-uri": "^3.0.3" } }, - "vscode-languageserver-textdocument": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.7.tgz", - "integrity": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==", + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", + "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", "dev": true }, - "vscode-languageserver-types": { - "version": "3.16.0-next.2", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz", - "integrity": "sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==", + "node_modules/vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", "dev": true }, - "vscode-nls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz", - "integrity": "sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==", + "node_modules/vscode-nls": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz", + "integrity": "sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==", "dev": true }, - "vscode-uri": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", - "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==", + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", "dev": true }, - "web-streams-polyfill": { - "version": "4.0.0-beta.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", - "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==" - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, - "optional": true + "dependencies": { + "defaults": "^1.0.3" + } }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "optional": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "which": { + "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { + "node_modules/which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, - "requires": { + "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "node_modules/which-typed-array": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", + "dependencies": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "winston": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.5.tgz", - "integrity": "sha512-TWoamHt5yYvsMarGlGEQE59SbJHqGsZV8/lwC+iCcGeAe0vUaOh+Lv6SYM17ouzC/a/LB1/hz/7sxFBtlu1l4A==", - "requires": { - "async": "~1.0.0", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "stack-trace": "0.0.x" + "has-tostringtag": "^1.0.1" }, - "dependencies": { - "async": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", - "integrity": "sha1-+PwEyjoTeErenhZBr5hXjPvWR6k=" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - } + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "winston-elasticsearch": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/winston-elasticsearch/-/winston-elasticsearch-0.17.2.tgz", - "integrity": "sha512-9P5Y6p8HAWOvKh/sHfpDo+bzhSvPwDKHHoCVNT/cr2tjJU8t7TcSfTB9gfmhkiudCt2HnzvCBPFcN4DRpqNSng==", + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, - "requires": { - "@elastic/elasticsearch": "^8.6.0", - "dayjs": "^1.11.7", - "debug": "^4.3.4", - "elastic-apm-node": "^3.20.0", - "lodash.defaults": "^4.2.0", - "lodash.omit": "^4.5.0", - "promise": "^8.3.0", - "retry": "^0.13.1", - "winston": "^3.8.2", - "winston-transport": "^4.5.0" - }, - "dependencies": { - "winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - } - } + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, - "requires": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" + "engines": { + "node": ">=0.10.0" } }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true }, - "wrap-ansi": { + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "requires": { + "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "write": { + "node_modules/write": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", "dev": true, - "requires": { + "dependencies": { "mkdirp": "^0.5.1" + }, + "engines": { + "node": ">=4" } }, - "xlsx": { - "version": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz", + "node_modules/write-file-atomic": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/write-file-atomic/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/write-json-file": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz", + "integrity": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==", + "dev": true, + "dependencies": { + "detect-indent": "^5.0.0", + "graceful-fs": "^4.1.15", + "make-dir": "^2.1.0", + "pify": "^4.0.1", + "sort-keys": "^2.0.0", + "write-file-atomic": "^2.4.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/write-json-file/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/write-json-file/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/write-json-file/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/write-json-file/node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/write-pkg": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz", + "integrity": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==", + "dev": true, + "dependencies": { + "sort-keys": "^2.0.0", + "type-fest": "^0.4.1", + "write-json-file": "^3.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/write-pkg/node_modules/type-fest": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz", + "integrity": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/write/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/xlsx": { + "version": "0.19.3", + "resolved": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz", "integrity": "sha512-8IfgFctB7fkvqkTGF2MnrDrC6vzE28Wcc1aSbdDQ+4/WFtzfS73YuapbuaPZwGqpR2e0EeDMIrFOJubQVLWFNA==", - "dev": true + "license": "Apache-2.0", + "bin": { + "xlsx": "bin/xlsx.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } }, - "y18n": { + "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + } }, - "yallist": { + "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "optional": true + "dev": true }, - "yaml-document-stream": { + "node_modules/yaml-document-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/yaml-document-stream/-/yaml-document-stream-1.1.0.tgz", "integrity": "sha512-IYn6NCEeA2MT3rt2XeOLy9BJe/i5dTs3KUhpprXmoj/hFlkltunC0J2h6y4vDnMTPWzehOFjl7I+XXw8PLjENQ==", - "requires": {} + "peerDependencies": { + "js-yaml": "^4.0.0" + } }, - "yargs": { + "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "requires": { + "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", @@ -11204,30 +12500,42 @@ "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" } }, - "yargs-parser": { + "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true + "dev": true, + "engines": { + "node": ">=12" + } }, - "yocto-queue": { + "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "zen-observable": { + "node_modules/zen-observable": { "version": "0.8.15", "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==" }, - "zen-observable-ts": { + "node_modules/zen-observable-ts": { "version": "0.8.21", "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz", "integrity": "sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==", - "requires": { + "dependencies": { "tslib": "^1.9.3", "zen-observable": "^0.8.0" } diff --git a/package.json b/package.json index 5932815..0c573dd 100644 --- a/package.json +++ b/package.json @@ -13,24 +13,18 @@ "data" ], "dependencies": { - "@restorecommerce/rc-grpc-clients": "^5.1.15", "@restorecommerce/gql-bot": "^1.0.1", "commander": "^9.4.1", - "dotenv": "^16.0.3", - "formdata-node": "^4.3.3", - "node-fetch": "^3.2.9", - "prompt": "^1.3.0", - "typescript": "^4.8.4" + "dotenv": "^16.0.3" }, "devDependencies": { + "@babel/eslint-parser": "^7.23.10", "@restorecommerce/eslint-config-restorecommerce": "^0.1.5", - "@types/node": "^18.11.7", - "babel-eslint": "^10.0.3", "eslint": "^8.26.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-json": "^3.1.0", - "node-xlsx": "^0.23.0", + "lerna": "^8.1.2", "npm-run-all": "^4.1.5" }, "scripts": { @@ -46,10 +40,16 @@ "import:demoshop:identity": "node import.js import -d demo-shop -j identity", "import:demoshop:catalog": "node import.js import -d demo-shop -j catalog", "import:demoshop:objects": "node ./dataset/demo-shop/objects/object_importer.js", + "transform": "npm-run-all transform:system transform:demoshop", + "transform:system": "npm-run-all transform:system:unitcodes", + "transform:demoshop": "npm-run-all transform:demoshop:catalog", "transform:system:unitcodes": "node ./datasets/system/generator/unit_codes/transform.js", "transform:demoshop:catalog": "node ./datasets/demo-shop/generator/catalog/transform.js" }, "engines": { "node": ">= 18.0.0" - } + }, + "workspaces": [ + "datasets/**" + ] }