commit 1be28818319d5024dac136f704670b4086677973 Author: shijing Date: Fri Mar 27 14:40:43 2026 +0800 first push diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7f5b23f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}] +charset = utf-8 +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +end_of_line = lf +max_line_length = 100 diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..e6c82f0 --- /dev/null +++ b/.env.development @@ -0,0 +1,8 @@ +# 本地环境 +VITE_APP_TITLE=瓷福隧道窑系统 +VITE_API_BASE_URL=http://10.0.11.74:60309/api +VITE_APP_BASEURL=http://10.0.11.74:60309 +# 本地端口 +VITE_APP_PORT=2800 +# 是否开启代理 +VITE_APP_PROXY=true diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..17d2d7b --- /dev/null +++ b/.env.production @@ -0,0 +1,8 @@ +# 生产环境 +VITE_APP_TITLE=瓷福隧道窑系统 +VITE_API_BASE_URL=http://10.0.11.74:60309/api +VITE_APP_BASEURL=http://10.0.11.74:60309 +# 本地端口 +VITE_APP_PORT=2800 +# 是否开启代理 +VITE_APP_PROXY=true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8ee54e8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..1c327ac --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,9 @@ +{ + "ExpandedNodes": [ + "", + "\\src-tauri", + "\\src-tauri\\capabilities" + ], + "SelectedNode": "\\src-tauri\\capabilities\\default.json", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..aa4e6c8 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/3a87885c-6eb9-4e51-8e2b-7e0624736d62.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/3a87885c-6eb9-4e51-8e2b-7e0624736d62.vsidx new file mode 100644 index 0000000..d9b936f Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/3a87885c-6eb9-4e51-8e2b-7e0624736d62.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/4d62bea0-813c-4004-958e-8c3525de3c87.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/4d62bea0-813c-4004-958e-8c3525de3c87.vsidx new file mode 100644 index 0000000..7e00516 Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/4d62bea0-813c-4004-958e-8c3525de3c87.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/5a279ef0-d7de-4a06-9e91-f69881064aae.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/5a279ef0-d7de-4a06-9e91-f69881064aae.vsidx new file mode 100644 index 0000000..af772e0 Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/5a279ef0-d7de-4a06-9e91-f69881064aae.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/650ed2ed-cc53-49e8-86b4-01cf8ef8e745.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/650ed2ed-cc53-49e8-86b4-01cf8ef8e745.vsidx new file mode 100644 index 0000000..95f537e Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/650ed2ed-cc53-49e8-86b4-01cf8ef8e745.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/b1659a65-d9d4-4127-86dc-9f65284a96be.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/b1659a65-d9d4-4127-86dc-9f65284a96be.vsidx new file mode 100644 index 0000000..3327a28 Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/b1659a65-d9d4-4127-86dc-9f65284a96be.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/d01b142b-10e8-4a2b-9ee8-47992c5a6cf9.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/d01b142b-10e8-4a2b-9ee8-47992c5a6cf9.vsidx new file mode 100644 index 0000000..6c2331f Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/d01b142b-10e8-4a2b-9ee8-47992c5a6cf9.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/daaa8c72-84b8-4729-9fbd-92c632726c8e.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/daaa8c72-84b8-4729-9fbd-92c632726c8e.vsidx new file mode 100644 index 0000000..be916be Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/daaa8c72-84b8-4729-9fbd-92c632726c8e.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/fb5cd6bc-1d1f-4ba5-86b4-8823a925f3cc.vsidx b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/fb5cd6bc-1d1f-4ba5-86b4-8823a925f3cc.vsidx new file mode 100644 index 0000000..24c303f Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/FileContentIndex/fb5cd6bc-1d1f-4ba5-86b4-8823a925f3cc.vsidx differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/v18/.wsuo b/.vs/vite_vue3_tsproject_change.slnx/v18/.wsuo new file mode 100644 index 0000000..409e298 Binary files /dev/null and b/.vs/vite_vue3_tsproject_change.slnx/v18/.wsuo differ diff --git a/.vs/vite_vue3_tsproject_change.slnx/v18/DocumentLayout.json b/.vs/vite_vue3_tsproject_change.slnx/v18/DocumentLayout.json new file mode 100644 index 0000000..94f74da --- /dev/null +++ b/.vs/vite_vue3_tsproject_change.slnx/v18/DocumentLayout.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "WorkspaceRootPath": "D:\\testProjects\\yaodaoxiangmu\\vite_vue3_tsproject_change\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [] + } + ] +} \ No newline at end of file diff --git a/.vs/vite_vue3_tsproject_change/v18/workspaceFileList.bin b/.vs/vite_vue3_tsproject_change/v18/workspaceFileList.bin new file mode 100644 index 0000000..133de3f Binary files /dev/null and b/.vs/vite_vue3_tsproject_change/v18/workspaceFileList.bin differ diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..dc93500 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,8 @@ +{ + "recommendations": [ + "Vue.volar", + "dbaeumer.vscode-eslint", + "EditorConfig.EditorConfig", + "aminer.codegeex" + ] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..6c42394 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# vue-project + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). + +## Type Support for `.vue` Imports in TS + +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. + +## Customize configuration + +See [Vite Configuration Reference](https://vite.dev/config/). + +## Project Setup + +```sh +npm install +``` + +### Compile and Hot-Reload for Development + +```sh +npm run dev +``` + +### Type-Check, Compile and Minify for Production + +```sh +npm run build +``` + +### Lint with [ESLint](https://eslint.org/) + +```sh +npm run lint +``` diff --git a/docs/superpowers/plans/2026-03-26-coal-feeding-layout.md b/docs/superpowers/plans/2026-03-26-coal-feeding-layout.md new file mode 100644 index 0000000..2f83e4b --- /dev/null +++ b/docs/superpowers/plans/2026-03-26-coal-feeding-layout.md @@ -0,0 +1,378 @@ +# Coal Feeding Layout Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Replace the right-side `` in `src/views/coalFeeding.vue` with a block-based unit-column layout while preserving the current row/column visual structure and existing interactions. + +**Architecture:** Keep all business state and handlers in `src/views/coalFeeding.vue`, but reorganize the right-side rendering around a fixed parameter label column plus horizontally scrollable unit columns. Use small in-file render configurations for upper rows, lower rows, and fixed-height visual blocks so the new block layout stays aligned with the former table structure. + +**Tech Stack:** Vue 3 ` + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..2874d3b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8038 @@ +{ + "name": "vue-project", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "vue-project", + "version": "0.0.0", + "dependencies": { + "@opentiny/vue": "^3.29.0", + "@tauri-apps/api": "^2.10.1", + "vue": "^3.5.13", + "vue-router": "^4.5.0" + }, + "devDependencies": { + "@tauri-apps/cli": "^2.10.1", + "@tsconfig/node22": "^22.0.0", + "@types/node": "^22.13.4", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/eslint-config-typescript": "^14.4.0", + "@vue/tsconfig": "^0.7.0", + "eslint": "^9.20.1", + "eslint-plugin-vue": "^9.32.0", + "jiti": "^2.4.2", + "npm-run-all2": "^7.0.2", + "typescript": "~5.7.3", + "vite": "^6.1.0", + "vite-plugin-vue-devtools": "^7.7.2", + "vue-tsc": "^2.2.2" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.10", + "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.10.tgz", + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.8", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.26.9.tgz", + "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.9", + "@babel/types": "^7.26.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": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.26.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", + "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz", + "integrity": "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.26.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.26.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.26.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", + "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.26.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.26.9.tgz", + "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.26.9.tgz", + "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", + "dependencies": { + "@babel/types": "^7.26.9" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz", + "integrity": "sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-decorators": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz", + "integrity": "sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.26.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.8.tgz", + "integrity": "sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@better-scroll/core": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@better-scroll/core/-/core-2.5.0.tgz", + "integrity": "sha512-+3aKf8T3kUl4Gj1M7NKV3fNFhsrBpTWwHoDClkXVmQ8S3TxMMHf6Kyw6l1zKsg4r+9ukW5lDDkyif7/gY76qXQ==", + "dependencies": { + "@better-scroll/shared-utils": "^2.5.0" + } + }, + "node_modules/@better-scroll/shared-utils": { + "version": "2.5.1", + "resolved": "https://registry.npmmirror.com/@better-scroll/shared-utils/-/shared-utils-2.5.1.tgz", + "integrity": "sha512-AplkfSjXVYP9LZiD6JsKgmgQJ/mG4uuLmBuwLz8W5OsYc7AYTfN8kw6GqZ5OwCGoXkVhBGyd8NeC4xwYItp0aw==" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", + "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.24.2.tgz", + "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", + "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.24.2.tgz", + "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", + "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", + "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", + "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", + "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", + "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", + "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", + "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", + "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", + "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", + "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", + "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", + "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", + "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", + "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", + "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", + "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", + "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", + "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", + "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", + "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", + "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.19.2", + "resolved": "https://registry.npmmirror.com/@eslint/config-array/-/config-array-0.19.2.tgz", + "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", + "dev": true, + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/core": { + "version": "0.11.0", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-0.11.0.tgz", + "integrity": "sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", + "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.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": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.20.0", + "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-9.20.0.tgz", + "integrity": "sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmmirror.com/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.5", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz", + "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==", + "dev": true, + "dependencies": { + "@eslint/core": "^0.10.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { + "version": "0.10.0", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-0.10.0.tgz", + "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.7.4", + "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.4.tgz", + "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==", + "dependencies": { + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.7.5", + "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.5.tgz", + "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==", + "dependencies": { + "@floating-ui/core": "^1.7.4", + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.10", + "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.10.tgz", + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==" + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmmirror.com/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmmirror.com/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.4.1.tgz", + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@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.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@opentiny/fluent-editor": { + "version": "3.25.10", + "resolved": "https://registry.npmmirror.com/@opentiny/fluent-editor/-/fluent-editor-3.25.10.tgz", + "integrity": "sha512-09WqhBbV6KCoQY9hN5JtdcjJBnFedpGInSuUQBIqMYKJtmPWkfaCb14fUED/JKy4AWEhLzozhiubQ4vCgXru2A==", + "dependencies": { + "lodash-es": "^4.17.15", + "quill": "^2.0.0" + } + }, + "node_modules/@opentiny/utils": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/utils/-/utils-3.29.0.tgz", + "integrity": "sha512-D4n2F0Vdnus4+S/DH7tigiGZp2yAU91PWX2hMSLtkzQd6KKgW0dMde/32O0JS0R/AJdnCBw//bg5LUdG4zjx9A==", + "dependencies": { + "xss": "1.0.14" + } + }, + "node_modules/@opentiny/vue": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue/-/vue-3.29.0.tgz", + "integrity": "sha512-CUBNfcMVAf8H25wk91V5b9lUjo8KFiFPYJ2HyYBTSDNWEThSMSn5vX+38skwZWgITQbQVrOAM8pbL17mlRCvFA==", + "dependencies": { + "@opentiny/vue-action-menu": "~3.29.0", + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-alert": "~3.29.0", + "@opentiny/vue-amount": "~3.29.0", + "@opentiny/vue-anchor": "~3.29.0", + "@opentiny/vue-area": "~3.29.0", + "@opentiny/vue-async-flowchart": "~3.29.0", + "@opentiny/vue-autocomplete": "~3.29.0", + "@opentiny/vue-badge": "~3.29.0", + "@opentiny/vue-base-select": "~3.29.0", + "@opentiny/vue-breadcrumb": "~3.29.0", + "@opentiny/vue-breadcrumb-item": "~3.29.0", + "@opentiny/vue-bulletin-board": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-button-group": "~3.29.0", + "@opentiny/vue-calendar": "~3.29.0", + "@opentiny/vue-calendar-bar": "~3.29.0", + "@opentiny/vue-calendar-view": "~3.29.0", + "@opentiny/vue-card": "~3.29.0", + "@opentiny/vue-card-group": "~3.29.0", + "@opentiny/vue-card-template": "~3.29.0", + "@opentiny/vue-carousel": "~3.29.0", + "@opentiny/vue-carousel-item": "~3.29.0", + "@opentiny/vue-cascader": "~3.29.0", + "@opentiny/vue-cascader-menu": "~3.29.0", + "@opentiny/vue-cascader-mobile": "~3.29.0", + "@opentiny/vue-cascader-node": "~3.29.0", + "@opentiny/vue-cascader-panel": "~3.29.0", + "@opentiny/vue-cascader-select": "~3.29.0", + "@opentiny/vue-cascader-view": "~3.29.0", + "@opentiny/vue-cell": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-checkbox-button": "~3.29.0", + "@opentiny/vue-checkbox-group": "~3.29.0", + "@opentiny/vue-col": "~3.29.0", + "@opentiny/vue-collapse": "~3.29.0", + "@opentiny/vue-collapse-item": "~3.29.0", + "@opentiny/vue-collapse-transition": "~3.29.0", + "@opentiny/vue-color-picker": "~3.29.0", + "@opentiny/vue-color-select-panel": "~3.29.0", + "@opentiny/vue-column-list-group": "~3.29.0", + "@opentiny/vue-column-list-item": "~3.29.0", + "@opentiny/vue-company": "~3.29.0", + "@opentiny/vue-config-provider": "~3.29.0", + "@opentiny/vue-container": "~3.29.0", + "@opentiny/vue-country": "~3.29.0", + "@opentiny/vue-crop": "~3.29.0", + "@opentiny/vue-currency": "~3.29.0", + "@opentiny/vue-date-panel": "~3.29.0", + "@opentiny/vue-date-picker": "~3.29.0", + "@opentiny/vue-date-picker-mobile-first": "~3.29.0", + "@opentiny/vue-date-range": "~3.29.0", + "@opentiny/vue-date-table": "~3.29.0", + "@opentiny/vue-dept": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-dialog-select": "~3.29.0", + "@opentiny/vue-divider": "~3.29.0", + "@opentiny/vue-drawer": "~3.29.0", + "@opentiny/vue-drop-roles": "~3.29.0", + "@opentiny/vue-drop-times": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-dynamic-scroller": "~3.29.0", + "@opentiny/vue-dynamic-scroller-item": "~3.29.0", + "@opentiny/vue-espace": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-fall-menu": "~3.29.0", + "@opentiny/vue-file-upload": "~3.29.0", + "@opentiny/vue-filter": "~3.29.0", + "@opentiny/vue-filter-bar": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-filter-panel": "~3.29.0", + "@opentiny/vue-float-button": "~3.29.0", + "@opentiny/vue-floatbar": "~3.29.0", + "@opentiny/vue-floating-button": "~3.29.0", + "@opentiny/vue-flowchart": "~3.29.0", + "@opentiny/vue-fluent-editor": "~3.29.0", + "@opentiny/vue-form": "~3.29.0", + "@opentiny/vue-form-item": "~3.29.0", + "@opentiny/vue-fullscreen": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-grid-column": "~3.29.0", + "@opentiny/vue-grid-manager": "~3.29.0", + "@opentiny/vue-grid-select": "~3.29.0", + "@opentiny/vue-grid-toolbar": "~3.29.0", + "@opentiny/vue-guide": "~3.29.0", + "@opentiny/vue-hrapprover": "~3.29.0", + "@opentiny/vue-image": "~3.29.0", + "@opentiny/vue-image-viewer": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-ip-address": "~3.29.0", + "@opentiny/vue-layout": "~3.29.0", + "@opentiny/vue-link": "~3.29.0", + "@opentiny/vue-link-menu": "~3.29.0", + "@opentiny/vue-load-list": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-locales": "~3.29.0", + "@opentiny/vue-logon-user": "~3.29.0", + "@opentiny/vue-logout": "~3.29.0", + "@opentiny/vue-menu": "~3.29.0", + "@opentiny/vue-message": "~3.29.0", + "@opentiny/vue-milestone": "~3.29.0", + "@opentiny/vue-mind-map": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-month-range": "~3.29.0", + "@opentiny/vue-month-table": "~3.29.0", + "@opentiny/vue-nav-menu": "~3.29.0", + "@opentiny/vue-notify": "~3.29.0", + "@opentiny/vue-number-animation": "~3.29.0", + "@opentiny/vue-numeric": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-option-group": "~3.29.0", + "@opentiny/vue-pager": "~3.29.0", + "@opentiny/vue-pager-item": "~3.29.0", + "@opentiny/vue-panel": "~3.29.0", + "@opentiny/vue-picker": "~3.29.0", + "@opentiny/vue-pop-upload": "~3.29.0", + "@opentiny/vue-popconfirm": "~3.29.0", + "@opentiny/vue-popeditor": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-popup": "~3.29.0", + "@opentiny/vue-progress": "~3.29.0", + "@opentiny/vue-pull-refresh": "~3.29.0", + "@opentiny/vue-qr-code": "~3.29.0", + "@opentiny/vue-quarter-panel": "~3.29.0", + "@opentiny/vue-query-builder": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-radio-button": "~3.29.0", + "@opentiny/vue-radio-group": "~3.29.0", + "@opentiny/vue-rate": "~3.29.0", + "@opentiny/vue-record": "~3.29.0", + "@opentiny/vue-recycle-scroller": "~3.29.0", + "@opentiny/vue-river": "~3.29.0", + "@opentiny/vue-roles": "~3.29.0", + "@opentiny/vue-row": "~3.29.0", + "@opentiny/vue-scroll-text": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-search": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-select-dropdown": "~3.29.0", + "@opentiny/vue-select-mobile": "~3.29.0", + "@opentiny/vue-select-view": "~3.29.0", + "@opentiny/vue-select-wrapper": "~3.29.0", + "@opentiny/vue-selected-box": "~3.29.0", + "@opentiny/vue-signature": "~3.29.0", + "@opentiny/vue-skeleton": "~3.29.0", + "@opentiny/vue-skeleton-item": "~3.29.0", + "@opentiny/vue-slider": "~3.29.0", + "@opentiny/vue-slider-button": "~3.29.0", + "@opentiny/vue-slider-button-group": "~3.29.0", + "@opentiny/vue-space": "~3.29.0", + "@opentiny/vue-split": "~3.29.0", + "@opentiny/vue-standard-list-item": "~3.29.0", + "@opentiny/vue-statistic": "~3.29.0", + "@opentiny/vue-steps": "~3.29.0", + "@opentiny/vue-sticky": "~3.29.0", + "@opentiny/vue-switch": "~3.29.0", + "@opentiny/vue-tab-item": "~3.29.0", + "@opentiny/vue-tabbar": "~3.29.0", + "@opentiny/vue-tabbar-item": "~3.29.0", + "@opentiny/vue-table": "~3.29.0", + "@opentiny/vue-tabs": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-tag-group": "~3.29.0", + "@opentiny/vue-tag-input": "~3.29.0", + "@opentiny/vue-text-popup": "~3.29.0", + "@opentiny/vue-time": "~3.29.0", + "@opentiny/vue-time-line": "~3.29.0", + "@opentiny/vue-time-panel": "~3.29.0", + "@opentiny/vue-time-picker": "~3.29.0", + "@opentiny/vue-time-picker-mobile": "~3.29.0", + "@opentiny/vue-time-range": "~3.29.0", + "@opentiny/vue-time-select": "~3.29.0", + "@opentiny/vue-time-spinner": "~3.29.0", + "@opentiny/vue-timeline-item": "~3.29.0", + "@opentiny/vue-toggle-menu": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-top-box": "~3.29.0", + "@opentiny/vue-transfer": "~3.29.0", + "@opentiny/vue-transfer-panel": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0", + "@opentiny/vue-tree-menu": "~3.29.0", + "@opentiny/vue-tree-select": "~3.29.0", + "@opentiny/vue-upload": "~3.29.0", + "@opentiny/vue-upload-dragger": "~3.29.0", + "@opentiny/vue-upload-list": "~3.29.0", + "@opentiny/vue-user": "~3.29.0", + "@opentiny/vue-user-account": "~3.29.0", + "@opentiny/vue-user-contact": "~3.29.0", + "@opentiny/vue-user-head": "~3.29.0", + "@opentiny/vue-user-head-group": "~3.29.0", + "@opentiny/vue-user-link": "~3.29.0", + "@opentiny/vue-virtual-scroll-box": "~3.29.0", + "@opentiny/vue-virtual-tree": "~3.29.0", + "@opentiny/vue-watermark": "~3.29.0", + "@opentiny/vue-wizard": "~3.29.0", + "@opentiny/vue-year-range": "~3.29.0", + "@opentiny/vue-year-table": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-action-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-action-menu/-/vue-action-menu-3.29.0.tgz", + "integrity": "sha512-isHwy6gQXTR/t6wzfKHpLcJmHNTxh2PcE9RUghUKs5rFERAE/bnfJuoQgEjpTPCeVG+JpTQePDJik+x5ND59Ww==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-action-sheet": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-action-sheet/-/vue-action-sheet-3.29.0.tgz", + "integrity": "sha512-6P0SUyb01mZmSOnHGOiB3TLuKMGW6MAuKeA9iSe3USALG+Ru/p2jhmYr5dxbhUHvujiPqNgS5phhNgPXUw6L6A==", + "dependencies": { + "@better-scroll/core": "2.5.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-drawer": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-alert": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-alert/-/vue-alert-3.29.0.tgz", + "integrity": "sha512-DM0HnHlbTQvwJjFhQzOdTwAIe7KlUlll/8aDvs/hAkluwMzjt8MYszG3aWveBhBLkOFAa9LaaWyOGDbPIlus4A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-amount": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-amount/-/vue-amount-3.29.0.tgz", + "integrity": "sha512-DdBJ2xuOteIOBZWqY9lw9biFkdotH8dAHw29Cqb+xz01MIXOIqAf258nMzhbFeWK6qFNkhwgwLcyY8ONU9gBNA==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-currency": "~3.29.0", + "@opentiny/vue-date-picker": "~3.29.0", + "@opentiny/vue-date-picker-mobile-first": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-radio-group": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-anchor": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-anchor/-/vue-anchor-3.29.0.tgz", + "integrity": "sha512-G7+kpFIffA5UlFoeKCpBSE4It6xYHPzGrItLuIz937Rw9ZjHyXvKwkvbeKXQVK/dkyD6FuhG8Evhzp7t7Mpn0g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-area": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-area/-/vue-area-3.29.0.tgz", + "integrity": "sha512-2m6+rsy+VMKqBB3exHxqSz1lMFI8S7pfxxQRdy0ktJjQpRwaoca0sdV3POWGQGwGasfsHLqW40snBztFdoAjJA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-async-flowchart": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-async-flowchart/-/vue-async-flowchart-3.29.0.tgz", + "integrity": "sha512-Pa/PE8IlSHhxwO4P5IXtTt4vuYec4fmc/dKlQHlnWj8Q0nFAn4GmdioPUw6Iah7aJXFHwXpm+aqezTGwvIxJmw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-flowchart": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-autocomplete": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-autocomplete/-/vue-autocomplete-3.29.0.tgz", + "integrity": "sha512-wm+KinKaASQLqLcKvcBg4aAaH8WDcawSRxjkA1PvO6cLtzxPQ/Knuvhdqt06oh7vQgkMqYhqVpUYssEezPlt6A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-badge": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-badge/-/vue-badge-3.29.0.tgz", + "integrity": "sha512-o68SdItnS+bfBp68kJCDInC8W0tCLuoXoJlS54XYBtP4xdu5BJgzvSa1dfHFIutJul0Kty39hZFOP8Fls9h5Uw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-base-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-base-select/-/vue-base-select-3.29.0.tgz", + "integrity": "sha512-6r9XBcIti/EOpedCrF8styJiZTz0uR0mMhNF08Spnj2X76W6gf2++PFKgSYCMA8pk0BpTV2jsQEnhBpeGTaOyw==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-recycle-scroller": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-select-dropdown": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-breadcrumb": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-breadcrumb/-/vue-breadcrumb-3.29.0.tgz", + "integrity": "sha512-qeDLDQ1nLkL1T2L7xz+eInAQssm23Idkrd+wzK7SIOvKh7EgUYgpavvS2Bkp3p+wzjutYQhQDf3g3VoM4AjImw==", + "dependencies": { + "@opentiny/vue-breadcrumb-item": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-breadcrumb-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-breadcrumb-item/-/vue-breadcrumb-item-3.29.0.tgz", + "integrity": "sha512-3KK1a3wcCePV4FReBBHy+2isjshZlIN3lBIRhIUPY7gOnYnCvC6J3dn8hXfSjfSeTNmrUTlgpQVXT5aso2mr3Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-bulletin-board": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-bulletin-board/-/vue-bulletin-board-3.29.0.tgz", + "integrity": "sha512-NmxKDI9FjBNmIrxMkDsSRWKJXjgPVNoEigFOL168ZjTRzEdClJnLW00JhJo/7z7zclanlBnrV6J3FIb30ClfcQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tab-item": "~3.29.0", + "@opentiny/vue-tabs": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-button": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-button/-/vue-button-3.29.0.tgz", + "integrity": "sha512-YWvxwATtq5GyZz9EKXN+jgoBblU66ZaeG9LrJzj/nXIqFCupI7atvWvstYafkwy0+rNZFxWYXfaZaxSlQxFbJQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-button-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-button-group/-/vue-button-group-3.29.0.tgz", + "integrity": "sha512-O1DKpe8cnqITYaK9WJ0j4blm+GShHTPsjURIed8NVhb2kwFJcZB5qkUo9cCcPIF3jM/wWZgAYsAg07KgGGCN/w==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-calendar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-calendar/-/vue-calendar-3.29.0.tgz", + "integrity": "sha512-dtZqBDgnPvFusVknounl/V66oWxSQHvoVhlAc/0MdSuzgV03B/pjjrBV7/XBCj2BqzwEM/iCYktBVCmDIbu6mg==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-calendar-bar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-calendar-bar/-/vue-calendar-bar-3.29.0.tgz", + "integrity": "sha512-KZpTk7sNAReXElTEVAB6N3kWtuwbJBA03PGHuT9TPJ9JOhp9V2wL05DPuJL/itYdM0DDvMrE8RhKSSkt4xo34w==", + "dependencies": { + "@opentiny/vue-cascader-select": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-calendar-view": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-calendar-view/-/vue-calendar-view-3.29.0.tgz", + "integrity": "sha512-rYUOqIFA3eZ/3KXM6DL35967X0EzCiWsbi6z5disSoZBo+qMA05YLtLBFcK2OTiadWUSaI/1lnxHky2jCgxJmQ==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-date-picker": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-radio-button": "~3.29.0", + "@opentiny/vue-radio-group": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-slider-button": "~3.29.0", + "@opentiny/vue-slider-button-group": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-card": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-card/-/vue-card-3.29.0.tgz", + "integrity": "sha512-Owly+2hHPK/KH+Wx1ceQ/0LKFN2uMFFjQRnRm8l1Lneh8JQ3cJXOHNAGw6E8eZqQ3o8Lb8HBWBNFvAhxKt0iOQ==", + "dependencies": { + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-card-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-card-group/-/vue-card-group-3.29.0.tgz", + "integrity": "sha512-EN3VC/6u1hMAkfWuOZKaHKbf+ipVuuTitdXjQpg7qCowqrTEWt1SLIEJVg/oUk3RUNBddlh3BFjG2Z09kfVvBw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-card-template": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-card-template/-/vue-card-template-3.29.0.tgz", + "integrity": "sha512-5sulgPyrCqk35NJ748HS8wYT74NCt6KgZb7YZcsgzEvfhBbs8jv7lkPSva0GVs1lfG32GDcb9peAcYwB92nFcg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-carousel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-carousel/-/vue-carousel-3.29.0.tgz", + "integrity": "sha512-AEPisOECCKjCsEwkwbKOXhEJmXR87UM6R2C+eDoCy7LreD9W/IOcCzcwPcq5qKVrWnJTrO0Pxxm1JJYVSW6u9w==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-carousel-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-carousel-item/-/vue-carousel-item-3.29.0.tgz", + "integrity": "sha512-xHZBV3TFJHr5xzcdEJfVRtR2Ubh4r1iUzRcFNjWW+zCUxapea75BOZDGVQWrAiQDniRbqI8dSovmosRVck1y5g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader/-/vue-cascader-3.29.0.tgz", + "integrity": "sha512-c1NEbaChOVtn4w54ays+POX6ZLH0QyTF576+FFACDU/T4Mmv2e0Wm3iPpTWnYHPo6RLHYUTLVnham3faaxarSQ==", + "dependencies": { + "@opentiny/vue-cascader-mobile": "~3.29.0", + "@opentiny/vue-cascader-panel": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader-menu/-/vue-cascader-menu-3.29.0.tgz", + "integrity": "sha512-lWtxDNL+ccMmSN8UUmFC/yEzffgF90K+XBMkqxtSxPIC/kiq7zKgZkpyZTg43JKHg+K0I5pyJx6M4RLhL2sgSg==", + "dependencies": { + "@opentiny/vue-cascader-node": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader-mobile": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader-mobile/-/vue-cascader-mobile-3.29.0.tgz", + "integrity": "sha512-qxs5Cx/arLY3AZCOyttYlT4YorSfCRl5fH2HwrB4HNtvpEMLgbS7gnrzmuuFCiOweTwGAxg0mJLrTFONJ1oGZA==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader-node": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader-node/-/vue-cascader-node-3.29.0.tgz", + "integrity": "sha512-aMJw6nQq1TdwgSApE1K9KZiSildQaJgR2sFely4i1sqU7dtqPJHafNvuNDNCFzszb9MpVZmHkpbcgAiej5J/LA==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader-panel/-/vue-cascader-panel-3.29.0.tgz", + "integrity": "sha512-gERJLWzYXc2eYSN+PVOKYo8NhopZVIRh/Xqy1sP63EOctaWsVBhAFNbdB2jCsOud6Uxud2rPSYK92CDsebLaog==", + "dependencies": { + "@opentiny/vue-cascader-menu": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader-select/-/vue-cascader-select-3.29.0.tgz", + "integrity": "sha512-H6D2XnK+Gjtx9XQm8zv/xbbWoO7zXjUuiRDb9pCa8qLPaLQJp63b2U4a8MRgRwt6Hmn0kDquwMvjSZR1ey7cHQ==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cascader-view": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cascader-view/-/vue-cascader-view-3.29.0.tgz", + "integrity": "sha512-iNrezwJPlMLdzSBxSxUOMyZWTmezRagOtOf0YyIRkhFP+MIuzWWGwnrcxKjZqpSTUf5T+AH2YelbXJdIVPAqTg==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-cell": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-cell/-/vue-cell-3.29.0.tgz", + "integrity": "sha512-MEp6vxDIh1G59BiPQjnCUMW9jMaDwooAlGShnEeeq+vo4iaMW17Qpj5Hd0lUQS3DAeRKKiIF6XbOhNNMr6V/CA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-checkbox": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-checkbox/-/vue-checkbox-3.29.0.tgz", + "integrity": "sha512-67EPynDNLBpTvZILZmWIXVJszOWW3daJ9WRLTAjIBFb+TXUEZU3dcDYdNQk6pcwlm+hC1wh591iKeUKVPfKwjQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-checkbox-button": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-checkbox-button/-/vue-checkbox-button-3.29.0.tgz", + "integrity": "sha512-yv7sjOm9LWIFnmC2KIV1tprSw+25vi4ePfLgd41Vf4TshBWOkosy9Tb4UJXRgwXjcNzicZVWC6sljgm6tf2OTA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-checkbox-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-checkbox-group/-/vue-checkbox-group-3.29.0.tgz", + "integrity": "sha512-I3ST6hlSd1kC6c2iIyojYI6e1F+CnU0F8OmZMl6Cj/0hGS2fRnQupgrMzO259NXIWdfUKm1Yp5mMsUXpxM466Q==", + "dependencies": { + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-checkbox-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-col": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-col/-/vue-col-3.29.0.tgz", + "integrity": "sha512-EDpBOQAGkL977ZXLhVUpVk1tr+lTyNumi4Tyfe0cYkGwJ740DO7EACAdccgKZ+VTxU+fSZGjfthv0cVitnIC6w==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-collapse": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-collapse/-/vue-collapse-3.29.0.tgz", + "integrity": "sha512-2y6tOj9SyRJHMbp8Xfn8glQ/6IG5efTJ4rHvu9SThwzxhqSegAW/FjJkajUh1swJxM8p2sPADrt5NkA8eA2kNQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-collapse-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-collapse-item/-/vue-collapse-item-3.29.0.tgz", + "integrity": "sha512-Vzqu095SgWWl64DXXkDuqe5cKdSsvG5LZoUFUQk8N948dhwSW/965KMxZIFr0UImoPLdQm6pdaRmP2hg5plW2A==", + "dependencies": { + "@opentiny/vue-collapse-transition": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-collapse-transition": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-collapse-transition/-/vue-collapse-transition-3.29.0.tgz", + "integrity": "sha512-Iyuv727DJpIzjGU74+xmqB5xrlybnkhyaqPDH4dl68ML69ZzO4xZ+uYhRD3wKOyYzjzmACvCtMsClcELROx02A==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-color-picker": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-color-picker/-/vue-color-picker-3.29.0.tgz", + "integrity": "sha512-umlG5qSj+FUwFujUspIMIa53ZPd21FvsWoX0LpqM6vLH69yLLZ152J5U2nP7YxhlaXkqfl7gwtWct0FLe3liYA==", + "dependencies": { + "@opentiny/vue-color-select-panel": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-color-select-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-color-select-panel/-/vue-color-select-panel-3.29.0.tgz", + "integrity": "sha512-2JW/yrqeDgU0qhJqdrAoPeZNrwLnCr/sH5wOC2jq0DQHUTYkzklJARnmTT8JHcLJ1VjkAKef5QH0s4XLs8+6PA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-collapse": "~3.29.0", + "@opentiny/vue-collapse-item": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-numeric": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-column-list-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-column-list-group/-/vue-column-list-group-3.29.0.tgz", + "integrity": "sha512-vEZnVAuF6aYxQGE1WDb0g9qxWk0x3Q7AABztDpi6iZf+F3dilavlAMshty71Ruzvnq3Sd/7ope4JK7somkGaiA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-column-list-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-column-list-item/-/vue-column-list-item-3.29.0.tgz", + "integrity": "sha512-++LJy/+0hh8Bymt2GeTlm4qBOWQysx47fO6COmBQMmJd8q3J8PwsAs5LO4OaraI0hGDMKd/ecOJP0xMQp55qfw==", + "dependencies": { + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-common": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-common/-/vue-common-3.29.0.tgz", + "integrity": "sha512-y5pMKfLMmCez/Mp6qkKWIXp+AmhJfgi69wEfp7upeb1+kqf2HktfwQcmVTwMxTKVlDISByePLR3TFDeQU8AY6Q==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-hooks": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "tailwind-merge": "^1.8.0" + } + }, + "node_modules/@opentiny/vue-company": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-company/-/vue-company-3.29.0.tgz", + "integrity": "sha512-0tciO+Aj+9IdmWOBG3YJqYzBKzCXiH4yegiWadrYRExSdotzh2qk/BhG8tFv+9v86+6slf9dIfO+uDUMYld9dQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-config-provider": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-config-provider/-/vue-config-provider-3.29.0.tgz", + "integrity": "sha512-co7lWfNjb8xuxNZmiNWKrTult46CUD8i6JTxLhimYWnh3SxqUlX2F0YxX1qnQOqyfBmNtG1ld0zZug+ffRbqqg==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-container": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-container/-/vue-container-3.29.0.tgz", + "integrity": "sha512-BLa0pxA0JCwpVUrcbbzQpgf+lTGzPN28nT4hzZ0N09z2FV4r6TBW1mbINDy9lObRmJYo4z+Kua1cDNS1h5SAjw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-country": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-country/-/vue-country-3.29.0.tgz", + "integrity": "sha512-5oxAra5UqLmLyeZVYXniZq8Wg8lOIl5UtfvdEdbpXZtE37PFWzsapRygyA3iQyzH/TcRAayJUWoW49QyqeTQpg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-crop": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-crop/-/vue-crop-3.29.0.tgz", + "integrity": "sha512-RlR19IBbudFH4rBjHuxYKcXwMs3M5QpCLwW9/U+c/GW2kW8rDp4PZS9gDZDsxViCo9ssvx5UUGUo5DdeLbKhWQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "cropperjs": "~1.6.2" + } + }, + "node_modules/@opentiny/vue-currency": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-currency/-/vue-currency-3.29.0.tgz", + "integrity": "sha512-IlFSM6yl+o8rkODD0IiTV/EoOllDY02n/In2vIPt8vkjfVlv8+p5g0WDoLDT6rVyJJfjRDGRo5JlVGbSM3678Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-select-mobile": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-date-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-date-panel/-/vue-date-panel-3.29.0.tgz", + "integrity": "sha512-/jtVwPgr4scYgViMGLsYlLefQ869+QtSZPO5AULZ/V/xEA1cvPGGZmgkP3TtN+/bO5UwgRELaD7b5zMa554WVg==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-date-table": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-month-table": "~3.29.0", + "@opentiny/vue-popup": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-time": "~3.29.0", + "@opentiny/vue-year-table": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-date-picker": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-date-picker/-/vue-date-picker-3.29.0.tgz", + "integrity": "sha512-M+nM12jJPBcbVCOJNfKM5Jib+imp70JoCDwacvIKeoXW2dcmnPsN5PpJ84O8fzwbmFIJrHf7zUGRlrs2R6HA9g==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-picker": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-date-picker-mobile-first": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-date-picker-mobile-first/-/vue-date-picker-mobile-first-3.29.0.tgz", + "integrity": "sha512-KKM8uDgX5vSowGf+rs6MKUCGP5Q0hzNh93GsjZy00YFHK0MSSQJ9h5iB+Hr3ux7yauzPN7BBn4jMuEMBA29I4g==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-recycle-scroller": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-time-picker-mobile": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-date-range": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-date-range/-/vue-date-range-3.29.0.tgz", + "integrity": "sha512-u7YnExvZRAnA+yAnFuycilVPc0PLARwc7wwWX9DvfZHl65ffUasvU1tceAMCyk/nqpCbwMUBHfGmhaoVwNSXuQ==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-date-table": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-time": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-date-table": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-date-table/-/vue-date-table-3.29.0.tgz", + "integrity": "sha512-xsWd8UKtjRlQdR34Bhppi9rdj4e8jUR1QKAPk9AlkToJKz6bhmOtLa/YiYKvYxYnx1hR09oyvpqR/POqQ4EXtw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dept": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dept/-/vue-dept-3.29.0.tgz", + "integrity": "sha512-vHhN8vgyBux5BwziGTV9q2X09DYJ0/s/ia/bMUiF99w/MhFebyBIB4h7RQq4cKquBSRpl8oQsjqy9fSI390KnA==", + "dependencies": { + "@opentiny/vue-col": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-row": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dialog-box": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dialog-box/-/vue-dialog-box-3.29.0.tgz", + "integrity": "sha512-lRqhkHvqxqBRNm2E+wkcb7izoRnziNyQaGtslwcDit3FMbMbD5wk0ca4zNFTC8UVaCM4WbGMPWPov3YGiGcwaQ==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dialog-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dialog-select/-/vue-dialog-select-3.29.0.tgz", + "integrity": "sha512-RS6KudldbJF9XGvPCIoWSaan2GGHDme5PHPT4uBUD5tKAX5fAdiTs92Unw/CLr0su/PRWfA0SEW11uofFRQ1KA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-pager": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-selected-box": "~3.29.0", + "@opentiny/vue-split": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-directive": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-directive/-/vue-directive-3.29.0.tgz", + "integrity": "sha512-7S6RYMy/NUg7IRr6HvwD5sUMevLeMUk/VXbgJ47rSBp23CEF3eQyPc07gpS9+vqTCN5UnJ/snO9cTq1WapB6Eg==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-divider": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-divider/-/vue-divider-3.29.0.tgz", + "integrity": "sha512-djCqMbO8ND4JpafHpfwV8DE7JrBubLHcAnsqM0Jm3yYQHi8r6kIAd7TkW4ZAim3oXiEuc9VMvlYP49q6llgkxA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-drawer": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-drawer/-/vue-drawer-3.29.0.tgz", + "integrity": "sha512-LXHFm5jf8tf0s4m2rhpk/LVFPSa5iOOz+1wHiLK2B258hIE+wZXBhYnD+CQAgSeNqSxYEi9NzhVDIra9vN7O1g==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-drop-roles": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-drop-roles/-/vue-drop-roles-3.29.0.tgz", + "integrity": "sha512-dmiDzwywXakGPflm6FXXsTEv419ok7qm4OOecUyYCuk5qjiLESIHqCv8rzG9acRuQqjKccYUK6qyExxoU5q85A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-drop-times": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-drop-times/-/vue-drop-times-3.29.0.tgz", + "integrity": "sha512-azfLfTHvuUZu08Gip+TXRzmNmqgQmGBGOy4r6TDE9H++8jIdSXUDjag/d/adHyNadBeWYpNNyNJIhIEGmX0IYA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dropdown": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dropdown/-/vue-dropdown-3.29.0.tgz", + "integrity": "sha512-y98gwhI0VIsi/eUXXpb6afBlSYqXVQ9v51Z5+WHD4QpNseEkvfPUmgx4d+ULTFCuZkfWN8W0c5Cz7qgt/FvmUA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-button-group": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dropdown-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dropdown-item/-/vue-dropdown-item-3.29.0.tgz", + "integrity": "sha512-1dqBYmBDIpS+9nfkfh7nQDrXIsn+0BJG7GzXVqjxoqjIPw+9kfO0umhUk+numhPh/+QA8CV5j6CkppfK5E6Whw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dropdown-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dropdown-menu/-/vue-dropdown-menu-3.29.0.tgz", + "integrity": "sha512-Oo96HDu8i4kGA1YreIKKMr9WwRosQnsiDrTxNa9ktO3BAj1awQEJlyvLaJp6yUxpeYJ5J8lIIJDvNPYCc5M3NQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dynamic-scroller": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dynamic-scroller/-/vue-dynamic-scroller-3.29.0.tgz", + "integrity": "sha512-RyQPmnVnkM3mdoyIE82nEFgQEpS8lCX4NgsyuQ0JQnhrtKFMBxPfJqvbvLd60C8f5uEIdgj3Wb432SHD85098g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-recycle-scroller": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-dynamic-scroller-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-dynamic-scroller-item/-/vue-dynamic-scroller-item-3.29.0.tgz", + "integrity": "sha512-npTLeLn4kcV5Q21dJn62hhj+pD4i4hKRVvT0MkXS04ypk7rdeCm8P8uGbodD+WvyWifQWm3bOheQ/rVDq4C98Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-espace": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-espace/-/vue-espace-3.29.0.tgz", + "integrity": "sha512-rQEXmWjX556PGa7c5lT4PHMQMGs4/H6irSBTq282pGfWMNHHzSVLAiwuPGQhnyBXd3Poapc57pv7AjiSWwgLeg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-exception": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-exception/-/vue-exception-3.29.0.tgz", + "integrity": "sha512-NxJ+IpPXVE3uFt6cWrsrf44X6rX2nwlmteKxHM7JBa7MxInwybyTS/uGV4LdoPgPRDgptCrBKEx7WeoDL8vJ9Q==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-fall-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-fall-menu/-/vue-fall-menu-3.29.0.tgz", + "integrity": "sha512-397ClltwXJOky4Gt4NbKaETlRWTj1Ct/6kXXFqMqepepe98a6kAUzGV4dDzUo0tSb33uWjZMrjOcHR1WmIXJMg==", + "dependencies": { + "@opentiny/vue-col": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-row": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-file-upload": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-file-upload/-/vue-file-upload-3.29.0.tgz", + "integrity": "sha512-MEUtY36qaYD20Gv0svJabdeGAGdYiizPxZ1YisXn1jXu8zsSB9cCpDs7AXl/VaJrRvOkFkixB2u1Ihk1FiYW6Q==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-progress": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-switch": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-upload": "~3.29.0", + "@opentiny/vue-upload-list": "~3.29.0", + "streamsaver": "2.0.6" + } + }, + "node_modules/@opentiny/vue-filter": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-filter/-/vue-filter-3.29.0.tgz", + "integrity": "sha512-bLNcEJ8D2kaTVRl+WmEGMVVWaIu1n/8dgQ5Dxv7kwWsXhpuiKjwKQVPjpaoC5qxJ0TZl3fSPdDimwsSitEHeQw==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-filter-bar": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-filter-bar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-filter-bar/-/vue-filter-bar-3.29.0.tgz", + "integrity": "sha512-3pVFbrV9QzfDyCf5GvOFkdcOeaxedGhLFUfqlzRCaKDMDA6mujHsdx4cb5Ug2aPayMn9JCnZ8WicvyanZPbdOA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-filter-box": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-filter-box/-/vue-filter-box-3.29.0.tgz", + "integrity": "sha512-nld5Eu+vW5x8NPFRcDaEXS69yL/H25lCC/SusBFFFDXy/xqZ8GbJgY6DEXJ9zGSPvuypvwktY7csW61UtQILWA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-filter-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-filter-panel/-/vue-filter-panel-3.29.0.tgz", + "integrity": "sha512-6qJnyC+o1GyVxS8gw9un5PsZ6rwONfegyVwrAfESVhC18H6DeT0oK67C5tNReI4Oa9MBYra2KvZRwxb4HPV9zg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-float-button": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-float-button/-/vue-float-button-3.29.0.tgz", + "integrity": "sha512-NrzK5078VSgCHzGa/25XqDybcxLNEE5+d3XkREHXWvHiKW2IDFmtZYreDCY1I5MRQANN6OEAyGsIWAWlnNYJvQ==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-floatbar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-floatbar/-/vue-floatbar-3.29.0.tgz", + "integrity": "sha512-OM3+2zT2r5dYu+4L9q/q+vtRU6PoVZrbLYQWpBG2bw/+ZANwukkBiMZbs6Wx74sCumSR2CgwRQ2RtMa/4KWWgg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-floating-button": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-floating-button/-/vue-floating-button-3.29.0.tgz", + "integrity": "sha512-eg0sG+beqPxG1yk0ZCpz2xRbZ4rwkvtnqFlK6caWrrSESnd0dL2mBbz9UrHJ1jDbVJX6K5F21bsHWn3hwRRNwg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-flowchart": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-flowchart/-/vue-flowchart-3.29.0.tgz", + "integrity": "sha512-H5DLHP/qCRyg7FiynoTBz9yV4g11A1Z8QLE8M6T6zVG/S0b1CmQ1ZMfE4whLFVHxLT3SEW1lKgULc4WR2gogpQ==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-fluent-editor": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-fluent-editor/-/vue-fluent-editor-3.29.0.tgz", + "integrity": "sha512-KJCg5WCAp9NEC0VlJj1R+oKcJVK5gAuOhuMl3FIfsDsAf+yjjR9cFRI1uOUM2RlNsrJLPRqLlB+D1NyehHMyAQ==", + "dependencies": { + "@opentiny/fluent-editor": "~3.25.8", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-image-viewer": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-form": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-form/-/vue-form-3.29.0.tgz", + "integrity": "sha512-tlQn5F6ILGcEeKLnqxtHcDqm7c0uXNAuaBOn3Fq9J6Pl2J+zAsr53a0boIvfaKow237w7Sdd8cayTUvuk+be1w==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-form-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-form-item/-/vue-form-item-3.29.0.tgz", + "integrity": "sha512-0Om4bcSz4i1xNCXIpUBJRr+FayCcuZHeMpzTMfdRG/wDt39FzoKmBsdd3cOaRdD6LYbiqsSquMU0izXjBvUx8g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-fullscreen": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-fullscreen/-/vue-fullscreen-3.29.0.tgz", + "integrity": "sha512-QC+junbxEmxR7D52LZgBLGRNRLKGnDDM6AQwVIfXUtoVr/zzfN4Y9xl+RoQaBe9cUDTO4/2zlMDl1ZX+bjtbaw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-grid": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-grid/-/vue-grid-3.29.0.tgz", + "integrity": "sha512-0i1f2Lo0jbpVSXTrRCmHGcNjpxbD5dlUCYCIQN8TMl/SfhvdIUZrGvOMjqR6MPtgKEtOgnFR8qphDBM/VATYHw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-pager": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-grid-column": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-grid-column/-/vue-grid-column-3.29.0.tgz", + "integrity": "sha512-4kGRuev04TnWNhm4VUjcP1t973Vu2AJIJTFsUk9IauIw24+7W+GXmTvoqY7KQg/zsANCYJYs2iYQqeb1eQ99fA==", + "dependencies": { + "@opentiny/vue-grid": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-grid-manager": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-grid-manager/-/vue-grid-manager-3.29.0.tgz", + "integrity": "sha512-PRE4Rm+4hMt6Kat3eVcHQL+t4GmJnO6nF1DpwAABBnwtKgKC1J0o/gT9q+VHXogwE0awDQ3qricdQ/oVgRx5Ag==", + "dependencies": { + "@opentiny/vue-grid": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-grid-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-grid-select/-/vue-grid-select-3.29.0.tgz", + "integrity": "sha512-st3u7bCTb+yMi1Lgey2GXzwXVkuODD2uL3X4vrLXCg4w5J6WtLrtgWAoVRiP/vyLOiHHBXGEFkPuFUEsNrNQOA==", + "dependencies": { + "@opentiny/vue-base-select": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-grid-toolbar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-grid-toolbar/-/vue-grid-toolbar-3.29.0.tgz", + "integrity": "sha512-mZUGzQlufiZhNJmqnlamEsvnnWuWW9QvJ8IfQTsOK3otvvW/KmG3p5zXkIUg/ojzMt2LLFaIeEmXY+hhlCLQSw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-alert": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-checkbox-group": "~3.29.0", + "@opentiny/vue-col": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-layout": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-radio-group": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-row": "~3.29.0", + "@opentiny/vue-search": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-split": "~3.29.0", + "@opentiny/vue-tab-item": "~3.29.0", + "@opentiny/vue-tabs": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-guide": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-guide/-/vue-guide-3.29.0.tgz", + "integrity": "sha512-jBZ9If59Z1BAyZZNexItAdUw6KoDNjllvsBorRmUUfd6GH3p3Z9fixEcLzC9cRjvXpAvxuX7Awjud106PDJHkA==", + "dependencies": { + "@floating-ui/dom": "^1.0.10", + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "shepherd.js": "11.1.1" + } + }, + "node_modules/@opentiny/vue-hooks": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-hooks/-/vue-hooks-3.29.0.tgz", + "integrity": "sha512-GPtCGsHG63/0DPr2qhUSyVq/u/uo3htIb5f5pKOHsdeq3xRgoRlV+rIARDraSCrptfrX2fOGlgZz+wyrMd6YjA==", + "dependencies": { + "@floating-ui/dom": "^1.6.9", + "@opentiny/utils": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-hrapprover": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-hrapprover/-/vue-hrapprover-3.29.0.tgz", + "integrity": "sha512-xno2HHmeQL2iZcImIGwC7UXePbywU/W5TuQZ4Ea9gSHd0nnWw01mC9IO9NY7EPwCJQBz5jqVoNn0k9Vq6RNaGw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dept": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-icon": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-icon/-/vue-icon-3.29.0.tgz", + "integrity": "sha512-l72P3He1slmG+XCBM464Yp+JPBgoFw+pA/d5NoMfKMiIcvCj2g0T+78F5aIi6mPHAgmeOt1NvrVno+QfS7/FbQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-image": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-image/-/vue-image-3.29.0.tgz", + "integrity": "sha512-FSt4YOPEKV9ZibrO4jvzY5oXrldI/EMH5X/dTcoX9HGaYzTw2Fo6boWkQSgDt0rltZB/WuPaj6Sq0fWAF8ztaw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-image-viewer": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-image-viewer": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-image-viewer/-/vue-image-viewer-3.29.0.tgz", + "integrity": "sha512-iwqO57BYw+pDx15V1T5nbPHIB0zWmEkdafF/DHtqteFvqmrOiaxkDYWnu6cBeaiWFlPSh+g/NIXegTzAXkQDdA==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-input": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-input/-/vue-input-3.29.0.tgz", + "integrity": "sha512-AJFBuwXtp3DgvDUwd9C08vMi7mA5uOHSF3cmHYzQJGuMBbZQm+3HBdNglMszGuK2FQZWKFlLE9ox46p/h7ScPw==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-ip-address": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-ip-address/-/vue-ip-address-3.29.0.tgz", + "integrity": "sha512-HofG/dxXw6EKvOxMrImy/h84+fSAbkJGQvUfNr0ydDkavkFc9HspGnJjSGjutaS/2hZhPDPXJ3GWhWIA4F+J3A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-layout": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-layout/-/vue-layout-3.29.0.tgz", + "integrity": "sha512-omIZhaJsNeZdlo4l8VKfb9WCEXl5bBDKliwAw7iRlJwZ64D7L2crEUrG1g6fsdmXhuk48tQTyzr+fc7HSy7qGA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-link": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-link/-/vue-link-3.29.0.tgz", + "integrity": "sha512-T/fS88E7Pz9dltAFvtp4nnHNTc3zj8GJnApQ0+5U2zfqC60eZpMZERs4LZ35Jrj9zsFq87FRf0qdrubPK5mcrQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-link-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-link-menu/-/vue-link-menu-3.29.0.tgz", + "integrity": "sha512-kSjVkLPgFhJgZV31TqTtggK8SzdiREkQ0p3GQzRfg0lNRSWRUnN6XUJv9VsTdjjk0xyPf/JLIcTGnrbnjDzo1g==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-load-list": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-load-list/-/vue-load-list-3.29.0.tgz", + "integrity": "sha512-PEIfVsLKBLSYRa2d7J6dI3GBjtFrrQqduDSVBZZCfJ8X6uK84gDYgy2CV3SiYDf7/Bs737HCSjKSTICSyLvHJQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-loading": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-loading/-/vue-loading-3.29.0.tgz", + "integrity": "sha512-gOCFXYwMMbxk+CYoTYCcyw6aa4eyKwXLPJWeu7v4Pq0juFUy45Wz75BFxuk8frI0Lv9bfFheDJE9mAtYyeZRrA==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-locale": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-locale/-/vue-locale-3.29.0.tgz", + "integrity": "sha512-Nn+x8zm6VHexVbTtfiGLSi/JNkWIdY+kI/LHDYA1uPcWbKExCYXJZvTsVGETIjsbyw2BDX4R1+Ip+cPGPoJfwQ==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-locales": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-locales/-/vue-locales-3.29.0.tgz", + "integrity": "sha512-N2H2PN6FJ7OJzXoI4vRJKhaHT2D80xI/6OxVg/ToKzPTss/B8l35yXKBvhdnY0vYrwvj1K+Vzu6Gz2nfzUhT6Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-logon-user": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-logon-user/-/vue-logon-user-3.29.0.tgz", + "integrity": "sha512-YfL0j0IK9UYYhJjqQhi5xQdtTDFYdqgXvj+O7f7SyhVhedUnzPGaL6dE8JLhHD2jnTF4qV6CJOylJu9tNJ7UJg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-logout": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-logout/-/vue-logout-3.29.0.tgz", + "integrity": "sha512-sklmQDOh+LUc46aRR6D1qzLi++M5fEUa1tD6pwQfsIkfNR2vmaJoeg7IAYBNfhrmINsjII0S+8dNx/AnzoPfZA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-menu/-/vue-menu-3.29.0.tgz", + "integrity": "sha512-PROH/AnViWKqBurpLfb+5aCahCjHgB0SjkYqRlwyIlXmlyMw3k8uDavmImLcUi4yuZVzRPKtJjwpzgitF3YYJw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-message": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-message/-/vue-message-3.29.0.tgz", + "integrity": "sha512-Hk7GCIolYr2F0LMDHOc2+1AtcYQU1PMc35i6wRfQct6dH87xmeBsYi0x9mwb9C5AlWnXMHNFKKWeLd0mrx1guQ==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-milestone": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-milestone/-/vue-milestone-3.29.0.tgz", + "integrity": "sha512-2UuIaabwIt9OyG2Wbj1BpO7Nz5yjjxn+0NefcOKRBmx+zZRMN9W6zi47ecuL1A9sW27HqeAWqzTCCJtyeU+pcQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-mind-map": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-mind-map/-/vue-mind-map-3.29.0.tgz", + "integrity": "sha512-ox2O+asTMGEYxXgLhJX0Ns0o14ByvMHFXDz+QS4d43CaEKmpJG0xXrcY6mi426d1AauzFeWcQFfEJ8p/C6WsXw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "mind-elixir": "^3.3.2" + } + }, + "node_modules/@opentiny/vue-modal": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-modal/-/vue-modal-3.29.0.tgz", + "integrity": "sha512-BUctQjDQGUC9hlXcyvZr+C4QnNMj3rmWDCHIPB1WI8+5YDpAIy0XEdiCUIoJUSpqy+YN2MqrUP4IRrOzeEq0Gg==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-checkbox-group": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popconfirm": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-month-range": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-month-range/-/vue-month-range-3.29.0.tgz", + "integrity": "sha512-0CJuBzKDh2bTCY9QvMyx1EmksSIOL6OHbhXzsG+6FX7WpGRewzhyGmePBZnK0Ks5ZkgpcnPdrctHrMLpa+ONmw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-month-table": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-month-table": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-month-table/-/vue-month-table-3.29.0.tgz", + "integrity": "sha512-WNWmu8cIvwhTXunODMS+klSu8zxDJ4sHu0fB+VDkbx7/WAfDZcMZTsNr+YLbRsWUlxLgHhKS6frKi0ypFC7AJA==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-nav-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-nav-menu/-/vue-nav-menu-3.29.0.tgz", + "integrity": "sha512-EupcvReqaYZ7n2GpiOSuZQZ9JG6Lbw8y44PsBeo4dA29/2frj6Q9hrIzQ1mLzu1/6aphRxfWXHi3eL9aJBvxrg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-notify": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-notify/-/vue-notify-3.29.0.tgz", + "integrity": "sha512-tFjSHNZed512Iy439e7+ti5xVrl7u5FqREfhibNiM1S5Og8tsf2GqLIctkvsDJrr7BpHYjgDvTnYyvSEthlPDQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-number-animation": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-number-animation/-/vue-number-animation-3.29.0.tgz", + "integrity": "sha512-Q9DQqUO0/a7gwuXBcaq9Crhr0J9sqQNSBClqsPgSD6bNv37RoBl2tSrsUq/1drvzNeJCVg6BnWRV6lnfEp6Mlw==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-statistic": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-numeric": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-numeric/-/vue-numeric-3.29.0.tgz", + "integrity": "sha512-/53qdhqTHwBowxrH9ECEvr2NZGns1VWK78Zq+0fPRB/ZOchXODPYEkRH+yvmbS1/Q8U8T63pQVoShKKbwQ5slg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-filter-panel": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-radio-group": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-option": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-option/-/vue-option-3.29.0.tgz", + "integrity": "sha512-MqXhzvDdjoAvqwwtmrqZyjC7c8dGKzYjhLgbnpyfL32tbiYNTHaxIB62NoDt5dpuop9gzv4EP1q+6JlKtzOgMQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-option-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-option-group/-/vue-option-group-3.29.0.tgz", + "integrity": "sha512-ifZXOlAsHMoFMR64UjdkEZ5uA/0AUnR4kjwcEuD+Shc8i8O9Aoj7MXkLJ69sa1fOqK2h0nn5vnvpQFL5voy4Pg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-pager": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-pager/-/vue-pager-3.29.0.tgz", + "integrity": "sha512-knhc0cctaZv65A7AtwkrUMxLwQgKClLK9yQRWAfz2uu2MSinHTw8BNyipOHmNyQuw1nSWyAfN5CibhrD/nnJqw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-base-select": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-pager-item": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-pager-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-pager-item/-/vue-pager-item-3.29.0.tgz", + "integrity": "sha512-EuqsMBHacRBZ6/jxugjZG/cNXPTLoGxTuShC/rYwD3XyohZwKrsLOdTL6akKu4pHyP58ZOPv15ssbYTck7xAdg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-panel/-/vue-panel-3.29.0.tgz", + "integrity": "sha512-UcJ2G/tP2gVKHi2cutKiHX3hbrdP6mTad32TV/8x4itXXd3ZmTalK2/pf5LN0KqvovSeHj0DMR1oLAdL5ZafoA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-picker": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-picker/-/vue-picker-3.29.0.tgz", + "integrity": "sha512-rTe0TPKQnjEFlOjmBaG8oil2K+zfxbIkaUMTJuDpipeXQ+VptI14RDzgk0uMf+OEe3CCVLOKTWCV6TkC7SiAzg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-date-panel": "~3.29.0", + "@opentiny/vue-date-picker-mobile-first": "~3.29.0", + "@opentiny/vue-date-range": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-month-range": "~3.29.0", + "@opentiny/vue-quarter-panel": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-time": "~3.29.0", + "@opentiny/vue-time-panel": "~3.29.0", + "@opentiny/vue-time-picker-mobile": "~3.29.0", + "@opentiny/vue-time-range": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-year-range": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-pop-upload": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-pop-upload/-/vue-pop-upload-3.29.0.tgz", + "integrity": "sha512-2qqnbAUqGZ8qNWgTKS2khuozojKBOlbS4Im8w2sXkK2W3OorbiwyyVg8Kyc5oc4KRdR7eoHotw/imUvhHHBoeA==", + "dependencies": { + "@opentiny/vue-alert": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-file-upload": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-popconfirm": "~3.29.0", + "@opentiny/vue-progress": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-popconfirm": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-popconfirm/-/vue-popconfirm-3.29.0.tgz", + "integrity": "sha512-OsP0N3ihR9ElAgHsQoI8MI9pgHliOhN2LmJ/IKxrbcKNZS5ARbWVjw4JF/7KoJ6S2CR+M+AlhtNX6epxXDBmrA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-popeditor": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-popeditor/-/vue-popeditor-3.29.0.tgz", + "integrity": "sha512-SaAdhYv+8gni5yzx+Y6B6VpExMtGnLaOr9dgtCq7GzQeCYTGiny15e5WtXKIdWKEi9YUbVjnZgjssT6RtLfMtg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dialog-box": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-pager": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-selected-box": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-popover": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-popover/-/vue-popover-3.29.0.tgz", + "integrity": "sha512-Fo1AyvU9j6ZHzcDJ4JnvspLRpDpqSGOjAJF5PJZeHUJaV8YD0aqzDqVSOYnZCle49DZABiJX9575PE+LT0JRHQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-popup": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-popup/-/vue-popup-3.29.0.tgz", + "integrity": "sha512-4QxwsEyZ+5/8HrCTzHXj2QLchPUNMs5YvZ+tZQF93vVcT/u7gFC45DZhDxgVpvrtbixWQ8iYQxE11KdIqIeMVg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-progress": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-progress/-/vue-progress-3.29.0.tgz", + "integrity": "sha512-UOxVBLcvfrruoeCeblYeUYEG4zOeJMT1btErs0uqQvYC+nBUFK1fldojWBO8UNpQh4OuECMflOsFDRxuV/HogA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-pull-refresh": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-pull-refresh/-/vue-pull-refresh-3.29.0.tgz", + "integrity": "sha512-JCjo223h2UK7Y6S6tERiKrzatvnSvK1CvN3oEVaWLiTv8GGXbdbgs3KFBZRPLNN/ASmylW+EmIpKaTz5Zw9Omw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-qr-code": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-qr-code/-/vue-qr-code-3.29.0.tgz", + "integrity": "sha512-rhdfpH9GHwApdy0n6owuNM7eFxYIb+lv+K1hdhgj1Y5wooCFDhUScvRbAkajNCXRA2LC7k0t92V8xp5L4YqX5Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "qrcode": "1.5.1" + } + }, + "node_modules/@opentiny/vue-quarter-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-quarter-panel/-/vue-quarter-panel-3.29.0.tgz", + "integrity": "sha512-kJec48nUpXZ8w1PSKys5uc9H6z/eVGIq7N5IqwD7aKv4Kok5JY+3CvW+021UyvSocI6TJfsMDO2Am2zFNkvY6g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-year-table": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-query-builder": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-query-builder/-/vue-query-builder-3.29.0.tgz", + "integrity": "sha512-OLdRVkafo9w/VNDHzsBHERGW0rpKkJdw7jEeE1KPCAPsgIgBRgjZM/899+RCMAJ0tnUguqBbhVeRemuuoWQHrw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-date-picker": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-numeric": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-option-group": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-time-picker": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-radio": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-radio/-/vue-radio-3.29.0.tgz", + "integrity": "sha512-v1Bb6wF26EGdYBxwH2T4e6kq/E2s1KbF59JkC9YMs/I+XTH3j2qe8DClqcgbigMIWc803m6BQQbE0pe4UUB1UQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-radio-button": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-radio-button/-/vue-radio-button-3.29.0.tgz", + "integrity": "sha512-GHlgWqBs9x+owI+fZgyC5OYPC4KXK6EuR4o9jjRVoU21NGN6MPJT0Hev3wReJQ+sCzMX8V/tjWccXAcQdjuT4g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-radio-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-radio-group/-/vue-radio-group-3.29.0.tgz", + "integrity": "sha512-TFwe8lp7dUDgSDifvYaCy/TCX6uywKlilrfEjaXpv4FTNfRdJCsLR8Ti4r/4I9aTgLpRHYQvX3WBTKRhG3ssFw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-radio-button": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-rate": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-rate/-/vue-rate-3.29.0.tgz", + "integrity": "sha512-M/QSSTqVl4CeAoEwU4JVpnAJKHX0u8g90e/9ItKFwN42AFbwXzG816SLpx3MSzEgWDw3MipMvqTazYZjUwLaTQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-record": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-record/-/vue-record-3.29.0.tgz", + "integrity": "sha512-jPS8JVfmi3VONTvPbSYk+re1z5IYCXPpU4JrPAlnlNEZZKEqt7VDy39iTAX9z08WEKs+6PZNU6ugQyXNoei8cQ==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-recycle-scroller": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-recycle-scroller/-/vue-recycle-scroller-3.29.0.tgz", + "integrity": "sha512-huFjR/8H0yX8195ay9OsdoH+kTb33gHkztPa9+xGuU0FcPCAZCj6tyUymRBMWD/eF3ay4DGzX8tyKZ0gILD6lA==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-renderless": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-renderless/-/vue-renderless-3.29.0.tgz", + "integrity": "sha512-Xp14idgz533HeQI8wDOEhvXVwddaOwWw+Fr6Hfxy85Lrws+cHpj6vUTIo+Uvw785Kne2e/5JvKdKDAZ3YXUvjg==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-hooks": "~3.29.0", + "color": "4.2.3" + } + }, + "node_modules/@opentiny/vue-river": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-river/-/vue-river-3.29.0.tgz", + "integrity": "sha512-iLTtnkAPEeHeOdKH5OxV3t+m/Q/g5aewv0eoRA6dO1KPqK9fm8V+jy3ERtM2T+f79dMAPoRqUl3rDv5nvoSWRA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "echarts": "5.4.1" + } + }, + "node_modules/@opentiny/vue-roles": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-roles/-/vue-roles-3.29.0.tgz", + "integrity": "sha512-G1WIIOEqZ1HR+w13+1Zg+w3yZDTdSt8KC5vnujRcRpTmo/mdsAYvU4Hb9C+jY28FhGFI26LPoR5li1wKi3WLEg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-row": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-row/-/vue-row-3.29.0.tgz", + "integrity": "sha512-V7kvD6HOnhyPwcOT1hqCTRy65AxeFKeAz45qK3thxh9I4MDKGUr2YQs8gAZBahhy6oDxSKIZCfMOs+aik71nXg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-scroll-text": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-scroll-text/-/vue-scroll-text-3.29.0.tgz", + "integrity": "sha512-cp0HvXNGcCuoDY4oExPns2VzOXriowcKa0eQM1GsOzJuHZwYroocvbpV9sRKI2V7AwBnvAGcyix1bKjqIBRffg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-scrollbar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-scrollbar/-/vue-scrollbar-3.29.0.tgz", + "integrity": "sha512-WmrqgybcRE92nn9700obH0DdqEdVJ/dcnPJ+fqLv32Frqipr34o9jduB2OCeLZ53L4YDalQRB7Ai1L03DlB4YQ==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-search": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-search/-/vue-search-3.29.0.tgz", + "integrity": "sha512-xNk4EElFjsKIlKK4bWjcbwoUMpwE5eMhAD/PNuK+Mv6PV5xBsVEUxejBby2wxVoWVPrl/BsBwcwfvBZndAYJAg==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-select/-/vue-select-3.29.0.tgz", + "integrity": "sha512-QGyKFD7cFxbwZUGqAYROcuwHCHppIy2Ez/crByTHZOMeFtINjkou4CNP3N9eI4T1hoHQzfE/SkJ/15Pv5YiX6g==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-recycle-scroller": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-select-dropdown": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-select-dropdown": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-select-dropdown/-/vue-select-dropdown-3.29.0.tgz", + "integrity": "sha512-pIu6rKdYn5tbDQmdVl67JGAu4FwgZJqVbXvqhx2RgxZvIPQlRcUSiK/TEAW3PHqXP3C9RCak9si7DXSrl68fow==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-search": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-select-mobile": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-select-mobile/-/vue-select-mobile-3.29.0.tgz", + "integrity": "sha512-q8y1KGjtjQMc0CsSbeIph3Avq4aMPfXBfXy38wjzsXZcg6+o7BDzsWoTG8s3oTpX7mpz29HcCc/wXuQCGYIx7w==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-cell": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-select-view": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-select-view/-/vue-select-view-3.29.0.tgz", + "integrity": "sha512-qe9zD+58JSmC+r0CvGfnoGoDPgjXjthNxasXCzls7Ez+Dgf9TM3z6BEgfmqf7aFETdvlrx/iq2KdhZrTE3x6ig==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-exception": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-select-wrapper": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-select-wrapper/-/vue-select-wrapper-3.29.0.tgz", + "integrity": "sha512-cDFDmUrsSIThPL8C7+eLYbEksTUOqYzkAXbk/y71y6hQVkLe2jBo2z0YPXnCrqLOGfLRk3QMfyXqQ/elZotseg==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-filter-box": "~3.29.0", + "@opentiny/vue-grid": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-recycle-scroller": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-select-dropdown": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-selected-box": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-selected-box/-/vue-selected-box-3.29.0.tgz", + "integrity": "sha512-5AD9ylcy8g7kCb8FrxMhBIeraOKzSoPl2DPX8oS0QlfZD6rsWzh5MTxaw8Ka2h0gVq5dA2cNa51NGrL1IWSZAw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-signature": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-signature/-/vue-signature-3.29.0.tgz", + "integrity": "sha512-SmX2XDj/UGUmrMdNb/ZEmfcSshgVkFGX3wtRbDb3Sp5z4BGouMK8Dg6yO1gRNVSIeqIxjXZlJXHCrg8SINNa3g==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-skeleton": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-skeleton/-/vue-skeleton-3.29.0.tgz", + "integrity": "sha512-V7jOCs7McoaBa+4Q0SZoTFep/vpTETZYbGjcrAR1ypUNsstB92ZjaF+zr4ATpEyblzZMptaeFWuF2js23BcJ3g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-skeleton-item": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-skeleton-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-skeleton-item/-/vue-skeleton-item-3.29.0.tgz", + "integrity": "sha512-QTOXBfwvmN455fYAeNexruJOYYG4ZaZrbItqre/SVMTUfyy2TjUXAI3ScOO/CovOfffvoRjbiY8jP6jXzxsPCA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-slider": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-slider/-/vue-slider-3.29.0.tgz", + "integrity": "sha512-2qZ0K1clPEtiBmm2N+AEgsHQw0UFb8L2HZ0Uagz3qtoakRxsMqPtsEi2wrS6GZaCP3cV6kU+faEoBkv4tC7kAQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-slider-button": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-slider-button/-/vue-slider-button-3.29.0.tgz", + "integrity": "sha512-gv4bj61Ltb+mNkySharYXZ/rEPSXtWIVy0vio1nbtBQFiHnYHLWpKwBebPv9UDi0xyYmfXGCIKDSqvwuW0N+wA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-slider-button-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-slider-button-group/-/vue-slider-button-group-3.29.0.tgz", + "integrity": "sha512-778trcovWeClOsp0N0iuIolhc25GB4a9WnDKOuiB5iEclQ3kWPe3g3yYuxpXm+anz6SOq01q48a4y9MZnYSHEw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-slider-button": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-space": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-space/-/vue-space-3.29.0.tgz", + "integrity": "sha512-3FBVy1yD7XPAWdyAS75FK9BF/DQntGJt0t5UY/SzOBV1VJomZmL7GRd5oeZeCRyH/g2sRgYuXVCBa3d6+0He9g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-split": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-split/-/vue-split-3.29.0.tgz", + "integrity": "sha512-EZiThnSJpLbUK7XgEASAPSEO5JDp+XqtcdGO9CEkr/jSfNA5kdZ/Ohkctyb3DT4Vgln/Sf7uALbzQ5mutRu00Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-standard-list-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-standard-list-item/-/vue-standard-list-item-3.29.0.tgz", + "integrity": "sha512-mfMtUDZUagW7lHOyj16x/CWZUps3+2elzyPPUYalHcOf0KI9DvPDe4748u35g5BI+9asfo6pEsrF40i63kCT0A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tag-group": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-user-head": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-statistic": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-statistic/-/vue-statistic-3.29.0.tgz", + "integrity": "sha512-6ZIUA06umEC2IvC1FXSPwZrMjDNA+8z8UsmwwJN7sdQsXBGR/ItOxQjiplGq0CaZiF6isq1FXrrSPYFhSD7MJg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-steps": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-steps/-/vue-steps-3.29.0.tgz", + "integrity": "sha512-YXvjXyKad43jLpFlrbbPxDb6wPQYWtO+0bJTureSDl/Mv5X52W+oevrcylJcr0JUVLOwjFRmAf+y7eN23UNugQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-sticky": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-sticky/-/vue-sticky-3.29.0.tgz", + "integrity": "sha512-S0UKvzWrtRk4HEHsd4J+oFG+RLEaQPKSQV1l0FgtvTaB4zaLOTijj4BT5NCRsnf+DMMCTizfJqFp44VMgW2vSA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-switch": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-switch/-/vue-switch-3.29.0.tgz", + "integrity": "sha512-MAi5YxeyDTefS9MVRsacjtfXJPSjeHG695NuudBFUyYRf2X0909WPF36Rq26RRa2CQCy/7gKnbZ/FxCLm7Kqyg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tab-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tab-item/-/vue-tab-item-3.29.0.tgz", + "integrity": "sha512-CeGtOWBLeRg/163PAbnDrxqNaw3XQVOyeCYJM+VdBzNJnElP9jd1cbMJ0uqkFermaCdFS4NCimTqJE5yMM8IzQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tabbar": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tabbar/-/vue-tabbar-3.29.0.tgz", + "integrity": "sha512-l5REq7ZqhvjZKyf+a+75rT1oMfrBGV/Kvq+wj6wmyrcA64Cg1jOFBXJxQaEr2wtOowd1zive13oAM8k8V8oMXQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tabbar-item": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tabbar-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tabbar-item/-/vue-tabbar-item-3.29.0.tgz", + "integrity": "sha512-IeX2H/84q19BVD+ZWuZvAER9TXGoyy/PBTtPdnPIVb3zfgqpt7ZeSwbrbe9M7Q67MRgne/hoIGfA0xQEB4+QHQ==", + "dependencies": { + "@opentiny/vue-badge": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-table": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-table/-/vue-table-3.29.0.tgz", + "integrity": "sha512-t2+zwB1VPk18BynWxltBUv37eJ/gwv1QAlWS3E79qA5ptuTjSXy8F3zx8j7qZ6odPybVEjQ/EHzqHZmZ5L+Cag==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tabs": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tabs/-/vue-tabs-3.29.0.tgz", + "integrity": "sha512-7FqM3HPK9yJoAl0kmQRenxbT+8RGErVIj3eB2NvW8uAV33vp352s6tRv2OaOezmJaje8Q4ksikt1J9ZmWkK1Kg==", + "dependencies": { + "@opentiny/vue-carousel": "~3.29.0", + "@opentiny/vue-carousel-item": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-dropdown": "~3.29.0", + "@opentiny/vue-dropdown-item": "~3.29.0", + "@opentiny/vue-dropdown-menu": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-locale": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tag": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tag/-/vue-tag-3.29.0.tgz", + "integrity": "sha512-kfpzX4p4llKN3WKH3knPvKV1MGPiFya8U1VJJk1RADujRd1OQDz6VLnz3YIZpTPwCkklhYIAk1BFuXdMHCv6FA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tag-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tag-group/-/vue-tag-group-3.29.0.tgz", + "integrity": "sha512-tRSfXzuzFEuLrYLag+oZu6gSmANGkZF13UnD3PLsG+y84K7LCcWnM88zk1mA5i0wSOBOLs98oqX9NUvjpTBu0A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tag-input": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tag-input/-/vue-tag-input-3.29.0.tgz", + "integrity": "sha512-b/HmAJkfgOAhH0ONd50LzHl7Z/vSsC7AzalW9IPnfaLizrm+cxXDAcsQ83Q5qzT5BMaTauoFQGefLENze1gHsA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tag": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-text-popup": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-text-popup/-/vue-text-popup-3.29.0.tgz", + "integrity": "sha512-ZBLKXx4MBW1if9BUCBMSgvZBIB7bw8foxLMNXn3dtxEXWAjz6SiVe+nntwlq7t5B+Sed91zhpjNndif8943dEA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-theme": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-theme/-/vue-theme-3.29.0.tgz", + "integrity": "sha512-6FzMerLLeC7PrgVH0eBS7JR9n9ivU7BgFfi1hVpZJnJDhMqJPivhRZDpbM4o1m7ZB2naA91xgUFl4U6xLPr+/w==" + }, + "node_modules/@opentiny/vue-time": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time/-/vue-time-3.29.0.tgz", + "integrity": "sha512-hgetf/lZa2rvuqyCgsGswKS4zKQ/nMrtvvXZ4XRnZI98RtI7UTnnKvoYQVMFS+IQwo9IiurqghGWyzR+pIhErw==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-time-spinner": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-line": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-line/-/vue-time-line-3.29.0.tgz", + "integrity": "sha512-zbbqnSk8MtcH+9Ci12WBgiVHcgfJvYMgOwzaur2aboduQu/t2xt2Olt+JinZSjFA6tv1aAXdwdFzXZTjUccCjA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-timeline-item": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-panel/-/vue-time-panel-3.29.0.tgz", + "integrity": "sha512-L3Lzpgpm1kiU4cBh8UOBw5T3RS6AAlBQSjO2BdSICjLN4buhAIuAlLUTwxXyrNqROsICqyHiptg6NGZoUXjN6w==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-picker": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-picker/-/vue-time-picker-3.29.0.tgz", + "integrity": "sha512-CAl335LZPx5Fjpe1Fgvl794fLKFuJYf6MSZ72Lr9HuAi+V5YiHhqYkumVU73ha4+owKGAOQnTSQPXnkZZSH4zw==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-picker": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-picker-mobile": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-picker-mobile/-/vue-time-picker-mobile-3.29.0.tgz", + "integrity": "sha512-dy35KhIs6VicXkO4tZ2IDNvFPxexCdg1PnLCwsnc6NEla1xzyoFTZALE8sFdPaoODbJQPyupPUZ6b6Tfy+Hr2g==", + "dependencies": { + "@opentiny/vue-cascader-select": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-range": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-range/-/vue-time-range-3.29.0.tgz", + "integrity": "sha512-aeG/4Mv9o7PO5R8cdOAVf8vhnwgjnZHsjBqqVoQ9Rh7k76Qt8HFdMzKCvn9vkWwrjg7urOOpKWO9Drw7EuFTmA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-time-spinner": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-select/-/vue-time-select-3.29.0.tgz", + "integrity": "sha512-B076+vlHuBrilEvY4IynBurm7KSpXMT8WFlzrwglshRl/XGitT78WUX9WPCbjgISs1MgMp9KW834xEOWYsjawA==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-picker": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-time-spinner": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-time-spinner/-/vue-time-spinner-3.29.0.tgz", + "integrity": "sha512-/GgKcqx8B9y8Lo0utbLIZuRMlls0OUNQJeDrLR5YxWrdP7xt2mJLZtFUmyPNrwamvhOVxKdA9oRNj6ThQ6o4/g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-scrollbar": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-timeline-item": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-timeline-item/-/vue-timeline-item-3.29.0.tgz", + "integrity": "sha512-Js7/6yy90CzEI6t9G7jWAGT6HOmC+uLrT3o7hjdA7zV8S5fZPOyEQaPnKBxwkCK25DebCCfpf1Sc0HAUkbncdw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-toggle-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-toggle-menu/-/vue-toggle-menu-3.29.0.tgz", + "integrity": "sha512-9Cyi6sSd7QmCOLohEnQNDGDN0NO2wvaFY8fhYIVmikHEAtwcnOZGN6Pacrz9mUVCoK7NfUZqwEmDBLAS5g/Tgw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tooltip": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tooltip/-/vue-tooltip-3.29.0.tgz", + "integrity": "sha512-jjyYsD9Hbah8b3UMwpR31I0ukOuN/KugrMW3nb29+omyAeihvWRdmiDcaIir6J6avCQMJH/pVJB7X5NGdg4GDg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-top-box": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-top-box/-/vue-top-box-3.29.0.tgz", + "integrity": "sha512-DCAQSPQ4VEl0AWhfGRwE3uthVovgbspu7/UoFums3zQ8a0bvEqZHkqc9rI1aXNdUDepAOJkudgX7egQTP+zHlA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-transfer": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-transfer/-/vue-transfer-3.29.0.tgz", + "integrity": "sha512-UGNY7BB++N1IIwf6iO303PxSd1eEyHoQs/ZpgREnVzNs2zZJoh3fARPIHa+KlvlAluZbHaWeletnWdwILBa+TA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-transfer-panel": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-transfer-panel": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-transfer-panel/-/vue-transfer-panel-3.29.0.tgz", + "integrity": "sha512-UGqEnkHKaC722Cc7/jwspc7iURxVNWf8Mdawz2xyoqDL0/xpfVW//2QWiUVJsChVL84rganQ5C3PUo5aQXlI4A==", + "dependencies": { + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-pager": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tree": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tree/-/vue-tree-3.29.0.tgz", + "integrity": "sha512-bchYUGkJTOO1og0NYWbJ//D5oDmS/F5YO7zbkAO/EyFVtj2ahdAfDG4wQ/iq/yB2F0gNaFUd9dYEwkFy7dn76Q==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-checkbox": "~3.29.0", + "@opentiny/vue-collapse-transition": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-radio": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-switch": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tree-menu": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tree-menu/-/vue-tree-menu-3.29.0.tgz", + "integrity": "sha512-WaiadT2jh9LZCSbWg3eM+7QOEXw1mCArO/i5FsyFeL1uD08MF1nyP8lwqt6Ruk4PIIVGMvhNdEl0TBbob9RjWQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-input": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-tree-select": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-tree-select/-/vue-tree-select-3.29.0.tgz", + "integrity": "sha512-AwY3TFvJFcPPW45Q784nBeMsHZePr4lx4ZvZIsUrEo+yTmXyXu2euBXyw3xDPYvNHmuoJH8u9xnXPOzGbOFEGQ==", + "dependencies": { + "@opentiny/vue-base-select": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-upload": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-upload/-/vue-upload-3.29.0.tgz", + "integrity": "sha512-0Tg68bw0QoK4XpLhtAwESekKUatJH2qNNSAa2rsbpEZf9FLbKpkrQkeZbbUeqTuCCFfAPbiAH/ij9Dq6brr8/g==", + "dependencies": { + "@opentiny/utils": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0", + "@opentiny/vue-upload-dragger": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-upload-dragger": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-upload-dragger/-/vue-upload-dragger-3.29.0.tgz", + "integrity": "sha512-9zoG5uDTBWc9mvcuIFwC0N8Ob8NGFgXHoqgeFuSmAXN9xu6/gdGyGtOtmKX0igwK8xh0C3Yy4tbrCqss2fmlLw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-upload-list": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-upload-list/-/vue-upload-list-3.29.0.tgz", + "integrity": "sha512-tcPCKhUUImq0IsDb8XAIwfEYBhIvFM7wt8cvkJaL8xSWZru3iNSfHsbOxXhALn1UdnyIf7CJ32bdzBkZP/KjlQ==", + "dependencies": { + "@opentiny/vue-action-sheet": "~3.29.0", + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-modal": "~3.29.0", + "@opentiny/vue-progress": "~3.29.0", + "@opentiny/vue-record": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tooltip": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-user": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-user/-/vue-user-3.29.0.tgz", + "integrity": "sha512-LXnJFJ9K86gmNCImfOkQe6Z5LcHbVHYNea3/f8nxTsfCSQzFE2EXgIpe9k2vu+SimPaOVEJtFGj4WWw3ugE4Lw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-option": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-select": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-user-account": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-user-account/-/vue-user-account-3.29.0.tgz", + "integrity": "sha512-gSCWMcgPprue9DEJxBopAAVCC2KsORm/6VtsfZSyZFTOOy0TgD3wQpceICRzIIiCTOd4bVHKOCAELjP+Bxq54Q==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-logout": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-user-contact": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-user-contact": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-user-contact/-/vue-user-contact-3.29.0.tgz", + "integrity": "sha512-N/zIigtKj1F39bBz9xpKGZOii3j2yC5uicVKPSGBjtzZywo2I06END19Z/u3igft67HNmK9Go4oL1CJyiQv36A==", + "dependencies": { + "@opentiny/vue-card-template": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-espace": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-user-head": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-user-head": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-user-head/-/vue-user-head-3.29.0.tgz", + "integrity": "sha512-gRohNqnAIaWCnKnHhY1t1HhVetPvuq9KTP11JObKlzwTBdvG5If4T2QRTJndeU//LQh2Us7TZJz+QUo7LX+IHg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-user-head-group": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-user-head-group/-/vue-user-head-group-3.29.0.tgz", + "integrity": "sha512-J4QQ10J0hZu7B6F9X6vRh5XZ8RSOpFWrBgDqy+2wSwGxTc38dEaj3YaFvJkUI0TKInw1dCfSb8eNPBxb23zOMA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-user-head": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-user-link": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-user-link/-/vue-user-link-3.29.0.tgz", + "integrity": "sha512-fa/smKg60D//pXZcPZXaxbEIzNJnOXJtdqD5Isf/R9R5y9O3mFwvov+39e1lNBaqg5szewNRfWMws4LnNFkDuA==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-loading": "~3.29.0", + "@opentiny/vue-popover": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-virtual-scroll-box": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-virtual-scroll-box/-/vue-virtual-scroll-box-3.29.0.tgz", + "integrity": "sha512-6SGWzFac+8PiaHjJoONgZk6lL9E8NLIy5+73UwxfB26i+lPvpcIBDzl8qxk+CznXRxH6ZI0gahW19+JPOYyI7A==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-virtual-tree": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-virtual-tree/-/vue-virtual-tree-3.29.0.tgz", + "integrity": "sha512-sN2/bGwwta+00Y/KHab/iS8hVjqp4ddmtWC10+cplqfl6IWIHyEQtN1ICjQyw1Yjv4H4ijhIryS8yNqQS3OEMg==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-tree": "~3.29.0", + "@opentiny/vue-virtual-scroll-box": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-watermark": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-watermark/-/vue-watermark-3.29.0.tgz", + "integrity": "sha512-1haqMuV5WqUNibTlKhHxgAe526ujar6IpVRWxDQiy1Y4o8je1G5Nzz7hkuQ48p7RE/2lQy8J+7nH9C+w65aKiQ==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-wizard": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-wizard/-/vue-wizard-3.29.0.tgz", + "integrity": "sha512-KDeh/0tajUwUQIo/ALA7f/TeY/0CKcmyl/agkcLFYZwD5b7mbyY+ZrLC1gLtK1hQwS6wgg4VyupMdaQi/Z9vRA==", + "dependencies": { + "@opentiny/vue-button": "~3.29.0", + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0", + "@opentiny/vue-user-contact": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-year-range": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-year-range/-/vue-year-range-3.29.0.tgz", + "integrity": "sha512-lNoWgMsN1rw5RMrSq+qURs7IYkXtEvzcgB+3KXCksOJBP+zAAVhpVnMZu/dyKXtTJBV27mDB3P5iLhzP30fcBw==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-directive": "~3.29.0", + "@opentiny/vue-icon": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-year-table": "~3.29.0" + } + }, + "node_modules/@opentiny/vue-year-table": { + "version": "3.29.0", + "resolved": "https://registry.npmmirror.com/@opentiny/vue-year-table/-/vue-year-table-3.29.0.tgz", + "integrity": "sha512-AmQ9odNUyAjBEw/sCZGkFEUG/C60Gw7IsG/9zqKjYEZ7CuK6zPEj9uOOTpSBImtkW6tvCP+DBIhOA6FOMj19+g==", + "dependencies": { + "@opentiny/vue-common": "~3.29.0", + "@opentiny/vue-renderless": "~3.29.0", + "@opentiny/vue-theme": "~3.29.0" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.28", + "resolved": "https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.28.tgz", + "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", + "dev": true + }, + "node_modules/@rollup/pluginutils": { + "version": "5.1.4", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", + "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz", + "integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz", + "integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz", + "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz", + "integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz", + "integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz", + "integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz", + "integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz", + "integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz", + "integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz", + "integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz", + "integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz", + "integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz", + "integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz", + "integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz", + "integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz", + "integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz", + "integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz", + "integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz", + "integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sec-ant/readable-stream": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", + "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "dev": true + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@tauri-apps/api": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/api/-/api-2.10.1.tgz", + "integrity": "sha512-hKL/jWf293UDSUN09rR69hrToyIXBb8CjGaWC7gfinvnQrBVvnLr08FeFi38gxtugAVyVcTa5/FD/Xnkb1siBw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + } + }, + "node_modules/@tauri-apps/cli": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli/-/cli-2.10.1.tgz", + "integrity": "sha512-jQNGF/5quwORdZSSLtTluyKQ+o6SMa/AUICfhf4egCGFdMHqWssApVgYSbg+jmrZoc8e1DscNvjTnXtlHLS11g==", + "dev": true, + "bin": { + "tauri": "tauri.js" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + }, + "optionalDependencies": { + "@tauri-apps/cli-darwin-arm64": "2.10.1", + "@tauri-apps/cli-darwin-x64": "2.10.1", + "@tauri-apps/cli-linux-arm-gnueabihf": "2.10.1", + "@tauri-apps/cli-linux-arm64-gnu": "2.10.1", + "@tauri-apps/cli-linux-arm64-musl": "2.10.1", + "@tauri-apps/cli-linux-riscv64-gnu": "2.10.1", + "@tauri-apps/cli-linux-x64-gnu": "2.10.1", + "@tauri-apps/cli-linux-x64-musl": "2.10.1", + "@tauri-apps/cli-win32-arm64-msvc": "2.10.1", + "@tauri-apps/cli-win32-ia32-msvc": "2.10.1", + "@tauri-apps/cli-win32-x64-msvc": "2.10.1" + } + }, + "node_modules/@tauri-apps/cli-darwin-arm64": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.10.1.tgz", + "integrity": "sha512-Z2OjCXiZ+fbYZy7PmP3WRnOpM9+Fy+oonKDEmUE6MwN4IGaYqgceTjwHucc/kEEYZos5GICve35f7ZiizgqEnQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-darwin-x64": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.10.1.tgz", + "integrity": "sha512-V/irQVvjPMGOTQqNj55PnQPVuH4VJP8vZCN7ajnj+ZS8Kom1tEM2hR3qbbIRoS3dBKs5mbG8yg1WC+97dq17Pw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.10.1.tgz", + "integrity": "sha512-Hyzwsb4VnCWKGfTw+wSt15Z2pLw2f0JdFBfq2vHBOBhvg7oi6uhKiF87hmbXOBXUZaGkyRDkCHsdzJcIfoJC2w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-linux-arm64-gnu": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.10.1.tgz", + "integrity": "sha512-OyOYs2t5GkBIvyWjA1+h4CZxTcdz1OZPCWAPz5DYEfB0cnWHERTnQ/SLayQzncrT0kwRoSfSz9KxenkyJoTelA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-linux-arm64-musl": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.10.1.tgz", + "integrity": "sha512-MIj78PDDGjkg3NqGptDOGgfXks7SYJwhiMh8SBoZS+vfdz7yP5jN18bNaLnDhsVIPARcAhE1TlsZe/8Yxo2zqg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-linux-riscv64-gnu": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.10.1.tgz", + "integrity": "sha512-X0lvOVUg8PCVaoEtEAnpxmnkwlE1gcMDTqfhbefICKDnOTJ5Est3qL0SrWxizDackIOKBcvtpejrSiVpuJI1kw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-linux-x64-gnu": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.10.1.tgz", + "integrity": "sha512-2/12bEzsJS9fAKybxgicCDFxYD1WEI9kO+tlDwX5znWG2GwMBaiWcmhGlZ8fi+DMe9CXlcVarMTYc0L3REIRxw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-linux-x64-musl": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.10.1.tgz", + "integrity": "sha512-Y8J0ZzswPz50UcGOFuXGEMrxbjwKSPgXftx5qnkuMs2rmwQB5ssvLb6tn54wDSYxe7S6vlLob9vt0VKuNOaCIQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-win32-arm64-msvc": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.10.1.tgz", + "integrity": "sha512-iSt5B86jHYAPJa/IlYw++SXtFPGnWtFJriHn7X0NFBVunF6zu9+/zOn8OgqIWSl8RgzhLGXQEEtGBdR4wzpVgg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-win32-ia32-msvc": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.10.1.tgz", + "integrity": "sha512-gXyxgEzsFegmnWywYU5pEBURkcFN/Oo45EAwvZrHMh+zUSEAvO5E8TXsgPADYm31d1u7OQU3O3HsYfVBf2moHw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/cli-win32-x64-msvc": { + "version": "2.10.1", + "resolved": "https://registry.npmmirror.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.10.1.tgz", + "integrity": "sha512-6Cn7YpPFwzChy0ERz6djKEmUehWrYlM+xTaNzGPgZocw3BD7OfwfWHKVWxXzdjEW2KfKkHddfdxK1XXTYqBRLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tsconfig/node22": { + "version": "22.0.0", + "resolved": "https://registry.npmmirror.com/@tsconfig/node22/-/node22-22.0.0.tgz", + "integrity": "sha512-twLQ77zevtxobBOD4ToAtVmuYrpeYUh3qh+TEp+08IWhpsrIflVHqQ1F1CiPxQGL7doCdBIOOCF+1Tm833faNg==", + "dev": true + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "22.13.4", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-22.13.4.tgz", + "integrity": "sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==", + "dev": true, + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.24.1.tgz", + "integrity": "sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.24.1", + "@typescript-eslint/type-utils": "8.24.1", + "@typescript-eslint/utils": "8.24.1", + "@typescript-eslint/visitor-keys": "8.24.1", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-8.24.1.tgz", + "integrity": "sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.24.1", + "@typescript-eslint/types": "8.24.1", + "@typescript-eslint/typescript-estree": "8.24.1", + "@typescript-eslint/visitor-keys": "8.24.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-8.24.1.tgz", + "integrity": "sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.24.1", + "@typescript-eslint/visitor-keys": "8.24.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-8.24.1.tgz", + "integrity": "sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "8.24.1", + "@typescript-eslint/utils": "8.24.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.24.1.tgz", + "integrity": "sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.24.1.tgz", + "integrity": "sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.24.1", + "@typescript-eslint/visitor-keys": "8.24.1", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-8.24.1.tgz", + "integrity": "sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.24.1", + "@typescript-eslint/types": "8.24.1", + "@typescript-eslint/typescript-estree": "8.24.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.24.1.tgz", + "integrity": "sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.24.1", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz", + "integrity": "sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==", + "dev": true, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@volar/language-core": { + "version": "2.4.11", + "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.11.tgz", + "integrity": "sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==", + "dev": true, + "dependencies": { + "@volar/source-map": "2.4.11" + } + }, + "node_modules/@volar/source-map": { + "version": "2.4.11", + "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.11.tgz", + "integrity": "sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==", + "dev": true + }, + "node_modules/@volar/typescript": { + "version": "2.4.11", + "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.11.tgz", + "integrity": "sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==", + "dev": true, + "dependencies": { + "@volar/language-core": "2.4.11", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.5.tgz", + "integrity": "sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==", + "dev": true + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.5.tgz", + "integrity": "sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.6", + "@babel/types": "^7.25.6", + "@vue/babel-helper-vue-transform-on": "1.2.5", + "@vue/babel-plugin-resolve-type": "1.2.5", + "html-tags": "^3.3.1", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } + } + }, + "node_modules/@vue/babel-plugin-resolve-type": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.5.tgz", + "integrity": "sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/parser": "^7.25.6", + "@vue/compiler-sfc": "^3.5.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz", + "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.13", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz", + "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==", + "dependencies": { + "@vue/compiler-core": "3.5.13", + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz", + "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.13", + "@vue/compiler-dom": "3.5.13", + "@vue/compiler-ssr": "3.5.13", + "@vue/shared": "3.5.13", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.48", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz", + "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==", + "dependencies": { + "@vue/compiler-dom": "3.5.13", + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/compiler-vue2": { + "version": "2.7.16", + "resolved": "https://registry.npmmirror.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", + "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", + "dev": true, + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.6.4", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz", + "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==" + }, + "node_modules/@vue/devtools-core": { + "version": "7.7.2", + "resolved": "https://registry.npmmirror.com/@vue/devtools-core/-/devtools-core-7.7.2.tgz", + "integrity": "sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==", + "dev": true, + "dependencies": { + "@vue/devtools-kit": "^7.7.2", + "@vue/devtools-shared": "^7.7.2", + "mitt": "^3.0.1", + "nanoid": "^5.0.9", + "pathe": "^2.0.2", + "vite-hot-client": "^0.2.4" + }, + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/@vue/devtools-core/node_modules/nanoid": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.0.tgz", + "integrity": "sha512-zDAl/llz8Ue/EblwSYwdxGBYfj46IM1dhjVi8dyp9LQffoIGxJEAHj2oeZ4uNcgycSRcQ83CnfcZqEJzVDLcDw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.7.2", + "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.2.tgz", + "integrity": "sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==", + "dev": true, + "dependencies": { + "@vue/devtools-shared": "^7.7.2", + "birpc": "^0.2.19", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.1" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.7.2", + "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.2.tgz", + "integrity": "sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==", + "dev": true, + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/eslint-config-typescript": { + "version": "14.4.0", + "resolved": "https://registry.npmmirror.com/@vue/eslint-config-typescript/-/eslint-config-typescript-14.4.0.tgz", + "integrity": "sha512-daU+eAekEeVz3CReE4PRW25fe+OJDKwE28jHN6LimDEnuFMbJ6H4WGogEpNof276wVP6UvzOeJQfLFjB5mW29A==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^8.23.0", + "fast-glob": "^3.3.3", + "typescript-eslint": "^8.23.0", + "vue-eslint-parser": "^9.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "peerDependencies": { + "eslint": "^9.10.0", + "eslint-plugin-vue": "^9.28.0", + "typescript": ">=4.8.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/language-core": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-2.2.2.tgz", + "integrity": "sha512-QotO41kurE5PLf3vrNgGTk3QswO2PdUFjBwNiOi7zMmGhwb25PSTh9hD1MCgKC06AVv+8sZQvlL3Do4TTVHSiQ==", + "dev": true, + "dependencies": { + "@volar/language-core": "~2.4.11", + "@vue/compiler-dom": "^3.5.0", + "@vue/compiler-vue2": "^2.7.16", + "@vue/shared": "^3.5.0", + "alien-signals": "^1.0.3", + "minimatch": "^9.0.3", + "muggle-string": "^0.4.1", + "path-browserify": "^1.0.1" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.13.tgz", + "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==", + "dependencies": { + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz", + "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==", + "dependencies": { + "@vue/reactivity": "3.5.13", + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz", + "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==", + "dependencies": { + "@vue/reactivity": "3.5.13", + "@vue/runtime-core": "3.5.13", + "@vue/shared": "3.5.13", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz", + "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==", + "dependencies": { + "@vue/compiler-ssr": "3.5.13", + "@vue/shared": "3.5.13" + }, + "peerDependencies": { + "vue": "3.5.13" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.13.tgz", + "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==" + }, + "node_modules/@vue/tsconfig": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/@vue/tsconfig/-/tsconfig-0.7.0.tgz", + "integrity": "sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==", + "dev": true, + "peerDependencies": { + "typescript": "5.x", + "vue": "^3.4.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "vue": { + "optional": true + } + } + }, + "node_modules/acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/alien-signals": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-1.0.3.tgz", + "integrity": "sha512-zQOh3wAYK5ujENxvBBR3CFGF/b6afaSzZ/c9yNhJ1ENrGHETvpUuKQsa93Qrclp0+PzTF93MaZ7scVp1uUozhA==", + "dev": true + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/birpc": { + "version": "0.2.19", + "resolved": "https://registry.npmmirror.com/birpc/-/birpc-0.2.19.tgz", + "integrity": "sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "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" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001700", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz", + "integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==", + "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" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmmirror.com/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", + "dev": true, + "dependencies": { + "is-what": "^4.1.8" + }, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/cropperjs": { + "version": "1.6.2", + "resolved": "https://registry.npmmirror.com/cropperjs/-/cropperjs-1.6.2.tgz", + "integrity": "sha512-nhymn9GdnV3CqiEHJVai54TULFAE3VshJTXSqSJKa8yXAKyBKDWdhHarnlIPrshJ0WMFTGuFvG02YjLXfPiuOA==" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssfilter": { + "version": "0.0.10", + "resolved": "https://registry.npmmirror.com/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dijkstrajs": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz", + "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==" + }, + "node_modules/echarts": { + "version": "5.4.1", + "resolved": "https://registry.npmmirror.com/echarts/-/echarts-5.4.1.tgz", + "integrity": "sha512-9ltS3M2JB0w2EhcYjCdmtrJ+6haZcW6acBolMGIuf01Hql1yrIV01L1aRj7jsaaIULJslEP9Z3vKlEmnJaWJVQ==", + "dependencies": { + "tslib": "2.3.0", + "zrender": "5.4.1" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.102", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.102.tgz", + "integrity": "sha512-eHhqaja8tE/FNpIiBrvBjFV/SSKpyWHLvxuR9dPTdo+3V9ppdLmFB7ZZQ98qNovcngPLYIz0oOBF9P0FfZef5Q==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/encode-utf8": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/encode-utf8/-/encode-utf8-1.0.3.tgz", + "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==" + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-stack-parser-es": { + "version": "0.1.5", + "resolved": "https://registry.npmmirror.com/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", + "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/esbuild": { + "version": "0.24.2", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.24.2.tgz", + "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.24.2", + "@esbuild/android-arm": "0.24.2", + "@esbuild/android-arm64": "0.24.2", + "@esbuild/android-x64": "0.24.2", + "@esbuild/darwin-arm64": "0.24.2", + "@esbuild/darwin-x64": "0.24.2", + "@esbuild/freebsd-arm64": "0.24.2", + "@esbuild/freebsd-x64": "0.24.2", + "@esbuild/linux-arm": "0.24.2", + "@esbuild/linux-arm64": "0.24.2", + "@esbuild/linux-ia32": "0.24.2", + "@esbuild/linux-loong64": "0.24.2", + "@esbuild/linux-mips64el": "0.24.2", + "@esbuild/linux-ppc64": "0.24.2", + "@esbuild/linux-riscv64": "0.24.2", + "@esbuild/linux-s390x": "0.24.2", + "@esbuild/linux-x64": "0.24.2", + "@esbuild/netbsd-arm64": "0.24.2", + "@esbuild/netbsd-x64": "0.24.2", + "@esbuild/openbsd-arm64": "0.24.2", + "@esbuild/openbsd-x64": "0.24.2", + "@esbuild/sunos-x64": "0.24.2", + "@esbuild/win32-arm64": "0.24.2", + "@esbuild/win32-ia32": "0.24.2", + "@esbuild/win32-x64": "0.24.2" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.20.1", + "resolved": "https://registry.npmmirror.com/eslint/-/eslint-9.20.1.tgz", + "integrity": "sha512-m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.19.0", + "@eslint/core": "^0.11.0", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "9.20.0", + "@eslint/plugin-kit": "^0.2.5", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.1", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.2.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-vue": { + "version": "9.32.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz", + "integrity": "sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "globals": "^13.24.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.1.1", + "postcss-selector-parser": "^6.0.15", + "semver": "^7.6.3", + "vue-eslint-parser": "^9.4.3", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-vue/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-scope": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-8.2.0.tgz", + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/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/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmmirror.com/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-5.0.4.tgz", + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==" + }, + "node_modules/execa": { + "version": "9.5.2", + "resolved": "https://registry.npmmirror.com/execa/-/execa-9.5.2.tgz", + "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", + "dev": true, + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.3", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.0", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/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/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.19.0", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.19.0.tgz", + "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/figures": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/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": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.2", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "11.3.0", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.0.tgz", + "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/human-signals": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-8.0.0.tgz", + "integrity": "sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==", + "dev": true, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.4", + "resolved": "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.3.4.tgz", + "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==" + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "dev": true, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dev": true, + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jiti": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.4.2.tgz", + "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", + "dev": true, + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/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.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz", + "integrity": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==", + "dev": true, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/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.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/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/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/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/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/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.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash-es": { + "version": "4.17.23", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.23.tgz", + "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.17", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz", + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mind-elixir": { + "version": "3.3.2", + "resolved": "https://registry.npmmirror.com/mind-elixir/-/mind-elixir-3.3.2.tgz", + "integrity": "sha512-SHHospQXT7ARaNMMnaZLFzBsOela9tc8rgSYHPhAPrV8Jxh6MCo1X8qQxJAvuqIVvN8uSGnXf+Po4nhzzSmWWQ==" + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true + }, + "node_modules/mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true + }, + "node_modules/npm-normalize-package-bin": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz", + "integrity": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==", + "dev": true, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm-run-all2": { + "version": "7.0.2", + "resolved": "https://registry.npmmirror.com/npm-run-all2/-/npm-run-all2-7.0.2.tgz", + "integrity": "sha512-7tXR+r9hzRNOPNTvXegM+QzCuMjzUIIq66VDunL6j60O4RrExx32XUhlrS7UK4VcdGw5/Wxzb3kfNcFix9JKDA==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.2.1", + "cross-spawn": "^7.0.6", + "memorystream": "^0.3.1", + "minimatch": "^9.0.0", + "pidtree": "^0.6.0", + "read-package-json-fast": "^4.0.0", + "shell-quote": "^1.7.3", + "which": "^5.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "npm-run-all2": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0", + "npm": ">= 9" + } + }, + "node_modules/npm-run-all2/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm-run-all2/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/npm-run-all2/node_modules/which": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/which/-/which-5.0.0.tgz", + "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", + "dev": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dev": true, + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "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.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/parchment": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/parchment/-/parchment-3.0.0.tgz", + "integrity": "sha512-HUrJFQ/StvgmXRcQ1ftY6VEZUq3jA2t9ncFN4F84J/vN0/FPpQF+8FKXb3l6fLces6q0uOHj6NJn+2xvZnxO6A==" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-ms": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/parse-ms/-/parse-ms-4.0.0.tgz", + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmmirror.com/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pngjs": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/pngjs/-/pngjs-5.0.0.tgz", + "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss": { + "version": "8.5.2", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.2.tgz", + "integrity": "sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-ms": { + "version": "9.2.0", + "resolved": "https://registry.npmmirror.com/pretty-ms/-/pretty-ms-9.2.0.tgz", + "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", + "dev": true, + "dependencies": { + "parse-ms": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qrcode": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/qrcode/-/qrcode-1.5.1.tgz", + "integrity": "sha512-nS8NJ1Z3md8uTjKtP+SGGhfqmTCs5flU/xR623oI0JX+Wepz9R8UrRVCTBTJm3qGw3rH6jJ6MUHjkDx15cxSSg==", + "dependencies": { + "dijkstrajs": "^1.0.1", + "encode-utf8": "^1.0.3", + "pngjs": "^5.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "qrcode": "bin/qrcode" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/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" + } + ] + }, + "node_modules/quill": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/quill/-/quill-2.0.3.tgz", + "integrity": "sha512-xEYQBqfYx/sfb33VJiKnSJp8ehloavImQ2A6564GAbqG55PGw1dAWUn1MUbQB62t0azawUS2CZZhWCjO8gRvTw==", + "dependencies": { + "eventemitter3": "^5.0.1", + "lodash-es": "^4.17.21", + "parchment": "^3.0.0", + "quill-delta": "^5.1.0" + }, + "engines": { + "npm": ">=8.2.3" + } + }, + "node_modules/quill-delta": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/quill-delta/-/quill-delta-5.1.0.tgz", + "integrity": "sha512-X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA==", + "dependencies": { + "fast-diff": "^1.3.0", + "lodash.clonedeep": "^4.5.0", + "lodash.isequal": "^4.5.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/read-package-json-fast": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/read-package-json-fast/-/read-package-json-fast-4.0.0.tgz", + "integrity": "sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==", + "dev": true, + "dependencies": { + "json-parse-even-better-errors": "^4.0.0", + "npm-normalize-package-bin": "^4.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true + }, + "node_modules/rollup": { + "version": "4.34.8", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.34.8.tgz", + "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.34.8", + "@rollup/rollup-android-arm64": "4.34.8", + "@rollup/rollup-darwin-arm64": "4.34.8", + "@rollup/rollup-darwin-x64": "4.34.8", + "@rollup/rollup-freebsd-arm64": "4.34.8", + "@rollup/rollup-freebsd-x64": "4.34.8", + "@rollup/rollup-linux-arm-gnueabihf": "4.34.8", + "@rollup/rollup-linux-arm-musleabihf": "4.34.8", + "@rollup/rollup-linux-arm64-gnu": "4.34.8", + "@rollup/rollup-linux-arm64-musl": "4.34.8", + "@rollup/rollup-linux-loongarch64-gnu": "4.34.8", + "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8", + "@rollup/rollup-linux-riscv64-gnu": "4.34.8", + "@rollup/rollup-linux-s390x-gnu": "4.34.8", + "@rollup/rollup-linux-x64-gnu": "4.34.8", + "@rollup/rollup-linux-x64-musl": "4.34.8", + "@rollup/rollup-win32-arm64-msvc": "4.34.8", + "@rollup/rollup-win32-ia32-msvc": "4.34.8", + "@rollup/rollup-win32-x64-msvc": "4.34.8", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "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": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shepherd.js": { + "version": "11.1.1", + "resolved": "https://registry.npmmirror.com/shepherd.js/-/shepherd.js-11.1.1.tgz", + "integrity": "sha512-7nVEgLTZUu5qQCKTlzQeKL1AQd2rG9Y9iqzZUgGvCFwMUZZhfwtZ6eEyMWMYw0zl8qKjSrjgzxFOe+SpfO43aA==", + "dependencies": { + "@floating-ui/dom": "^1.2.5", + "deepmerge": "^4.3.1" + }, + "engines": { + "node": "16.* || >= 18" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/RobbieTheWagner" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/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/simple-swizzle": { + "version": "0.2.4", + "resolved": "https://registry.npmmirror.com/simple-swizzle/-/simple-swizzle-0.2.4.tgz", + "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/sirv": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/sirv/-/sirv-3.0.1.tgz", + "integrity": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsaver": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/streamsaver/-/streamsaver-2.0.6.tgz", + "integrity": "sha512-LK4e7TfCV8HzuM0PKXuVUfKyCB1FtT9L0EGxsFk5Up8njj0bXK8pJM9+Wq2Nya7/jslmCQwRK39LFm55h7NBTw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + } + ] + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/superjson": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.2.tgz", + "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==", + "dev": true, + "dependencies": { + "copy-anything": "^3.0.2" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/tailwind-merge": { + "version": "1.14.0", + "resolved": "https://registry.npmmirror.com/tailwind-merge/-/tailwind-merge-1.14.0.tgz", + "integrity": "sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/dcastil" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-api-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/ts-api-utils/-/ts-api-utils-2.0.1.tgz", + "integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==", + "dev": true, + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "devOptional": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.24.1", + "resolved": "https://registry.npmmirror.com/typescript-eslint/-/typescript-eslint-8.24.1.tgz", + "integrity": "sha512-cw3rEdzDqBs70TIcb0Gdzbt6h11BSs2pS0yaq7hDWDBtCCSei1pPSUXE9qUdQ/Wm9NgFg8mKtMt1b8fTHIl1jA==", + "dev": true, + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.24.1", + "@typescript-eslint/parser": "8.24.1", + "@typescript-eslint/utils": "8.24.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "dev": true + }, + "node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", + "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", + "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" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/vite/-/vite-6.1.0.tgz", + "integrity": "sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==", + "dev": true, + "dependencies": { + "esbuild": "^0.24.2", + "postcss": "^8.5.1", + "rollup": "^4.30.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-hot-client": { + "version": "0.2.4", + "resolved": "https://registry.npmmirror.com/vite-hot-client/-/vite-hot-client-0.2.4.tgz", + "integrity": "sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0" + } + }, + "node_modules/vite-plugin-inspect": { + "version": "0.8.9", + "resolved": "https://registry.npmmirror.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.9.tgz", + "integrity": "sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==", + "dev": true, + "dependencies": { + "@antfu/utils": "^0.7.10", + "@rollup/pluginutils": "^5.1.3", + "debug": "^4.3.7", + "error-stack-parser-es": "^0.1.5", + "fs-extra": "^11.2.0", + "open": "^10.1.0", + "perfect-debounce": "^1.0.0", + "picocolors": "^1.1.1", + "sirv": "^3.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true + } + } + }, + "node_modules/vite-plugin-vue-devtools": { + "version": "7.7.2", + "resolved": "https://registry.npmmirror.com/vite-plugin-vue-devtools/-/vite-plugin-vue-devtools-7.7.2.tgz", + "integrity": "sha512-5V0UijQWiSBj32blkyPEqIbzc6HO9c1bwnBhx+ay2dzU0FakH+qMdNUT8nF9BvDE+i6I1U8CqCuJiO20vKEdQw==", + "dev": true, + "dependencies": { + "@vue/devtools-core": "^7.7.2", + "@vue/devtools-kit": "^7.7.2", + "@vue/devtools-shared": "^7.7.2", + "execa": "^9.5.1", + "sirv": "^3.0.0", + "vite-plugin-inspect": "0.8.9", + "vite-plugin-vue-inspector": "^5.3.1" + }, + "engines": { + "node": ">=v14.21.3" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0" + } + }, + "node_modules/vite-plugin-vue-inspector": { + "version": "5.3.1", + "resolved": "https://registry.npmmirror.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.3.1.tgz", + "integrity": "sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/plugin-proposal-decorators": "^7.23.0", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.22.15", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-dom": "^3.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.4" + }, + "peerDependencies": { + "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0" + } + }, + "node_modules/vscode-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz", + "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", + "dev": true + }, + "node_modules/vue": { + "version": "3.5.13", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.13.tgz", + "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==", + "dependencies": { + "@vue/compiler-dom": "3.5.13", + "@vue/compiler-sfc": "3.5.13", + "@vue/runtime-dom": "3.5.13", + "@vue/server-renderer": "3.5.13", + "@vue/shared": "3.5.13" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-eslint-parser": { + "version": "9.4.3", + "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/vue-eslint-parser/node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/vue-router": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.0.tgz", + "integrity": "sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==", + "dependencies": { + "@vue/devtools-api": "^6.6.4" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/vue-tsc": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-2.2.2.tgz", + "integrity": "sha512-1icPKkxAA5KTAaSwg0wVWdE48EdsH8fgvcbAiqojP4jXKl6LEM3soiW1aG/zrWrFt8Mw1ncG2vG1PvpZpVfehA==", + "dev": true, + "dependencies": { + "@volar/typescript": "~2.4.11", + "@vue/language-core": "2.2.2" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": ">=5.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/xss": { + "version": "1.0.14", + "resolved": "https://registry.npmmirror.com/xss/-/xss-1.0.14.tgz", + "integrity": "sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==", + "dependencies": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "bin": { + "xss": "bin/xss" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/yoctocolors/-/yoctocolors-2.1.1.tgz", + "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zrender": { + "version": "5.4.1", + "resolved": "https://registry.npmmirror.com/zrender/-/zrender-5.4.1.tgz", + "integrity": "sha512-M4Z05BHWtajY2241EmMPHglDQAJ1UyHQcYsxDNzD9XLSkPDqMq4bB28v9Pb4mvHnVQ0GxyTklZ/69xCFP6RXBA==", + "dependencies": { + "tslib": "2.3.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..018319e --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "vue-project", + "version": "0.0.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "run-p type-check \"build-only {@}\" --", + "preview": "vite preview", + "build-only": "vite build", + "type-check": "vue-tsc --build", + "lint": "eslint . --fix", + "tauri:dev": "tauri dev", + "tauri:build": "tauri build" + }, + "dependencies": { + "@opentiny/vue": "^3.29.0", + "@tauri-apps/api": "^2.10.1", + "vue": "^3.5.13", + "vue-router": "^4.5.0" + }, + "devDependencies": { + "@tauri-apps/cli": "^2.10.1", + "@tsconfig/node22": "^22.0.0", + "@types/node": "^22.13.4", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/eslint-config-typescript": "^14.4.0", + "@vue/tsconfig": "^0.7.0", + "eslint": "^9.20.1", + "eslint-plugin-vue": "^9.32.0", + "jiti": "^2.4.2", + "npm-run-all2": "^7.0.2", + "typescript": "~5.7.3", + "vite": "^6.1.0", + "vite-plugin-vue-devtools": "^7.7.2", + "vue-tsc": "^2.2.2" + } +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/public/favicon.ico differ diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore new file mode 100644 index 0000000..502406b --- /dev/null +++ b/src-tauri/.gitignore @@ -0,0 +1,4 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ +/gen/schemas diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock new file mode 100644 index 0000000..468b457 --- /dev/null +++ b/src-tauri/Cargo.lock @@ -0,0 +1,5243 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom 0.2.17", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android_log-sys" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" + +[[package]] +name = "android_logger" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3" +dependencies = [ + "android_log-sys", + "env_filter", + "log", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "app" +version = "0.1.0" +dependencies = [ + "log", + "serde", + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-log", +] + +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "atk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" +dependencies = [ + "atk-sys", + "glib", + "libc", +] + +[[package]] +name = "atk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bit-set" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" +dependencies = [ + "serde_core", +] + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "borsh" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" +dependencies = [ + "borsh-derive", + "cfg_aliases", +] + +[[package]] +name = "borsh-derive" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" +dependencies = [ + "once_cell", + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "brotli" +version = "8.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "byte-unit" +version = "5.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d" +dependencies = [ + "rust_decimal", + "schemars 1.2.1", + "serde", + "utf8-width", +] + +[[package]] +name = "bytecheck" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" +dependencies = [ + "bytecheck_derive", + "ptr_meta", + "simdutf8", +] + +[[package]] +name = "bytecheck_derive" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "bytemuck" +version = "1.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +dependencies = [ + "serde", +] + +[[package]] +name = "cairo-rs" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" +dependencies = [ + "bitflags 2.11.0", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", + "thiserror 1.0.69", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "camino" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "cargo_toml" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" +dependencies = [ + "serde", + "toml 0.9.12+spec-1.1.0", +] + +[[package]] +name = "cc" +version = "1.2.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chrono" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" +dependencies = [ + "iana-time-zone", + "num-traits", + "serde", + "windows-link 0.2.1", +] + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "cookie" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "time", + "version_check", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core-graphics" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97" +dependencies = [ + "bitflags 2.11.0", + "core-foundation", + "core-graphics-types", + "foreign-types", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" +dependencies = [ + "bitflags 2.11.0", + "core-foundation", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cssparser" +version = "0.29.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "matches", + "phf 0.10.1", + "proc-macro2", + "quote", + "smallvec", + "syn 1.0.109", +] + +[[package]] +name = "cssparser" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf 0.13.1", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn 2.0.117", +] + +[[package]] +name = "ctor" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +dependencies = [ + "quote", + "syn 2.0.117", +] + +[[package]] +name = "darling" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.117", +] + +[[package]] +name = "darling_macro" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "powerfmt", + "serde_core", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.117", +] + +[[package]] +name = "derive_more" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" +dependencies = [ + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.117", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "dispatch2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" +dependencies = [ + "bitflags 2.11.0", + "block2", + "libc", + "objc2", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "dlopen2" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" +dependencies = [ + "dlopen2_derive", + "libc", + "once_cell", + "winapi", +] + +[[package]] +name = "dlopen2_derive" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "dom_query" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d9c2e7f1d22d0f2ce07626d259b8a55f4a47cb0938d4006dd8ae037f17d585e" +dependencies = [ + "bit-set", + "cssparser 0.36.0", + "foldhash 0.2.0", + "html5ever 0.36.1", + "precomputed-hash", + "selectors 0.35.0", + "tendril", +] + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" +dependencies = [ + "serde", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "embed-resource" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 0.9.12+spec-1.1.0", + "vswhom", + "winreg", +] + +[[package]] +name = "embed_plist" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" + +[[package]] +name = "env_filter" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "erased-serde" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" +dependencies = [ + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "fern" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29" +dependencies = [ + "log", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-macro" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "gdk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", + "once_cell", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkwayland-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" +dependencies = [ + "gdk-sys", + "glib-sys", + "gobject-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkx11" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" +dependencies = [ + "gdk", + "gdkx11-sys", + "gio", + "glib", + "libc", + "x11", +] + +[[package]] +name = "gdkx11-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" +dependencies = [ + "gdk-sys", + "glib-sys", + "libc", + "system-deps", + "x11", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] + +[[package]] +name = "gio" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "gio-sys", + "glib", + "libc", + "once_cell", + "pin-project-lite", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "gio-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", + "winapi", +] + +[[package]] +name = "glib" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" +dependencies = [ + "bitflags 2.11.0", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "glib-macros" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" +dependencies = [ + "heck 0.4.1", + "proc-macro-crate 2.0.2", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "glob" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gtk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" +dependencies = [ + "atk", + "cairo-rs", + "field-offset", + "futures-channel", + "gdk", + "gdk-pixbuf", + "gio", + "glib", + "gtk-sys", + "gtk3-macros", + "libc", + "pango", + "pkg-config", +] + +[[package]] +name = "gtk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" +dependencies = [ + "atk-sys", + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk3-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "html5ever" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" +dependencies = [ + "log", + "mac", + "markup5ever 0.14.1", + "match_token", +] + +[[package]] +name = "html5ever" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6452c4751a24e1b99c3260d505eaeee76a050573e61f30ac2c924ddc7236f01e" +dependencies = [ + "log", + "markup5ever 0.36.1", +] + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ico" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" +dependencies = [ + "byteorder", + "png", +] + +[[package]] +name = "icu_collections" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +dependencies = [ + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", +] + +[[package]] +name = "infer" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" +dependencies = [ + "cfb", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "iri-string" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "itoa" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[package]] +name = "javascriptcore-rs" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" +dependencies = [ + "bitflags 1.3.2", + "glib", + "javascriptcore-rs-sys", +] + +[[package]] +name = "javascriptcore-rs-sys" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "jni" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" +dependencies = [ + "cesu8", + "cfg-if", + "combine", + "jni-sys", + "log", + "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +[[package]] +name = "js-sys" +version = "0.3.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" +dependencies = [ + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "json-patch" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" +dependencies = [ + "jsonptr", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonptr" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "keyboard-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" +dependencies = [ + "bitflags 2.11.0", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "kuchikiki" +version = "0.8.8-speedreader" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" +dependencies = [ + "cssparser 0.29.6", + "html5ever 0.29.1", + "indexmap 2.13.0", + "selectors 0.24.0", +] + +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + +[[package]] +name = "libappindicator" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" +dependencies = [ + "glib", + "gtk", + "gtk-sys", + "libappindicator-sys", + "log", +] + +[[package]] +name = "libappindicator-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" +dependencies = [ + "gtk-sys", + "libloading", + "once_cell", +] + +[[package]] +name = "libc" +version = "0.2.183" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "libredox" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" +dependencies = [ + "libc", +] + +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" +dependencies = [ + "value-bag", +] + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache 0.8.9", + "string_cache_codegen 0.5.4", + "tendril", +] + +[[package]] +name = "markup5ever" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c3294c4d74d0742910f8c7b466f44dda9eb2d5742c1e430138df290a1e8451c" +dependencies = [ + "log", + "tendril", + "web_atoms", +] + +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" +dependencies = [ + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.61.2", +] + +[[package]] +name = "muda" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "once_cell", + "png", + "serde", + "thiserror 2.0.18", + "windows-sys 0.60.2", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.11.0", + "jni-sys", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + +[[package]] +name = "num-conv" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_enum" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "num_threads" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +dependencies = [ + "libc", +] + +[[package]] +name = "objc2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +dependencies = [ + "objc2-encode", + "objc2-exception-helper", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" +dependencies = [ + "bitflags 2.11.0", + "block2", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" +dependencies = [ + "bitflags 2.11.0", + "dispatch2", + "objc2", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" +dependencies = [ + "bitflags 2.11.0", + "dispatch2", + "objc2", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-exception-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" +dependencies = [ + "cc", +] + +[[package]] +name = "objc2-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" +dependencies = [ + "bitflags 2.11.0", + "block2", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.11.0", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" +dependencies = [ + "bitflags 2.11.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-ui-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" +dependencies = [ + "bitflags 2.11.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-web-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" +dependencies = [ + "bitflags 2.11.0", + "block2", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "pango" +version = "0.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" +dependencies = [ + "gio", + "glib", + "libc", + "once_cell", + "pango-sys", +] + +[[package]] +name = "pango-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link 0.2.1", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" +dependencies = [ + "phf_shared 0.8.0", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_macros 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +dependencies = [ + "phf_macros 0.13.1", + "phf_shared 0.13.1", + "serde", +] + +[[package]] +name = "phf_codegen" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" +dependencies = [ + "phf_generator 0.8.0", + "phf_shared 0.8.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1" +dependencies = [ + "phf_generator 0.13.1", + "phf_shared 0.13.1", +] + +[[package]] +name = "phf_generator" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" +dependencies = [ + "phf_shared 0.8.0", + "rand 0.7.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand 0.8.5", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand 0.8.5", +] + +[[package]] +name = "phf_generator" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +dependencies = [ + "fastrand", + "phf_shared 0.13.1", +] + +[[package]] +name = "phf_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "phf_macros" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef" +dependencies = [ + "phf_generator 0.13.1", + "phf_shared 0.13.1", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "phf_shared" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.2", +] + +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher 1.0.2", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plist" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" +dependencies = [ + "base64 0.22.1", + "indexmap 2.13.0", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "potential_utf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn 2.0.117", +] + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" +dependencies = [ + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit 0.25.4+spec-1.1.0", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "ptr_meta" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" +dependencies = [ + "ptr_meta_derive", +] + +[[package]] +name = "ptr_meta_derive" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "quick-xml" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc", + "rand_pcg", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.11.0", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.18", +] + +[[package]] +name = "ref-cast" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "rend" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" +dependencies = [ + "bytecheck", +] + +[[package]] +name = "reqwest" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "sync_wrapper", + "tokio", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "rkyv" +version = "0.7.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" +dependencies = [ + "bitvec", + "bytecheck", + "bytes", + "hashbrown 0.12.3", + "ptr_meta", + "rend", + "rkyv_derive", + "seahash", + "tinyvec", + "uuid", +] + +[[package]] +name = "rkyv_derive" +version = "0.7.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "rust_decimal" +version = "1.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" +dependencies = [ + "arrayvec", + "borsh", + "bytes", + "num-traits", + "rand 0.8.5", + "rkyv", + "serde", + "serde_json", +] + +[[package]] +name = "rustc-hash" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schemars" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +dependencies = [ + "dyn-clone", + "indexmap 1.9.3", + "schemars_derive", + "serde", + "serde_json", + "url", + "uuid", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars_derive" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.117", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "seahash" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" + +[[package]] +name = "selectors" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" +dependencies = [ + "bitflags 1.3.2", + "cssparser 0.29.6", + "derive_more 0.99.20", + "fxhash", + "log", + "phf 0.8.0", + "phf_codegen 0.8.0", + "precomputed-hash", + "servo_arc 0.2.0", + "smallvec", +] + +[[package]] +name = "selectors" +version = "0.35.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fdfed56cd634f04fe8b9ddf947ae3dc493483e819593d2ba17df9ad05db8b2" +dependencies = [ + "bitflags 2.11.0", + "cssparser 0.36.0", + "derive_more 2.1.1", + "log", + "new_debug_unreachable", + "phf 0.13.1", + "phf_codegen 0.13.1", + "precomputed-hash", + "rustc-hash", + "servo_arc 0.4.3", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde-untagged" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" +dependencies = [ + "erased-serde", + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serde_derive_internals" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_repr" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_spanned" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_with" +version = "3.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serialize-to-javascript" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5" +dependencies = [ + "serde", + "serde_json", + "serialize-to-javascript-impl", +] + +[[package]] +name = "serialize-to-javascript-impl" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "servo_arc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" +dependencies = [ + "nodrop", + "stable_deref_trait", +] + +[[package]] +name = "servo_arc" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "simd-adler32" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" + +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "softbuffer" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" +dependencies = [ + "bytemuck", + "js-sys", + "ndk", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "objc2-quartz-core", + "raw-window-handle", + "redox_syscall", + "tracing", + "wasm-bindgen", + "web-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "soup3" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" +dependencies = [ + "futures-channel", + "gio", + "glib", + "libc", + "soup3-sys", +] + +[[package]] +name = "soup3-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.13.1", + "precomputed-hash", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "string_cache_codegen" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69" +dependencies = [ + "phf_generator 0.13.1", + "phf_shared 0.13.1", + "proc-macro2", + "quote", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "swift-rs" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" +dependencies = [ + "base64 0.21.7", + "serde", + "serde_json", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "system-deps" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +dependencies = [ + "cfg-expr", + "heck 0.5.0", + "pkg-config", + "toml 0.8.2", + "version-compare", +] + +[[package]] +name = "tao" +version = "0.34.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e06d52c379e63da659a483a958110bbde891695a0ecb53e48cc7786d5eda7bb" +dependencies = [ + "bitflags 2.11.0", + "block2", + "core-foundation", + "core-graphics", + "crossbeam-channel", + "dispatch2", + "dlopen2", + "dpi", + "gdkwayland-sys", + "gdkx11-sys", + "gtk", + "jni", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "once_cell", + "parking_lot", + "raw-window-handle", + "tao-macros", + "unicode-segmentation", + "url", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "tao-macros" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "tauri" +version = "2.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da77cc00fb9028caf5b5d4650f75e31f1ef3693459dfca7f7e506d1ecef0ba2d" +dependencies = [ + "anyhow", + "bytes", + "cookie", + "dirs", + "dunce", + "embed_plist", + "getrandom 0.3.4", + "glob", + "gtk", + "heck 0.5.0", + "http", + "jni", + "libc", + "log", + "mime", + "muda", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "percent-encoding", + "plist", + "raw-window-handle", + "reqwest", + "serde", + "serde_json", + "serde_repr", + "serialize-to-javascript", + "swift-rs", + "tauri-build", + "tauri-macros", + "tauri-runtime", + "tauri-runtime-wry", + "tauri-utils", + "thiserror 2.0.18", + "tokio", + "tray-icon", + "url", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bbc990d1dbf57a8e1c7fa2327f2a614d8b757805603c1b9ba5c81bade09fd4d" +dependencies = [ + "anyhow", + "cargo_toml", + "dirs", + "glob", + "heck 0.5.0", + "json-patch", + "schemars 0.8.22", + "semver", + "serde", + "serde_json", + "tauri-utils", + "tauri-winres", + "toml 0.9.12+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-codegen" +version = "2.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4a24476afd977c5d5d169f72425868613d82747916dd29e0a357c84c4bd6d29" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.117", + "tauri-utils", + "thiserror 2.0.18", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d39b349a98dadaffebb73f0a40dcd1f23c999211e5a2e744403db384d0c33de7" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddde7d51c907b940fb573006cdda9a642d6a7c8153657e88f8a5c3c9290cd4aa" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "toml 0.9.12+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-plugin-log" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93" +dependencies = [ + "android_logger", + "byte-unit", + "fern", + "log", + "objc2", + "objc2-foundation", + "serde", + "serde_json", + "serde_repr", + "swift-rs", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", + "time", +] + +[[package]] +name = "tauri-runtime" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2826d79a3297ed08cd6ea7f412644ef58e32969504bc4fbd8d7dbeabc4445ea2" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni", + "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webview2-com", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e11ea2e6f801d275fdd890d6c9603736012742a1c33b96d0db788c9cdebf7f9e" +dependencies = [ + "gtk", + "http", + "jni", + "log", + "objc2", + "objc2-app-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "softbuffer", + "tao", + "tauri-runtime", + "tauri-utils", + "url", + "webkit2gtk", + "webview2-com", + "windows", + "wry", +] + +[[package]] +name = "tauri-utils" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219a1f983a2af3653f75b5747f76733b0da7ff03069c7a41901a5eb3ace4557d" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dunce", + "glob", + "html5ever 0.29.1", + "http", + "infer", + "json-patch", + "kuchikiki", + "log", + "memchr", + "phf 0.11.3", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.18", + "toml 0.9.12+spec-1.1.0", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" +dependencies = [ + "dunce", + "embed-resource", + "toml 0.9.12+spec-1.1.0", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "time" +version = "0.3.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" +dependencies = [ + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + +[[package]] +name = "time-macros" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "toml" +version = "0.9.12+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +dependencies = [ + "indexmap 2.13.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.15", +] + +[[package]] +name = "toml_datetime" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_datetime" +version = "0.7.5+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_datetime" +version = "1.0.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +dependencies = [ + "indexmap 2.13.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.25.4+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 1.0.0+spec-1.1.0", + "toml_parser", + "winnow 0.7.15", +] + +[[package]] +name = "toml_parser" +version = "1.0.9+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" +dependencies = [ + "winnow 0.7.15", +] + +[[package]] +name = "toml_writer" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags 2.11.0", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tray-icon" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c" +dependencies = [ + "crossbeam-channel", + "dirs", + "libappindicator", + "muda", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "once_cell", + "png", + "serde", + "thiserror 2.0.18", + "windows-sys 0.60.2", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + +[[package]] +name = "typenum" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" + +[[package]] +name = "unic-char-property" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" +dependencies = [ + "unic-char-range", +] + +[[package]] +name = "unic-char-range" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" + +[[package]] +name = "unic-common" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" + +[[package]] +name = "unic-ucd-ident" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" +dependencies = [ + "unic-char-property", + "unic-char-range", + "unic-ucd-version", +] + +[[package]] +name = "unic-ucd-version" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" +dependencies = [ + "unic-common", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" +dependencies = [ + "getrandom 0.4.2", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "value-bag" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" + +[[package]] +name = "version-compare" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" +dependencies = [ + "cfg-if", + "futures-util", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.117", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap 2.13.0", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasm-streams" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags 2.11.0", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "semver", +] + +[[package]] +name = "web-sys" +version = "0.3.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web_atoms" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a9779e9f04d2ac1ce317aee707aa2f6b773afba7b931222bff6983843b1576" +dependencies = [ + "phf 0.13.1", + "phf_codegen 0.13.1", + "string_cache 0.9.0", + "string_cache_codegen 0.6.1", +] + +[[package]] +name = "webkit2gtk" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793" +dependencies = [ + "bitflags 1.3.2", + "cairo-rs", + "gdk", + "gdk-sys", + "gio", + "gio-sys", + "glib", + "glib-sys", + "gobject-sys", + "gtk", + "gtk-sys", + "javascriptcore-rs", + "libc", + "once_cell", + "soup3", + "webkit2gtk-sys", +] + +[[package]] +name = "webkit2gtk-sys" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5" +dependencies = [ + "bitflags 1.3.2", + "cairo-sys-rs", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk-sys", + "javascriptcore-rs-sys", + "libc", + "pkg-config", + "soup3-sys", + "system-deps", +] + +[[package]] +name = "webview2-com" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a" +dependencies = [ + "webview2-com-macros", + "webview2-com-sys", + "windows", + "windows-core 0.61.2", + "windows-implement", + "windows-interface", +] + +[[package]] +name = "webview2-com-macros" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" +dependencies = [ + "thiserror 2.0.18", + "windows", + "windows-core 0.61.2", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "window-vibrancy" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" +dependencies = [ + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +] + +[[package]] +name = "windows" +version = "0.61.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +dependencies = [ + "windows-collections", + "windows-core 0.61.2", + "windows-future", + "windows-link 0.1.3", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +dependencies = [ + "windows-core 0.61.2", +] + +[[package]] +name = "windows-core" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-future" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "windows-link" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-numerics" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-strings" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows-threading" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-version" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.7.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck 0.5.0", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck 0.5.0", + "indexmap 2.13.0", + "prettyplease", + "syn 2.0.117", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.117", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags 2.11.0", + "indexmap 2.13.0", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap 2.13.0", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + +[[package]] +name = "wry" +version = "0.54.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a24eda84b5d488f99344e54b807138896cee8df0b2d16c793f1f6b80e6d8df1f" +dependencies = [ + "base64 0.22.1", + "block2", + "cookie", + "crossbeam-channel", + "dirs", + "dom_query", + "dpi", + "dunce", + "gdkx11", + "gtk", + "http", + "javascriptcore-rs", + "jni", + "libc", + "ndk", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "sha2", + "soup3", + "tao-macros", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "x11" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", + "synstructure", +] + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml new file mode 100644 index 0000000..bd468df --- /dev/null +++ b/src-tauri/Cargo.toml @@ -0,0 +1,33 @@ +[package] +name = "app" +version = "0.1.0" +description = "A Tauri App" +authors = ["you"] +license = "" +repository = "" +edition = "2021" +rust-version = "1.77.2" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[lib] +name = "app_lib" +crate-type = ["staticlib", "cdylib", "rlib"] + +[build-dependencies] +tauri-build = { version = "2.5.6", features = [] } + +[dependencies] +serde_json = "1.0" +serde = { version = "1.0", features = ["derive"] } +log = "0.4" +tauri = { version = "2.10.3", features = [] } +tauri-plugin-log = "2" + +[profile.release] +# Reduce final binary size for distribution builds. +opt-level = "z" +lto = true +codegen-units = 1 +panic = "abort" +strip = "symbols" diff --git a/src-tauri/build.rs b/src-tauri/build.rs new file mode 100644 index 0000000..795b9b7 --- /dev/null +++ b/src-tauri/build.rs @@ -0,0 +1,3 @@ +fn main() { + tauri_build::build() +} diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json new file mode 100644 index 0000000..c135d7f --- /dev/null +++ b/src-tauri/capabilities/default.json @@ -0,0 +1,11 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "enables the default permissions", + "windows": [ + "main" + ], + "permissions": [ + "core:default" + ] +} diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png new file mode 100644 index 0000000..77e7d23 Binary files /dev/null and b/src-tauri/icons/128x128.png differ diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png new file mode 100644 index 0000000..0f7976f Binary files /dev/null and b/src-tauri/icons/128x128@2x.png differ diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png new file mode 100644 index 0000000..98fda06 Binary files /dev/null and b/src-tauri/icons/32x32.png differ diff --git a/src-tauri/icons/Square107x107Logo.png b/src-tauri/icons/Square107x107Logo.png new file mode 100644 index 0000000..f35d84f Binary files /dev/null and b/src-tauri/icons/Square107x107Logo.png differ diff --git a/src-tauri/icons/Square142x142Logo.png b/src-tauri/icons/Square142x142Logo.png new file mode 100644 index 0000000..1823bb2 Binary files /dev/null and b/src-tauri/icons/Square142x142Logo.png differ diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png new file mode 100644 index 0000000..dc2b22c Binary files /dev/null and b/src-tauri/icons/Square150x150Logo.png differ diff --git a/src-tauri/icons/Square284x284Logo.png b/src-tauri/icons/Square284x284Logo.png new file mode 100644 index 0000000..0ed3984 Binary files /dev/null and b/src-tauri/icons/Square284x284Logo.png differ diff --git a/src-tauri/icons/Square30x30Logo.png b/src-tauri/icons/Square30x30Logo.png new file mode 100644 index 0000000..60bf0ea Binary files /dev/null and b/src-tauri/icons/Square30x30Logo.png differ diff --git a/src-tauri/icons/Square310x310Logo.png b/src-tauri/icons/Square310x310Logo.png new file mode 100644 index 0000000..c8ca0ad Binary files /dev/null and b/src-tauri/icons/Square310x310Logo.png differ diff --git a/src-tauri/icons/Square44x44Logo.png b/src-tauri/icons/Square44x44Logo.png new file mode 100644 index 0000000..8756459 Binary files /dev/null and b/src-tauri/icons/Square44x44Logo.png differ diff --git a/src-tauri/icons/Square71x71Logo.png b/src-tauri/icons/Square71x71Logo.png new file mode 100644 index 0000000..2c8023c Binary files /dev/null and b/src-tauri/icons/Square71x71Logo.png differ diff --git a/src-tauri/icons/Square89x89Logo.png b/src-tauri/icons/Square89x89Logo.png new file mode 100644 index 0000000..2c5e603 Binary files /dev/null and b/src-tauri/icons/Square89x89Logo.png differ diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png new file mode 100644 index 0000000..17d142c Binary files /dev/null and b/src-tauri/icons/StoreLogo.png differ diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns new file mode 100644 index 0000000..a2993ad Binary files /dev/null and b/src-tauri/icons/icon.icns differ diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico new file mode 100644 index 0000000..06c23c8 Binary files /dev/null and b/src-tauri/icons/icon.ico differ diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png new file mode 100644 index 0000000..d1756ce Binary files /dev/null and b/src-tauri/icons/icon.png differ diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs new file mode 100644 index 0000000..9c3118c --- /dev/null +++ b/src-tauri/src/lib.rs @@ -0,0 +1,16 @@ +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + tauri::Builder::default() + .setup(|app| { + if cfg!(debug_assertions) { + app.handle().plugin( + tauri_plugin_log::Builder::default() + .level(log::LevelFilter::Info) + .build(), + )?; + } + Ok(()) + }) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs new file mode 100644 index 0000000..ad5fe83 --- /dev/null +++ b/src-tauri/src/main.rs @@ -0,0 +1,6 @@ +// Prevents additional console window on Windows in release, DO NOT REMOVE!! +#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] + +fn main() { + app_lib::run(); +} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 0000000..5f45754 --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,37 @@ +{ + "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", + "productName": "vue-project", + "version": "0.1.0", + "identifier": "com.ctczc.vitevue3tsprojectchange", + "build": { + "frontendDist": "../dist", + "devUrl": "http://localhost:5173", + "beforeDevCommand": "npm run dev", + "beforeBuildCommand": "npm run build" + }, + "app": { + "windows": [ + { + "title": "vue-project", + "width": 800, + "height": 600, + "resizable": true, + "fullscreen": false + } + ], + "security": { + "csp": null + } + }, + "bundle": { + "active": true, + "targets": ["nsis"], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] + } +} diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..19a57eb --- /dev/null +++ b/src/App.vue @@ -0,0 +1,100 @@ + + + diff --git a/src/api/index.ts b/src/api/index.ts new file mode 100644 index 0000000..b948cfd --- /dev/null +++ b/src/api/index.ts @@ -0,0 +1,50 @@ +import { get, post, put, del, patch } from "../utils/request"; + +// Example API declarations. Replace paths with your backend endpoints. +export const api = { + getPlcList(params: Object) { + return get("/source", params); + }, + createPlc(data: Object) { + console.log("创建", data); + return post("/source", data); + }, + updatePlc(id: string, data: Object) { + return put(`/source/${id}`, data); + }, + deletePlc(id: string) { + return del(`/source/${id}`); + }, + getNodeTree(id: string) { + return get(`/source/${id}/node-tree`); + }, + pointCreate( data: Object) { + return post(`/point`, data); + }, + pointUpdate( id: String, data: Object) { + return put(`/point/${id}`, data); + }, + pointDel( id: String) { + return del(`/point/${id}`); + }, + pointList(params: Object) { + return get("/point", params); + }, + getPage(data: Object) { + return get("/page", data); + }, + pageCreate(data: Object){ + return post("/page", data); + }, + pageUpdate(id:string,data: Object){ + return put(`/page/${id}`, data); + }, + pageDel( id: String) { + return del(`/page/${id}`); + }, + unitList(params: Object) { + return get("/unit", params); + }, +}; + +export default api; diff --git a/src/assets/base.css b/src/assets/base.css new file mode 100644 index 0000000..2abed52 --- /dev/null +++ b/src/assets/base.css @@ -0,0 +1,88 @@ +/* color palette from */ +:root { + --vt-c-primary: rgb(249, 250, 251); + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-primary); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: + color 0.5s, + background-color 0.5s; + line-height: 1.6; + font-family: + Inter, + -apple-system, + BlinkMacSystemFont, + "Segoe UI", + Roboto, + Oxygen, + Ubuntu, + Cantarell, + "Fira Sans", + "Droid Sans", + "Helvetica Neue", + sans-serif; + font-size: 15px; + color: #65758b; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git a/src/assets/coal.css b/src/assets/coal.css new file mode 100644 index 0000000..dc19d0f --- /dev/null +++ b/src/assets/coal.css @@ -0,0 +1,836 @@ +@import "./base.css"; +* { + border-color: hsl(var(--border)); +} +body { + margin: 0; + line-height: inherit; + background-color: hsl(var(--background)); + color: hsl(var(--foreground)); +} +html, +body { + font-size: 16px; + color: #65758b; +} +:root { + --background: 210 20% 98%; + --foreground: 220 20% 10%; + --card: 0 0% 100%; + --primary: 207 90% 42%; + --primary-foreground: 0 0% 100%; + --muted-foreground: 215 16% 47%; + --border: 214 20% 88%; + --radius: 0.5rem; + --delete: 248 113 113; + --primary_btn: 11 117 203; + --sidebar-accent: 214 20% 94%; + --sidebar-accent-foreground: 220 20% 10%; +} +html, +:host { + line-height: 1.5; + -webkit-text-size-adjust: 100%; + -moz-tab-size: 4; + tab-size: 4; + font-family: var(--font-inter), system-ui, sans-serif; + font-feature-settings: normal; + font-variation-settings: normal; + -webkit-tap-highlight-color: transparent; +} +hr { + height: 0; + color: inherit; + border-top-width: 1px; +} +a { + color: inherit; + text-decoration: inherit; +} +b, +strong { + font-weight: bolder; +} +table { + text-indent: 0; + border-color: inherit; + border-collapse: collapse; +} +button, +select { + text-transform: none; +} +button, +input:where([type="button"]), +input:where([type="reset"]), +input:where([type="submit"]) { + -webkit-appearance: button; + background-color: transparent; + background-image: none; +} +dl, +dd, +h2, +hr, +p { + margin: 0; +} +legend { + padding: 0; +} +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} +dialog { + padding: 0; +} +textarea { + resize: vertical; +} +input { + outline: none; + border: 1px solid #e5e7eb; +} +input::placeholder, +textarea::placeholder { + opacity: 1; + color: #9ca3af; +} +button, +[role="button"] { + cursor: pointer; +} +:disabled { + cursor: default; +} +img, +svg, +video, +canvas { + display: block; + vertical-align: middle; +} +img, +video { + max-width: 100%; + height: auto; +} +*, +::before, +::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; + --tw-content: ""; + box-sizing: border-box; + border-width: 0; + border-style: solid; + border-color: #e5e7eb; +} +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +} +.coal_main { + display: flex; + flex-direction: column; +} +.flexs { + display: flex; +} +.flex_col { + flex-direction: column; +} +.flex_wrap { + flex-wrap: wrap; +} +.flex_1 { + flex: 1 1 0%; +} +.shrink0 { + flex-shrink: 0; +} +.grow { + flex-grow: 1; +} +.flex { + display: flex; +} +.justify_center { + justify-content: center; +} +.inline_flex { + display: inline-flex; +} +.pageTitle { + font-size: 1.125rem; + line-height: 1.75rem; + font-weight: 700; + letter-spacing: 0.1em; + color: rgb(var(--primary_btn)); +} +.shadows { + box-shadow: 0 0 10px 3px rgba(213, 208, 208, 0.192); +} +.borderAll { + border: 1px solid #dae0e7; + border-radius: 0.5rem; +} +.bgWhite { + background-color: #ffffff; +} +.cursor_default { + cursor: default; +} +.cursor_pointer { + cursor: pointer; +} +.list_none { + list-style-type: none; +} +.items_center { + align-items: center; +} +.justify_center { + justify-content: center; +} +.text_sm { + font-size: 0.875rem; + line-height: 1.25rem; +} +.text_xs { + font-size: 0.75rem; + line-height: 1rem; +} +.fontw400 { + font-weight: 400; +} +.fontw500 { + font-weight: 500; +} +.fontw600 { + font-weight: 600; +} +.fontw700 { + font-weight: 700; +} + +.border-collapse { + border-collapse: collapse; +} +.w_full { + width: 100%; +} +.w_half { + width: 50%; + display: inline-block; +} +.w_px { + width: 1px; +} +.w2 { + width: 2rem; +} +.w4 { + width: 4rem; +} +.w10 { + width: 10rem; +} +.w0_5 { + width: 0.5rem; +} +.w0_625 { + width: 0.625rem; +} +.w0_75 { + width: 0.75rem; +} +.w1_2 { + width: 1.2rem; +} +.min_w_0 { + min-width: 0px; +} +.min_w_1_75 { + min-width: 1.75rem; +} +.min_w_2 { + min-width: 2rem; +} +.min_w_2_25 { + min-width: 2.25rem; +} +.min_w_6 { + min-width: 6rem; +} +.fixed { + position: fixed; +} +.absolute { + position: absolute; +} +.relative { + position: relative; +} +.sticky { + position: sticky; +} +.color_black { + color: #14181f; +} +.color_green { + color: #059669; +} +.color_primary { + color: rgb(var(--primary_btn)); +} +.color_red { + color: #dc2626; +} +.color_base { + color: #65758b; +} +.bg_card { + background-color: #ffffff; +} +.bg_header { + background-color: #edeff3; +} +.visible { + visibility: visible; +} +.invisible { + visibility: hidden; +} +.inset_0 { + inset: 0px; +} +.left0 { + left: 0px; +} +.z_10 { + z-index: 10; +} +.ml0_25 { + margin-left: 0.25rem; +} +.block { + display: block; +} +.table { + display: table; +} +.grid { + display: grid; +} +.hidden { + display: none; +} +.h0_5 { + height: 0.5rem; +} +.h0_625 { + height: 0.625rem; +} +.h0_75 { + height: 0.75rem; +} +.h0_9 { + height: 0.9rem; + line-height: 0.85rem; +} +.h1 { + height: 1rem; +} +.h1_25 { + height: 1.25rem; +} +.h_full { + height: 100%; +} +.wh0_4{ + width: 0.4rem; + height: 0.4rem; +} +@keyframes ping { + 75%, + 100% { + transform: scale(2); + opacity: 0; + } +} +.animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} +@keyframes pulse { + 50% { + opacity: 0.5; + } +} +.gap_12 { + gap: 12px; +} +.gap0_125 { + gap: 0.125rem; +} +.gap0_25 { + gap: 0.25rem; +} +.gap0_375 { + gap: 0.375rem; +} +.gap0_5 { + gap: 0.5rem; +} +.gap1_5 { + gap: 1.5rem; +} +.overflow_hidden { + overflow: hidden; +} +.overflowx_auto { + overflow-x: auto; +} +.whitespace_nowrap { + white-space: nowrap; +} +.rounded { + border-radius: 0.25rem; +} +.rounded_full { + border-radius: 9999px; +} +.rounded_md { + border-radius: calc(var(--radius) - 2px); +} +.border { + border-width: 1px; +} +.border_2 { + border-width: 2px; +} +.border_b { + border-bottom-width: 1px; +} +.border_r { + border-right-width: 1px; +} +.border_border0_5 { + border-color: hsl(var(--border) / 0.5); +} +.border_border0_6 { + border-color: hsl(var(--border) / 0.6); +} +.border_circle { + border-color: rgb(218, 224, 231); +} +.border_green_M { + --tw-border-opacity: 1; + border-color: rgb(16, 185, 129); +} +.border_green_yx { + --tw-border-opacity: 1; + border-color: rgb(5, 150, 105); +} +.border_red_M { + --tw-border-opacity: 1; + border-color: rgb(248, 113, 113); +} +.border_red { + --tw-border-opacity: 1; + border-color: rgb(220, 38, 38); +} +.border_yellow { + --tw-border-opacity: 1; + border-color: rgb(234, 179, 8); +} +.bg_blue { + --tw-bg-opacity: 1; + background-color: rgb(239, 246, 255); +} +.bg_border { + background-color: hsl(var(--border)); +} +.bg_card { + background-color: hsl(var(--card)); +} +.bg_green_yc { + --tw-bg-opacity: 1; + background-color: rgb(52, 211, 153); +} +.bg_green_M { + --tw-bg-opacity: 1; + background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1)); +} +.bg_green_yx { + --tw-bg-opacity: 1; + background-color: rgb(16, 185, 129); +} +.bg_muted { + background-color: rgb(234, 237, 240); +} +.bg_orange { + background-color: rgb(255 247 237 / 0.5); +} +.bg_orange:hover { + background-color: rgb(255 247 237 / 0.8); +} +.bg_primary { + background-color: hsl(var(--primary)); +} +.bg_red_M { + --tw-bg-opacity: 1; + background-color: rgb(254, 242, 242); +} +.bg_red { + --tw-bg-opacity: 1; + background-color: rgb(239, 68, 68); +} +.bg_temperature { + background-color: rgb(237, 239, 243); +} +.bg_yellow { + --tw-bg-opacity: 1; + background-color: rgb(250, 204, 21); +} +.p0_5 { + padding: 0.5rem; +} +.p0_75 { + padding: 0.75rem; +} +.px0_25 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} +.px0_375 { + padding-left: 0.375rem; + padding-right: 0.375rem; +} +.px0_5 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} +.px1 { + padding-left: 1rem; + padding-right: 1rem; +} +.py0_125 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; +} +.py0_375 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} +.py0_5 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.my0_3 { + margin-top: 0.3rem; + margin-bottom: 0.3rem; +} +.text_left { + text-align: left; +} +.text_center { + text-align: center; +} +.text_right { + text-align: right; +} +.text_10 { + font-size: 10px; +} +.text_11 { + font-size: 11px; +} +.text_7 { + font-size: 7px; +} +.text_8 { + font-size: 8px; +} +.leading_none { + line-height: 1; +} +.letter_space0_05 { + letter-spacing: 0.05em; +} +.text_white { + color: #ffffff; +} +.text_green { + color: rgb(5, 150, 105); +} +.text_emerald { + color: rgb(4, 120, 87); +} +.text_foreground { + color: hsl(var(--foreground)); +} +.text_orange_600 { + color: rgb(234, 88, 12); +} +.text_primary { + color: hsl(var(--primary)); +} +.text_primary_color { + color: hsl(var(--primary-foreground)); +} +.text_red_M { + color: rgb(239, 68, 68); +} +.text_red { + color: rgb(220, 38, 38); +} +.shadow_sm { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: + var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), + var(--tw-shadow); +} +.transition_all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.duration_500 { + transition-duration: 500ms; +} +.running { + animation-play-state: running; +} +:-moz-focusring { + outline: auto; +} +:-moz-ui-invalid { + box-shadow: none; +} +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} +[type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; +} +::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} + +[hidden]:where(:not([hidden="until-found"])) { + display: none; +} +/* Custom scrollbar */ +::-webkit-scrollbar { + width: 6px; + height: 6px; +} +::-webkit-scrollbar-track { + background: hsl(214 20% 94%); +} +::-webkit-scrollbar-thumb { + background: hsl(214 20% 80%); + border-radius: 3px; +} +::-webkit-scrollbar-thumb:hover { + background: hsl(207 90% 42%); +} +.placeholder:text-muted-foreground::placeholder { + color: hsl(var(--muted-foreground)); +} +.active:bg-sidebar-accent:active { + background-color: hsl(var(--sidebar-accent)); +} +.active:text-sidebar-accent-foreground:active { + color: hsl(var(--sidebar-accent-foreground)); +} +@keyframes accordion-up { + from { + height: var(--radix-accordion-content-height); + } + to { + height: 0; + } +} +@keyframes accordion-down { + from { + height: 0; + } + to { + height: var(--radix-accordion-content-height); + } +} +@keyframes enter { + from { + opacity: var(--tw-enter-opacity, 1); + transform: translate3d( + var(--tw-enter-translate-x, 0), + var(--tw-enter-translate-y, 0), + 0 + ) + scale3d( + var(--tw-enter-scale, 1), + var(--tw-enter-scale, 1), + var(--tw-enter-scale, 1) + ) + rotate(var(--tw-enter-rotate, 0)); + } +} +@keyframes exit { + to { + opacity: var(--tw-exit-opacity, 1); + transform: translate3d( + var(--tw-exit-translate-x, 0), + var(--tw-exit-translate-y, 0), + 0 + ) + scale3d( + var(--tw-exit-scale, 1), + var(--tw-exit-scale, 1), + var(--tw-exit-scale, 1) + ) + rotate(var(--tw-exit-rotate, 0)); + } +} +.reBtn{ + width: 1.5rem; + height: 1.5rem; +} +.c_pointer{ + cursor: pointer; +} +.Mcircle { + width: 20px; + height: 20px; +} +.dianji_status { + min-width: 40px; + display: inline-block; + width: 50%; + margin: 0.2rem 0; +} +.btns { + width: 4rem; + height: 1.5rem; + text-align: center; + border-radius: 1px; + background: #e9eaea; + line-height: 1.5rem; +} +.btnsActive { + color: #ffffff; + background: rgb(16, 185, 129); +} +#settings { + margin-top: 1rem; +} diff --git a/src/assets/coal2.css b/src/assets/coal2.css new file mode 100644 index 0000000..ecd2520 --- /dev/null +++ b/src/assets/coal2.css @@ -0,0 +1,6 @@ +.coalMain { + padding: 12px; + gap: 12px; + display: flex; + flex-direction: column; +} diff --git a/src/assets/logo.svg b/src/assets/logo.svg new file mode 100644 index 0000000..7565660 --- /dev/null +++ b/src/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/src/assets/main.css b/src/assets/main.css new file mode 100644 index 0000000..6d434ed --- /dev/null +++ b/src/assets/main.css @@ -0,0 +1,30 @@ +@import "./base.css"; +@import "./coal.css"; + +* { + box-sizing: border-box; + margin: 0; + padding: 0; + font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; +} +#app { + width: 100%; + height: 100vh; + margin: 0; + font-weight: normal; + color: #65758b; +} + +a, +.green { + text-decoration: none; + color: hsla(160, 100%, 37%, 1); + transition: 0.4s; + padding: 3px; +} + +@media (hover: hover) { + a:hover { + background-color: rgb(237, 239, 243); + } +} diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue new file mode 100644 index 0000000..d174cf8 --- /dev/null +++ b/src/components/HelloWorld.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/src/components/WelcomeItem.vue b/src/components/WelcomeItem.vue new file mode 100644 index 0000000..6d7086a --- /dev/null +++ b/src/components/WelcomeItem.vue @@ -0,0 +1,87 @@ + + + diff --git a/src/components/icons/IconCommunity.vue b/src/components/icons/IconCommunity.vue new file mode 100644 index 0000000..2dc8b05 --- /dev/null +++ b/src/components/icons/IconCommunity.vue @@ -0,0 +1,7 @@ + diff --git a/src/components/icons/IconDocumentation.vue b/src/components/icons/IconDocumentation.vue new file mode 100644 index 0000000..6d4791c --- /dev/null +++ b/src/components/icons/IconDocumentation.vue @@ -0,0 +1,7 @@ + diff --git a/src/components/icons/IconEcosystem.vue b/src/components/icons/IconEcosystem.vue new file mode 100644 index 0000000..c3a4f07 --- /dev/null +++ b/src/components/icons/IconEcosystem.vue @@ -0,0 +1,7 @@ + diff --git a/src/components/icons/IconSupport.vue b/src/components/icons/IconSupport.vue new file mode 100644 index 0000000..7452834 --- /dev/null +++ b/src/components/icons/IconSupport.vue @@ -0,0 +1,7 @@ + diff --git a/src/components/icons/IconTooling.vue b/src/components/icons/IconTooling.vue new file mode 100644 index 0000000..660598d --- /dev/null +++ b/src/components/icons/IconTooling.vue @@ -0,0 +1,19 @@ + + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..201c3d3 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,10 @@ +import "./assets/main.css"; + +import { createApp } from "vue"; +import App from "./App.vue"; +import router from "./router"; +import TinyVue from "@opentiny/vue"; // import '@opentiny/vue/dist/index.css' +const app = createApp(App); +app.use(router); +app.use(TinyVue); +app.mount("#app"); diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 0000000..78acf21 --- /dev/null +++ b/src/router/index.ts @@ -0,0 +1,66 @@ +import { createRouter, createWebHistory } from "vue-router"; +import warning from "../views/warning.vue"; +import runsystem from "../views/runsystem.vue"; +import firesystem from "../views/firesystem.vue"; +import firesystem2 from "../views/firesystem2.vue"; +import coalFeeding from "../views/coalFeeding.vue"; +import coalFeeding2 from "../views/coalFeeding2.vue"; +import coalFeedingA from "../views/coalFeedingA.vue"; +import plcList from "../views/plcList.vue"; +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path: "/", + name: "home", + component: coalFeeding, + }, + { + path: "/warning", + name: "warning", + component: warning, + }, + { + path: "/plcList", + name: "plcList", + component: plcList, + }, + { + path: "/runsystem", + name: "runsystem", + component: runsystem, + }, + { + path: "/firesystem", + name: "firesystem", + component: firesystem, + }, + { + path: "/firesystem2", + name: "firesystem2", + component: firesystem2, + }, + { + path: "/coalFeeding", + name: "coalFeeding", + component: coalFeeding, + }, + { + path: "/coalFeedingA", + name: "coalFeedingA", + component: coalFeedingA, + }, + { + path: "/coalFeeding2", + name: "coalFeeding2", + component: coalFeeding2, + }, + { + path: "/startPage", + name: "startPage", + component: () => import("../views/startPage.vue"), + }, + ], +}); + +export default router; diff --git a/src/utils/request.ts b/src/utils/request.ts new file mode 100644 index 0000000..551c549 --- /dev/null +++ b/src/utils/request.ts @@ -0,0 +1,119 @@ +const DEFAULT_TIMEOUT = 10000; + +function toQueryString(params: Record = {}): string { + const searchParams = new URLSearchParams(); + + Object.entries(params).forEach(([key, value]) => { + if (value === undefined || value === null) return; + if (Array.isArray(value)) { + value.forEach((item) => searchParams.append(key, String(item))); + return; + } + searchParams.append(key, String(value)); + }); + + const query = searchParams.toString(); + return query ? `?${query}` : ""; +} + +function buildUrl(url: string, params?: Record): string { + if (!params || Object.keys(params).length === 0) return url; + const query = toQueryString(params); + return `${url}${url.includes("?") ? `&${query.slice(1)}` : query}`; +} + +async function parseResponse(response: Response): Promise { + const contentType = response.headers.get("content-type") || ""; + + if (contentType.includes("application/json")) { + return response.json(); + } + + return response.text(); +} + +function normalizeError(status: number, message?: string, payload?: any): Error { + const error = new Error(message || "Request failed"); + (error as any).status = status; + (error as any).payload = payload; + return error; +} + +export async function request( + url: string, + options: { + method?: string; + params?: Record; + data?: any; + headers?: Record; + timeout?: number; + baseURL?: string; + cache?: RequestCache; + } = {}, +): Promise { + const { + method = "GET", + params, + data, + headers = {}, + timeout = DEFAULT_TIMEOUT, + baseURL = import.meta.env.VITE_API_BASE_URL || "", + cache, + ...restOptions + } = options; + + const controller = new AbortController(); + const timer = setTimeout(() => controller.abort(), timeout); + + const fullUrl = buildUrl(`${baseURL}${url}`, params); + const finalHeaders = { ...headers }; + const fetchOptions: RequestInit = { + method, + headers: finalHeaders, + signal: controller.signal, + cache: cache ?? (method.toUpperCase() === "GET" ? "no-store" : undefined), + ...restOptions, + }; + + if (data !== undefined) { + if (data instanceof FormData) { + fetchOptions.body = data; + } else { + finalHeaders["Content-Type"] = finalHeaders["Content-Type"] || "application/json"; + fetchOptions.body = JSON.stringify(data); + } + } + + try { + const response = await fetch(fullUrl, fetchOptions); + const payload = await parseResponse(response); + + if (!response.ok) { + throw normalizeError(response.status, payload?.message || response.statusText, payload); + } + + return payload; + } catch (error) { + if ((error as Error).name === "AbortError") { + throw normalizeError(408, "Request timeout"); + } + throw error; + } finally { + clearTimeout(timer); + } +} + +export const get = ( + url: string, + params?: Record, + options: Record = {}, +): Promise => request(url, { ...options, method: "GET", params }); + +export const post = (url: string, data: any, options: Record = {}): Promise => + request(url, { ...options, method: "POST", data }); +export const put = (url: string, data: any, options: Record = {}): Promise => + request(url, { ...options, method: "PUT", data }); +export const patch = (url: string, data: any, options: Record = {}): Promise => + request(url, { ...options, method: "PATCH", data }); +export const del = (url: string,params?: Record,options: Record = {},): Promise => + request(url, { ...options, method: "DELETE", params }); diff --git a/src/utils/treedata.json b/src/utils/treedata.json new file mode 100644 index 0000000..10818ce --- /dev/null +++ b/src/utils/treedata.json @@ -0,0 +1,18921 @@ +[ + { + "id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2253", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2253", + "browse_name": "Server", + "display_name": "Server", + "node_class": "Object", + "parent_id": null, + "children": [ + { + "id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2256", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2256", + "browse_name": "ServerStatus", + "display_name": "ServerStatus", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "921caf89-b303-41d3-94ec-e064a1b4682c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2257", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2257", + "browse_name": "StartTime", + "display_name": "StartTime", + "node_class": "Variable", + "parent_id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "children": [] + }, + { + "id": "b7a5de87-92cc-47ec-b41e-f4783488e126", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2258", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2258", + "browse_name": "CurrentTime", + "display_name": "CurrentTime", + "node_class": "Variable", + "parent_id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "children": [] + }, + { + "id": "f7e656c4-319e-438c-811c-74a90595ecb4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2259", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2259", + "browse_name": "State", + "display_name": "State", + "node_class": "Variable", + "parent_id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "children": [] + }, + { + "id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2260", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2260", + "browse_name": "BuildInfo", + "display_name": "BuildInfo", + "node_class": "Variable", + "parent_id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "children": [ + { + "id": "455b8dde-1946-4cf0-8d5d-e7cae4e981da", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2261", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2261", + "browse_name": "ProductName", + "display_name": "ProductName", + "node_class": "Variable", + "parent_id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "children": [] + }, + { + "id": "40124ff2-89f3-4056-9028-981afc32439c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2262", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2262", + "browse_name": "ProductUri", + "display_name": "ProductUri", + "node_class": "Variable", + "parent_id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "children": [] + }, + { + "id": "1506248c-b721-42aa-a27a-01ad48b61543", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2263", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2263", + "browse_name": "ManufacturerName", + "display_name": "ManufacturerName", + "node_class": "Variable", + "parent_id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "children": [] + }, + { + "id": "9f148e70-f33c-402b-9149-14528827193c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2264", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2264", + "browse_name": "SoftwareVersion", + "display_name": "SoftwareVersion", + "node_class": "Variable", + "parent_id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "children": [] + }, + { + "id": "891efba2-23b2-4d7a-b475-565100633b54", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2265", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2265", + "browse_name": "BuildNumber", + "display_name": "BuildNumber", + "node_class": "Variable", + "parent_id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "children": [] + }, + { + "id": "36f28edc-f6c0-45d4-b00e-85e5898e2c96", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2266", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2266", + "browse_name": "BuildDate", + "display_name": "BuildDate", + "node_class": "Variable", + "parent_id": "ef906464-af39-4e70-be4e-a9e12b2dab21", + "children": [] + } + ] + }, + { + "id": "1e100f3f-d0eb-43d2-9491-52c898ffa525", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2992", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2992", + "browse_name": "SecondsTillShutdown", + "display_name": "SecondsTillShutdown", + "node_class": "Variable", + "parent_id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "children": [] + }, + { + "id": "c49c8c1f-42b6-441c-b0bc-c188903335e7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2993", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2993", + "browse_name": "ShutdownReason", + "display_name": "ShutdownReason", + "node_class": "Variable", + "parent_id": "e931b4f9-d7e8-478f-98a7-53b06ff5e1ce", + "children": [] + } + ] + }, + { + "id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2268", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2268", + "browse_name": "ServerCapabilities", + "display_name": "ServerCapabilities", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "d078d821-06ca-4c9b-9055-18b4ced64198", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2996", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2996", + "browse_name": "ModellingRules", + "display_name": "ModellingRules", + "node_class": "Object", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [ + { + "id": "1fecb2cc-f6e4-44b6-9f4c-dd83281510ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=78", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "78", + "browse_name": "Mandatory", + "display_name": "Mandatory", + "node_class": "Object", + "parent_id": "d078d821-06ca-4c9b-9055-18b4ced64198", + "children": [] + }, + { + "id": "e8899ef8-ee66-4364-8968-0436106c1c6f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=80", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "80", + "browse_name": "Optional", + "display_name": "Optional", + "node_class": "Object", + "parent_id": "d078d821-06ca-4c9b-9055-18b4ced64198", + "children": [] + }, + { + "id": "2f1bd797-9101-4a87-b1bb-7390d6c6f557", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=83", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "83", + "browse_name": "ExposesItsArray", + "display_name": "ExposesItsArray", + "node_class": "Object", + "parent_id": "d078d821-06ca-4c9b-9055-18b4ced64198", + "children": [] + }, + { + "id": "ebdaeae8-eb5f-4b20-92a7-1cb23014c91d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11508", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11508", + "browse_name": "OptionalPlaceholder", + "display_name": "OptionalPlaceholder", + "node_class": "Object", + "parent_id": "d078d821-06ca-4c9b-9055-18b4ced64198", + "children": [] + }, + { + "id": "e4b83bf5-38cf-4520-9399-d6922f6a9424", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11510", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11510", + "browse_name": "MandatoryPlaceholder", + "display_name": "MandatoryPlaceholder", + "node_class": "Object", + "parent_id": "d078d821-06ca-4c9b-9055-18b4ced64198", + "children": [] + } + ] + }, + { + "id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2997", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2997", + "browse_name": "AggregateFunctions", + "display_name": "AggregateFunctions", + "node_class": "Object", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [ + { + "id": "8f8fcad1-7a03-497b-9b4b-8a7d0b831ae2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2341", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2341", + "browse_name": "Interpolative", + "display_name": "Interpolative", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "1541b575-670b-478a-8495-ced7f4e29738", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2342", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2342", + "browse_name": "Average", + "display_name": "Average", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "3f16914b-d3ed-4f77-8a2b-31199d6c6788", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2346", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2346", + "browse_name": "Minimum", + "display_name": "Minimum", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "53a8fa04-5e4f-435e-9f6a-0e130daa39f4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2347", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2347", + "browse_name": "Maximum", + "display_name": "Maximum", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "a9472d08-5fff-4048-bc47-f35c99cce5c8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2348", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2348", + "browse_name": "MinimumActualTime", + "display_name": "MinimumActualTime", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "4b1e81b8-0755-4bd0-8108-126d8d15fb33", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2349", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2349", + "browse_name": "MaximumActualTime", + "display_name": "MaximumActualTime", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "6c3a532d-77df-4e47-98b8-070608877606", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2350", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2350", + "browse_name": "Range", + "display_name": "Range", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "b81d32a1-89b8-439e-8d31-b30df4806159", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2352", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2352", + "browse_name": "Count", + "display_name": "Count", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "d5f1ec85-b61a-42ec-b566-e9b41703868a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2357", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2357", + "browse_name": "Start", + "display_name": "Start", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "34fb97aa-5dd9-4e0c-813d-7186d054c058", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2358", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2358", + "browse_name": "End", + "display_name": "End", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "84b7f0dc-7c71-48c5-8a34-b688ce93b00f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2359", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2359", + "browse_name": "Delta", + "display_name": "Delta", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "928ada22-01fb-4e92-a690-8f2dba75ad42", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2364", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2364", + "browse_name": "WorstQuality", + "display_name": "WorstQuality", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "cc7e1edc-2361-481a-8927-7a24f6499a0b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11505", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11505", + "browse_name": "StartBound", + "display_name": "StartBound", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + }, + { + "id": "64a4fdce-e9e6-4683-bdc1-4a5e81629ba7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11506", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11506", + "browse_name": "EndBound", + "display_name": "EndBound", + "node_class": "Object", + "parent_id": "53f55b24-1e31-4a73-afe4-b9f08904f424", + "children": [] + } + ] + }, + { + "id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11192", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11192", + "browse_name": "HistoryServerCapabilities", + "display_name": "HistoryServerCapabilities", + "node_class": "Object", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [ + { + "id": "2dcd0e97-e197-4887-82c8-91a736d2190b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11201", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11201", + "browse_name": "AggregateFunctions", + "display_name": "AggregateFunctions", + "node_class": "Object", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "4bd438ff-aaed-4eeb-ad88-d02624a868ce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11275", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11275", + "browse_name": "InsertAnnotationCapability", + "display_name": "InsertAnnotationCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "834c2397-cb6f-4c2b-81a2-a1779c99c3f5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11198", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11198", + "browse_name": "UpdateDataCapability", + "display_name": "UpdateDataCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "ca04c14c-24bc-4a6b-8b35-32bd8d45514c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11283", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11283", + "browse_name": "UpdateEventCapability", + "display_name": "UpdateEventCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "0ca0b0c9-6b05-4afb-b92a-ba3a77a2a4f7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11196", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11196", + "browse_name": "InsertDataCapability", + "display_name": "InsertDataCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "bd1e4ad8-6936-4283-9e0a-fc328d3688f2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11274", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11274", + "browse_name": "MaxReturnEventValues", + "display_name": "MaxReturnEventValues", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "59cf54a2-69dc-4572-abdd-a8f1f7cfab4a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=19091", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "19091", + "browse_name": "ServerTimestampSupported", + "display_name": "ServerTimestampSupported", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "148bd6eb-18c1-40a2-b3fb-dbe6448427b1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11197", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11197", + "browse_name": "ReplaceDataCapability", + "display_name": "ReplaceDataCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "b746d4e7-3eee-42cb-9898-b9bdc1e8928d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11193", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11193", + "browse_name": "AccessHistoryDataCapability", + "display_name": "AccessHistoryDataCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "b350aa5e-3df3-4ada-a32f-3367ea0a3684", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11281", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11281", + "browse_name": "InsertEventCapability", + "display_name": "InsertEventCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "7c8496c7-b03a-4585-900e-9cb70d780d3b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11273", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11273", + "browse_name": "MaxReturnDataValues", + "display_name": "MaxReturnDataValues", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "3250a00a-c03b-42ab-af73-06ca36d89f6f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11200", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11200", + "browse_name": "DeleteAtTimeCapability", + "display_name": "DeleteAtTimeCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "25dcbe2a-c955-46bb-bf08-fb89d1f9bffa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11502", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11502", + "browse_name": "DeleteEventCapability", + "display_name": "DeleteEventCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "a35ac6bf-856c-4e0e-a9e8-3e5d26654bbd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11282", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11282", + "browse_name": "ReplaceEventCapability", + "display_name": "ReplaceEventCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "5c7fef9a-b0a3-48d9-b62b-639e82d23316", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11199", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11199", + "browse_name": "DeleteRawCapability", + "display_name": "DeleteRawCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + }, + { + "id": "aff1bfea-a5ce-49f9-ad2b-fdea5e5b7af8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11242", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11242", + "browse_name": "AccessHistoryEventsCapability", + "display_name": "AccessHistoryEventsCapability", + "node_class": "Variable", + "parent_id": "4f1b0d95-204e-423e-9821-1441cf82a8ec", + "children": [] + } + ] + }, + { + "id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11704", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11704", + "browse_name": "OperationLimits", + "display_name": "OperationLimits", + "node_class": "Object", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [ + { + "id": "0faffcd7-4be6-4516-8586-ce49e3b75a7e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12165", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12165", + "browse_name": "MaxNodesPerHistoryReadData", + "display_name": "MaxNodesPerHistoryReadData", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "a10ae53e-4152-44c8-a39e-6317c26eeca9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12168", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12168", + "browse_name": "MaxNodesPerHistoryUpdateEvents", + "display_name": "MaxNodesPerHistoryUpdateEvents", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "486c1b8c-3ee3-448f-81fa-cea0a238fc5d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11714", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11714", + "browse_name": "MaxMonitoredItemsPerCall", + "display_name": "MaxMonitoredItemsPerCall", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "2d2b9b2a-47e7-4872-b299-f4d77e040ef4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11711", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11711", + "browse_name": "MaxNodesPerRegisterNodes", + "display_name": "MaxNodesPerRegisterNodes", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "da0b07f8-ffa5-456c-9de2-f78fa923adb6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12167", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12167", + "browse_name": "MaxNodesPerHistoryUpdateData", + "display_name": "MaxNodesPerHistoryUpdateData", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "a43befde-257d-4713-98ed-c124b0a6191c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11709", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11709", + "browse_name": "MaxNodesPerMethodCall", + "display_name": "MaxNodesPerMethodCall", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "8be9c995-c361-44dd-b4f1-d9ad5151e918", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11713", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11713", + "browse_name": "MaxNodesPerNodeManagement", + "display_name": "MaxNodesPerNodeManagement", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "22d819f6-660f-4716-816f-a86df7bfa6fa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11710", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11710", + "browse_name": "MaxNodesPerBrowse", + "display_name": "MaxNodesPerBrowse", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "29a10836-edf5-4f63-bc2a-6a82a72e0d68", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11705", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11705", + "browse_name": "MaxNodesPerRead", + "display_name": "MaxNodesPerRead", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "b91125d4-6662-449d-8873-8ceb644b7833", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11707", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11707", + "browse_name": "MaxNodesPerWrite", + "display_name": "MaxNodesPerWrite", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "7d32634b-c104-4faf-82ba-ec7de8914865", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12166", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12166", + "browse_name": "MaxNodesPerHistoryReadEvents", + "display_name": "MaxNodesPerHistoryReadEvents", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + }, + { + "id": "ac9c8bd7-1af7-42a8-8137-faaa8097b5c2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11712", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11712", + "browse_name": "MaxNodesPerTranslateBrowsePathsToNodeIds", + "display_name": "MaxNodesPerTranslateBrowsePathsToNodeIds", + "node_class": "Variable", + "parent_id": "8d01d46a-be74-4534-bf76-1310ba2b5539", + "children": [] + } + ] + }, + { + "id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15606", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15606", + "browse_name": "RoleSet", + "display_name": "RoleSet", + "node_class": "Object", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [ + { + "id": "10c045c9-70b9-45c6-a66f-a2b34dd5cb51", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15644", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15644", + "browse_name": "Anonymous", + "display_name": "Anonymous", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "c82851e6-eda5-4bbb-a514-f469f01c0e66", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16192", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16192", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "10c045c9-70b9-45c6-a66f-a2b34dd5cb51", + "children": [] + } + ] + }, + { + "id": "8b7e6c81-09c4-48d9-9e09-dc4ef4ac5e77", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15656", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15656", + "browse_name": "AuthenticatedUser", + "display_name": "AuthenticatedUser", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "51e87fdb-4728-4a14-9260-90d0b89fee9e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16203", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16203", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "8b7e6c81-09c4-48d9-9e09-dc4ef4ac5e77", + "children": [] + } + ] + }, + { + "id": "f1099545-0421-4d94-b243-f67e2133494b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15668", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15668", + "browse_name": "Observer", + "display_name": "Observer", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "0b03834e-05f1-4037-a10a-b1cbfb6997b9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15672", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15672", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [ + { + "id": "45e168ec-b398-4189-8fee-852bc6a045cb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15673", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15673", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "0b03834e-05f1-4037-a10a-b1cbfb6997b9", + "children": [] + } + ] + }, + { + "id": "4ff2053f-ab20-4939-a71e-7a22f0ac6918", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15674", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15674", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [ + { + "id": "194dc787-d996-4330-98b1-7a42790910ab", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15675", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15675", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4ff2053f-ab20-4939-a71e-7a22f0ac6918", + "children": [] + } + ] + }, + { + "id": "91b9f8d1-4298-44ca-874f-62b8b8e1cb23", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16217", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16217", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [ + { + "id": "71bac441-6468-407c-a2ca-4c9b64c353db", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16218", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16218", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "91b9f8d1-4298-44ca-874f-62b8b8e1cb23", + "children": [] + } + ] + }, + { + "id": "57c7ae6b-c0c7-4210-9b62-dfd86da9ee4f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16219", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16219", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [ + { + "id": "534923cf-067e-4e5a-bf26-c8d9449c304b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16220", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16220", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "57c7ae6b-c0c7-4210-9b62-dfd86da9ee4f", + "children": [] + } + ] + }, + { + "id": "4040a9b3-24a6-4be4-9f5e-c662f10c6dd4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16221", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16221", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [ + { + "id": "452a2470-d1dc-4ab8-89ab-c95ba4b9ad46", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16222", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16222", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4040a9b3-24a6-4be4-9f5e-c662f10c6dd4", + "children": [] + } + ] + }, + { + "id": "982bab3b-3c4b-4205-8cae-696f92fd4581", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16223", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16223", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [ + { + "id": "4e261d5a-025c-4279-a3a8-0217d40c3cb5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16224", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16224", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "982bab3b-3c4b-4205-8cae-696f92fd4581", + "children": [] + } + ] + }, + { + "id": "c312e396-5098-4ae8-955a-cdd90e0bb4ea", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24142", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24142", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [] + }, + { + "id": "40b5607e-cbcb-402d-8fc6-ead79d7b8a22", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16216", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16216", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [] + }, + { + "id": "88ec93a8-3e98-46f9-8dbc-f0ee8c606ef9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15416", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15416", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [] + }, + { + "id": "0e11a6d3-6bdc-4c74-8e5e-d68679daaf28", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16215", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16215", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [] + }, + { + "id": "4a540d9d-91d3-4eb4-978c-fcc4dc7cfba8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15417", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15417", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [] + }, + { + "id": "9bd264f9-4adc-4c8e-ac5f-3c849109c12a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16214", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16214", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "f1099545-0421-4d94-b243-f67e2133494b", + "children": [] + } + ] + }, + { + "id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15680", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15680", + "browse_name": "Operator", + "display_name": "Operator", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "7321d6cd-cb0a-42b6-8159-f5cf7be7f811", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15684", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15684", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [ + { + "id": "88f761db-4cd6-45fd-9bc4-d279d6ab56ad", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15685", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15685", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "7321d6cd-cb0a-42b6-8159-f5cf7be7f811", + "children": [] + } + ] + }, + { + "id": "f996d7c1-0a04-4b90-8598-95838b670bd4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15686", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15686", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [ + { + "id": "56194788-0b0c-497c-ba76-c9ddce0da92d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15687", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15687", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f996d7c1-0a04-4b90-8598-95838b670bd4", + "children": [] + } + ] + }, + { + "id": "bf1f38c7-dfff-4e36-8be3-dea12063ea90", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16228", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16228", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [ + { + "id": "cf6503e8-85e6-4708-bae2-260fb43696fe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16229", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16229", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "bf1f38c7-dfff-4e36-8be3-dea12063ea90", + "children": [] + } + ] + }, + { + "id": "dee3d96e-3482-4991-ad4c-1b97cfd35bc9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16230", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16230", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [ + { + "id": "929f2dad-bf52-4d23-addc-290679326775", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16231", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16231", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "dee3d96e-3482-4991-ad4c-1b97cfd35bc9", + "children": [] + } + ] + }, + { + "id": "9962064f-2b45-4f06-94c0-24dfc94126d0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16232", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16232", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [ + { + "id": "2b5ac3aa-5272-4f9c-aeed-c36ae8ec06d9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16233", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16233", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "9962064f-2b45-4f06-94c0-24dfc94126d0", + "children": [] + } + ] + }, + { + "id": "f763a8a8-b3f8-4eb6-acaa-09c58740313e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16234", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16234", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [ + { + "id": "08f778f4-967a-4db1-8b06-ad6046ba5a6d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16235", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16235", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f763a8a8-b3f8-4eb6-acaa-09c58740313e", + "children": [] + } + ] + }, + { + "id": "38dbc772-9477-4d9f-8d1f-02873377c15b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24143", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24143", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [] + }, + { + "id": "24e4141b-834c-4e86-a66d-5d7d379eacf3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16227", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16227", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [] + }, + { + "id": "ac0d16a2-3033-494b-9e3c-2b2ccaea906f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15418", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15418", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [] + }, + { + "id": "77fb0247-8c9f-49be-bf13-49d78df79082", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16226", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16226", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [] + }, + { + "id": "28a25b00-a016-4627-ae60-f2c0ee7586e5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15423", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15423", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [] + }, + { + "id": "77ec722a-fc4a-4867-b0a1-50484dc62726", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16225", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16225", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "3b63805e-f717-4938-b8bf-30426b74c7e2", + "children": [] + } + ] + }, + { + "id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15692", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15692", + "browse_name": "Supervisor", + "display_name": "Supervisor", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "156ce450-73f4-4ef9-894c-51debb24c889", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15696", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15696", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [ + { + "id": "0e03a9f0-7c27-4b54-8852-89563c62a6ff", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15697", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15697", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "156ce450-73f4-4ef9-894c-51debb24c889", + "children": [] + } + ] + }, + { + "id": "5e485368-c51c-4db6-9bf2-1efbeac1e917", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15698", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15698", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [ + { + "id": "4ddd3b54-7a82-4a5f-a4f1-a28799920c10", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15699", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15699", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "5e485368-c51c-4db6-9bf2-1efbeac1e917", + "children": [] + } + ] + }, + { + "id": "c2fa8eab-2076-4bdf-84fa-8518c4a73b0e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16250", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16250", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [ + { + "id": "d2084ff5-209b-434a-9f44-0da348ae43eb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16251", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16251", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c2fa8eab-2076-4bdf-84fa-8518c4a73b0e", + "children": [] + } + ] + }, + { + "id": "f16780eb-c72b-4cdc-81b5-19134888d833", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16252", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16252", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [ + { + "id": "5c71e18d-ec39-461d-9954-43ef789588cd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16253", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16253", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f16780eb-c72b-4cdc-81b5-19134888d833", + "children": [] + } + ] + }, + { + "id": "6e4162b8-5b9d-4890-9ca2-0ace7b852c07", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16254", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16254", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [ + { + "id": "f2789016-a2af-4ca8-b765-a89069b528d2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16255", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16255", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "6e4162b8-5b9d-4890-9ca2-0ace7b852c07", + "children": [] + } + ] + }, + { + "id": "7cfe737f-c515-4ed9-b849-0c597f95ee70", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16256", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16256", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [ + { + "id": "a3cfa1ee-c850-41aa-bb3e-09fec75d68de", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16257", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16257", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "7cfe737f-c515-4ed9-b849-0c597f95ee70", + "children": [] + } + ] + }, + { + "id": "29cad4bd-8573-4c4b-ac49-39133bdb850e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16249", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16249", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [] + }, + { + "id": "e10bd37f-88d4-47ec-8cf9-244ff86df164", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24145", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24145", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [] + }, + { + "id": "035863de-9365-4d91-8249-ba1425db8347", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15426", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15426", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [] + }, + { + "id": "59b75230-0d37-4a38-a330-893418845a50", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16248", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16248", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [] + }, + { + "id": "d54d4e8a-f1dc-4dcc-99e9-f8fb43eb7779", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15427", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15427", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [] + }, + { + "id": "357c5b1f-e589-40b9-9308-3b346d8b852a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16247", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16247", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "8246d145-e431-4a19-b8ec-4b17ed785b0c", + "children": [] + } + ] + }, + { + "id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15704", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15704", + "browse_name": "SecurityAdmin", + "display_name": "SecurityAdmin", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "c33e2073-5122-4ecb-83a0-32ed1f3961b9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15708", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15708", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [ + { + "id": "56bef111-d964-4945-9f4f-733b57a96d55", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15709", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15709", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c33e2073-5122-4ecb-83a0-32ed1f3961b9", + "children": [] + } + ] + }, + { + "id": "8cc3db1d-2d91-4ecf-9079-0ef2c35d20fc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15710", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15710", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [ + { + "id": "4090e9f1-b82b-49f7-9bda-ed036d93a80e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15711", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15711", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "8cc3db1d-2d91-4ecf-9079-0ef2c35d20fc", + "children": [] + } + ] + }, + { + "id": "9e772e37-3389-4607-8b02-80899a08a2ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16261", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16261", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [ + { + "id": "1bc67060-211c-4ed1-b8b9-ee3f9553d872", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16262", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16262", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "9e772e37-3389-4607-8b02-80899a08a2ed", + "children": [] + } + ] + }, + { + "id": "81a1573c-75fe-44c8-b275-1a8293de3c46", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16263", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16263", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [ + { + "id": "450aabf4-597e-4321-9824-7d64b56e73be", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16264", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16264", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "81a1573c-75fe-44c8-b275-1a8293de3c46", + "children": [] + } + ] + }, + { + "id": "2e06907a-4350-49c1-9ba0-606b29ccc640", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16265", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16265", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [ + { + "id": "11d8a87b-d631-4b51-8004-00da75cb6b0c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16266", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16266", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "2e06907a-4350-49c1-9ba0-606b29ccc640", + "children": [] + } + ] + }, + { + "id": "39748118-0188-46ab-8f91-317bea0d3e18", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16267", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16267", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [ + { + "id": "3f2ac30f-4be9-48e8-8aed-515284232b87", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16268", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16268", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "39748118-0188-46ab-8f91-317bea0d3e18", + "children": [] + } + ] + }, + { + "id": "98f39779-8f2e-43e9-ba00-5f391255cfcb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24147", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24147", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [] + }, + { + "id": "9a33e364-ec3f-4b0b-bbea-2e5c4f1d6f99", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16260", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16260", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [] + }, + { + "id": "ed926f57-2da2-440e-94b2-0b6ebd47e384", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15430", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15430", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [] + }, + { + "id": "1a75e1d9-9780-402b-8142-e2aaf4aebc83", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16259", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16259", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [] + }, + { + "id": "748ced77-411c-4401-bc92-a8e8790dfc07", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15527", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15527", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [] + }, + { + "id": "d127ba9f-3763-4188-aa89-1cb80d587028", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16258", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16258", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "bbba4b58-5ba3-455a-b7e4-975def3bb81f", + "children": [] + } + ] + }, + { + "id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15716", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15716", + "browse_name": "ConfigureAdmin", + "display_name": "ConfigureAdmin", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "640f1cc2-9db4-4f25-81b2-3acd0816b162", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15720", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15720", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [ + { + "id": "4c2eef9a-69b6-4b59-b1f0-b681e24e62ef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15721", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15721", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "640f1cc2-9db4-4f25-81b2-3acd0816b162", + "children": [] + } + ] + }, + { + "id": "d8573c27-e35c-40d6-8c17-0f8dced3ae56", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15722", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15722", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [ + { + "id": "f571684f-d4c6-4d2a-9353-fac53d072414", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15723", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15723", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "d8573c27-e35c-40d6-8c17-0f8dced3ae56", + "children": [] + } + ] + }, + { + "id": "ee57c08a-2226-4ae3-bd5e-709fed945fd1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16272", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16272", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [ + { + "id": "516f505d-ff23-40df-aeb9-132d724d983f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16273", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16273", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "ee57c08a-2226-4ae3-bd5e-709fed945fd1", + "children": [] + } + ] + }, + { + "id": "ce50bf98-3393-46e4-9431-d056ad5a0a86", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16274", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16274", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [ + { + "id": "19d18c75-45af-4d39-9769-685f47015d8f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16275", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16275", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "ce50bf98-3393-46e4-9431-d056ad5a0a86", + "children": [] + } + ] + }, + { + "id": "97a762e1-4d29-4980-be60-205c5e2efb17", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16276", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16276", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [ + { + "id": "f9923c51-9d79-4ed1-88c2-12d819d72494", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16277", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16277", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "97a762e1-4d29-4980-be60-205c5e2efb17", + "children": [] + } + ] + }, + { + "id": "e2f09bfb-b490-4f8f-80e0-99ecb8055b92", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16278", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16278", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [ + { + "id": "a56f896b-d566-46e5-9cbd-9aff19ed0b16", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16279", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16279", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "e2f09bfb-b490-4f8f-80e0-99ecb8055b92", + "children": [] + } + ] + }, + { + "id": "8a8d27d8-1784-43e9-baae-66848f4f7ec1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16271", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16271", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [] + }, + { + "id": "7ca84fba-3d0f-4119-8c0f-6716f622f18d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24146", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24146", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [] + }, + { + "id": "5bda2bc7-12ae-48a0-99dc-7dc551fa4ba8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15428", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15428", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [] + }, + { + "id": "d24f2455-3ce1-4d8c-9f4a-1f8010854100", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16270", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16270", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [] + }, + { + "id": "b8a501f8-51dc-4d58-bc83-edd44e0f9d66", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15429", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15429", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [] + }, + { + "id": "7c21ce1e-facf-4167-9721-232670d7c358", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16269", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16269", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "380813c4-2c3d-4712-97d7-0f89e83c7d13", + "children": [] + } + ] + }, + { + "id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16036", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16036", + "browse_name": "Engineer", + "display_name": "Engineer", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "4f1d2635-a9e9-470c-9aa0-066a2273e0cb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16041", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16041", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [ + { + "id": "0efff3f7-7fd6-4e14-9c21-c1a52ee02ba6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16042", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16042", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4f1d2635-a9e9-470c-9aa0-066a2273e0cb", + "children": [] + } + ] + }, + { + "id": "f170dac0-3f0c-4fb6-b9ca-0f4180c0ce85", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16043", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16043", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [ + { + "id": "b71ca283-4cee-4eb9-8721-1c71d112c910", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16044", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16044", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f170dac0-3f0c-4fb6-b9ca-0f4180c0ce85", + "children": [] + } + ] + }, + { + "id": "4bb901ac-a58d-4e13-869d-9de4fd4b38c5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16239", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16239", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [ + { + "id": "6373594e-deac-4638-b33f-4ce9af148e49", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16240", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16240", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4bb901ac-a58d-4e13-869d-9de4fd4b38c5", + "children": [] + } + ] + }, + { + "id": "ff1a2e14-eecd-4e3b-9f7a-37418de96802", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16241", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16241", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [ + { + "id": "d3467f14-0a6f-41e0-8264-d65d63453c83", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16242", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16242", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "ff1a2e14-eecd-4e3b-9f7a-37418de96802", + "children": [] + } + ] + }, + { + "id": "3df7a2c7-3d47-4f4a-bd37-25a1adbbf247", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16243", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16243", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [ + { + "id": "c3a6dd90-eb63-45c5-8be8-51429320f1e4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16244", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16244", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "3df7a2c7-3d47-4f4a-bd37-25a1adbbf247", + "children": [] + } + ] + }, + { + "id": "dea2f865-3d98-4a43-912a-afb775f14bed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16245", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16245", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [ + { + "id": "1c26267c-1bbc-403c-b132-9176c751fbda", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16246", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16246", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "dea2f865-3d98-4a43-912a-afb775f14bed", + "children": [] + } + ] + }, + { + "id": "7c157359-536c-45ab-a56b-5b1087cca234", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16238", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16238", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [] + }, + { + "id": "3bf18658-5f86-44d6-9d4b-03db6913c299", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24144", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24144", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [] + }, + { + "id": "dac330f9-e582-4c5d-9d49-3132ce01f3f9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15424", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15424", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [] + }, + { + "id": "71ea20a8-843c-41e2-8074-39f0edaf7f9c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16237", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16237", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [] + }, + { + "id": "71a6c6ea-eaed-4361-ae61-ac405541969f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15425", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15425", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [] + }, + { + "id": "4e58266e-b614-4716-8dc6-726eb789151f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16236", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16236", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "5bac1655-924d-480c-ab16-e4fe3906f86a", + "children": [] + } + ] + }, + { + "id": "a36ef7ab-a724-403b-a41d-59c61e89469d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16301", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16301", + "browse_name": "AddRole", + "display_name": "AddRole", + "node_class": "Method", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "7ce9cd36-8900-4f74-9e0d-9df0306020f8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16302", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16302", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "a36ef7ab-a724-403b-a41d-59c61e89469d", + "children": [] + }, + { + "id": "c8357a61-829d-43ec-be81-7dde9d65fcb4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16303", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16303", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "a36ef7ab-a724-403b-a41d-59c61e89469d", + "children": [] + } + ] + }, + { + "id": "f6abdd73-1fd6-46d5-99a7-6f266e3520b8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16304", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16304", + "browse_name": "RemoveRole", + "display_name": "RemoveRole", + "node_class": "Method", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "7e66a968-b105-405e-a563-dfdeb4b950b7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16305", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16305", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f6abdd73-1fd6-46d5-99a7-6f266e3520b8", + "children": [] + } + ] + }, + { + "id": "d6a942d6-8c8a-482d-a140-e172a8f87b01", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18625", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18625", + "browse_name": "TrustedApplication", + "display_name": "TrustedApplication", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "2df5521b-7809-4e9a-bbda-6cace02ce46b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18626", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18626", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "d6a942d6-8c8a-482d-a140-e172a8f87b01", + "children": [] + } + ] + }, + { + "id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25565", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25565", + "browse_name": "SecurityKeyServerAdmin", + "display_name": "SecurityKeyServerAdmin", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "1b06f3ec-fa97-432a-98ff-2175c6266bd3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25572", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25572", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [ + { + "id": "9a7a8561-d8f9-42b2-aed5-971fba59600b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25573", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25573", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "1b06f3ec-fa97-432a-98ff-2175c6266bd3", + "children": [] + } + ] + }, + { + "id": "55c8c38b-1245-4306-aab9-c215943b28c2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25574", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25574", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [ + { + "id": "038bee22-091d-493a-b9e4-281b6ac3f7de", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25575", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25575", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "55c8c38b-1245-4306-aab9-c215943b28c2", + "children": [] + } + ] + }, + { + "id": "0edde4c9-6300-4a11-bc3a-12bbc90f4dfb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25576", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25576", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [ + { + "id": "9c07b2ed-2f06-438d-94e0-0a26da1233d5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25577", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25577", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "0edde4c9-6300-4a11-bc3a-12bbc90f4dfb", + "children": [] + } + ] + }, + { + "id": "251c7965-9625-47fe-a7b5-29bb1052ec2d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25578", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25578", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [ + { + "id": "e009f1ab-311c-4b57-b376-3116b5e19baf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25579", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25579", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "251c7965-9625-47fe-a7b5-29bb1052ec2d", + "children": [] + } + ] + }, + { + "id": "ccaa346b-c069-4e58-884e-6848edc29177", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25580", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25580", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [ + { + "id": "0158a961-6cdd-4a36-92d8-12bde968e446", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25581", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25581", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "ccaa346b-c069-4e58-884e-6848edc29177", + "children": [] + } + ] + }, + { + "id": "7ccfc29e-c8b9-4793-9307-5c2af201732a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25582", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25582", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [ + { + "id": "154dac97-eb80-41b6-8506-4b9967a8614a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25583", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25583", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "7ccfc29e-c8b9-4793-9307-5c2af201732a", + "children": [] + } + ] + }, + { + "id": "a37b9f63-360a-486a-9716-20b04c9e7ab7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25571", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25571", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [] + }, + { + "id": "b24f6d99-7f17-4148-939d-dca0da05b20f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25570", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25570", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [] + }, + { + "id": "e3e3e476-7fc5-4fa5-a770-e3dab0741509", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25567", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25567", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [] + }, + { + "id": "6688ec6c-8e8d-44de-8d35-ec7659279a54", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25568", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25568", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [] + }, + { + "id": "1aa14684-a2f8-472e-b5f2-93ce093f5b44", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25569", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25569", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [] + }, + { + "id": "2445a951-b87e-4fb5-a3ad-0f3bba89ca56", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25566", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25566", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "b5a06671-25a5-4955-8b0f-1b0a7b2f30a7", + "children": [] + } + ] + }, + { + "id": "2d679536-1100-4294-9e28-b0ae57acf459", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25584", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25584", + "browse_name": "SecurityKeyServerPush", + "display_name": "SecurityKeyServerPush", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "56e0ce87-252f-439f-aa59-63cb1024a3aa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25591", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25591", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [ + { + "id": "b150939a-8a17-4e54-8d96-1d8d069a4fa4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25592", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25592", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "56e0ce87-252f-439f-aa59-63cb1024a3aa", + "children": [] + } + ] + }, + { + "id": "c6de4af0-84b3-406e-b65f-a49f37070285", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25593", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25593", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [ + { + "id": "79548187-72d1-4854-8b0b-460818ee9f8f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25594", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25594", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c6de4af0-84b3-406e-b65f-a49f37070285", + "children": [] + } + ] + }, + { + "id": "b4424cc5-c30e-41fa-8914-fcdfdd426b3d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25595", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25595", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [ + { + "id": "1ee0621d-7703-429d-baff-2cd5964441f3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25596", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25596", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "b4424cc5-c30e-41fa-8914-fcdfdd426b3d", + "children": [] + } + ] + }, + { + "id": "f0379f47-c395-4c2c-ae4c-b4ded268f86e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25597", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25597", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [ + { + "id": "9ab70916-3666-4b70-90a0-5c697750cb6d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25598", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25598", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f0379f47-c395-4c2c-ae4c-b4ded268f86e", + "children": [] + } + ] + }, + { + "id": "e4aed140-c505-4a7c-8391-2c483a57ba46", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25599", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25599", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [ + { + "id": "54c3ae0a-5b68-43dd-b764-3bcaac3aeee9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25600", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25600", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "e4aed140-c505-4a7c-8391-2c483a57ba46", + "children": [] + } + ] + }, + { + "id": "f412f702-e0fa-4de6-b009-c4169e6487bf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25601", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25601", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [ + { + "id": "8e772cd6-c0c2-41f0-9330-22e1e8e59cb0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25602", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25602", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f412f702-e0fa-4de6-b009-c4169e6487bf", + "children": [] + } + ] + }, + { + "id": "194946ed-6ca7-400d-902e-e2830099bdb2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25590", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25590", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [] + }, + { + "id": "3fd0f094-3441-448e-9971-463f3cc66c19", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25589", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25589", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [] + }, + { + "id": "2e9b8bf1-6840-444a-92f0-1da9ba912635", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25586", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25586", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [] + }, + { + "id": "9b94976b-b6c3-4540-84f5-7b2bbc535d31", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25587", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25587", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [] + }, + { + "id": "80ba31a7-8fcb-422e-af08-751d9d356397", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25588", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25588", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [] + }, + { + "id": "c4a9864b-ea0c-4694-b08b-47a9625b5c31", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25585", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25585", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "2d679536-1100-4294-9e28-b0ae57acf459", + "children": [] + } + ] + }, + { + "id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25603", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25603", + "browse_name": "SecurityKeyServerAccess", + "display_name": "SecurityKeyServerAccess", + "node_class": "Object", + "parent_id": "b76dca09-b21e-48f2-9af8-94f31e61590d", + "children": [ + { + "id": "8b9345cc-88fc-48e7-bd62-8f886f1b17c3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25610", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25610", + "browse_name": "AddIdentity", + "display_name": "AddIdentity", + "node_class": "Method", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [ + { + "id": "6339b803-5a2c-4d88-8d36-6c2140d93f09", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25611", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25611", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "8b9345cc-88fc-48e7-bd62-8f886f1b17c3", + "children": [] + } + ] + }, + { + "id": "52dae4aa-3798-4475-b54c-29c56fdd97a8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25612", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25612", + "browse_name": "RemoveIdentity", + "display_name": "RemoveIdentity", + "node_class": "Method", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [ + { + "id": "4981c862-8432-4c26-8e95-8c33a6359d93", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25613", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25613", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "52dae4aa-3798-4475-b54c-29c56fdd97a8", + "children": [] + } + ] + }, + { + "id": "daa8fad3-de04-41c1-81bb-db66919a794f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25614", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25614", + "browse_name": "AddApplication", + "display_name": "AddApplication", + "node_class": "Method", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [ + { + "id": "bf0267b4-a6d7-4f80-83ac-08429cb486cc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25615", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25615", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "daa8fad3-de04-41c1-81bb-db66919a794f", + "children": [] + } + ] + }, + { + "id": "b378deae-f47d-4045-9b77-1e80575804b7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25616", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25616", + "browse_name": "RemoveApplication", + "display_name": "RemoveApplication", + "node_class": "Method", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [ + { + "id": "d2521f3b-1915-4322-9933-995e13fdfb51", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25617", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25617", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "b378deae-f47d-4045-9b77-1e80575804b7", + "children": [] + } + ] + }, + { + "id": "4f4a92b4-be43-4105-9c25-2234406b7c7a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25618", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25618", + "browse_name": "AddEndpoint", + "display_name": "AddEndpoint", + "node_class": "Method", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [ + { + "id": "7e9c2b9e-20a2-4d3e-a79b-3ffea4f145fa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25619", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25619", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4f4a92b4-be43-4105-9c25-2234406b7c7a", + "children": [] + } + ] + }, + { + "id": "d9cd9b3d-a2a9-4684-a132-21b9dc8bfcab", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25620", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25620", + "browse_name": "RemoveEndpoint", + "display_name": "RemoveEndpoint", + "node_class": "Method", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [ + { + "id": "562fe1b0-6851-477f-8d8d-b85328814325", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25621", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25621", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "d9cd9b3d-a2a9-4684-a132-21b9dc8bfcab", + "children": [] + } + ] + }, + { + "id": "f24010ec-61d7-4705-901e-73980a74ce0f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25609", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25609", + "browse_name": "CustomConfiguration", + "display_name": "CustomConfiguration", + "node_class": "Variable", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [] + }, + { + "id": "ca809acc-9e4b-430e-bb83-e8302e005f64", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25608", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25608", + "browse_name": "Endpoints", + "display_name": "Endpoints", + "node_class": "Variable", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [] + }, + { + "id": "377a8c76-691f-49d3-8627-a29ba82b6646", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25605", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25605", + "browse_name": "ApplicationsExclude", + "display_name": "ApplicationsExclude", + "node_class": "Variable", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [] + }, + { + "id": "a96b3ddb-3eeb-4b70-b5d2-4452139338bb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25606", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25606", + "browse_name": "Applications", + "display_name": "Applications", + "node_class": "Variable", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [] + }, + { + "id": "b78c7a8f-2235-426e-b635-e11b080abd73", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25607", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25607", + "browse_name": "EndpointsExclude", + "display_name": "EndpointsExclude", + "node_class": "Variable", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [] + }, + { + "id": "2cc2274d-044d-427c-bc0b-8ef7449cea0c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25604", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25604", + "browse_name": "Identities", + "display_name": "Identities", + "node_class": "Variable", + "parent_id": "28a6d1ab-6dad-40d7-9da4-68a35833e802", + "children": [] + } + ] + } + ] + }, + { + "id": "d3523562-bc11-4dfd-962b-f58f7dcd7e0e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2269", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2269", + "browse_name": "ServerProfileArray", + "display_name": "ServerProfileArray", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "d5606f2d-c049-4c7e-a10c-1bed8a0c7f04", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2737", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2737", + "browse_name": "MaxHistoryContinuationPoints", + "display_name": "MaxHistoryContinuationPoints", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "dfc3eb7b-f30b-4cf9-9b3b-8bfe553d33c8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24096", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24096", + "browse_name": "MaxSubscriptions", + "display_name": "MaxSubscriptions", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "ce326a25-9e07-4cf9-9712-29404a103e96", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11702", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11702", + "browse_name": "MaxArrayLength", + "display_name": "MaxArrayLength", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "ae839ac8-b198-497b-bb26-541d2884fd87", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24095", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24095", + "browse_name": "MaxSessions", + "display_name": "MaxSessions", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "93cf7a35-0861-4753-8777-69f2c2d5e6e6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24099", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24099", + "browse_name": "MaxSelectClauseParameters", + "display_name": "MaxSelectClauseParameters", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "39e97171-373d-40bd-8ad3-0e1cf4779a03", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24101", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24101", + "browse_name": "ConformanceUnits", + "display_name": "ConformanceUnits", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "bf689e67-4761-4a8e-a0b4-3e4c566eb810", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24100", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24100", + "browse_name": "MaxWhereClauseParameters", + "display_name": "MaxWhereClauseParameters", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "d15a02b6-18c6-4947-819c-6aea71f47c60", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=31916", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "31916", + "browse_name": "MaxMonitoredItemsQueueSize", + "display_name": "MaxMonitoredItemsQueueSize", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "2136befa-751b-44e0-a596-5d1f8c4e9ca5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2271", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2271", + "browse_name": "LocaleIdArray", + "display_name": "LocaleIdArray", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "c6e764c0-7cc8-495f-b422-0ddfe196443f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2272", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2272", + "browse_name": "MinSupportedSampleRate", + "display_name": "MinSupportedSampleRate", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "3ca85afc-5f17-4d21-9e39-f69d831b4dff", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2736", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2736", + "browse_name": "MaxQueryContinuationPoints", + "display_name": "MaxQueryContinuationPoints", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "0eb8dc36-2488-4309-a6cc-687b668f8353", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12911", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12911", + "browse_name": "MaxByteStringLength", + "display_name": "MaxByteStringLength", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "e6400cab-cca4-4002-a0e5-712b2414521b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=3704", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "3704", + "browse_name": "SoftwareCertificates", + "display_name": "SoftwareCertificates", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "b70aa01a-8f2d-4013-83b4-0a6b107f599a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24098", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24098", + "browse_name": "MaxSubscriptionsPerSession", + "display_name": "MaxSubscriptionsPerSession", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "11dac86d-7bab-477b-998d-36dfcd21637f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11703", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11703", + "browse_name": "MaxStringLength", + "display_name": "MaxStringLength", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "69bb13e0-73eb-47c5-b150-bb216e94a634", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24097", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24097", + "browse_name": "MaxMonitoredItems", + "display_name": "MaxMonitoredItems", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "4869c9fa-b634-44a0-9489-92e97d1d87f5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24104", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24104", + "browse_name": "MaxMonitoredItemsPerSubscription", + "display_name": "MaxMonitoredItemsPerSubscription", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + }, + { + "id": "20f8563e-dfe6-4de1-8fe2-482b95c90de8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2735", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2735", + "browse_name": "MaxBrowseContinuationPoints", + "display_name": "MaxBrowseContinuationPoints", + "node_class": "Variable", + "parent_id": "740481df-cbc4-47af-978c-9ba6d536bb18", + "children": [] + } + ] + }, + { + "id": "8b751703-88b2-4433-a1c8-7f7dc0f62f9f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2274", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2274", + "browse_name": "ServerDiagnostics", + "display_name": "ServerDiagnostics", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2275", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2275", + "browse_name": "ServerDiagnosticsSummary", + "display_name": "ServerDiagnosticsSummary", + "node_class": "Variable", + "parent_id": "8b751703-88b2-4433-a1c8-7f7dc0f62f9f", + "children": [ + { + "id": "42d271d9-9d3a-406d-a1fa-76b313f51a94", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2276", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2276", + "browse_name": "ServerViewCount", + "display_name": "ServerViewCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "acc42515-9805-4104-aa68-20aab43d8a60", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2277", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2277", + "browse_name": "CurrentSessionCount", + "display_name": "CurrentSessionCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "eb3108bb-baf8-413d-985d-27f91c8f583a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2278", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2278", + "browse_name": "CumulatedSessionCount", + "display_name": "CumulatedSessionCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "318f0e64-d5db-4156-8841-444a64780cd3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2279", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2279", + "browse_name": "SecurityRejectedSessionCount", + "display_name": "SecurityRejectedSessionCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "8f2ac807-026d-4b54-9d95-eef92daf49fb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2281", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2281", + "browse_name": "SessionTimeoutCount", + "display_name": "SessionTimeoutCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "06415e13-092a-4c9b-8a62-f85826bce83d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2282", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2282", + "browse_name": "SessionAbortCount", + "display_name": "SessionAbortCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "11ba180d-e2b9-46ed-8147-3b0a11284250", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2284", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2284", + "browse_name": "PublishingIntervalCount", + "display_name": "PublishingIntervalCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "c7779f96-4b36-466e-8305-63cc0d26dbbc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2285", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2285", + "browse_name": "CurrentSubscriptionCount", + "display_name": "CurrentSubscriptionCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "881446af-3d04-4b2f-9be3-5890a722064a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2286", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2286", + "browse_name": "CumulatedSubscriptionCount", + "display_name": "CumulatedSubscriptionCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "52e2b445-5d50-435a-a04e-085d897ee7aa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2287", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2287", + "browse_name": "SecurityRejectedRequestsCount", + "display_name": "SecurityRejectedRequestsCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "ba8848f9-88d9-4530-9312-16519a47b2a2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2288", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2288", + "browse_name": "RejectedRequestsCount", + "display_name": "RejectedRequestsCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + }, + { + "id": "50b1d2f9-51d7-4081-8835-38000aa81e4b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=3705", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "3705", + "browse_name": "RejectedSessionCount", + "display_name": "RejectedSessionCount", + "node_class": "Variable", + "parent_id": "0331ca91-3d4c-453b-8bb5-431f24c2116d", + "children": [] + } + ] + }, + { + "id": "e7d009a5-f8b3-4f1c-8032-afbd4696e67e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2290", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2290", + "browse_name": "SubscriptionDiagnosticsArray", + "display_name": "SubscriptionDiagnosticsArray", + "node_class": "Variable", + "parent_id": "8b751703-88b2-4433-a1c8-7f7dc0f62f9f", + "children": [] + }, + { + "id": "47193ee1-dc0a-407f-b8e1-b0e801bd5163", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=3706", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "3706", + "browse_name": "SessionsDiagnosticsSummary", + "display_name": "SessionsDiagnosticsSummary", + "node_class": "Object", + "parent_id": "8b751703-88b2-4433-a1c8-7f7dc0f62f9f", + "children": [ + { + "id": "4b367e4f-39c9-41d9-86c5-bdadb9cfd095", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=3707", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "3707", + "browse_name": "SessionDiagnosticsArray", + "display_name": "SessionDiagnosticsArray", + "node_class": "Variable", + "parent_id": "47193ee1-dc0a-407f-b8e1-b0e801bd5163", + "children": [ + { + "id": "37c62459-bac7-4716-9772-e70c644be091", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics", + "browse_name": "SessionDiagnostics", + "display_name": "SessionDiagnostics", + "node_class": "Variable", + "parent_id": "4b367e4f-39c9-41d9-86c5-bdadb9cfd095", + "children": [ + { + "id": "5725eaf4-e901-4186-bb58-229ca67b0a80", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ActualSessionTimeout", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ActualSessionTimeout", + "browse_name": "ActualSessionTimeout", + "display_name": "ActualSessionTimeout", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "df6105e4-acb6-477d-b827-1765234da902", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddNodesCount", + "browse_name": "AddNodesCount", + "display_name": "AddNodesCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "1b1b9008-4faf-41c1-a79d-f415e914c3a5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "df6105e4-acb6-477d-b827-1765234da902", + "children": [] + }, + { + "id": "9c45c877-b712-4760-897d-db498f1a90e8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "df6105e4-acb6-477d-b827-1765234da902", + "children": [] + } + ] + }, + { + "id": "3dea3c7d-f51e-452a-b134-4d2c0d9013fe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddReferencesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddReferencesCount", + "browse_name": "AddReferencesCount", + "display_name": "AddReferencesCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "176d5a07-9426-4bb1-8979-29f243c6e915", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddReferencesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddReferencesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "3dea3c7d-f51e-452a-b134-4d2c0d9013fe", + "children": [] + }, + { + "id": "4f623bd7-7edf-4aab-ad39-3e1bd5d84796", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddReferencesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:AddReferencesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "3dea3c7d-f51e-452a-b134-4d2c0d9013fe", + "children": [] + } + ] + }, + { + "id": "e305387f-d0af-43c9-b66a-3931b6ee54f9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseCount", + "browse_name": "BrowseCount", + "display_name": "BrowseCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "0b431895-f22f-4c5f-ac4a-17ec93811ae2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "e305387f-d0af-43c9-b66a-3931b6ee54f9", + "children": [] + }, + { + "id": "fc6ff2e5-fea3-4c85-a3f3-086d7b311c4d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "e305387f-d0af-43c9-b66a-3931b6ee54f9", + "children": [] + } + ] + }, + { + "id": "f0a2d60a-f2bc-45e9-bc14-4b76b5eb7a88", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseNextCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseNextCount", + "browse_name": "BrowseNextCount", + "display_name": "BrowseNextCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "1a567aff-eb96-4061-b699-90188999e4b6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseNextCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseNextCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f0a2d60a-f2bc-45e9-bc14-4b76b5eb7a88", + "children": [] + }, + { + "id": "8962864a-cbb0-439a-b24b-ffe378e7c4ca", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseNextCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:BrowseNextCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f0a2d60a-f2bc-45e9-bc14-4b76b5eb7a88", + "children": [] + } + ] + }, + { + "id": "2ad27006-76c8-42c7-b436-505335297317", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CallCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CallCount", + "browse_name": "CallCount", + "display_name": "CallCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "8cd168a2-ad07-421d-88d3-772751b4a1ae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CallCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CallCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "2ad27006-76c8-42c7-b436-505335297317", + "children": [] + }, + { + "id": "3bee82f9-ef03-46ad-a849-740e9a80b327", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CallCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CallCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "2ad27006-76c8-42c7-b436-505335297317", + "children": [] + } + ] + }, + { + "id": "d9103dda-1a7e-451f-b022-dd72e31e6bbc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientConnectionTime", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientConnectionTime", + "browse_name": "ClientConnectionTime", + "display_name": "ClientConnectionTime", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription", + "browse_name": "ClientDescription", + "display_name": "ClientDescription", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "2b9d84c8-e012-47d1-b17a-5979900f9ff7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ApplicationName", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ApplicationName", + "browse_name": "ApplicationName", + "display_name": "ApplicationName", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + }, + { + "id": "d17aa3ae-f301-4fc8-a2bf-aab1212e0a40", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ApplicationType", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ApplicationType", + "browse_name": "ApplicationType", + "display_name": "ApplicationType", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + }, + { + "id": "5d7d3607-c62b-453f-ba51-7c32dd3f0ee7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ApplicationUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ApplicationUri", + "browse_name": "ApplicationUri", + "display_name": "ApplicationUri", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + }, + { + "id": "1e3e1d36-b2fb-46b5-8a63-81ee5b3327fa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryProfileUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryProfileUri", + "browse_name": "DiscoveryProfileUri", + "display_name": "DiscoveryProfileUri", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + }, + { + "id": "6fa64a48-afff-4511-8da0-111349e3dbd2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryUrls", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryUrls", + "browse_name": "DiscoveryUrls", + "display_name": "DiscoveryUrls", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + }, + { + "id": "a3f3e5da-6e88-4c89-af97-01a17a501909", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:GatewayServerUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:GatewayServerUri", + "browse_name": "GatewayServerUri", + "display_name": "GatewayServerUri", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + }, + { + "id": "57045526-a973-4d4d-8d30-e33900f8f774", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ProductUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientDescription/0:ProductUri", + "browse_name": "ProductUri", + "display_name": "ProductUri", + "node_class": "Variable", + "parent_id": "17d0ea30-9c93-4a30-acb4-37d98bcb3168", + "children": [] + } + ] + }, + { + "id": "c49e2727-9174-44e5-8f41-95879c79c62b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientLastContactTime", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ClientLastContactTime", + "browse_name": "ClientLastContactTime", + "display_name": "ClientLastContactTime", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "02b71c65-5303-4e90-a7ca-1a248b6a439d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateMonitoredItemsCount", + "browse_name": "CreateMonitoredItemsCount", + "display_name": "CreateMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "ced8ea06-292c-4fae-9577-82e09776eddb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "02b71c65-5303-4e90-a7ca-1a248b6a439d", + "children": [] + }, + { + "id": "a9b26e13-b839-4d0f-9330-fd5ee08c4a48", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "02b71c65-5303-4e90-a7ca-1a248b6a439d", + "children": [] + } + ] + }, + { + "id": "2a2f873d-0ca0-440c-8da3-b9e5b2fe2ab4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateSubscriptionCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateSubscriptionCount", + "browse_name": "CreateSubscriptionCount", + "display_name": "CreateSubscriptionCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "b35cec90-5492-4377-b45f-888093a79d6d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateSubscriptionCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateSubscriptionCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "2a2f873d-0ca0-440c-8da3-b9e5b2fe2ab4", + "children": [] + }, + { + "id": "99ae4b6a-7635-46a1-803c-022b5e55eaae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateSubscriptionCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CreateSubscriptionCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "2a2f873d-0ca0-440c-8da3-b9e5b2fe2ab4", + "children": [] + } + ] + }, + { + "id": "37738ed5-e937-490c-ac90-56aa69e629e7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CurrentMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CurrentMonitoredItemsCount", + "browse_name": "CurrentMonitoredItemsCount", + "display_name": "CurrentMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "6a744436-7862-4371-97b3-321fb8ad4726", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CurrentPublishRequestsInQueue", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CurrentPublishRequestsInQueue", + "browse_name": "CurrentPublishRequestsInQueue", + "display_name": "CurrentPublishRequestsInQueue", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "89de7d82-e58a-443d-88d0-f5b3574df3fb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CurrentSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:CurrentSubscriptionsCount", + "browse_name": "CurrentSubscriptionsCount", + "display_name": "CurrentSubscriptionsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "3e13aa83-08f0-4a92-b9c6-a005c3eea011", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteMonitoredItemsCount", + "browse_name": "DeleteMonitoredItemsCount", + "display_name": "DeleteMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "bc725a5e-47ba-4806-aa28-98c8a44990c3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "3e13aa83-08f0-4a92-b9c6-a005c3eea011", + "children": [] + }, + { + "id": "4efd9223-4381-4d28-b64f-bd790ac9c312", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "3e13aa83-08f0-4a92-b9c6-a005c3eea011", + "children": [] + } + ] + }, + { + "id": "eff8b64d-fbc4-4349-a91f-cb60d435684a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteNodesCount", + "browse_name": "DeleteNodesCount", + "display_name": "DeleteNodesCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "30e0e286-6d50-4fc9-83c9-bfc01420f11f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "eff8b64d-fbc4-4349-a91f-cb60d435684a", + "children": [] + }, + { + "id": "b3ff8364-13f0-4154-b39e-15ebec42a909", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "eff8b64d-fbc4-4349-a91f-cb60d435684a", + "children": [] + } + ] + }, + { + "id": "403f52b0-3880-44d7-8691-0b732a6cb5e5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteReferencesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteReferencesCount", + "browse_name": "DeleteReferencesCount", + "display_name": "DeleteReferencesCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "111a12a5-03be-467b-8add-f798ee24fac9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteReferencesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteReferencesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "403f52b0-3880-44d7-8691-0b732a6cb5e5", + "children": [] + }, + { + "id": "fdc66a89-e24a-4867-9e0e-5fe686b4bbef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteReferencesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteReferencesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "403f52b0-3880-44d7-8691-0b732a6cb5e5", + "children": [] + } + ] + }, + { + "id": "cb5460c5-6574-4f0b-aa94-6bb26b5a7a43", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteSubscriptionsCount", + "browse_name": "DeleteSubscriptionsCount", + "display_name": "DeleteSubscriptionsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "b482f0a2-2417-45c6-b77d-29e9f903644a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "cb5460c5-6574-4f0b-aa94-6bb26b5a7a43", + "children": [] + }, + { + "id": "5f2c3b4b-11fd-450e-92d7-1103400c1ee2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "cb5460c5-6574-4f0b-aa94-6bb26b5a7a43", + "children": [] + } + ] + }, + { + "id": "b62e6be8-6a96-47a7-acfa-871cd262add7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:EndpointUrl", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:EndpointUrl", + "browse_name": "EndpointUrl", + "display_name": "EndpointUrl", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "ff3f88f9-2bc6-4641-8cd4-4aac71c648e0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryReadCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryReadCount", + "browse_name": "HistoryReadCount", + "display_name": "HistoryReadCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "97329b26-05d2-4ef2-a619-63f71b7b20a0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryReadCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryReadCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ff3f88f9-2bc6-4641-8cd4-4aac71c648e0", + "children": [] + }, + { + "id": "2f7a31a5-a0a0-4c63-b0b1-f81742300ed1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryReadCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryReadCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ff3f88f9-2bc6-4641-8cd4-4aac71c648e0", + "children": [] + } + ] + }, + { + "id": "0b2c4488-eb2c-4db3-aa95-c3f0cf906250", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryUpdateCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryUpdateCount", + "browse_name": "HistoryUpdateCount", + "display_name": "HistoryUpdateCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "4cbdf18e-d89b-4dd4-a08d-10cdd6e392d9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryUpdateCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryUpdateCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "0b2c4488-eb2c-4db3-aa95-c3f0cf906250", + "children": [] + }, + { + "id": "eb72bdcf-90f0-492c-9935-7b90abeb3b5f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryUpdateCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:HistoryUpdateCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "0b2c4488-eb2c-4db3-aa95-c3f0cf906250", + "children": [] + } + ] + }, + { + "id": "8cf85fe2-af73-43a4-ab1a-259fd356c871", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:LocaleIds", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:LocaleIds", + "browse_name": "LocaleIds", + "display_name": "LocaleIds", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "62a93651-9b27-45ca-b3df-6da624f56aea", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:MaxResponseMessageSize", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:MaxResponseMessageSize", + "browse_name": "MaxResponseMessageSize", + "display_name": "MaxResponseMessageSize", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "c8ccc6ae-b65a-4184-9259-416ecd51adf0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifyMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifyMonitoredItemsCount", + "browse_name": "ModifyMonitoredItemsCount", + "display_name": "ModifyMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "9b072c8b-ce56-4b62-845c-36c45bee3a20", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "c8ccc6ae-b65a-4184-9259-416ecd51adf0", + "children": [] + }, + { + "id": "56b39698-3c61-4e6d-87ee-0c87422925a2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "c8ccc6ae-b65a-4184-9259-416ecd51adf0", + "children": [] + } + ] + }, + { + "id": "ec6d5973-1883-4462-98c9-a08bb3c96d6e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifySubscriptionCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifySubscriptionCount", + "browse_name": "ModifySubscriptionCount", + "display_name": "ModifySubscriptionCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "1652b568-74a7-4e04-8858-8a509e42a7b0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifySubscriptionCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifySubscriptionCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ec6d5973-1883-4462-98c9-a08bb3c96d6e", + "children": [] + }, + { + "id": "e7277814-ecd8-489b-9815-0d1688a3ef46", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifySubscriptionCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ModifySubscriptionCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ec6d5973-1883-4462-98c9-a08bb3c96d6e", + "children": [] + } + ] + }, + { + "id": "0c2be804-3d05-4b29-a88e-7ca9c13ae10f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:PublishCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:PublishCount", + "browse_name": "PublishCount", + "display_name": "PublishCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "c5c46c8e-65af-4923-8a08-01c3903f0da7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:PublishCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:PublishCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "0c2be804-3d05-4b29-a88e-7ca9c13ae10f", + "children": [] + }, + { + "id": "9e1e38a8-699e-425b-af85-fce2f0673fdd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:PublishCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:PublishCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "0c2be804-3d05-4b29-a88e-7ca9c13ae10f", + "children": [] + } + ] + }, + { + "id": "a6777cfb-e50d-4a51-bc6c-0518d75b379f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryFirstCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryFirstCount", + "browse_name": "QueryFirstCount", + "display_name": "QueryFirstCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "38481e58-a5db-4333-a990-f33e3bc2ca8a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryFirstCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryFirstCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "a6777cfb-e50d-4a51-bc6c-0518d75b379f", + "children": [] + }, + { + "id": "87a806c1-4d7b-4dab-8aa1-44368f2e220a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryFirstCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryFirstCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "a6777cfb-e50d-4a51-bc6c-0518d75b379f", + "children": [] + } + ] + }, + { + "id": "f6a92905-72bb-4bb6-808f-d3eff58d56ba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryNextCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryNextCount", + "browse_name": "QueryNextCount", + "display_name": "QueryNextCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "c8b6bd83-bae3-474e-80d6-930a409cb299", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryNextCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryNextCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f6a92905-72bb-4bb6-808f-d3eff58d56ba", + "children": [] + }, + { + "id": "26e11415-d7eb-455c-9db2-287fc6970a95", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryNextCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:QueryNextCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f6a92905-72bb-4bb6-808f-d3eff58d56ba", + "children": [] + } + ] + }, + { + "id": "52cbdc60-f1c6-4a57-9913-b8ffebf42b40", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ReadCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ReadCount", + "browse_name": "ReadCount", + "display_name": "ReadCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "8320fb1c-403e-4314-8e37-8e3c6d020714", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ReadCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ReadCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "52cbdc60-f1c6-4a57-9913-b8ffebf42b40", + "children": [] + }, + { + "id": "9e58b1a0-0086-413b-9381-76aef89ea52c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ReadCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ReadCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "52cbdc60-f1c6-4a57-9913-b8ffebf42b40", + "children": [] + } + ] + }, + { + "id": "900ad780-f617-4c10-97cc-e96731f2b47c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RegisterNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RegisterNodesCount", + "browse_name": "RegisterNodesCount", + "display_name": "RegisterNodesCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "b2123882-d7d9-4bf7-b9e6-bc2568ef09d4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RegisterNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RegisterNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "900ad780-f617-4c10-97cc-e96731f2b47c", + "children": [] + }, + { + "id": "fbd75289-7135-4cc1-ad35-b7f158400263", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RegisterNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RegisterNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "900ad780-f617-4c10-97cc-e96731f2b47c", + "children": [] + } + ] + }, + { + "id": "0d1080ea-e123-4288-a372-5ee5df39a5c3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RepublishCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RepublishCount", + "browse_name": "RepublishCount", + "display_name": "RepublishCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "a1dcd4ee-8c0b-40e6-afce-8a131eb4338c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RepublishCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RepublishCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "0d1080ea-e123-4288-a372-5ee5df39a5c3", + "children": [] + }, + { + "id": "a5d15352-d2e9-44f7-8260-c0c91f45ea35", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RepublishCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:RepublishCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "0d1080ea-e123-4288-a372-5ee5df39a5c3", + "children": [] + } + ] + }, + { + "id": "40d1b9a7-88bb-4598-890d-0843b1bf8547", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ServerUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:ServerUri", + "browse_name": "ServerUri", + "display_name": "ServerUri", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "cb6b0899-1695-4cdf-8218-4bd4ef124769", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SessionId", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SessionId", + "browse_name": "SessionId", + "display_name": "SessionId", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "d7155ad0-9d3e-49ce-8208-46ec616bfbb5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SessionName", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SessionName", + "browse_name": "SessionName", + "display_name": "SessionName", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "416ed983-4b2a-4e01-b09c-980b5faf53fc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetMonitoringModeCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetMonitoringModeCount", + "browse_name": "SetMonitoringModeCount", + "display_name": "SetMonitoringModeCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "f049fe75-cae0-4d1c-a915-4f8f20e6d650", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetMonitoringModeCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetMonitoringModeCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "416ed983-4b2a-4e01-b09c-980b5faf53fc", + "children": [] + }, + { + "id": "6170e074-46c5-4d5a-a462-2b4b2d95f806", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetMonitoringModeCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetMonitoringModeCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "416ed983-4b2a-4e01-b09c-980b5faf53fc", + "children": [] + } + ] + }, + { + "id": "a7d2f970-b151-4406-a1b0-538ab70ae039", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetPublishingModeCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetPublishingModeCount", + "browse_name": "SetPublishingModeCount", + "display_name": "SetPublishingModeCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "de9595c3-2f54-40c3-8c3d-3510d3ab5af4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetPublishingModeCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetPublishingModeCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "a7d2f970-b151-4406-a1b0-538ab70ae039", + "children": [] + }, + { + "id": "e853279d-5693-4b1e-9806-9834e0641828", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetPublishingModeCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetPublishingModeCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "a7d2f970-b151-4406-a1b0-538ab70ae039", + "children": [] + } + ] + }, + { + "id": "f11eb59d-8083-4f1f-8363-f2156b9b0d50", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetTriggeringCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetTriggeringCount", + "browse_name": "SetTriggeringCount", + "display_name": "SetTriggeringCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "2406bfd5-cfe7-45f4-a633-49eb1a6b37d8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetTriggeringCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetTriggeringCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f11eb59d-8083-4f1f-8363-f2156b9b0d50", + "children": [] + }, + { + "id": "7b8bc500-3545-42ef-b373-8b90a7177ee3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetTriggeringCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:SetTriggeringCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f11eb59d-8083-4f1f-8363-f2156b9b0d50", + "children": [] + } + ] + }, + { + "id": "9b62500a-39cf-42aa-b50e-3160a4879e52", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TotalRequestCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TotalRequestCount", + "browse_name": "TotalRequestCount", + "display_name": "TotalRequestCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "86a52047-57fa-46ae-9d8b-a34c34e4fe80", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TotalRequestCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TotalRequestCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "9b62500a-39cf-42aa-b50e-3160a4879e52", + "children": [] + }, + { + "id": "815dd58c-7340-4ed9-9e83-a2d42c46bbb2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TotalRequestCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TotalRequestCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "9b62500a-39cf-42aa-b50e-3160a4879e52", + "children": [] + } + ] + }, + { + "id": "6a7ff2b1-ebd9-4f67-b59e-9fe0e9a844dd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TransferSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TransferSubscriptionsCount", + "browse_name": "TransferSubscriptionsCount", + "display_name": "TransferSubscriptionsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "e21cd3c2-45df-43c5-859a-db35ebd7cde9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "6a7ff2b1-ebd9-4f67-b59e-9fe0e9a844dd", + "children": [] + }, + { + "id": "3fbfc158-0ff6-47bf-9dc3-35a0bb12e80a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "6a7ff2b1-ebd9-4f67-b59e-9fe0e9a844dd", + "children": [] + } + ] + }, + { + "id": "ae00165b-0ff2-4f30-a57b-d109bd030c77", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount", + "browse_name": "TranslateBrowsePathsToNodeIdsCount", + "display_name": "TranslateBrowsePathsToNodeIdsCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "927da262-26ae-42b1-aeb8-60d0b2f0c927", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ae00165b-0ff2-4f30-a57b-d109bd030c77", + "children": [] + }, + { + "id": "5b51aac7-fe05-488e-a535-d99c95fa212a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ae00165b-0ff2-4f30-a57b-d109bd030c77", + "children": [] + } + ] + }, + { + "id": "91359937-879c-424b-9968-1cc6147bb823", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnauthorizedRequestCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnauthorizedRequestCount", + "browse_name": "UnauthorizedRequestCount", + "display_name": "UnauthorizedRequestCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [] + }, + { + "id": "17c2aa63-8f7b-4b1e-aa4e-2fc315215f80", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnregisterNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnregisterNodesCount", + "browse_name": "UnregisterNodesCount", + "display_name": "UnregisterNodesCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "593ebfe2-e491-43d6-b9c3-fc991839ae73", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnregisterNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnregisterNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "17c2aa63-8f7b-4b1e-aa4e-2fc315215f80", + "children": [] + }, + { + "id": "cbc9a9ef-bd1c-4893-b382-4dd714203fdc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnregisterNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:UnregisterNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "17c2aa63-8f7b-4b1e-aa4e-2fc315215f80", + "children": [] + } + ] + }, + { + "id": "90b48762-0884-42e9-8cc5-86f392b32c50", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:WriteCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:WriteCount", + "browse_name": "WriteCount", + "display_name": "WriteCount", + "node_class": "Variable", + "parent_id": "37c62459-bac7-4716-9772-e70c644be091", + "children": [ + { + "id": "377f43c5-0d57-429c-93fd-0354202b9ac4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:WriteCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:WriteCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "90b48762-0884-42e9-8cc5-86f392b32c50", + "children": [] + }, + { + "id": "b1445d85-ba82-418a-ac6a-dfb3e42207f2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:WriteCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionDiagnostics/0:WriteCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "90b48762-0884-42e9-8cc5-86f392b32c50", + "children": [] + } + ] + } + ] + }, + { + "id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics", + "browse_name": "SessionDiagnostics", + "display_name": "SessionDiagnostics", + "node_class": "Variable", + "parent_id": "4b367e4f-39c9-41d9-86c5-bdadb9cfd095", + "children": [ + { + "id": "5e368481-be44-4b69-8f83-cdeb81601a1a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ActualSessionTimeout", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ActualSessionTimeout", + "browse_name": "ActualSessionTimeout", + "display_name": "ActualSessionTimeout", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "decf3fb4-ac96-4f32-8ea8-0e0e2aa93324", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddNodesCount", + "browse_name": "AddNodesCount", + "display_name": "AddNodesCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "37153850-6c72-459c-a74b-dc6eebd00c79", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "decf3fb4-ac96-4f32-8ea8-0e0e2aa93324", + "children": [] + }, + { + "id": "bf1f9870-bc73-4fb8-b372-051c5d394211", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "decf3fb4-ac96-4f32-8ea8-0e0e2aa93324", + "children": [] + } + ] + }, + { + "id": "684fc6d2-92d4-4e71-86e3-08bf72e94fbd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddReferencesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddReferencesCount", + "browse_name": "AddReferencesCount", + "display_name": "AddReferencesCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "29b0cca1-f33e-4b06-9890-b2af8c409b2f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddReferencesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddReferencesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "684fc6d2-92d4-4e71-86e3-08bf72e94fbd", + "children": [] + }, + { + "id": "d80dd742-664d-4447-9bca-e8078b3cac04", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddReferencesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:AddReferencesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "684fc6d2-92d4-4e71-86e3-08bf72e94fbd", + "children": [] + } + ] + }, + { + "id": "4f292102-4d19-4ce2-afc6-5118b1c88ff1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseCount", + "browse_name": "BrowseCount", + "display_name": "BrowseCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "01a73994-d725-4fda-bae3-a08e7aa6158d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4f292102-4d19-4ce2-afc6-5118b1c88ff1", + "children": [] + }, + { + "id": "f22149da-c9a8-49da-a99c-da8595337a67", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4f292102-4d19-4ce2-afc6-5118b1c88ff1", + "children": [] + } + ] + }, + { + "id": "4c35fa30-5128-40a3-9562-cc0485656bfd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseNextCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseNextCount", + "browse_name": "BrowseNextCount", + "display_name": "BrowseNextCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "bfe997d8-9ab2-46e1-a92c-01d37b4bb29c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseNextCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseNextCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4c35fa30-5128-40a3-9562-cc0485656bfd", + "children": [] + }, + { + "id": "f184175c-75da-468e-b10f-4f25f5e9917e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseNextCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:BrowseNextCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4c35fa30-5128-40a3-9562-cc0485656bfd", + "children": [] + } + ] + }, + { + "id": "0d89bda6-a382-42d3-8946-f253445e801d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CallCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CallCount", + "browse_name": "CallCount", + "display_name": "CallCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "ffd82e52-539d-4393-86d7-324ad57a4deb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CallCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CallCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "0d89bda6-a382-42d3-8946-f253445e801d", + "children": [] + }, + { + "id": "33806ab2-f4c8-4317-8f6b-0471df39add1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CallCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CallCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "0d89bda6-a382-42d3-8946-f253445e801d", + "children": [] + } + ] + }, + { + "id": "c245d66e-88a4-443d-a8f1-ebcf8333a581", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientConnectionTime", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientConnectionTime", + "browse_name": "ClientConnectionTime", + "display_name": "ClientConnectionTime", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription", + "browse_name": "ClientDescription", + "display_name": "ClientDescription", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "a52ca42b-e998-47eb-8d23-9a79030493d6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ApplicationName", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ApplicationName", + "browse_name": "ApplicationName", + "display_name": "ApplicationName", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + }, + { + "id": "cd82e021-252a-4dbd-9211-aaf9d2112ee9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ApplicationType", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ApplicationType", + "browse_name": "ApplicationType", + "display_name": "ApplicationType", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + }, + { + "id": "226a8885-faf6-42fe-90c3-5b00ca3bc4ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ApplicationUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ApplicationUri", + "browse_name": "ApplicationUri", + "display_name": "ApplicationUri", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + }, + { + "id": "6360e713-30dd-4d9a-bd6d-a8e674b2476f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryProfileUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryProfileUri", + "browse_name": "DiscoveryProfileUri", + "display_name": "DiscoveryProfileUri", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + }, + { + "id": "91d87ebf-505a-483c-86d6-7474458a5b4b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryUrls", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryUrls", + "browse_name": "DiscoveryUrls", + "display_name": "DiscoveryUrls", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + }, + { + "id": "9eae29b8-cf4d-44d1-91cf-86d59202fa68", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:GatewayServerUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:GatewayServerUri", + "browse_name": "GatewayServerUri", + "display_name": "GatewayServerUri", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + }, + { + "id": "6a4024ba-328a-4b13-a5ca-bf05c46c3d1b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ProductUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientDescription/0:ProductUri", + "browse_name": "ProductUri", + "display_name": "ProductUri", + "node_class": "Variable", + "parent_id": "d9e490e2-8fee-4d38-83b1-cacf5105d47a", + "children": [] + } + ] + }, + { + "id": "1a0eb569-1ba4-45f3-8706-2ecf8ec18635", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientLastContactTime", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ClientLastContactTime", + "browse_name": "ClientLastContactTime", + "display_name": "ClientLastContactTime", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "a38052f3-a388-4b21-9fd0-ca84e564b62e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateMonitoredItemsCount", + "browse_name": "CreateMonitoredItemsCount", + "display_name": "CreateMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "ecb8bccb-bf9c-41a7-a4af-6deaa6bacab9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "a38052f3-a388-4b21-9fd0-ca84e564b62e", + "children": [] + }, + { + "id": "97b026a2-ba63-4b13-9b66-2d734e412daa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "a38052f3-a388-4b21-9fd0-ca84e564b62e", + "children": [] + } + ] + }, + { + "id": "4bec8eba-34a9-4474-b646-8840d6844b23", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateSubscriptionCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateSubscriptionCount", + "browse_name": "CreateSubscriptionCount", + "display_name": "CreateSubscriptionCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "c4bc59e0-3b13-49ed-8dd0-9c44463cd011", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateSubscriptionCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateSubscriptionCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4bec8eba-34a9-4474-b646-8840d6844b23", + "children": [] + }, + { + "id": "8beac939-95b8-4df0-a00d-3ff7f06ac773", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateSubscriptionCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CreateSubscriptionCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4bec8eba-34a9-4474-b646-8840d6844b23", + "children": [] + } + ] + }, + { + "id": "81f5fce1-f433-45f7-b769-bace8b4ed644", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CurrentMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CurrentMonitoredItemsCount", + "browse_name": "CurrentMonitoredItemsCount", + "display_name": "CurrentMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "c363a25e-be4a-4975-a98d-1cd9e721b7ad", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CurrentPublishRequestsInQueue", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CurrentPublishRequestsInQueue", + "browse_name": "CurrentPublishRequestsInQueue", + "display_name": "CurrentPublishRequestsInQueue", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "5f96c44e-de19-4c36-b266-3908061c5b92", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CurrentSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:CurrentSubscriptionsCount", + "browse_name": "CurrentSubscriptionsCount", + "display_name": "CurrentSubscriptionsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "d56d6528-61c8-49d4-9f6b-8f790599fcd9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteMonitoredItemsCount", + "browse_name": "DeleteMonitoredItemsCount", + "display_name": "DeleteMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "59ad1302-e521-4cad-bd94-0bfdf07de670", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "d56d6528-61c8-49d4-9f6b-8f790599fcd9", + "children": [] + }, + { + "id": "4c664dc0-92b0-42fb-a4cb-6dd791f1e873", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "d56d6528-61c8-49d4-9f6b-8f790599fcd9", + "children": [] + } + ] + }, + { + "id": "ca745dec-8341-42a7-9412-69c5c8d6568e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteNodesCount", + "browse_name": "DeleteNodesCount", + "display_name": "DeleteNodesCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "6490ba93-893d-47c7-aa91-4bce8b2521b9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ca745dec-8341-42a7-9412-69c5c8d6568e", + "children": [] + }, + { + "id": "0b1b5584-3f01-42b4-83e1-8da65ed44712", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ca745dec-8341-42a7-9412-69c5c8d6568e", + "children": [] + } + ] + }, + { + "id": "c83e4267-86ac-4f91-b0f1-803a5b3367fb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteReferencesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteReferencesCount", + "browse_name": "DeleteReferencesCount", + "display_name": "DeleteReferencesCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "e53c2e64-248f-4cd4-a876-7991c7c9b683", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteReferencesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteReferencesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "c83e4267-86ac-4f91-b0f1-803a5b3367fb", + "children": [] + }, + { + "id": "4aed4c87-8edd-48c2-bf18-1feba67da22b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteReferencesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteReferencesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "c83e4267-86ac-4f91-b0f1-803a5b3367fb", + "children": [] + } + ] + }, + { + "id": "7c563d50-a236-4e3c-8325-b49da5d90e55", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteSubscriptionsCount", + "browse_name": "DeleteSubscriptionsCount", + "display_name": "DeleteSubscriptionsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "c720e712-1e6a-482f-bce3-a1df238c784a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "7c563d50-a236-4e3c-8325-b49da5d90e55", + "children": [] + }, + { + "id": "4ba6817c-a59f-40b6-acc2-1a33783494b7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "7c563d50-a236-4e3c-8325-b49da5d90e55", + "children": [] + } + ] + }, + { + "id": "92ff796d-3eb1-4751-aeed-afa6bd04eecc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:EndpointUrl", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:EndpointUrl", + "browse_name": "EndpointUrl", + "display_name": "EndpointUrl", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "8fd745cf-4844-4eb7-8ee9-291457d07218", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryReadCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryReadCount", + "browse_name": "HistoryReadCount", + "display_name": "HistoryReadCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "a2254fa4-12ea-4580-b087-a8149fd56c98", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryReadCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryReadCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "8fd745cf-4844-4eb7-8ee9-291457d07218", + "children": [] + }, + { + "id": "151ff583-421d-4de7-a7e0-349d27251a31", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryReadCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryReadCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "8fd745cf-4844-4eb7-8ee9-291457d07218", + "children": [] + } + ] + }, + { + "id": "ba3ef845-3112-46e1-8a33-3fdeeca14d6e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryUpdateCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryUpdateCount", + "browse_name": "HistoryUpdateCount", + "display_name": "HistoryUpdateCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "09dad253-d7cc-4424-b0ac-2ba870ab0190", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryUpdateCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryUpdateCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ba3ef845-3112-46e1-8a33-3fdeeca14d6e", + "children": [] + }, + { + "id": "d9c6b14b-1171-4164-aadb-31a57ef4fe19", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryUpdateCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:HistoryUpdateCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ba3ef845-3112-46e1-8a33-3fdeeca14d6e", + "children": [] + } + ] + }, + { + "id": "1ab274dc-ae7b-40ee-8a0a-0959a38c2f86", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:LocaleIds", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:LocaleIds", + "browse_name": "LocaleIds", + "display_name": "LocaleIds", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "223a5f75-d38c-4578-8662-de4654d198a8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:MaxResponseMessageSize", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:MaxResponseMessageSize", + "browse_name": "MaxResponseMessageSize", + "display_name": "MaxResponseMessageSize", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "defc8ec1-7dda-4154-9646-674ff3d97a50", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifyMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifyMonitoredItemsCount", + "browse_name": "ModifyMonitoredItemsCount", + "display_name": "ModifyMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "668ae2c0-dffc-4822-814e-80c2db477523", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "defc8ec1-7dda-4154-9646-674ff3d97a50", + "children": [] + }, + { + "id": "5a3a4857-28fa-46cb-9e44-38d9316749cf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "defc8ec1-7dda-4154-9646-674ff3d97a50", + "children": [] + } + ] + }, + { + "id": "f0f7d3a1-b322-4ff4-a812-592a4a05ea1f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifySubscriptionCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifySubscriptionCount", + "browse_name": "ModifySubscriptionCount", + "display_name": "ModifySubscriptionCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "246a9d06-30bd-43de-b7b7-96b835a15bce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifySubscriptionCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifySubscriptionCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f0f7d3a1-b322-4ff4-a812-592a4a05ea1f", + "children": [] + }, + { + "id": "94ab8e8d-4469-48f2-81b8-9b95ab0745ca", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifySubscriptionCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ModifySubscriptionCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f0f7d3a1-b322-4ff4-a812-592a4a05ea1f", + "children": [] + } + ] + }, + { + "id": "09dd166c-4e53-45c1-9f70-ace61e8ec76a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:PublishCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:PublishCount", + "browse_name": "PublishCount", + "display_name": "PublishCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "1f4bd258-1e46-4b78-bf4c-0664725acd4b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:PublishCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:PublishCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "09dd166c-4e53-45c1-9f70-ace61e8ec76a", + "children": [] + }, + { + "id": "c8f6179a-e757-4e09-9e10-3b520462afd0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:PublishCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:PublishCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "09dd166c-4e53-45c1-9f70-ace61e8ec76a", + "children": [] + } + ] + }, + { + "id": "d17cfe8e-bcc4-4412-9710-907ff5366d93", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryFirstCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryFirstCount", + "browse_name": "QueryFirstCount", + "display_name": "QueryFirstCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "541835d2-1870-4977-bea6-0dff415f7afe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryFirstCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryFirstCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "d17cfe8e-bcc4-4412-9710-907ff5366d93", + "children": [] + }, + { + "id": "cd243b3a-1927-40f4-9e7e-70d0775a3c6c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryFirstCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryFirstCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "d17cfe8e-bcc4-4412-9710-907ff5366d93", + "children": [] + } + ] + }, + { + "id": "fc0f45e2-3728-4cf4-9aa4-0df49f11eb82", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryNextCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryNextCount", + "browse_name": "QueryNextCount", + "display_name": "QueryNextCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "8491ea93-2857-4f23-a750-8ab975063181", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryNextCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryNextCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "fc0f45e2-3728-4cf4-9aa4-0df49f11eb82", + "children": [] + }, + { + "id": "8d5f6e11-408a-4bb5-9019-826d822262ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryNextCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:QueryNextCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "fc0f45e2-3728-4cf4-9aa4-0df49f11eb82", + "children": [] + } + ] + }, + { + "id": "b673d062-4de6-4c7d-a5dc-6950169f5baa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ReadCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ReadCount", + "browse_name": "ReadCount", + "display_name": "ReadCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "7dab4f37-8e53-45c3-835b-f988f4b711d4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ReadCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ReadCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "b673d062-4de6-4c7d-a5dc-6950169f5baa", + "children": [] + }, + { + "id": "a06666ae-3b9c-4a3b-a1ce-52d5d739abfd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ReadCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ReadCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "b673d062-4de6-4c7d-a5dc-6950169f5baa", + "children": [] + } + ] + }, + { + "id": "e6ad59ec-bdde-4338-a97e-773fb5cb671d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RegisterNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RegisterNodesCount", + "browse_name": "RegisterNodesCount", + "display_name": "RegisterNodesCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "947ef4bc-41fb-4d2a-9cbe-99ad58cea292", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RegisterNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RegisterNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "e6ad59ec-bdde-4338-a97e-773fb5cb671d", + "children": [] + }, + { + "id": "54fd091f-4eae-4884-8bb0-962884f62515", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RegisterNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RegisterNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "e6ad59ec-bdde-4338-a97e-773fb5cb671d", + "children": [] + } + ] + }, + { + "id": "f92a0327-f024-4faa-96f8-a46e6740eb5c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RepublishCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RepublishCount", + "browse_name": "RepublishCount", + "display_name": "RepublishCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "efe35de0-3798-4924-b9c6-da1fa63ffc32", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RepublishCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RepublishCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f92a0327-f024-4faa-96f8-a46e6740eb5c", + "children": [] + }, + { + "id": "6a415c0e-eb83-4deb-8b63-c124aae7060b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RepublishCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:RepublishCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f92a0327-f024-4faa-96f8-a46e6740eb5c", + "children": [] + } + ] + }, + { + "id": "3e1719dc-a93c-48f0-8687-71b372e7088c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ServerUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:ServerUri", + "browse_name": "ServerUri", + "display_name": "ServerUri", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "046276ef-4fd1-4581-b0ca-d79f6c41a9d8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SessionId", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SessionId", + "browse_name": "SessionId", + "display_name": "SessionId", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "a234aab4-2cbf-44ca-9af6-2624bc321ffa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SessionName", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SessionName", + "browse_name": "SessionName", + "display_name": "SessionName", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "c49ee4c3-e762-45e8-ae6d-3776a202de86", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetMonitoringModeCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetMonitoringModeCount", + "browse_name": "SetMonitoringModeCount", + "display_name": "SetMonitoringModeCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "5304c3a2-83fc-440d-a78b-a9732d164e5b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetMonitoringModeCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetMonitoringModeCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "c49ee4c3-e762-45e8-ae6d-3776a202de86", + "children": [] + }, + { + "id": "77c0eff7-ab1d-41d6-890f-0aead727e03e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetMonitoringModeCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetMonitoringModeCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "c49ee4c3-e762-45e8-ae6d-3776a202de86", + "children": [] + } + ] + }, + { + "id": "15ba35ec-d8c1-4542-a5b8-943b92887a57", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetPublishingModeCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetPublishingModeCount", + "browse_name": "SetPublishingModeCount", + "display_name": "SetPublishingModeCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "1f700d3a-70bc-4f1b-be45-bd2c6500789a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetPublishingModeCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetPublishingModeCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "15ba35ec-d8c1-4542-a5b8-943b92887a57", + "children": [] + }, + { + "id": "0ac2778c-0d6d-4131-ae81-a6acf30857b4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetPublishingModeCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetPublishingModeCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "15ba35ec-d8c1-4542-a5b8-943b92887a57", + "children": [] + } + ] + }, + { + "id": "66c4f81e-57ef-4e33-8dc2-6ebcec3aeb5c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetTriggeringCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetTriggeringCount", + "browse_name": "SetTriggeringCount", + "display_name": "SetTriggeringCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "9c890d9e-d78f-472d-b319-ca49bf2045a9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetTriggeringCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetTriggeringCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "66c4f81e-57ef-4e33-8dc2-6ebcec3aeb5c", + "children": [] + }, + { + "id": "5b9989ce-ddbe-4ffa-b1d9-b5ea8d29245d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetTriggeringCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:SetTriggeringCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "66c4f81e-57ef-4e33-8dc2-6ebcec3aeb5c", + "children": [] + } + ] + }, + { + "id": "f1e4563d-bd72-4b56-9c03-001883f1ffad", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TotalRequestCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TotalRequestCount", + "browse_name": "TotalRequestCount", + "display_name": "TotalRequestCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "5f4dfefc-0213-4b30-99fd-95bcf7476e12", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TotalRequestCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TotalRequestCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f1e4563d-bd72-4b56-9c03-001883f1ffad", + "children": [] + }, + { + "id": "11702a21-9d1f-497b-b947-d1f54fecad98", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TotalRequestCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TotalRequestCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f1e4563d-bd72-4b56-9c03-001883f1ffad", + "children": [] + } + ] + }, + { + "id": "60e69a39-59df-4911-a8d2-787cd0442745", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TransferSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TransferSubscriptionsCount", + "browse_name": "TransferSubscriptionsCount", + "display_name": "TransferSubscriptionsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "c59cd48d-3d16-48cd-8551-47e8a8efe7d1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "60e69a39-59df-4911-a8d2-787cd0442745", + "children": [] + }, + { + "id": "83113fdb-5e8d-4e3e-aa4b-2ef61bf07544", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "60e69a39-59df-4911-a8d2-787cd0442745", + "children": [] + } + ] + }, + { + "id": "098f4a01-8e7d-444c-95b3-945d1ddbf0ba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount", + "browse_name": "TranslateBrowsePathsToNodeIdsCount", + "display_name": "TranslateBrowsePathsToNodeIdsCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "783377a3-cc2f-4e49-813d-94702daa6506", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "098f4a01-8e7d-444c-95b3-945d1ddbf0ba", + "children": [] + }, + { + "id": "9cc79e65-cabf-4569-94df-8c3fe82a7f3e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "098f4a01-8e7d-444c-95b3-945d1ddbf0ba", + "children": [] + } + ] + }, + { + "id": "00e52ba3-645a-4a7a-a655-15d5cc05532a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnauthorizedRequestCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnauthorizedRequestCount", + "browse_name": "UnauthorizedRequestCount", + "display_name": "UnauthorizedRequestCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [] + }, + { + "id": "96f9f656-456e-45d8-aff8-043e86b6e58d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnregisterNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnregisterNodesCount", + "browse_name": "UnregisterNodesCount", + "display_name": "UnregisterNodesCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "0d9d61b1-07f6-469f-94d3-b599505216d3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnregisterNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnregisterNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "96f9f656-456e-45d8-aff8-043e86b6e58d", + "children": [] + }, + { + "id": "b8c7d32d-bce0-4ced-bfea-9337c4d546cc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnregisterNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:UnregisterNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "96f9f656-456e-45d8-aff8-043e86b6e58d", + "children": [] + } + ] + }, + { + "id": "fde7ee31-ec6a-4057-a389-ecf0658a441c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:WriteCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:WriteCount", + "browse_name": "WriteCount", + "display_name": "WriteCount", + "node_class": "Variable", + "parent_id": "0f0095f4-f601-43ca-90be-353cc625a65e", + "children": [ + { + "id": "082cb212-6c25-4121-9fe1-ede7d25158b5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:WriteCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:WriteCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "fde7ee31-ec6a-4057-a389-ecf0658a441c", + "children": [] + }, + { + "id": "adf95d67-9283-443c-80a7-50429796759d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:WriteCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionDiagnostics/0:WriteCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "fde7ee31-ec6a-4057-a389-ecf0658a441c", + "children": [] + } + ] + } + ] + } + ] + }, + { + "id": "e7a14cb7-a33c-4c76-aca6-e94620ac56e3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=3708", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "3708", + "browse_name": "SessionSecurityDiagnosticsArray", + "display_name": "SessionSecurityDiagnosticsArray", + "node_class": "Variable", + "parent_id": "47193ee1-dc0a-407f-b8e1-b0e801bd5163", + "children": [ + { + "id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics", + "browse_name": "SessionSecurityDiagnostics", + "display_name": "SessionSecurityDiagnostics", + "node_class": "Variable", + "parent_id": "e7a14cb7-a33c-4c76-aca6-e94620ac56e3", + "children": [ + { + "id": "b9e8c073-5588-4ca1-8847-93821f1c1a8b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:AuthenticationMechanism", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:AuthenticationMechanism", + "browse_name": "AuthenticationMechanism", + "display_name": "AuthenticationMechanism", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "415ff343-39cc-4224-b3fb-548ae78407fc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:ClientCertificate", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:ClientCertificate", + "browse_name": "ClientCertificate", + "display_name": "ClientCertificate", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "5777db91-1e13-4b41-96a2-c648a7f2e3f7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:ClientUserIdHistory", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:ClientUserIdHistory", + "browse_name": "ClientUserIdHistory", + "display_name": "ClientUserIdHistory", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "b2266fa1-6c1b-42fb-858d-8dbc4b5cec2a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:ClientUserIdOfSession", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:ClientUserIdOfSession", + "browse_name": "ClientUserIdOfSession", + "display_name": "ClientUserIdOfSession", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "51b81a46-93bd-44bd-a1eb-cd1aabf90e8d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:Encoding", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:Encoding", + "browse_name": "Encoding", + "display_name": "Encoding", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "b8eeac01-4701-492a-b82d-0e5e2d8d1ba0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:SecurityMode", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:SecurityMode", + "browse_name": "SecurityMode", + "display_name": "SecurityMode", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "44bf2f6c-e2b9-484b-bc04-aee6088fab45", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:SecurityPolicyUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:SecurityPolicyUri", + "browse_name": "SecurityPolicyUri", + "display_name": "SecurityPolicyUri", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "5c03a36e-3d52-45fb-8b66-893c15e2405f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:SessionId", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:SessionId", + "browse_name": "SessionId", + "display_name": "SessionId", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + }, + { + "id": "b622e97d-afa4-42c2-9532-2c012d8a5b11", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:TransportProtocol", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SessionSecurityDiagnostics/0:TransportProtocol", + "browse_name": "TransportProtocol", + "display_name": "TransportProtocol", + "node_class": "Variable", + "parent_id": "7fce4cc7-3970-4c37-a9ff-89ccd2e5a852", + "children": [] + } + ] + }, + { + "id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics", + "browse_name": "SessionSecurityDiagnostics", + "display_name": "SessionSecurityDiagnostics", + "node_class": "Variable", + "parent_id": "e7a14cb7-a33c-4c76-aca6-e94620ac56e3", + "children": [ + { + "id": "858a5e96-47d2-40aa-ab45-e79b419639ff", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:AuthenticationMechanism", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:AuthenticationMechanism", + "browse_name": "AuthenticationMechanism", + "display_name": "AuthenticationMechanism", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "d857b107-7306-4fc2-8c03-5b8e45750374", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:ClientCertificate", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:ClientCertificate", + "browse_name": "ClientCertificate", + "display_name": "ClientCertificate", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "09598c09-68b5-407c-a2ce-41178d3386bd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:ClientUserIdHistory", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:ClientUserIdHistory", + "browse_name": "ClientUserIdHistory", + "display_name": "ClientUserIdHistory", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "d8a0d8d2-c135-44f5-a1ce-bffed3aefe28", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:ClientUserIdOfSession", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:ClientUserIdOfSession", + "browse_name": "ClientUserIdOfSession", + "display_name": "ClientUserIdOfSession", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "49bb99c9-0cc4-4586-bdde-73b84996f2ae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:Encoding", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:Encoding", + "browse_name": "Encoding", + "display_name": "Encoding", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "e28b5f61-b292-4685-bc49-e14ef8c34296", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:SecurityMode", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:SecurityMode", + "browse_name": "SecurityMode", + "display_name": "SecurityMode", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "ed1282ad-b402-47e6-9a10-065f26eb239d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:SecurityPolicyUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:SecurityPolicyUri", + "browse_name": "SecurityPolicyUri", + "display_name": "SecurityPolicyUri", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "4fd2af76-4c72-494c-9a19-51807b027371", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:SessionId", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:SessionId", + "browse_name": "SessionId", + "display_name": "SessionId", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + }, + { + "id": "f9c7cdd3-74f2-4f20-9b69-11be2f1cd7ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:TransportProtocol", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SessionSecurityDiagnostics/0:TransportProtocol", + "browse_name": "TransportProtocol", + "display_name": "TransportProtocol", + "node_class": "Variable", + "parent_id": "3b3b48b0-4af7-4271-873a-f372323ef3be", + "children": [] + } + ] + } + ] + }, + { + "id": "b2175db7-1015-4bd2-867f-6a4810a2a75d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;g=2e85d5ba-05cd-b945-9a5b-9eb5020dfb42", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "g", + "identifier": "2e85d5ba-05cd-b945-9a5b-9eb5020dfb42", + "browse_name": "Rust OPC UA Client", + "display_name": "Rust OPC UA Client", + "node_class": "Object", + "parent_id": "47193ee1-dc0a-407f-b8e1-b0e801bd5163", + "children": [ + { + "id": "4a62547e-cbf0-48ac-879c-f68e161afe20", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SubscriptionDiagnosticsArray", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "bad5852e-cd05-45b9-9a5b-9eb5020dfb42/0:SubscriptionDiagnosticsArray", + "browse_name": "SubscriptionDiagnosticsArray", + "display_name": "SubscriptionDiagnosticsArray", + "node_class": "Variable", + "parent_id": "b2175db7-1015-4bd2-867f-6a4810a2a75d", + "children": [] + } + ] + }, + { + "id": "36ae7a68-03c6-4ec7-bb81-26f2190aa77a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;g=f4fb822a-6390-1b45-8387-0b5d5620afb6", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "g", + "identifier": "f4fb822a-6390-1b45-8387-0b5d5620afb6", + "browse_name": "Rust OPC UA Client", + "display_name": "Rust OPC UA Client", + "node_class": "Object", + "parent_id": "47193ee1-dc0a-407f-b8e1-b0e801bd5163", + "children": [ + { + "id": "c21a2f1d-2cc3-49dc-8f0d-525c4fc83906", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SubscriptionDiagnosticsArray", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "2a82fbf4-9063-451b-8387-0b5d5620afb6/0:SubscriptionDiagnosticsArray", + "browse_name": "SubscriptionDiagnosticsArray", + "display_name": "SubscriptionDiagnosticsArray", + "node_class": "Variable", + "parent_id": "36ae7a68-03c6-4ec7-bb81-26f2190aa77a", + "children": [] + } + ] + } + ] + }, + { + "id": "40609ce0-8735-4c58-af21-aa14df7b7087", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2294", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2294", + "browse_name": "EnabledFlag", + "display_name": "EnabledFlag", + "node_class": "Variable", + "parent_id": "8b751703-88b2-4433-a1c8-7f7dc0f62f9f", + "children": [] + } + ] + }, + { + "id": "d370a5a7-4590-4bab-bded-950367c35479", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2295", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2295", + "browse_name": "VendorServerInfo", + "display_name": "VendorServerInfo", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "52ab7d97-a3c0-4765-8708-77e3820b55e8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2296", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2296", + "browse_name": "ServerRedundancy", + "display_name": "ServerRedundancy", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "3d345fc1-0a50-4a4b-9793-ac9ba67680e5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=3709", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "3709", + "browse_name": "RedundancySupport", + "display_name": "RedundancySupport", + "node_class": "Variable", + "parent_id": "52ab7d97-a3c0-4765-8708-77e3820b55e8", + "children": [] + }, + { + "id": "42e22b30-ffe4-4e6f-987c-c07bcfb68b0e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11313", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11313", + "browse_name": "RedundantServerArray", + "display_name": "RedundantServerArray", + "node_class": "Variable", + "parent_id": "52ab7d97-a3c0-4765-8708-77e3820b55e8", + "children": [] + } + ] + }, + { + "id": "940f7251-51e6-48de-bebc-0eff264ee07e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11492", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11492", + "browse_name": "GetMonitoredItems", + "display_name": "GetMonitoredItems", + "node_class": "Method", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "97f0c098-c78a-4e4c-8e7e-967dedbe35f0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11493", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11493", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "940f7251-51e6-48de-bebc-0eff264ee07e", + "children": [] + }, + { + "id": "20395b54-e7f0-4a0b-a2aa-0d58d17cea35", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11494", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11494", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "940f7251-51e6-48de-bebc-0eff264ee07e", + "children": [] + } + ] + }, + { + "id": "e4baed78-063b-414a-8c55-3323970b3f93", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=11715", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "11715", + "browse_name": "Namespaces", + "display_name": "Namespaces", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15957", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15957", + "browse_name": "http://opcfoundation.org/UA/", + "display_name": "http://opcfoundation.org/UA/", + "node_class": "Object", + "parent_id": "e4baed78-063b-414a-8c55-3323970b3f93", + "children": [ + { + "id": "27d964ef-42c4-4ab6-bd77-63b0b90eb9f5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16135", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16135", + "browse_name": "DefaultUserRolePermissions", + "display_name": "DefaultUserRolePermissions", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "0fdda520-ac63-48d2-ba2f-5869e3d164b3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15964", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15964", + "browse_name": "StaticStringNodeIdPattern", + "display_name": "StaticStringNodeIdPattern", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "712ebaed-928a-4c18-b133-6cfef2d7ed42", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15960", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15960", + "browse_name": "NamespacePublicationDate", + "display_name": "NamespacePublicationDate", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "fedb1fa7-c38c-4715-af5c-8446f04e22fe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16136", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16136", + "browse_name": "DefaultAccessRestrictions", + "display_name": "DefaultAccessRestrictions", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "ea17bc54-49ea-4cc3-be22-01eb021079cb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32408", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32408", + "browse_name": "ModelVersion", + "display_name": "ModelVersion", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "5c22354c-a607-4af2-aa47-8fade5711a7a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15963", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15963", + "browse_name": "StaticNumericNodeIdRange", + "display_name": "StaticNumericNodeIdRange", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "42db1568-39f8-4d0d-a93b-16297a70061d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15958", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15958", + "browse_name": "NamespaceUri", + "display_name": "NamespaceUri", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "5980e1f4-3cee-4c8e-9ce5-cd1d31a2159e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15959", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15959", + "browse_name": "NamespaceVersion", + "display_name": "NamespaceVersion", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "1ce6ae57-43df-4689-8640-e822450482cd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16134", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16134", + "browse_name": "DefaultRolePermissions", + "display_name": "DefaultRolePermissions", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "e2ececd9-02d8-4ecf-a7fb-04643a1c11c4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15961", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15961", + "browse_name": "IsNamespaceSubset", + "display_name": "IsNamespaceSubset", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + }, + { + "id": "6b8bedb5-ccd7-4e0c-8b23-d28ba1c436f2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15962", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15962", + "browse_name": "StaticNodeIdTypes", + "display_name": "StaticNodeIdTypes", + "node_class": "Variable", + "parent_id": "4f496ee8-6154-4969-a63f-4d2cadadc347", + "children": [] + } + ] + }, + { + "id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=5001", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "5001", + "browse_name": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "display_name": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "node_class": "Object", + "parent_id": "e4baed78-063b-414a-8c55-3323970b3f93", + "children": [ + { + "id": "665ad6f5-80b0-4ba9-be7c-4c5d3e6d5080", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6010", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6010", + "browse_name": "StaticStringNodeIdPattern", + "display_name": "StaticStringNodeIdPattern", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + }, + { + "id": "e61a2364-e560-4e5b-8e60-bb7b0a955e8a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6005", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6005", + "browse_name": "NamespacePublicationDate", + "display_name": "NamespacePublicationDate", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + }, + { + "id": "1f7e7e30-3994-47ba-8b88-14fcc4ffc2ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6009", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6009", + "browse_name": "StaticNumericNodeIdRange", + "display_name": "StaticNumericNodeIdRange", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + }, + { + "id": "9c92374c-0669-4dd5-b7a6-e074ba520ada", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6006", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6006", + "browse_name": "NamespaceUri", + "display_name": "NamespaceUri", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + }, + { + "id": "7ee1d56d-e5ae-494b-9f51-2cfda78923ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6007", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6007", + "browse_name": "NamespaceVersion", + "display_name": "NamespaceVersion", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + }, + { + "id": "1063fa56-f430-4936-9bc1-f8edbe4c0157", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6004", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6004", + "browse_name": "IsNamespaceSubset", + "display_name": "IsNamespaceSubset", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + }, + { + "id": "85401e13-9b8b-43ab-aabb-2f51e0addae9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=6008", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "6008", + "browse_name": "StaticNodeIdTypes", + "display_name": "StaticNodeIdTypes", + "node_class": "Variable", + "parent_id": "b20d456a-f85a-49f2-a473-ddd3518ddec4", + "children": [] + } + ] + } + ] + }, + { + "id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12637", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12637", + "browse_name": "ServerConfiguration", + "display_name": "ServerConfiguration", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "a4658cce-021e-49c9-9c2e-6ed03da69439", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12737", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12737", + "browse_name": "CreateSigningRequest", + "display_name": "CreateSigningRequest", + "node_class": "Method", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "d5bb297c-14a4-4402-9943-c8df26634563", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12738", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12738", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "a4658cce-021e-49c9-9c2e-6ed03da69439", + "children": [] + }, + { + "id": "bea249d6-4b25-482e-a738-078a4a4bf38c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12739", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12739", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "a4658cce-021e-49c9-9c2e-6ed03da69439", + "children": [] + } + ] + }, + { + "id": "289cc43b-67f1-46c2-ab04-667c07555234", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12740", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12740", + "browse_name": "ApplyChanges", + "display_name": "ApplyChanges", + "node_class": "Method", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "1702f21c-450f-4139-9a85-71c5249cd287", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12777", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12777", + "browse_name": "GetRejectedList", + "display_name": "GetRejectedList", + "node_class": "Method", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "956fbaac-5cc5-465c-9ffd-5a8083256cb2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12778", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12778", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "1702f21c-450f-4139-9a85-71c5249cd287", + "children": [] + } + ] + }, + { + "id": "cf2e2345-1298-411e-97e3-00f0acc19abe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=13737", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "13737", + "browse_name": "UpdateCertificate", + "display_name": "UpdateCertificate", + "node_class": "Method", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "f1c8cc90-9836-4952-ba11-ca1d336cdbe1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=13738", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "13738", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "cf2e2345-1298-411e-97e3-00f0acc19abe", + "children": [] + }, + { + "id": "c51b7e5e-bba9-4daf-aad1-248692656583", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=13739", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "13739", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "cf2e2345-1298-411e-97e3-00f0acc19abe", + "children": [] + } + ] + }, + { + "id": "57c10467-53f5-4078-b7f7-d7e92e1b701c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14053", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14053", + "browse_name": "CertificateGroups", + "display_name": "CertificateGroups", + "node_class": "Object", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "cea8379f-e65a-489c-8a03-8a98b2c95762", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14088", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14088", + "browse_name": "DefaultHttpsGroup", + "display_name": "DefaultHttpsGroup", + "node_class": "Object", + "parent_id": "57c10467-53f5-4078-b7f7-d7e92e1b701c", + "children": [ + { + "id": "87b3dd33-5c28-4732-8174-65e18155e164", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14089", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14089", + "browse_name": "TrustList", + "display_name": "TrustList", + "node_class": "Object", + "parent_id": "cea8379f-e65a-489c-8a03-8a98b2c95762", + "children": [ + { + "id": "2e5d983d-62f5-4a79-9c99-d6755698a9c2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14095", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14095", + "browse_name": "Open", + "display_name": "Open", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "4eefab9c-1bf5-48d5-b421-b984b43253b9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14096", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14096", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "2e5d983d-62f5-4a79-9c99-d6755698a9c2", + "children": [] + }, + { + "id": "5231abf3-c31d-48b3-90b7-641e9fd95bab", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14097", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14097", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "2e5d983d-62f5-4a79-9c99-d6755698a9c2", + "children": [] + } + ] + }, + { + "id": "9d3f1256-ceb6-4b63-af4a-2efbed52dd97", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14098", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14098", + "browse_name": "Close", + "display_name": "Close", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "c47554ad-4b28-430d-b365-f2b52aaa3ac7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14099", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14099", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "9d3f1256-ceb6-4b63-af4a-2efbed52dd97", + "children": [] + } + ] + }, + { + "id": "d7af0d45-79d9-48c0-9679-e01fb4923d08", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14100", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14100", + "browse_name": "Read", + "display_name": "Read", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "50ae6a8c-ade8-4887-a7fa-08ca801df777", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14102", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14102", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "d7af0d45-79d9-48c0-9679-e01fb4923d08", + "children": [] + }, + { + "id": "cb8e014b-4db8-4d0b-b1e5-f76717505252", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14101", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14101", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "d7af0d45-79d9-48c0-9679-e01fb4923d08", + "children": [] + } + ] + }, + { + "id": "4ca97baa-e75c-471e-b5b6-c8a7d6e4d8f4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14103", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14103", + "browse_name": "Write", + "display_name": "Write", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "8a5c06f5-1b55-491f-b3c6-b65c1e6eee61", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14104", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14104", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4ca97baa-e75c-471e-b5b6-c8a7d6e4d8f4", + "children": [] + } + ] + }, + { + "id": "aab5f7af-9a16-4153-b41b-b37062e52164", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14105", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14105", + "browse_name": "GetPosition", + "display_name": "GetPosition", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "3e5b399c-bb87-465d-9760-b2d169904df5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14107", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14107", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "aab5f7af-9a16-4153-b41b-b37062e52164", + "children": [] + }, + { + "id": "8aa56e2d-d863-4259-bfea-dd5fef5885fc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14106", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14106", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "aab5f7af-9a16-4153-b41b-b37062e52164", + "children": [] + } + ] + }, + { + "id": "a8087067-15eb-4f45-82ba-bd31b787fa12", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14108", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14108", + "browse_name": "SetPosition", + "display_name": "SetPosition", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "3334e24a-0cdd-408e-8c2f-978b9682e804", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14109", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14109", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "a8087067-15eb-4f45-82ba-bd31b787fa12", + "children": [] + } + ] + }, + { + "id": "2fb8fcd5-f683-468a-b903-082dbf45b22c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14111", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14111", + "browse_name": "OpenWithMasks", + "display_name": "OpenWithMasks", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "8c09a9d3-3d45-450c-9545-de3f3db48086", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14112", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14112", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "2fb8fcd5-f683-468a-b903-082dbf45b22c", + "children": [] + }, + { + "id": "1b407cb7-5b38-4551-a67e-4083d147dd89", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14113", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14113", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "2fb8fcd5-f683-468a-b903-082dbf45b22c", + "children": [] + } + ] + }, + { + "id": "d0196e72-2286-45eb-bb54-1f0ab5cb910f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14114", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14114", + "browse_name": "CloseAndUpdate", + "display_name": "CloseAndUpdate", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "91c4cf32-df4c-47b4-ac53-cd312ec092b8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14115", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14115", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "d0196e72-2286-45eb-bb54-1f0ab5cb910f", + "children": [] + }, + { + "id": "1d220a0e-0514-4ef3-a40e-4858f531c924", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14116", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14116", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "d0196e72-2286-45eb-bb54-1f0ab5cb910f", + "children": [] + } + ] + }, + { + "id": "e1c90bac-4df4-4e38-9a60-4815ad6f0ebd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14117", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14117", + "browse_name": "AddCertificate", + "display_name": "AddCertificate", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "d1daba63-bf60-447a-9767-bda132564348", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14118", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14118", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "e1c90bac-4df4-4e38-9a60-4815ad6f0ebd", + "children": [] + } + ] + }, + { + "id": "b608065d-12f4-43b5-9d13-bbb938912ebd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14119", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14119", + "browse_name": "RemoveCertificate", + "display_name": "RemoveCertificate", + "node_class": "Method", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [ + { + "id": "3eceedb6-f202-49d2-9b8a-1a1cc63c057a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14120", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14120", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "b608065d-12f4-43b5-9d13-bbb938912ebd", + "children": [] + } + ] + }, + { + "id": "9a5c20f8-f70f-4f6c-95f9-368dea70c420", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14093", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14093", + "browse_name": "OpenCount", + "display_name": "OpenCount", + "node_class": "Variable", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [] + }, + { + "id": "faa4d268-fb6d-4ce1-8e34-0fbd16053110", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14090", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14090", + "browse_name": "Size", + "display_name": "Size", + "node_class": "Variable", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [] + }, + { + "id": "defc5078-2b00-4859-a8b8-61eeba4549e1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14091", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14091", + "browse_name": "Writable", + "display_name": "Writable", + "node_class": "Variable", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [] + }, + { + "id": "6542a372-82ea-4b6b-ad51-5bbbd8e308ba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14092", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14092", + "browse_name": "UserWritable", + "display_name": "UserWritable", + "node_class": "Variable", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [] + }, + { + "id": "dab748b3-6ce5-4fa0-b798-e61edd03a617", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14110", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14110", + "browse_name": "LastUpdateTime", + "display_name": "LastUpdateTime", + "node_class": "Variable", + "parent_id": "87b3dd33-5c28-4732-8174-65e18155e164", + "children": [] + } + ] + }, + { + "id": "468bf024-e331-425b-bc33-24cc0542e1c1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14121", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14121", + "browse_name": "CertificateTypes", + "display_name": "CertificateTypes", + "node_class": "Variable", + "parent_id": "cea8379f-e65a-489c-8a03-8a98b2c95762", + "children": [] + } + ] + }, + { + "id": "6e1ec63a-e3b6-4624-bc7a-68796a6c6833", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14122", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14122", + "browse_name": "DefaultUserTokenGroup", + "display_name": "DefaultUserTokenGroup", + "node_class": "Object", + "parent_id": "57c10467-53f5-4078-b7f7-d7e92e1b701c", + "children": [ + { + "id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14123", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14123", + "browse_name": "TrustList", + "display_name": "TrustList", + "node_class": "Object", + "parent_id": "6e1ec63a-e3b6-4624-bc7a-68796a6c6833", + "children": [ + { + "id": "aae2dfa8-71be-4df5-8ada-783d12198538", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14129", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14129", + "browse_name": "Open", + "display_name": "Open", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "b500eddf-040f-495b-8633-801209fa51f0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14130", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14130", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "aae2dfa8-71be-4df5-8ada-783d12198538", + "children": [] + }, + { + "id": "f20b2e8a-36d9-4d0a-bcb0-12ce8026d581", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14131", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14131", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "aae2dfa8-71be-4df5-8ada-783d12198538", + "children": [] + } + ] + }, + { + "id": "4c09e3d5-6933-444c-8b7e-13bc6aa6316d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14132", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14132", + "browse_name": "Close", + "display_name": "Close", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "ea6df2f1-7354-4b92-8ea7-d30594ca775c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14133", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14133", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4c09e3d5-6933-444c-8b7e-13bc6aa6316d", + "children": [] + } + ] + }, + { + "id": "f1887d36-4a4e-4d0b-9212-2cacb0034e75", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14134", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14134", + "browse_name": "Read", + "display_name": "Read", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "a4f4b2ee-c946-4230-8b40-7d1b7d555187", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14136", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14136", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "f1887d36-4a4e-4d0b-9212-2cacb0034e75", + "children": [] + }, + { + "id": "fa373dc9-4c11-4144-abc1-3dcfcfecccd3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14135", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14135", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f1887d36-4a4e-4d0b-9212-2cacb0034e75", + "children": [] + } + ] + }, + { + "id": "e605176a-67e1-4a3f-90d8-60ebdcd8cf09", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14137", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14137", + "browse_name": "Write", + "display_name": "Write", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "8c64248d-5f6f-4070-b03c-951175798c32", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14138", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14138", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "e605176a-67e1-4a3f-90d8-60ebdcd8cf09", + "children": [] + } + ] + }, + { + "id": "4514f686-2b2e-4f11-99ed-db1a44f3a2cc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14139", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14139", + "browse_name": "GetPosition", + "display_name": "GetPosition", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "c4982b78-833b-4941-a43b-ea7118385545", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14140", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14140", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4514f686-2b2e-4f11-99ed-db1a44f3a2cc", + "children": [] + }, + { + "id": "3c5a66cd-e21b-43ff-bcc7-d9d2d80c78f2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14141", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14141", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "4514f686-2b2e-4f11-99ed-db1a44f3a2cc", + "children": [] + } + ] + }, + { + "id": "addd045d-4888-49c3-8ad6-25e25787b1f5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14142", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14142", + "browse_name": "SetPosition", + "display_name": "SetPosition", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "21039b2b-ca5b-4155-8336-7ad538ba4bc8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14143", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14143", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "addd045d-4888-49c3-8ad6-25e25787b1f5", + "children": [] + } + ] + }, + { + "id": "b575b29d-5e79-49c4-8905-0801740441ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14145", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14145", + "browse_name": "OpenWithMasks", + "display_name": "OpenWithMasks", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "cc1dac82-3f06-4594-af98-c75476f9ec64", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14147", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14147", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "b575b29d-5e79-49c4-8905-0801740441ee", + "children": [] + }, + { + "id": "207ba287-be0e-4a31-a679-a4e1db970c49", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14146", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14146", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "b575b29d-5e79-49c4-8905-0801740441ee", + "children": [] + } + ] + }, + { + "id": "db36a518-270d-43f1-adc5-6423b21dce3c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14148", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14148", + "browse_name": "CloseAndUpdate", + "display_name": "CloseAndUpdate", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "4e48fa8e-38d7-47b0-9595-a776a38b04dc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14149", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14149", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "db36a518-270d-43f1-adc5-6423b21dce3c", + "children": [] + }, + { + "id": "d70f1138-aa0c-40fd-aefc-6f24efb36a39", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14150", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14150", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "db36a518-270d-43f1-adc5-6423b21dce3c", + "children": [] + } + ] + }, + { + "id": "c103eafc-65a4-4c56-9312-ed1467a5e957", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14151", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14151", + "browse_name": "AddCertificate", + "display_name": "AddCertificate", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "57bb40b3-6c4b-4319-9fca-e67bdf2cde46", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14152", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14152", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c103eafc-65a4-4c56-9312-ed1467a5e957", + "children": [] + } + ] + }, + { + "id": "bdf18b7c-9a55-4304-a827-187a4ebb2a04", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14153", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14153", + "browse_name": "RemoveCertificate", + "display_name": "RemoveCertificate", + "node_class": "Method", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [ + { + "id": "4cf5e4d8-2e37-4c31-a8bc-1ab188635b61", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14154", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14154", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "bdf18b7c-9a55-4304-a827-187a4ebb2a04", + "children": [] + } + ] + }, + { + "id": "a2b1123f-f0b7-4cde-9c0d-f9c326b10494", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14127", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14127", + "browse_name": "OpenCount", + "display_name": "OpenCount", + "node_class": "Variable", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [] + }, + { + "id": "27e6d67e-904e-4486-86fc-fbdc4398c2a3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14124", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14124", + "browse_name": "Size", + "display_name": "Size", + "node_class": "Variable", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [] + }, + { + "id": "4964ac9f-8c63-46f7-87c0-947c4e745ad6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14125", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14125", + "browse_name": "Writable", + "display_name": "Writable", + "node_class": "Variable", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [] + }, + { + "id": "be80d8ef-2020-4eb2-8569-2bc60191ed0d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14126", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14126", + "browse_name": "UserWritable", + "display_name": "UserWritable", + "node_class": "Variable", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [] + }, + { + "id": "530a4098-f7b6-4bf4-bdec-31ad24e32c0c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14144", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14144", + "browse_name": "LastUpdateTime", + "display_name": "LastUpdateTime", + "node_class": "Variable", + "parent_id": "864b3607-e8f3-413e-b59f-b8c38b5c08fe", + "children": [] + } + ] + }, + { + "id": "1d7eccf5-244a-4c04-a812-0299d163027c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14155", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14155", + "browse_name": "CertificateTypes", + "display_name": "CertificateTypes", + "node_class": "Variable", + "parent_id": "6e1ec63a-e3b6-4624-bc7a-68796a6c6833", + "children": [] + } + ] + }, + { + "id": "5e077e6f-7135-4d70-89bb-1bc7ed392cbe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14156", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14156", + "browse_name": "DefaultApplicationGroup", + "display_name": "DefaultApplicationGroup", + "node_class": "Object", + "parent_id": "57c10467-53f5-4078-b7f7-d7e92e1b701c", + "children": [ + { + "id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12642", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12642", + "browse_name": "TrustList", + "display_name": "TrustList", + "node_class": "Object", + "parent_id": "5e077e6f-7135-4d70-89bb-1bc7ed392cbe", + "children": [ + { + "id": "da0a19cd-656c-44f1-bfba-b0a2ba27a363", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12647", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12647", + "browse_name": "Open", + "display_name": "Open", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "1048563b-91e5-4c93-89e6-4b4813005dce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12648", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12648", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "da0a19cd-656c-44f1-bfba-b0a2ba27a363", + "children": [] + }, + { + "id": "5f5db4bb-434f-4522-b2a9-d5a9d9e10b14", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12649", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12649", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "da0a19cd-656c-44f1-bfba-b0a2ba27a363", + "children": [] + } + ] + }, + { + "id": "1b9bbfbc-eba3-4ec8-ad97-578bfa5bfa73", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12650", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12650", + "browse_name": "Close", + "display_name": "Close", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "d5810bbb-636e-402a-947b-70ecbe4574d0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12651", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12651", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "1b9bbfbc-eba3-4ec8-ad97-578bfa5bfa73", + "children": [] + } + ] + }, + { + "id": "f00f06b1-efe5-4ce2-b047-00b890fe01d1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12652", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12652", + "browse_name": "Read", + "display_name": "Read", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "4beed3b1-67fc-4bc2-b65e-a73c062a35ec", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12653", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12653", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f00f06b1-efe5-4ce2-b047-00b890fe01d1", + "children": [] + }, + { + "id": "ae4198a4-0f01-4de7-968c-913c923d75f7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12654", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12654", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "f00f06b1-efe5-4ce2-b047-00b890fe01d1", + "children": [] + } + ] + }, + { + "id": "339314c5-7679-4e65-b3f5-cfaa485d9d07", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12655", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12655", + "browse_name": "Write", + "display_name": "Write", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "f097154a-b644-4008-9bcd-81f5908e6761", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12656", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12656", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "339314c5-7679-4e65-b3f5-cfaa485d9d07", + "children": [] + } + ] + }, + { + "id": "43526d96-48b9-41eb-9c73-bf4a90c0733e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12657", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12657", + "browse_name": "GetPosition", + "display_name": "GetPosition", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "d5e5ea37-798b-4ffe-b2f0-2a7043ef1a99", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12658", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12658", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "43526d96-48b9-41eb-9c73-bf4a90c0733e", + "children": [] + }, + { + "id": "8b573c82-d33d-44cc-a71f-6759b952e367", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12659", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12659", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "43526d96-48b9-41eb-9c73-bf4a90c0733e", + "children": [] + } + ] + }, + { + "id": "5e23790e-9997-4842-9307-ff624f214ae6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12660", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12660", + "browse_name": "SetPosition", + "display_name": "SetPosition", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "0792a1c0-2d6e-4188-8ae4-4fbc749cedf1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12661", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12661", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "5e23790e-9997-4842-9307-ff624f214ae6", + "children": [] + } + ] + }, + { + "id": "270eaef7-1adf-4bc5-b0fe-cf789f668e68", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12663", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12663", + "browse_name": "OpenWithMasks", + "display_name": "OpenWithMasks", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "3ea4f32e-4299-41d1-8c2b-5173c51aa19e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12665", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12665", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "270eaef7-1adf-4bc5-b0fe-cf789f668e68", + "children": [] + }, + { + "id": "5a4070bb-1349-4c7a-80a7-2d48ec6c7fa8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12664", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12664", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "270eaef7-1adf-4bc5-b0fe-cf789f668e68", + "children": [] + } + ] + }, + { + "id": "695486ea-bf4d-459f-9fde-159c1ac5f85c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12666", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12666", + "browse_name": "CloseAndUpdate", + "display_name": "CloseAndUpdate", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "0ee0e4b6-8c61-4590-ba28-9bb2d455903d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14160", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14160", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "695486ea-bf4d-459f-9fde-159c1ac5f85c", + "children": [] + }, + { + "id": "d26de283-4cc3-4007-ae4b-215ee8b39eae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12667", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12667", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "695486ea-bf4d-459f-9fde-159c1ac5f85c", + "children": [] + } + ] + }, + { + "id": "ca62818c-5a58-48e2-bdfa-564cbb0bea48", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12668", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12668", + "browse_name": "AddCertificate", + "display_name": "AddCertificate", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "62f5e810-ba28-4eed-ab11-3d232047acee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12669", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12669", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "ca62818c-5a58-48e2-bdfa-564cbb0bea48", + "children": [] + } + ] + }, + { + "id": "7347d58f-6d1f-4a1b-8d59-3e90fac5201e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12670", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12670", + "browse_name": "RemoveCertificate", + "display_name": "RemoveCertificate", + "node_class": "Method", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [ + { + "id": "3284497a-af87-47ed-baa1-69b54222f4c5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12671", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12671", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "7347d58f-6d1f-4a1b-8d59-3e90fac5201e", + "children": [] + } + ] + }, + { + "id": "d8fe4d77-9124-4f88-be93-616baeb47646", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12646", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12646", + "browse_name": "OpenCount", + "display_name": "OpenCount", + "node_class": "Variable", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [] + }, + { + "id": "9fd6ca2e-69ff-4168-9efa-683fd3cb7741", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12643", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12643", + "browse_name": "Size", + "display_name": "Size", + "node_class": "Variable", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [] + }, + { + "id": "ccee4f9f-63d7-417c-ae5a-a61bea6fe806", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14158", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14158", + "browse_name": "UserWritable", + "display_name": "UserWritable", + "node_class": "Variable", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [] + }, + { + "id": "dcd19c21-3b70-47d4-b20e-a7c8ba88f444", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14157", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14157", + "browse_name": "Writable", + "display_name": "Writable", + "node_class": "Variable", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [] + }, + { + "id": "fdc3c4d8-38e3-4508-8df0-1dea373e1dbf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12662", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12662", + "browse_name": "LastUpdateTime", + "display_name": "LastUpdateTime", + "node_class": "Variable", + "parent_id": "c148569b-c2f5-4df8-9810-58fadc8a49db", + "children": [] + } + ] + }, + { + "id": "f839b1b9-8872-4c1e-b393-b8817edddbba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14161", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14161", + "browse_name": "CertificateTypes", + "display_name": "CertificateTypes", + "node_class": "Variable", + "parent_id": "5e077e6f-7135-4d70-89bb-1bc7ed392cbe", + "children": [] + } + ] + } + ] + }, + { + "id": "18200eae-a659-4a1e-b8a5-bc9c8cd890cb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17732", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17732", + "browse_name": "AuthorizationServices", + "display_name": "AuthorizationServices", + "node_class": "Object", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "aaf6e405-b9f5-4e54-90d6-d2064b524250", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18155", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18155", + "browse_name": "KeyCredentialConfiguration", + "display_name": "KeyCredentialConfiguration", + "node_class": "Object", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "248409f7-5342-4836-a959-e5f6f298d06c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17528", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17528", + "browse_name": "CreateCredential", + "display_name": "CreateCredential", + "node_class": "Method", + "parent_id": "aaf6e405-b9f5-4e54-90d6-d2064b524250", + "children": [ + { + "id": "dbd314b6-de16-4a40-86ec-39663023b5b7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17529", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17529", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "248409f7-5342-4836-a959-e5f6f298d06c", + "children": [] + }, + { + "id": "ef7f0340-9248-456b-a139-b7dfede5c26c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17530", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17530", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "248409f7-5342-4836-a959-e5f6f298d06c", + "children": [] + } + ] + } + ] + }, + { + "id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24290", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24290", + "browse_name": "UserManagement", + "display_name": "UserManagement", + "node_class": "Object", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "76e7b557-d9a9-4d43-a15a-e8afd55d449b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24304", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24304", + "browse_name": "AddUser", + "display_name": "AddUser", + "node_class": "Method", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [ + { + "id": "1f88a26a-9d20-4e2b-a63b-6fceae976453", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24305", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24305", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "76e7b557-d9a9-4d43-a15a-e8afd55d449b", + "children": [] + } + ] + }, + { + "id": "c1734cfd-d901-43a2-8407-44f153341b26", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24306", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24306", + "browse_name": "ModifyUser", + "display_name": "ModifyUser", + "node_class": "Method", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [ + { + "id": "fca6c30f-7e31-4d2d-9801-3c7c94210b3b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24307", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24307", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c1734cfd-d901-43a2-8407-44f153341b26", + "children": [] + } + ] + }, + { + "id": "8df3ea22-5d55-4ed8-9834-b8019e643567", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24308", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24308", + "browse_name": "RemoveUser", + "display_name": "RemoveUser", + "node_class": "Method", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [ + { + "id": "896128de-1aeb-4098-bdc8-b69107d46a50", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24309", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24309", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "8df3ea22-5d55-4ed8-9834-b8019e643567", + "children": [] + } + ] + }, + { + "id": "7b3a1c90-29dc-4050-b6e5-68c5034fcddf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24310", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24310", + "browse_name": "ChangePassword", + "display_name": "ChangePassword", + "node_class": "Method", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [ + { + "id": "7c3f5f38-7fc0-475b-813f-b671e89c1ad9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24311", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24311", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "7b3a1c90-29dc-4050-b6e5-68c5034fcddf", + "children": [] + } + ] + }, + { + "id": "82842efe-158d-4799-85b3-7dbd04084d60", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24301", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24301", + "browse_name": "Users", + "display_name": "Users", + "node_class": "Variable", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [] + }, + { + "id": "159fa303-9633-441a-9208-7601ce6f9fe8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24303", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24303", + "browse_name": "PasswordOptions", + "display_name": "PasswordOptions", + "node_class": "Variable", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [] + }, + { + "id": "b39581b3-6411-4e84-93d6-85f7d3577688", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24302", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24302", + "browse_name": "PasswordLength", + "display_name": "PasswordLength", + "node_class": "Variable", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [] + }, + { + "id": "d05a8b78-1861-48bc-baa9-bec13859932a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24291", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24291", + "browse_name": "PasswordRestrictions", + "display_name": "PasswordRestrictions", + "node_class": "Variable", + "parent_id": "a8cef5e8-6690-45c8-bf65-f06096288ab7", + "children": [] + } + ] + }, + { + "id": "fd93978b-6371-4e1c-84ac-8570fe321d1f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25708", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25708", + "browse_name": "CancelChanges", + "display_name": "CancelChanges", + "node_class": "Method", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "f206c1ac-f204-4d1c-b7c1-dfcc10e18cba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25709", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25709", + "browse_name": "ResetToServerDefaults", + "display_name": "ResetToServerDefaults", + "node_class": "Method", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32336", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32336", + "browse_name": "TransactionDiagnostics", + "display_name": "TransactionDiagnostics", + "node_class": "Object", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [ + { + "id": "80130936-b9a7-4a17-8288-94c11ca603f6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32341", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32341", + "browse_name": "AffectedCertificateGroups", + "display_name": "AffectedCertificateGroups", + "node_class": "Variable", + "parent_id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "children": [] + }, + { + "id": "d39fa8aa-26e9-4e78-8239-497b3a5142e8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32342", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32342", + "browse_name": "Errors", + "display_name": "Errors", + "node_class": "Variable", + "parent_id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "children": [] + }, + { + "id": "9c9e9434-482b-48d8-8b15-c43cf7b4ccef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32339", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32339", + "browse_name": "Result", + "display_name": "Result", + "node_class": "Variable", + "parent_id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "children": [] + }, + { + "id": "9d3671f8-a686-4896-a627-414296a43fec", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32340", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32340", + "browse_name": "AffectedTrustLists", + "display_name": "AffectedTrustLists", + "node_class": "Variable", + "parent_id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "children": [] + }, + { + "id": "c0e830e1-77c0-4865-ac13-ba700dcab909", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32338", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32338", + "browse_name": "EndTime", + "display_name": "EndTime", + "node_class": "Variable", + "parent_id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "children": [] + }, + { + "id": "683ea806-62cb-47ac-a6ca-fd627f7698f8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32337", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32337", + "browse_name": "StartTime", + "display_name": "StartTime", + "node_class": "Variable", + "parent_id": "0583395f-ecb2-483e-9961-f7bf6c566750", + "children": [] + } + ] + }, + { + "id": "b7c46f9e-ac24-493a-b884-19765f7ed1ea", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25707", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25707", + "browse_name": "ApplicationType", + "display_name": "ApplicationType", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "292202ef-4e05-40ce-a9cb-5b5486cd5c53", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12710", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12710", + "browse_name": "ServerCapabilities", + "display_name": "ServerCapabilities", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "a5f78197-95e9-4276-957d-68cf4441c729", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25725", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25725", + "browse_name": "ProductUri", + "display_name": "ProductUri", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "e18b2035-e582-417f-b527-270feb7bfe27", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12640", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12640", + "browse_name": "MaxTrustListSize", + "display_name": "MaxTrustListSize", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "ddfb239c-0094-4078-890d-d9d73e5b62c3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23597", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23597", + "browse_name": "HasSecureElement", + "display_name": "HasSecureElement", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "10e32351-29ef-44eb-800c-747162d0fa03", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12641", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12641", + "browse_name": "MulticastDnsEnabled", + "display_name": "MulticastDnsEnabled", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "0b088a84-d6c0-4a37-8405-295d04cb4858", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25706", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25706", + "browse_name": "ApplicationUri", + "display_name": "ApplicationUri", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + }, + { + "id": "0f54d83c-90c3-4285-9b47-e1841a62493c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12639", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12639", + "browse_name": "SupportedPrivateKeyFormats", + "display_name": "SupportedPrivateKeyFormats", + "node_class": "Variable", + "parent_id": "8e24b9d7-3dd5-40ad-aec3-adebf191f909", + "children": [] + } + ] + }, + { + "id": "c7220e27-4074-490b-ab97-5cdb93e4e18c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12749", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12749", + "browse_name": "SetSubscriptionDurable", + "display_name": "SetSubscriptionDurable", + "node_class": "Method", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "0fcb08db-79b1-4504-98ee-ec0d8f0a1eca", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12751", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12751", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "c7220e27-4074-490b-ab97-5cdb93e4e18c", + "children": [] + }, + { + "id": "6d45562f-2d00-4733-9438-411ebf0e6918", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12750", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12750", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c7220e27-4074-490b-ab97-5cdb93e4e18c", + "children": [] + } + ] + }, + { + "id": "e7b9ad96-88f1-4a0a-b2f9-0a9b9b6c80a0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12873", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12873", + "browse_name": "ResendData", + "display_name": "ResendData", + "node_class": "Method", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "cb6f549e-ba94-423c-aa35-ce14d60aa18f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12874", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12874", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "e7b9ad96-88f1-4a0a-b2f9-0a9b9b6c80a0", + "children": [] + } + ] + }, + { + "id": "03877add-6444-4f33-b25d-83cca97b4d31", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12886", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12886", + "browse_name": "RequestServerStateChange", + "display_name": "RequestServerStateChange", + "node_class": "Method", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "b662ca24-629f-4fce-93c4-59bb75da0dc6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12887", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12887", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "03877add-6444-4f33-b25d-83cca97b4d31", + "children": [] + } + ] + }, + { + "id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=14443", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "14443", + "browse_name": "PublishSubscribe", + "display_name": "PublishSubscribe", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "1a31f074-5797-45a9-bef3-71430689287a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15215", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15215", + "browse_name": "GetSecurityKeys", + "display_name": "GetSecurityKeys", + "node_class": "Method", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "50e0fa55-79ae-494e-9155-3055f8f4ac2d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15216", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15216", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "1a31f074-5797-45a9-bef3-71430689287a", + "children": [] + }, + { + "id": "31d93b90-5bdf-426d-8db2-aa151ad5253a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15217", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15217", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "1a31f074-5797-45a9-bef3-71430689287a", + "children": [] + } + ] + }, + { + "id": "6527c340-2126-40b2-a2e2-e0e17b1acf82", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15440", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15440", + "browse_name": "GetSecurityGroup", + "display_name": "GetSecurityGroup", + "node_class": "Method", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "48c863be-ab9b-4336-b9ed-3d9042bbc506", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15441", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15441", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "6527c340-2126-40b2-a2e2-e0e17b1acf82", + "children": [] + }, + { + "id": "93aa6df4-5f89-4b25-9b8f-86f0276902e4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15442", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15442", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "6527c340-2126-40b2-a2e2-e0e17b1acf82", + "children": [] + } + ] + }, + { + "id": "96018dfb-6811-4b02-91cd-c272500e57f1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15443", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15443", + "browse_name": "SecurityGroups", + "display_name": "SecurityGroups", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "bb0a5939-df20-4fce-a605-578ae271d5fa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15444", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15444", + "browse_name": "AddSecurityGroup", + "display_name": "AddSecurityGroup", + "node_class": "Method", + "parent_id": "96018dfb-6811-4b02-91cd-c272500e57f1", + "children": [ + { + "id": "e2bbdf33-9dfe-4db2-b32d-a83feb515de0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15446", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15446", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "bb0a5939-df20-4fce-a605-578ae271d5fa", + "children": [] + }, + { + "id": "6981a469-de54-46df-946d-78460d5bb1e4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15445", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15445", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "bb0a5939-df20-4fce-a605-578ae271d5fa", + "children": [] + } + ] + }, + { + "id": "08a64db4-cb93-4252-ada5-bf1d1f3b5980", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15447", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15447", + "browse_name": "RemoveSecurityGroup", + "display_name": "RemoveSecurityGroup", + "node_class": "Method", + "parent_id": "96018dfb-6811-4b02-91cd-c272500e57f1", + "children": [ + { + "id": "c71c20d2-3269-4d31-ad5d-6fb8b4a92cd5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15448", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15448", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "08a64db4-cb93-4252-ada5-bf1d1f3b5980", + "children": [] + } + ] + } + ] + }, + { + "id": "04f25aeb-644f-4b5a-af9a-d483d8b51b2b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17364", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17364", + "browse_name": "SetSecurityKeys", + "display_name": "SetSecurityKeys", + "node_class": "Method", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "aaa6e2be-dc53-4f3e-a1b3-e27c18296d7e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17365", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17365", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "04f25aeb-644f-4b5a-af9a-d483d8b51b2b", + "children": [] + } + ] + }, + { + "id": "f1f6a231-29f8-43ec-815b-a351fcb8323f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17366", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17366", + "browse_name": "AddConnection", + "display_name": "AddConnection", + "node_class": "Method", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "55a9123f-a405-48a8-ae08-b014394172ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17368", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17368", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "f1f6a231-29f8-43ec-815b-a351fcb8323f", + "children": [] + }, + { + "id": "25dfc921-609a-4cb8-ab53-9763ebcea9fe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17367", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17367", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f1f6a231-29f8-43ec-815b-a351fcb8323f", + "children": [] + } + ] + }, + { + "id": "5f99d42b-a11d-4078-846e-051f5c2b4dcb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17369", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17369", + "browse_name": "RemoveConnection", + "display_name": "RemoveConnection", + "node_class": "Method", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "4c23da8a-1a73-481f-9388-d9c023fa91cf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17370", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17370", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "5f99d42b-a11d-4078-846e-051f5c2b4dcb", + "children": [] + } + ] + }, + { + "id": "20346c01-0eb7-4a23-b8f7-d7e3ff8c7561", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17371", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17371", + "browse_name": "PublishedDataSets", + "display_name": "PublishedDataSets", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "0547e468-e9eb-4407-ad8e-78cd7f3668e4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17405", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17405", + "browse_name": "Status", + "display_name": "Status", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "8d3efc1c-996e-496a-b801-3ab658300a78", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17406", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17406", + "browse_name": "State", + "display_name": "State", + "node_class": "Variable", + "parent_id": "0547e468-e9eb-4407-ad8e-78cd7f3668e4", + "children": [] + } + ] + }, + { + "id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17409", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17409", + "browse_name": "Diagnostics", + "display_name": "Diagnostics", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "ba9a3e1c-55b0-42a6-a4a8-86818602613e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17410", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17410", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [] + }, + { + "id": "0edeb408-ff84-4601-82e4-8083ee246de0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17411", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17411", + "browse_name": "TotalInformation", + "display_name": "TotalInformation", + "node_class": "Variable", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [ + { + "id": "2da811b9-8c2a-4874-9141-69a7a33cb80b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17414", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17414", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "0edeb408-ff84-4601-82e4-8083ee246de0", + "children": [] + }, + { + "id": "604d353a-daab-46bb-bc8d-58f7a0a733a3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17412", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17412", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "0edeb408-ff84-4601-82e4-8083ee246de0", + "children": [] + }, + { + "id": "92615bff-1c08-4bab-b604-27db4c8ee356", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17413", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17413", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "0edeb408-ff84-4601-82e4-8083ee246de0", + "children": [] + } + ] + }, + { + "id": "ad580d7e-ed66-43ec-b13b-511977405e2b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17416", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17416", + "browse_name": "TotalError", + "display_name": "TotalError", + "node_class": "Variable", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [ + { + "id": "06486282-38c1-40e5-929a-7fa981a2d9be", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17419", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17419", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "ad580d7e-ed66-43ec-b13b-511977405e2b", + "children": [] + }, + { + "id": "77054f9c-a342-4086-acb1-a76e5217bfa7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17417", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17417", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "ad580d7e-ed66-43ec-b13b-511977405e2b", + "children": [] + }, + { + "id": "7270a17b-e3ea-4eab-b38d-f1540e948b5b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17418", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17418", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "ad580d7e-ed66-43ec-b13b-511977405e2b", + "children": [] + } + ] + }, + { + "id": "13445079-2a3e-4d8d-a22e-e5d6ecffec97", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17421", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17421", + "browse_name": "Reset", + "display_name": "Reset", + "node_class": "Method", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [] + }, + { + "id": "99c82cd4-70a0-4b20-bc6b-c934fb9c5e62", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17422", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17422", + "browse_name": "SubError", + "display_name": "SubError", + "node_class": "Variable", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [] + }, + { + "id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17423", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17423", + "browse_name": "Counters", + "display_name": "Counters", + "node_class": "Object", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [ + { + "id": "1ba68a86-5734-4e65-aebe-a4d1a2e533f3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17424", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17424", + "browse_name": "StateError", + "display_name": "StateError", + "node_class": "Variable", + "parent_id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "children": [ + { + "id": "f8e720ca-e82d-4793-95bc-ac7a8eb8a737", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17429", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17429", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "1ba68a86-5734-4e65-aebe-a4d1a2e533f3", + "children": [] + }, + { + "id": "b68651a2-c5c6-44b1-8119-240202e71c03", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17425", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17425", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "1ba68a86-5734-4e65-aebe-a4d1a2e533f3", + "children": [] + }, + { + "id": "7064b248-4d60-4fec-9501-9048df90376e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17426", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17426", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "1ba68a86-5734-4e65-aebe-a4d1a2e533f3", + "children": [] + } + ] + }, + { + "id": "4ad6dc6d-a4ae-4e7b-b904-623f9867d5d6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17431", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17431", + "browse_name": "StateOperationalByMethod", + "display_name": "StateOperationalByMethod", + "node_class": "Variable", + "parent_id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "children": [ + { + "id": "698a8fda-5283-4d0c-aeaa-c96c03deea58", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17432", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17432", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "4ad6dc6d-a4ae-4e7b-b904-623f9867d5d6", + "children": [] + }, + { + "id": "98cfb8a7-4702-4bcf-9aa5-700139b5b7df", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17434", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17434", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "4ad6dc6d-a4ae-4e7b-b904-623f9867d5d6", + "children": [] + }, + { + "id": "2c0397ce-44d6-4e57-b2c9-4b4dcbc1b025", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17433", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17433", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "4ad6dc6d-a4ae-4e7b-b904-623f9867d5d6", + "children": [] + } + ] + }, + { + "id": "818ac040-938f-4e5c-a465-4ea3f39c0304", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17436", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17436", + "browse_name": "StateOperationalByParent", + "display_name": "StateOperationalByParent", + "node_class": "Variable", + "parent_id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "children": [ + { + "id": "4c401421-e7fb-43fb-8418-f4502c5e540a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17439", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17439", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "818ac040-938f-4e5c-a465-4ea3f39c0304", + "children": [] + }, + { + "id": "4783a4e1-f858-45b6-8d13-fcfedbb47fca", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17437", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17437", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "818ac040-938f-4e5c-a465-4ea3f39c0304", + "children": [] + }, + { + "id": "b47a6f7f-f036-4311-bf86-0ae0f74a880c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17438", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17438", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "818ac040-938f-4e5c-a465-4ea3f39c0304", + "children": [] + } + ] + }, + { + "id": "2b8ac743-4fb9-4518-958e-a4ceecf0fd38", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17441", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17441", + "browse_name": "StateOperationalFromError", + "display_name": "StateOperationalFromError", + "node_class": "Variable", + "parent_id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "children": [ + { + "id": "c1fffd1d-3650-4e10-91a5-5a2ea7691f05", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17444", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17444", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "2b8ac743-4fb9-4518-958e-a4ceecf0fd38", + "children": [] + }, + { + "id": "21e72c73-c16e-47b3-80db-0a3679a2e8c1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17442", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17442", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "2b8ac743-4fb9-4518-958e-a4ceecf0fd38", + "children": [] + }, + { + "id": "302fb54b-913c-4020-9ff6-3fe9c888a8a9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17443", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17443", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "2b8ac743-4fb9-4518-958e-a4ceecf0fd38", + "children": [] + } + ] + }, + { + "id": "5ac9d8c1-999d-433d-9285-37e6e0992dbd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17446", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17446", + "browse_name": "StatePausedByParent", + "display_name": "StatePausedByParent", + "node_class": "Variable", + "parent_id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "children": [ + { + "id": "fd1bb737-2cdc-4a94-b390-71b827cdad68", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17447", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17447", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "5ac9d8c1-999d-433d-9285-37e6e0992dbd", + "children": [] + }, + { + "id": "9f7388bd-8fb7-44cb-82ec-d74321125b9b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17449", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17449", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "5ac9d8c1-999d-433d-9285-37e6e0992dbd", + "children": [] + }, + { + "id": "33425559-60d4-47c3-a3ff-47326cbcf4e2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17448", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17448", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "5ac9d8c1-999d-433d-9285-37e6e0992dbd", + "children": [] + } + ] + }, + { + "id": "dcfd4feb-b6ba-4ab5-ab39-d85218c3d535", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17451", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17451", + "browse_name": "StateDisabledByMethod", + "display_name": "StateDisabledByMethod", + "node_class": "Variable", + "parent_id": "e514b1ad-c110-4ec9-87c4-808a916c9611", + "children": [ + { + "id": "533246e5-deed-4231-b8fc-47ad25bec716", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17454", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17454", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "dcfd4feb-b6ba-4ab5-ab39-d85218c3d535", + "children": [] + }, + { + "id": "a25d2bfa-7804-4b7c-800b-2fa6635ff013", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17452", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17452", + "browse_name": "Active", + "display_name": "Active", + "node_class": "Variable", + "parent_id": "dcfd4feb-b6ba-4ab5-ab39-d85218c3d535", + "children": [] + }, + { + "id": "ac4cd67d-28c9-4d41-b595-e36c3060a0c4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17453", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17453", + "browse_name": "Classification", + "display_name": "Classification", + "node_class": "Variable", + "parent_id": "dcfd4feb-b6ba-4ab5-ab39-d85218c3d535", + "children": [] + } + ] + } + ] + }, + { + "id": "8c62abdb-1fab-4934-982c-44b6656bab07", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17457", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17457", + "browse_name": "LiveValues", + "display_name": "LiveValues", + "node_class": "Object", + "parent_id": "da533093-9d34-4ecd-afd9-59cffa28ed22", + "children": [ + { + "id": "fccc3251-7345-40e1-aa10-91c59c1a5aa6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17458", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17458", + "browse_name": "ConfiguredDataSetWriters", + "display_name": "ConfiguredDataSetWriters", + "node_class": "Variable", + "parent_id": "8c62abdb-1fab-4934-982c-44b6656bab07", + "children": [ + { + "id": "4d3bfb93-307e-4ad7-b3c0-1abae0e2e0a3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17459", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17459", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "fccc3251-7345-40e1-aa10-91c59c1a5aa6", + "children": [] + } + ] + }, + { + "id": "d8f2b779-c25f-43e5-89cb-933987db4f25", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17460", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17460", + "browse_name": "ConfiguredDataSetReaders", + "display_name": "ConfiguredDataSetReaders", + "node_class": "Variable", + "parent_id": "8c62abdb-1fab-4934-982c-44b6656bab07", + "children": [ + { + "id": "6d0d1658-642d-4cd5-bad2-1937887192f1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17461", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17461", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "d8f2b779-c25f-43e5-89cb-933987db4f25", + "children": [] + } + ] + }, + { + "id": "62f9b07c-5474-433f-a1b5-60607acb8f82", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17462", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17462", + "browse_name": "OperationalDataSetWriters", + "display_name": "OperationalDataSetWriters", + "node_class": "Variable", + "parent_id": "8c62abdb-1fab-4934-982c-44b6656bab07", + "children": [ + { + "id": "b970a919-7eab-4b6e-b5a5-e06a10f0bcce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17463", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17463", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "62f9b07c-5474-433f-a1b5-60607acb8f82", + "children": [] + } + ] + }, + { + "id": "1387b361-b9f7-464a-8bcc-97e143fd3bcd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17464", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17464", + "browse_name": "OperationalDataSetReaders", + "display_name": "OperationalDataSetReaders", + "node_class": "Variable", + "parent_id": "8c62abdb-1fab-4934-982c-44b6656bab07", + "children": [ + { + "id": "110bce15-28f9-483e-8b45-6e17f6c10347", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17466", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17466", + "browse_name": "DiagnosticsLevel", + "display_name": "DiagnosticsLevel", + "node_class": "Variable", + "parent_id": "1387b361-b9f7-464a-8bcc-97e143fd3bcd", + "children": [] + } + ] + } + ] + } + ] + }, + { + "id": "43192585-33b2-45e9-8bd5-ed8210ad560b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23658", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23658", + "browse_name": "SubscribedDataSets", + "display_name": "SubscribedDataSets", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "f40ae487-f684-4de1-b81f-767a77104726", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23678", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23678", + "browse_name": "PubSubCapablities", + "display_name": "PubSubCapabilities", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "2dafae59-90c7-4297-a804-6f45003d506c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32401", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32401", + "browse_name": "SupportSecurityKeyPull", + "display_name": "SupportSecurityKeyPull", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "f996e348-1c97-439e-94d5-714d93a9eaf6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32398", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32398", + "browse_name": "MaxDataSetWritersPerGroup", + "display_name": "MaxDataSetWritersPerGroup", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "81a32e33-f745-41e7-befa-93f86fa10894", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23684", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23684", + "browse_name": "MaxFieldsPerDataSet", + "display_name": "MaxFieldsPerDataSet", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "326a9607-bea4-4072-9e39-7d0a392f9992", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23679", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23679", + "browse_name": "MaxPubSubConnections", + "display_name": "MaxPubSubConnections", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "396c2d8b-4b71-4a69-9f39-d645d1e3c08e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23683", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23683", + "browse_name": "MaxDataSetReaders", + "display_name": "MaxDataSetReaders", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "20e223c3-b54c-4dba-bc1b-6f65adcfdc04", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32841", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32841", + "browse_name": "MaxPublishedDataSets", + "display_name": "MaxPublishedDataSets", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "62d705c0-92a4-4632-b5b8-c69d5f780ec7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32842", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32842", + "browse_name": "MaxStandaloneSubscribedDataSets", + "display_name": "MaxStandaloneSubscribedDataSets", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "6b7e1bd4-3889-4c45-be44-e4c0503b3dd9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32400", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32400", + "browse_name": "MaxNetworkMessageSizeBroker", + "display_name": "MaxNetworkMessageSizeBroker", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "8fde0a96-987c-4981-945a-688c21e231d8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32399", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32399", + "browse_name": "MaxNetworkMessageSizeDatagram", + "display_name": "MaxNetworkMessageSizeDatagram", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "bbf6db8d-b48f-4f93-a578-042ea469226c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32839", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32839", + "browse_name": "MaxSecurityGroups", + "display_name": "MaxSecurityGroups", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "553d68fd-13b5-41a7-8056-1aa67b852040", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32840", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32840", + "browse_name": "MaxPushTargets", + "display_name": "MaxPushTargets", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "2290bf0e-7644-48bb-93ad-061632eeaa61", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23682", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23682", + "browse_name": "MaxDataSetWriters", + "display_name": "MaxDataSetWriters", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "601146c8-f9e1-43b5-abd6-464b2632dd1c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32402", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32402", + "browse_name": "SupportSecurityKeyPush", + "display_name": "SupportSecurityKeyPush", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "7068f932-4366-4782-b051-d8817662d502", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32843", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32843", + "browse_name": "SupportSecurityKeyServer", + "display_name": "SupportSecurityKeyServer", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "5bc0fb20-35a1-49d2-b3a2-894e8f9fa34c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23680", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23680", + "browse_name": "MaxWriterGroups", + "display_name": "MaxWriterGroups", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + }, + { + "id": "4e4c1d34-9ce2-49b4-b4ee-477b712c86f6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23681", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23681", + "browse_name": "MaxReaderGroups", + "display_name": "MaxReaderGroups", + "node_class": "Variable", + "parent_id": "f40ae487-f684-4de1-b81f-767a77104726", + "children": [] + } + ] + }, + { + "id": "b2063f94-5d42-4bef-a4e9-64e728f77313", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23685", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23685", + "browse_name": "DataSetClasses", + "display_name": "DataSetClasses", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "eefe9e7b-73d1-4813-8458-a9efbac2177b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25440", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25440", + "browse_name": "KeyPushTargets", + "display_name": "KeyPushTargets", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "57a2670e-6845-4613-81aa-53d9625c71de", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25441", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25441", + "browse_name": "AddPushTarget", + "display_name": "AddPushTarget", + "node_class": "Method", + "parent_id": "eefe9e7b-73d1-4813-8458-a9efbac2177b", + "children": [ + { + "id": "c31bd5a4-34cc-47a3-9a0b-bccb719bc1e1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25442", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25442", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "57a2670e-6845-4613-81aa-53d9625c71de", + "children": [] + }, + { + "id": "39e7a8fa-2f27-4b78-8fd9-0fb8f156ac0a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25443", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25443", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "57a2670e-6845-4613-81aa-53d9625c71de", + "children": [] + } + ] + }, + { + "id": "287c2707-4158-4891-a11f-e1ff3e2d0789", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25444", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25444", + "browse_name": "RemovePushTarget", + "display_name": "RemovePushTarget", + "node_class": "Method", + "parent_id": "eefe9e7b-73d1-4813-8458-a9efbac2177b", + "children": [ + { + "id": "1c8f884f-20ac-4803-b557-ceb4b3dda3bb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25445", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25445", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "287c2707-4158-4891-a11f-e1ff3e2d0789", + "children": [] + } + ] + } + ] + }, + { + "id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25451", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25451", + "browse_name": "PubSubConfiguration", + "display_name": "PubSubConfiguration", + "node_class": "Object", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [ + { + "id": "2f03bf8c-dcb2-4676-b2a0-905ce77dbbf3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25459", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25459", + "browse_name": "Open", + "display_name": "Open", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "52465a4a-14a0-49a3-a6d8-50c123864318", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25460", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25460", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "2f03bf8c-dcb2-4676-b2a0-905ce77dbbf3", + "children": [] + }, + { + "id": "5d5d1d27-a71e-4fdd-ad51-53f469f6af31", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25461", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25461", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "2f03bf8c-dcb2-4676-b2a0-905ce77dbbf3", + "children": [] + } + ] + }, + { + "id": "7b9aeda5-ba99-47f3-bb91-82ee4e87f548", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25462", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25462", + "browse_name": "Close", + "display_name": "Close", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "5f47474d-97f6-4260-a3d5-cb2e6cca4f3e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25463", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25463", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "7b9aeda5-ba99-47f3-bb91-82ee4e87f548", + "children": [] + } + ] + }, + { + "id": "1b79022a-9c2d-4d7e-9416-aa691a49e5be", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25464", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25464", + "browse_name": "Read", + "display_name": "Read", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "527bbc7c-21eb-419a-9b1d-8d6b066e72bc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25465", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25465", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "1b79022a-9c2d-4d7e-9416-aa691a49e5be", + "children": [] + }, + { + "id": "7493029e-33fd-45b7-87e3-9ce6e453d0cb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25466", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25466", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "1b79022a-9c2d-4d7e-9416-aa691a49e5be", + "children": [] + } + ] + }, + { + "id": "f4b2843e-5cc1-4d2b-a16e-148a90f9e13e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25467", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25467", + "browse_name": "Write", + "display_name": "Write", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "a54fb023-46db-456c-85ea-741cbd316b5e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25468", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25468", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f4b2843e-5cc1-4d2b-a16e-148a90f9e13e", + "children": [] + } + ] + }, + { + "id": "4acc5164-43d3-4749-a1fe-a4b5721b1edd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25469", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25469", + "browse_name": "GetPosition", + "display_name": "GetPosition", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "4bb0f664-3ff1-4ef0-ab31-707b5db44b68", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25471", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25471", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "4acc5164-43d3-4749-a1fe-a4b5721b1edd", + "children": [] + }, + { + "id": "2b69258c-640c-418e-a377-34a538916c9c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25470", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25470", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4acc5164-43d3-4749-a1fe-a4b5721b1edd", + "children": [] + } + ] + }, + { + "id": "c35c8b9b-974e-41db-bb83-2fc008719547", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25472", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25472", + "browse_name": "SetPosition", + "display_name": "SetPosition", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "55bc75ae-07cf-4186-9717-f7bc3c77ae0a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25473", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25473", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "c35c8b9b-974e-41db-bb83-2fc008719547", + "children": [] + } + ] + }, + { + "id": "79046594-de2d-4fe1-9912-7e09dfbe2cb9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25474", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25474", + "browse_name": "ReserveIds", + "display_name": "ReserveIds", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "290017fa-6d13-41af-956c-6db555c2c0ce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25476", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25476", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "79046594-de2d-4fe1-9912-7e09dfbe2cb9", + "children": [] + }, + { + "id": "bf691095-cc9e-4f15-8dc1-b586954bae49", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25475", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25475", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "79046594-de2d-4fe1-9912-7e09dfbe2cb9", + "children": [] + } + ] + }, + { + "id": "438ecb41-7081-42c9-8cbf-e8b4176aaeba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25477", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25477", + "browse_name": "CloseAndUpdate", + "display_name": "CloseAndUpdate", + "node_class": "Method", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [ + { + "id": "b530c15b-542d-43bf-a86c-60cccac314ec", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25478", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25478", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "438ecb41-7081-42c9-8cbf-e8b4176aaeba", + "children": [] + }, + { + "id": "60be55f1-67b8-43e7-aec7-4b06cec363ca", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25479", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25479", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "438ecb41-7081-42c9-8cbf-e8b4176aaeba", + "children": [] + } + ] + }, + { + "id": "d976ac34-169d-40f6-9fcb-eb1f6edb67b6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25455", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25455", + "browse_name": "OpenCount", + "display_name": "OpenCount", + "node_class": "Variable", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [] + }, + { + "id": "91cb74f3-2458-44a8-8d55-0176b44ce04f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25452", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25452", + "browse_name": "Size", + "display_name": "Size", + "node_class": "Variable", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [] + }, + { + "id": "1d8e9d58-3fbb-4ca5-8975-26b9da247edc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25454", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25454", + "browse_name": "UserWritable", + "display_name": "UserWritable", + "node_class": "Variable", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [] + }, + { + "id": "7d786ec0-d2ab-4f7f-9112-b7441c044f7e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25453", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25453", + "browse_name": "Writable", + "display_name": "Writable", + "node_class": "Variable", + "parent_id": "f3d3a04a-f173-45f1-99e1-831eee3b4b10", + "children": [] + } + ] + }, + { + "id": "96aa5abc-4642-4cc3-b6ff-feb057f86239", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25481", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25481", + "browse_name": "ConfigurationVersion", + "display_name": "ConfigurationVersion", + "node_class": "Variable", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "2ce13390-55b5-4539-ab02-b4c2ff18eaeb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=25480", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "25480", + "browse_name": "DefaultDatagramPublisherId", + "display_name": "DefaultDatagramPublisherId", + "node_class": "Variable", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "05d9afb1-0a77-413a-b5d2-d1ebba7e230a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17481", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17481", + "browse_name": "SupportedTransportProfiles", + "display_name": "SupportedTransportProfiles", + "node_class": "Variable", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "48093bc8-367b-4daa-afbc-65a46bae1707", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32404", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32404", + "browse_name": "ConfigurationProperties", + "display_name": "ConfigurationProperties", + "node_class": "Variable", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + }, + { + "id": "dd665c3d-196f-4e55-911a-6a6b9739a8ac", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32403", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32403", + "browse_name": "DefaultSecurityKeyServices", + "display_name": "DefaultSecurityKeyServices", + "node_class": "Variable", + "parent_id": "d33e6d2a-17d1-40ab-b69f-2c08bdc4d71e", + "children": [] + } + ] + }, + { + "id": "91603bef-8d69-43d4-be66-e29038c6a8c0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17594", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17594", + "browse_name": "Dictionaries", + "display_name": "Dictionaries", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "6a541ddf-1653-482f-b377-a085361891bd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24226", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24226", + "browse_name": "Resources", + "display_name": "Resources", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "d9a70980-3bbc-4c73-ac38-1cac637ff392", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=16706", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "16706", + "browse_name": "ManagedApplications", + "display_name": "ManagedApplications", + "node_class": "Object", + "parent_id": "6a541ddf-1653-482f-b377-a085361891bd", + "children": [] + }, + { + "id": "94d4acc9-124d-4343-9ebf-bd6f00b46248", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24227", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24227", + "browse_name": "Communication", + "display_name": "Communication", + "node_class": "Object", + "parent_id": "6a541ddf-1653-482f-b377-a085361891bd", + "children": [ + { + "id": "e63f80a9-4df4-4c13-861d-ccf42bbeb655", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18958", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18958", + "browse_name": "LLDP", + "display_name": "LLDP", + "node_class": "Object", + "parent_id": "94d4acc9-124d-4343-9ebf-bd6f00b46248", + "children": [ + { + "id": "b02cc006-06ec-49f7-b913-818281a6510b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18965", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18965", + "browse_name": "LocalSystemData", + "display_name": "LocalSystemData", + "node_class": "Object", + "parent_id": "e63f80a9-4df4-4c13-861d-ccf42bbeb655", + "children": [ + { + "id": "3cb7d453-e46a-4ee7-9d13-155ae4e5e03f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18969", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18969", + "browse_name": "SystemDescription", + "display_name": "SystemDescription", + "node_class": "Variable", + "parent_id": "b02cc006-06ec-49f7-b913-818281a6510b", + "children": [] + }, + { + "id": "1050a7ac-a099-4a8c-9a38-f489d920f522", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18966", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18966", + "browse_name": "ChassisIdSubtype", + "display_name": "ChassisIdSubtype", + "node_class": "Variable", + "parent_id": "b02cc006-06ec-49f7-b913-818281a6510b", + "children": [] + }, + { + "id": "ec23e9f5-e2e6-4636-9284-a45ec07e8b37", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18968", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18968", + "browse_name": "SystemName", + "display_name": "SystemName", + "node_class": "Variable", + "parent_id": "b02cc006-06ec-49f7-b913-818281a6510b", + "children": [] + }, + { + "id": "2093152d-b510-46e5-b4eb-0a1903745da4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18967", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18967", + "browse_name": "ChassisId", + "display_name": "ChassisId", + "node_class": "Variable", + "parent_id": "b02cc006-06ec-49f7-b913-818281a6510b", + "children": [] + } + ] + }, + { + "id": "789628d6-a231-44ad-8cec-ec2387dacac5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=18972", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "18972", + "browse_name": "Ports", + "display_name": "Ports", + "node_class": "Object", + "parent_id": "e63f80a9-4df4-4c13-861d-ccf42bbeb655", + "children": [] + } + ] + }, + { + "id": "c5a911a2-580f-49a2-926d-41204a34a0a7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24228", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24228", + "browse_name": "MappingTables", + "display_name": "MappingTables", + "node_class": "Object", + "parent_id": "94d4acc9-124d-4343-9ebf-bd6f00b46248", + "children": [] + }, + { + "id": "3dc5e396-f98d-46af-bdb9-b9c2eb8aafcc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24229", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24229", + "browse_name": "NetworkInterfaces", + "display_name": "NetworkInterfaces", + "node_class": "Object", + "parent_id": "94d4acc9-124d-4343-9ebf-bd6f00b46248", + "children": [] + }, + { + "id": "88afa4b0-71eb-408b-91a3-a1a4c739b283", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24230", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24230", + "browse_name": "Streams", + "display_name": "Streams", + "node_class": "Object", + "parent_id": "94d4acc9-124d-4343-9ebf-bd6f00b46248", + "children": [ + { + "id": "4098c0bd-1e73-44f7-a857-71b4e59e53b8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24231", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24231", + "browse_name": "TalkerStreams", + "display_name": "TalkerStreams", + "node_class": "Object", + "parent_id": "88afa4b0-71eb-408b-91a3-a1a4c739b283", + "children": [] + }, + { + "id": "27efa357-0aa4-4764-9e28-00045cf6e7b4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=24232", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "24232", + "browse_name": "ListenerStreams", + "display_name": "ListenerStreams", + "node_class": "Object", + "parent_id": "88afa4b0-71eb-408b-91a3-a1a4c739b283", + "children": [] + } + ] + } + ] + }, + { + "id": "5783c9bd-0d90-48b4-be8d-4da005c9637f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=29878", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "29878", + "browse_name": "ProvisionableDevice", + "display_name": "ProvisionableDevice", + "node_class": "Object", + "parent_id": "6a541ddf-1653-482f-b377-a085361891bd", + "children": [ + { + "id": "9e0fcf67-eca3-4965-b192-30a78072a6af", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=29880", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "29880", + "browse_name": "RequestTickets", + "display_name": "RequestTickets", + "node_class": "Method", + "parent_id": "5783c9bd-0d90-48b4-be8d-4da005c9637f", + "children": [ + { + "id": "c971b682-625b-481d-803d-103cc5f6c28d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=29881", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "29881", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "9e0fcf67-eca3-4965-b192-30a78072a6af", + "children": [] + } + ] + }, + { + "id": "a8015fd8-f169-4254-9198-5c9bb2ea91f5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=29879", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "29879", + "browse_name": "IsSingleton", + "display_name": "IsSingleton", + "node_class": "Variable", + "parent_id": "5783c9bd-0d90-48b4-be8d-4da005c9637f", + "children": [] + } + ] + } + ] + }, + { + "id": "31d3b497-5b00-45ad-8c0e-d0070ead4ba0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32530", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32530", + "browse_name": "Quantities", + "display_name": "Quantities", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "13edfd37-7036-4f6b-becd-9be284078c52", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32637", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32637", + "browse_name": "DefaultHAConfiguration", + "display_name": "DefaultHAConfiguration", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "f2b064c3-89b8-4c12-ae69-ac7e868dc1d6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32638", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32638", + "browse_name": "AggregateConfiguration", + "display_name": "AggregateConfiguration", + "node_class": "Object", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [ + { + "id": "2efe64e6-6f8b-4863-bae8-c76074fc588f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32641", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32641", + "browse_name": "PercentDataGood", + "display_name": "PercentDataGood", + "node_class": "Variable", + "parent_id": "f2b064c3-89b8-4c12-ae69-ac7e868dc1d6", + "children": [] + }, + { + "id": "fd3a3f5f-bfaf-4676-aa4e-533fe0d46320", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32642", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32642", + "browse_name": "UseSlopedExtrapolation", + "display_name": "UseSlopedExtrapolation", + "node_class": "Variable", + "parent_id": "f2b064c3-89b8-4c12-ae69-ac7e868dc1d6", + "children": [] + }, + { + "id": "4652bba0-2349-4913-a714-81e73796f678", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32640", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32640", + "browse_name": "PercentDataBad", + "display_name": "PercentDataBad", + "node_class": "Variable", + "parent_id": "f2b064c3-89b8-4c12-ae69-ac7e868dc1d6", + "children": [] + }, + { + "id": "6db0dee2-3e00-4324-afde-c779738cb2ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32639", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32639", + "browse_name": "TreatUncertainAsBad", + "display_name": "TreatUncertainAsBad", + "node_class": "Variable", + "parent_id": "f2b064c3-89b8-4c12-ae69-ac7e868dc1d6", + "children": [] + } + ] + }, + { + "id": "4dfc733b-9536-4b54-9725-6949ccd834f1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32643", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32643", + "browse_name": "AggregateFunctions", + "display_name": "AggregateFunctions", + "node_class": "Object", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "c2efa551-c4ba-4edb-a788-124f1ea3c8a2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32644", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32644", + "browse_name": "Stepped", + "display_name": "Stepped", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "fbbcca67-6691-44ef-b4fd-91aa0529f8d0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32647", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32647", + "browse_name": "MinTimeInterval", + "display_name": "MinTimeInterval", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "748dddc3-c113-4acb-84c5-74c8d2900e37", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32646", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32646", + "browse_name": "MaxTimeInterval", + "display_name": "MaxTimeInterval", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "bd0cfd35-1367-426c-a66a-7e1863798c4a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32649", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32649", + "browse_name": "ExceptionDeviationFormat", + "display_name": "ExceptionDeviationFormat", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "df48256f-8d04-4703-b97e-2f0a28c5479d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32650", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32650", + "browse_name": "StartOfArchive", + "display_name": "StartOfArchive", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "321c0277-c0bf-4a42-9232-59eede60837f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32656", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32656", + "browse_name": "StartOfOnlineArchive", + "display_name": "StartOfOnlineArchive", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "e249ff54-e680-4d63-af0b-c7b5a674dce3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32648", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32648", + "browse_name": "ExceptionDeviation", + "display_name": "ExceptionDeviation", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "00c71836-f1a9-43ad-a4d9-3b80f7cf4b92", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32645", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32645", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "6f4c7124-11f1-4be5-8cf1-74bbf6a95c4a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32752", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32752", + "browse_name": "MaxTimeStoredValues", + "display_name": "MaxTimeStoredValues", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "982a5254-9b4f-4cd9-9b4c-57d1a175be58", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32682", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32682", + "browse_name": "ServerTimestampSupported", + "display_name": "ServerTimestampSupported", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + }, + { + "id": "f3f16886-51fd-4639-8834-b526560a135e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32753", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32753", + "browse_name": "MaxCountStoredValues", + "display_name": "MaxCountStoredValues", + "node_class": "Variable", + "parent_id": "13edfd37-7036-4f6b-becd-9be284078c52", + "children": [] + } + ] + }, + { + "id": "131aca8c-8071-4fac-813d-545a7876ba82", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32754", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32754", + "browse_name": "DefaultHEConfiguration", + "display_name": "DefaultHEConfiguration", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "5ece2ea7-caee-4406-aefb-346aff55d3fa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32755", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32755", + "browse_name": "EventTypes", + "display_name": "EventTypes", + "node_class": "Object", + "parent_id": "131aca8c-8071-4fac-813d-545a7876ba82", + "children": [] + }, + { + "id": "bbdf3956-3432-414e-8cc9-9be5429f75cd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32757", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32757", + "browse_name": "StartOfOnlineArchive", + "display_name": "StartOfOnlineArchive", + "node_class": "Variable", + "parent_id": "131aca8c-8071-4fac-813d-545a7876ba82", + "children": [] + }, + { + "id": "3db468f9-3872-4061-b97e-e09c063c52d2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32756", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32756", + "browse_name": "StartOfArchive", + "display_name": "StartOfArchive", + "node_class": "Variable", + "parent_id": "131aca8c-8071-4fac-813d-545a7876ba82", + "children": [] + } + ] + }, + { + "id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=2;i=5003", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationServer/", + "namespace_index": 2, + "identifier_type": "i", + "identifier": "5003", + "browse_name": "ValueSimulations", + "display_name": "ValueSimulations", + "node_class": "Object", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [ + { + "id": "0ebc7088-6ef7-4fce-95ca-30a170a84719", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1001", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1001", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "49f5580e-4b15-42b4-9e35-c3eb13dbff3f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1001/0:Min Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1001/0:Min Value", + "browse_name": "Min Value", + "display_name": "Min Value", + "node_class": "Variable", + "parent_id": "0ebc7088-6ef7-4fce-95ca-30a170a84719", + "children": [] + }, + { + "id": "5a93bbfa-fdd6-48c7-89c9-1b9de2ffe920", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1001/0:Increment", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1001/0:Increment", + "browse_name": "Increment", + "display_name": "Increment", + "node_class": "Variable", + "parent_id": "0ebc7088-6ef7-4fce-95ca-30a170a84719", + "children": [] + }, + { + "id": "a1cf2e9a-781f-48f5-9cc9-b75e3fec7e22", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1001/0:Max Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1001/0:Max Value", + "browse_name": "Max Value", + "display_name": "Max Value", + "node_class": "Variable", + "parent_id": "0ebc7088-6ef7-4fce-95ca-30a170a84719", + "children": [] + }, + { + "id": "b0fe4588-1547-47da-a4b5-cca0399c3f19", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1001/0:Direction", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1001/0:Direction", + "browse_name": "Direction", + "display_name": "Direction", + "node_class": "Variable", + "parent_id": "0ebc7088-6ef7-4fce-95ca-30a170a84719", + "children": [] + } + ] + }, + { + "id": "1080a75b-2f05-4db3-ac50-700bb8257502", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1002", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1002", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "61e055c7-1707-48f3-8922-9312b86c7588", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1002/0:Max Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1002/0:Max Value", + "browse_name": "Max Value", + "display_name": "Max Value", + "node_class": "Variable", + "parent_id": "1080a75b-2f05-4db3-ac50-700bb8257502", + "children": [] + }, + { + "id": "9d4e1712-d760-47c4-b2ee-5ada662bdcf8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1002/0:Min Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1002/0:Min Value", + "browse_name": "Min Value", + "display_name": "Min Value", + "node_class": "Variable", + "parent_id": "1080a75b-2f05-4db3-ac50-700bb8257502", + "children": [] + } + ] + }, + { + "id": "0a975c57-63bc-4347-9926-7fa36203116b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1003", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1003", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "dc408745-8687-4780-9552-4eacfd5fd118", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1003/0:Time Offset", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1003/0:Time Offset", + "browse_name": "Time Offset", + "display_name": "Time Offset", + "node_class": "Variable", + "parent_id": "0a975c57-63bc-4347-9926-7fa36203116b", + "children": [] + }, + { + "id": "6af63352-d528-47e3-8573-1bb7d94af1a5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1003/0:Min Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1003/0:Min Value", + "browse_name": "Min Value", + "display_name": "Min Value", + "node_class": "Variable", + "parent_id": "0a975c57-63bc-4347-9926-7fa36203116b", + "children": [] + }, + { + "id": "62e0029e-50d5-4b9a-b2cb-d9d3dd1175f1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1003/0:Max Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1003/0:Max Value", + "browse_name": "Max Value", + "display_name": "Max Value", + "node_class": "Variable", + "parent_id": "0a975c57-63bc-4347-9926-7fa36203116b", + "children": [] + }, + { + "id": "e3d8dae9-52d3-4480-be17-6e8564d05319", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1003/0:Period", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1003/0:Period", + "browse_name": "Period", + "display_name": "Period", + "node_class": "Variable", + "parent_id": "0a975c57-63bc-4347-9926-7fa36203116b", + "children": [] + } + ] + }, + { + "id": "e98670bb-8969-4dfe-8d5d-59257d67135c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1004", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1004", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "25a16bd3-a9a2-4607-8093-8d952c2d901a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1004/0:Time Offset", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1004/0:Time Offset", + "browse_name": "Time Offset", + "display_name": "Time Offset", + "node_class": "Variable", + "parent_id": "e98670bb-8969-4dfe-8d5d-59257d67135c", + "children": [] + }, + { + "id": "50c9bf4f-6519-47aa-ad54-bc39c643cc66", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1004/0:Min Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1004/0:Min Value", + "browse_name": "Min Value", + "display_name": "Min Value", + "node_class": "Variable", + "parent_id": "e98670bb-8969-4dfe-8d5d-59257d67135c", + "children": [] + }, + { + "id": "61d585d2-ced6-434d-bbac-2b7ec10ba86b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1004/0:Max Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1004/0:Max Value", + "browse_name": "Max Value", + "display_name": "Max Value", + "node_class": "Variable", + "parent_id": "e98670bb-8969-4dfe-8d5d-59257d67135c", + "children": [] + }, + { + "id": "0aba5f95-16d5-48e4-b48f-44bf007c0e2e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1004/0:Period", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1004/0:Period", + "browse_name": "Period", + "display_name": "Period", + "node_class": "Variable", + "parent_id": "e98670bb-8969-4dfe-8d5d-59257d67135c", + "children": [] + } + ] + }, + { + "id": "96ea9ac7-15ac-416d-a735-0ad8bf3eacf4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1005", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1005", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "f4994083-e816-4c39-aea2-552d789f7c42", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1005/0:Time Offset", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1005/0:Time Offset", + "browse_name": "Time Offset", + "display_name": "Time Offset", + "node_class": "Variable", + "parent_id": "96ea9ac7-15ac-416d-a735-0ad8bf3eacf4", + "children": [] + }, + { + "id": "881a882c-3c91-4bdf-9ada-6a911e2de7bc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1005/0:Min Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1005/0:Min Value", + "browse_name": "Min Value", + "display_name": "Min Value", + "node_class": "Variable", + "parent_id": "96ea9ac7-15ac-416d-a735-0ad8bf3eacf4", + "children": [] + }, + { + "id": "c1fc0f5e-b543-4053-8eb9-9bb3e159298b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1005/0:Max Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1005/0:Max Value", + "browse_name": "Max Value", + "display_name": "Max Value", + "node_class": "Variable", + "parent_id": "96ea9ac7-15ac-416d-a735-0ad8bf3eacf4", + "children": [] + }, + { + "id": "fd9a755c-1505-417e-bc51-2bf0e0ec1dc3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1005/0:Period", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1005/0:Period", + "browse_name": "Period", + "display_name": "Period", + "node_class": "Variable", + "parent_id": "96ea9ac7-15ac-416d-a735-0ad8bf3eacf4", + "children": [] + } + ] + }, + { + "id": "b5af5062-bbf3-4ad4-849c-a4534177aeae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1006", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1006", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "c65f890b-241b-4aae-add8-786572e2cf3b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1006/0:Time Offset", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1006/0:Time Offset", + "browse_name": "Time Offset", + "display_name": "Time Offset", + "node_class": "Variable", + "parent_id": "b5af5062-bbf3-4ad4-849c-a4534177aeae", + "children": [] + }, + { + "id": "17d1c92f-f455-4f1f-9c60-746c2604323d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1006/0:Min Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1006/0:Min Value", + "browse_name": "Min Value", + "display_name": "Min Value", + "node_class": "Variable", + "parent_id": "b5af5062-bbf3-4ad4-849c-a4534177aeae", + "children": [] + }, + { + "id": "347afbbc-7b7c-4b6b-b353-50fad7020219", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1006/0:Max Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1006/0:Max Value", + "browse_name": "Max Value", + "display_name": "Max Value", + "node_class": "Variable", + "parent_id": "b5af5062-bbf3-4ad4-849c-a4534177aeae", + "children": [] + }, + { + "id": "a17357e9-b3c5-4260-98ac-36e41476aaf2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1006/0:Period", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1006/0:Period", + "browse_name": "Period", + "display_name": "Period", + "node_class": "Variable", + "parent_id": "b5af5062-bbf3-4ad4-849c-a4534177aeae", + "children": [] + } + ] + }, + { + "id": "0675e6eb-fdc0-457a-8de4-357e557d54e2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;i=1007", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "i", + "identifier": "1007", + "browse_name": "ValueSimulation", + "display_name": "ValueSimulation", + "node_class": "Object", + "parent_id": "3c763c5a-71f2-44be-a026-d8639301b0d6", + "children": [ + { + "id": "0fe011a6-e6fb-4802-9048-40043da98854", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=4;s=1007/0:Initial Value", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/SimulationConfiguration/", + "namespace_index": 4, + "identifier_type": "s", + "identifier": "1007/0:Initial Value", + "browse_name": "Initial Value", + "display_name": "Initial Value", + "node_class": "Variable", + "parent_id": "0675e6eb-fdc0-457a-8de4-357e557d54e2", + "children": [] + } + ] + } + ] + }, + { + "id": "3dd3cf29-3da0-4660-aa44-4a116de5f314", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2255", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2255", + "browse_name": "NamespaceArray", + "display_name": "NamespaceArray", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "d0f8b733-f0c7-4623-8438-8ab4b230ad10", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2994", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2994", + "browse_name": "Auditing", + "display_name": "Auditing", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "94ba8e31-eab3-49fc-9ab0-69fde77edcf1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2267", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2267", + "browse_name": "ServiceLevel", + "display_name": "ServiceLevel", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "52f168d9-0453-4b71-9baa-cd323beb28ef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=15004", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "15004", + "browse_name": "UrisVersion", + "display_name": "UrisVersion", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "4aea321f-9939-4a0c-b44c-9ecaadac52bc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=2254", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "2254", + "browse_name": "ServerArray", + "display_name": "ServerArray", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "8a895a5b-18a3-4827-8ebc-256db60e37d4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=17634", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "17634", + "browse_name": "LocalTime", + "display_name": "LocalTime", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + }, + { + "id": "a440dc28-47cd-49e4-8203-c9db53b2bb51", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=12885", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "12885", + "browse_name": "EstimatedReturnTime", + "display_name": "EstimatedReturnTime", + "node_class": "Variable", + "parent_id": "feedb461-1d36-4d3c-b91a-431c183d9646", + "children": [] + } + ] + }, + { + "id": "5d4056b1-cc3e-4343-bd37-485f24e99bb9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23470", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23470", + "browse_name": "Aliases", + "display_name": "Aliases", + "node_class": "Object", + "parent_id": null, + "children": [ + { + "id": "635f2171-9792-413f-bb7e-96c29fbc40c0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23476", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23476", + "browse_name": "FindAlias", + "display_name": "FindAlias", + "node_class": "Method", + "parent_id": "5d4056b1-cc3e-4343-bd37-485f24e99bb9", + "children": [ + { + "id": "7b5f42ff-c192-4157-818e-37b9ea06a67f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23478", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23478", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "635f2171-9792-413f-bb7e-96c29fbc40c0", + "children": [] + }, + { + "id": "3a466bf5-d69e-4c78-b425-95f796f759c2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23477", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23477", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "635f2171-9792-413f-bb7e-96c29fbc40c0", + "children": [] + } + ] + }, + { + "id": "e39d7e94-8f22-4c86-8b3e-949c5d62fa61", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23479", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23479", + "browse_name": "TagVariables", + "display_name": "TagVariables", + "node_class": "Object", + "parent_id": "5d4056b1-cc3e-4343-bd37-485f24e99bb9", + "children": [ + { + "id": "4d36f793-c993-4fd0-a699-13192a3c7da2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23485", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23485", + "browse_name": "FindAlias", + "display_name": "FindAlias", + "node_class": "Method", + "parent_id": "e39d7e94-8f22-4c86-8b3e-949c5d62fa61", + "children": [ + { + "id": "35e58e16-c05f-4e7b-ba3e-2a97cf4067b8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23486", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23486", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "4d36f793-c993-4fd0-a699-13192a3c7da2", + "children": [] + }, + { + "id": "3e11b6d0-7412-4967-8abe-b584feb3ea9c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23487", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23487", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "4d36f793-c993-4fd0-a699-13192a3c7da2", + "children": [] + } + ] + } + ] + }, + { + "id": "602e0f3f-41be-408b-8419-0e60ad186376", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23488", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23488", + "browse_name": "Topics", + "display_name": "Topics", + "node_class": "Object", + "parent_id": "5d4056b1-cc3e-4343-bd37-485f24e99bb9", + "children": [ + { + "id": "f9a6941f-2d5b-4b58-99e0-11a60bd5b3e2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23494", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23494", + "browse_name": "FindAlias", + "display_name": "FindAlias", + "node_class": "Method", + "parent_id": "602e0f3f-41be-408b-8419-0e60ad186376", + "children": [ + { + "id": "5feb73eb-4d62-474d-9c0b-4b88e7da3579", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23496", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23496", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "f9a6941f-2d5b-4b58-99e0-11a60bd5b3e2", + "children": [] + }, + { + "id": "61c05b8b-6171-4abb-9e5d-a53f16b866aa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=23495", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "23495", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "f9a6941f-2d5b-4b58-99e0-11a60bd5b3e2", + "children": [] + } + ] + } + ] + }, + { + "id": "b2eb335a-d66b-4fb6-b576-0051820c349a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=32852", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "32852", + "browse_name": "LastChange", + "display_name": "LastChange", + "node_class": "Variable", + "parent_id": "5d4056b1-cc3e-4343-bd37-485f24e99bb9", + "children": [] + } + ] + }, + { + "id": "dc353eda-e9dd-4c4e-9f44-9bc4fd706c61", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=31915", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "31915", + "browse_name": "Locations", + "display_name": "Locations", + "node_class": "Object", + "parent_id": null, + "children": [] + }, + { + "id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;s=85/0:Simulation", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "s", + "identifier": "85/0:Simulation", + "browse_name": "Simulation", + "display_name": "Simulation", + "node_class": "Object", + "parent_id": null, + "children": [ + { + "id": "fd4603cb-5ee8-49fe-aa79-e14f772c1772", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1001", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1001", + "browse_name": "Counter", + "display_name": "Counter", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + }, + { + "id": "ec0a9030-4e2f-4839-9696-7c5f6d55a3b0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1002", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1002", + "browse_name": "Random", + "display_name": "Random", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + }, + { + "id": "546cba89-ee45-4617-ba27-55788bbd2c2c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1003", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1003", + "browse_name": "Sawtooth", + "display_name": "Sawtooth", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + }, + { + "id": "9ff03848-4028-4b0e-a4fa-a6e3a8270b24", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1004", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1004", + "browse_name": "Sinusoid", + "display_name": "Sinusoid", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + }, + { + "id": "27581d0f-7266-4800-a844-82331e72a0ba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1005", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1005", + "browse_name": "Square", + "display_name": "Square", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + }, + { + "id": "3db9fd30-b265-4f68-a87b-0663894abbde", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1006", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1006", + "browse_name": "Triangle", + "display_name": "Triangle", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + }, + { + "id": "d9252af3-6f04-43ab-ab20-494bf5f239e9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=3;i=1007", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SimulationNodes/", + "namespace_index": 3, + "identifier_type": "i", + "identifier": "1007", + "browse_name": "Constant", + "display_name": "Constant", + "node_class": "Variable", + "parent_id": "90f08043-ce74-4987-a307-cc09217ef4c1", + "children": [] + } + ] + }, + { + "id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=StaticData", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "StaticData", + "browse_name": "StaticData", + "display_name": "StaticData", + "node_class": "Object", + "parent_id": null, + "children": [ + { + "id": "0a1a5069-1437-4d61-8458-a732405177bb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AccessLevels", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AccessLevels", + "browse_name": "AccessLevels", + "display_name": "AccessLevels", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "40adceb1-d9a9-4143-829c-d0dab02f0ea8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AccessLevelCurrentRead", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AccessLevelCurrentRead", + "browse_name": "AccessLevelCurrentRead", + "display_name": "AccessLevelCurrentRead", + "node_class": "Variable", + "parent_id": "0a1a5069-1437-4d61-8458-a732405177bb", + "children": [] + }, + { + "id": "0a8842ab-4efd-41bd-ae3a-587951bd2be9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AccessLevelCurrentReadNotUser", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AccessLevelCurrentReadNotUser", + "browse_name": "AccessLevelCurrentReadNotUser", + "display_name": "AccessLevelCurrentReadNotUser", + "node_class": "Variable", + "parent_id": "0a1a5069-1437-4d61-8458-a732405177bb", + "children": [] + }, + { + "id": "54352ff0-a553-42fc-81c2-cb6773f495d9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AccessLevelCurrentReadWrite", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AccessLevelCurrentReadWrite", + "browse_name": "AccessLevelCurrentReadWrite", + "display_name": "AccessLevelCurrentReadWrite", + "node_class": "Variable", + "parent_id": "0a1a5069-1437-4d61-8458-a732405177bb", + "children": [] + }, + { + "id": "0bdd3b4c-fbf6-413c-8d05-d9035eb6f9ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AccessLevelCurrentWrite", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AccessLevelCurrentWrite", + "browse_name": "AccessLevelCurrentWrite", + "display_name": "AccessLevelCurrentWrite", + "node_class": "Variable", + "parent_id": "0a1a5069-1437-4d61-8458-a732405177bb", + "children": [] + }, + { + "id": "83860361-bc30-422a-9fed-ad2c5588889c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AccessLevelCurrentWriteNotUser", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AccessLevelCurrentWriteNotUser", + "browse_name": "AccessLevelCurrentWriteNotUser", + "display_name": "AccessLevelCurrentWriteNotUser", + "node_class": "Variable", + "parent_id": "0a1a5069-1437-4d61-8458-a732405177bb", + "children": [] + } + ] + }, + { + "id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AnalogItemArrays", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AnalogItemArrays", + "browse_name": "AnalogItemArrays", + "display_name": "AnalogItemArrays", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "8968035b-b3b9-47a2-9fcf-f680bd042615", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItemArray", + "browse_name": "ByteAnalogItemArray", + "display_name": "ByteAnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "010bee81-2975-46b7-8a17-4402867047a6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "8968035b-b3b9-47a2-9fcf-f680bd042615", + "children": [] + }, + { + "id": "90e6af79-be63-4aa9-bc5c-3682482b9534", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "8968035b-b3b9-47a2-9fcf-f680bd042615", + "children": [] + }, + { + "id": "0eb72faf-21d4-48e8-864b-188851e59649", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "8968035b-b3b9-47a2-9fcf-f680bd042615", + "children": [] + } + ] + }, + { + "id": "7c631adf-c0c9-4e0e-a736-5ed52e2cac9a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItemArray", + "browse_name": "DoubleAnalogItemArray", + "display_name": "DoubleAnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "f53bf283-5cfa-481c-bd93-fc08ce0f203e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "7c631adf-c0c9-4e0e-a736-5ed52e2cac9a", + "children": [] + }, + { + "id": "437f4f81-d652-4792-9401-b0308922bda0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "7c631adf-c0c9-4e0e-a736-5ed52e2cac9a", + "children": [] + }, + { + "id": "9c949ad2-f7d3-460c-8690-6604f71de935", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "7c631adf-c0c9-4e0e-a736-5ed52e2cac9a", + "children": [] + } + ] + }, + { + "id": "ca3d3039-e5b1-4776-af5d-c0bbe8ee32b0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItemArray", + "browse_name": "FloatAnalogItemArray", + "display_name": "FloatAnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "17f09eb1-d1d9-41c2-b4cf-3c3c77883fcd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "ca3d3039-e5b1-4776-af5d-c0bbe8ee32b0", + "children": [] + }, + { + "id": "01510053-ee4e-4ebe-acaf-cbad81608a01", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "ca3d3039-e5b1-4776-af5d-c0bbe8ee32b0", + "children": [] + }, + { + "id": "edde219a-65d5-42f9-a704-125dc4a8e7a9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "ca3d3039-e5b1-4776-af5d-c0bbe8ee32b0", + "children": [] + } + ] + }, + { + "id": "847405d8-3174-47fd-aa63-6259b3ebd7a9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItemArray", + "browse_name": "Int16AnalogItemArray", + "display_name": "Int16AnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "fd7e72a1-248b-48f3-9674-3485e1951c24", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "847405d8-3174-47fd-aa63-6259b3ebd7a9", + "children": [] + }, + { + "id": "54554c91-f0aa-462c-9616-288baf2a07b8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "847405d8-3174-47fd-aa63-6259b3ebd7a9", + "children": [] + }, + { + "id": "b89f7c56-0d72-41fe-8e22-d06c121efe96", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "847405d8-3174-47fd-aa63-6259b3ebd7a9", + "children": [] + } + ] + }, + { + "id": "26380688-dc7c-4195-aea6-c3aa2df161c2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItemArray", + "browse_name": "Int32AnalogItemArray", + "display_name": "Int32AnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "4df5671f-7e68-4ea7-a043-d4478faa1ca3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "26380688-dc7c-4195-aea6-c3aa2df161c2", + "children": [] + }, + { + "id": "850e04f2-885e-4c61-9360-581226efefc2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "26380688-dc7c-4195-aea6-c3aa2df161c2", + "children": [] + }, + { + "id": "856e6c0d-4ec1-4e6e-b9ab-cdff4e420095", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "26380688-dc7c-4195-aea6-c3aa2df161c2", + "children": [] + } + ] + }, + { + "id": "21c936e2-3a56-44d2-8258-cda5eded0c48", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItemArray", + "browse_name": "Int64AnalogItemArray", + "display_name": "Int64AnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "5105153f-1cd4-4ed1-bf6b-d4df77e1da88", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "21c936e2-3a56-44d2-8258-cda5eded0c48", + "children": [] + }, + { + "id": "3419c805-c320-400a-9512-592fd09d85a0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "21c936e2-3a56-44d2-8258-cda5eded0c48", + "children": [] + }, + { + "id": "b5e22925-e774-40ab-9b4c-f0754dc9b5ec", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "21c936e2-3a56-44d2-8258-cda5eded0c48", + "children": [] + } + ] + }, + { + "id": "b9c86c77-53a6-4efa-bfa9-cdbe0562c257", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItemArray", + "browse_name": "SByteAnalogItemArray", + "display_name": "SByteAnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "a2057af0-5ae4-4b44-ad92-edae17151883", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "b9c86c77-53a6-4efa-bfa9-cdbe0562c257", + "children": [] + }, + { + "id": "e559ff7a-8b45-4383-9add-287360f2c01a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "b9c86c77-53a6-4efa-bfa9-cdbe0562c257", + "children": [] + }, + { + "id": "2872cc08-14f1-4610-a512-976c8d4b2cbf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "b9c86c77-53a6-4efa-bfa9-cdbe0562c257", + "children": [] + } + ] + }, + { + "id": "2fec96cf-f8fd-4a64-aab9-5f92b470cdb1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItemArray", + "browse_name": "UInt16AnalogItemArray", + "display_name": "UInt16AnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "db6e9a53-e66c-4963-b31b-4ce5a4b20786", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "2fec96cf-f8fd-4a64-aab9-5f92b470cdb1", + "children": [] + }, + { + "id": "c41c6d30-c460-4aa7-9772-5ee666416cf6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "2fec96cf-f8fd-4a64-aab9-5f92b470cdb1", + "children": [] + }, + { + "id": "2e43ad46-15c7-4570-8919-e40d3c8ed18a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "2fec96cf-f8fd-4a64-aab9-5f92b470cdb1", + "children": [] + } + ] + }, + { + "id": "3b7319d4-a07e-4120-aa41-f686aa22cf5e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItemArray", + "browse_name": "UInt32AnalogItemArray", + "display_name": "UInt32AnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "e777c3da-31ca-4b4a-ae05-574f08db4d18", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "3b7319d4-a07e-4120-aa41-f686aa22cf5e", + "children": [] + }, + { + "id": "e7f6f143-db77-42dd-bfe8-4c5e65632d54", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "3b7319d4-a07e-4120-aa41-f686aa22cf5e", + "children": [] + }, + { + "id": "aa608fed-3845-4d28-87f7-9b0417759bad", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "3b7319d4-a07e-4120-aa41-f686aa22cf5e", + "children": [] + } + ] + }, + { + "id": "2a6fcce5-46ee-4346-b539-b7ca836c3b2a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItemArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItemArray", + "browse_name": "UInt64AnalogItemArray", + "display_name": "UInt64AnalogItemArray", + "node_class": "Variable", + "parent_id": "2bb58a57-50f4-4cd3-8f0c-6d66ade7ff15", + "children": [ + { + "id": "a15472a5-d3fe-4c01-8fa3-784bf2694872", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItemArray/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItemArray/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "2a6fcce5-46ee-4346-b539-b7ca836c3b2a", + "children": [] + }, + { + "id": "bc62caa5-14e1-4c6d-aa21-5fa9ab9d1fea", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItemArray/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItemArray/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "2a6fcce5-46ee-4346-b539-b7ca836c3b2a", + "children": [] + }, + { + "id": "55117870-a030-4120-b79b-aa4a506ebfb0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItemArray/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItemArray/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "2a6fcce5-46ee-4346-b539-b7ca836c3b2a", + "children": [] + } + ] + } + ] + }, + { + "id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=AnalogItems", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "AnalogItems", + "browse_name": "AnalogItems", + "display_name": "AnalogItems", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "2f69ae7c-a9b7-46a6-a1a5-ff020d74df22", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItem", + "browse_name": "ByteAnalogItem", + "display_name": "ByteAnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "83270ee2-ea33-4e26-b284-f0fd848c613e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "2f69ae7c-a9b7-46a6-a1a5-ff020d74df22", + "children": [] + }, + { + "id": "624b006b-ca6c-4667-8144-546b4e6728ae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "2f69ae7c-a9b7-46a6-a1a5-ff020d74df22", + "children": [] + }, + { + "id": "66d2c069-303a-4d7e-b70c-ac10b3966725", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteAnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteAnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "2f69ae7c-a9b7-46a6-a1a5-ff020d74df22", + "children": [] + } + ] + }, + { + "id": "ec8d004e-6df0-4028-9890-13b18f7a4171", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItem", + "browse_name": "DoubleAnalogItem", + "display_name": "DoubleAnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "1582ab1d-3005-4409-b971-b720b0135dd0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "ec8d004e-6df0-4028-9890-13b18f7a4171", + "children": [] + }, + { + "id": "103df0a8-e729-47b9-b2c7-a61f55b17425", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "ec8d004e-6df0-4028-9890-13b18f7a4171", + "children": [] + }, + { + "id": "020bc488-d0a3-49ca-9e9b-f296b85a8ef6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleAnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleAnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "ec8d004e-6df0-4028-9890-13b18f7a4171", + "children": [] + } + ] + }, + { + "id": "f84e28a3-9928-432a-b8f0-c7379db69501", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItem", + "browse_name": "FloatAnalogItem", + "display_name": "FloatAnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "998ac271-0630-44cb-a5d2-608ec3ddba71", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "f84e28a3-9928-432a-b8f0-c7379db69501", + "children": [] + }, + { + "id": "7aeabfd3-0c79-465c-8eb4-daad3cede829", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "f84e28a3-9928-432a-b8f0-c7379db69501", + "children": [] + }, + { + "id": "516428f0-14e5-4d77-bcc0-a5ac53569b53", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatAnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatAnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "f84e28a3-9928-432a-b8f0-c7379db69501", + "children": [] + } + ] + }, + { + "id": "7e54f692-9a24-4aa7-ad66-4dcdce475d88", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItem", + "browse_name": "Int16AnalogItem", + "display_name": "Int16AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "258bb4bb-4031-41b1-966f-391ef58dadb2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "7e54f692-9a24-4aa7-ad66-4dcdce475d88", + "children": [] + }, + { + "id": "ea0daa7d-8eb1-4914-9fd1-4468e46f574f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "7e54f692-9a24-4aa7-ad66-4dcdce475d88", + "children": [] + }, + { + "id": "746ab68e-c4c4-4538-90b9-03466833af7c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "7e54f692-9a24-4aa7-ad66-4dcdce475d88", + "children": [] + } + ] + }, + { + "id": "91c0e68d-df35-4c34-8072-08d39077a80a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItem", + "browse_name": "Int32AnalogItem", + "display_name": "Int32AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "37adbaaa-363c-43d6-a531-a5484e774037", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "91c0e68d-df35-4c34-8072-08d39077a80a", + "children": [] + }, + { + "id": "3ca8b0d2-cd4e-4dea-9f2b-0cd81de4511f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "91c0e68d-df35-4c34-8072-08d39077a80a", + "children": [] + }, + { + "id": "a6eabf8e-ef8b-4f75-b04c-901f8c33e37d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "91c0e68d-df35-4c34-8072-08d39077a80a", + "children": [] + } + ] + }, + { + "id": "e46ed3a0-8552-4b55-a67d-179b0c4fd106", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItem", + "browse_name": "Int64AnalogItem", + "display_name": "Int64AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "38c504a5-aa0c-4200-8eed-5ba91cdf3717", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "e46ed3a0-8552-4b55-a67d-179b0c4fd106", + "children": [] + }, + { + "id": "86b278fa-4114-41e1-8358-48368addb8d2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "e46ed3a0-8552-4b55-a67d-179b0c4fd106", + "children": [] + }, + { + "id": "115deac4-c067-4d64-836a-4ea2bac926f3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "e46ed3a0-8552-4b55-a67d-179b0c4fd106", + "children": [] + } + ] + }, + { + "id": "e3fa478f-a9d6-47b2-8896-942c7f535d47", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItem", + "browse_name": "SByteAnalogItem", + "display_name": "SByteAnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "e52dc706-70be-4c78-9f15-4e37816398dc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "e3fa478f-a9d6-47b2-8896-942c7f535d47", + "children": [] + }, + { + "id": "1d79e6c6-60bd-4020-b7fe-574d3d88e058", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "e3fa478f-a9d6-47b2-8896-942c7f535d47", + "children": [] + }, + { + "id": "2ee44dcd-453c-403d-95e5-c3adff9fda35", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteAnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteAnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "e3fa478f-a9d6-47b2-8896-942c7f535d47", + "children": [] + } + ] + }, + { + "id": "005ba9ca-820c-4945-947e-dba60d1cf747", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Sample Instrument Int32AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Sample Instrument Int32AnalogItem", + "browse_name": "Sample Instrument Int32AnalogItem", + "display_name": "Sample Instrument Int32AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "c71ea861-bc12-4c85-9cff-3e263091329b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Sample Instrument Int32AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Sample Instrument Int32AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "005ba9ca-820c-4945-947e-dba60d1cf747", + "children": [] + }, + { + "id": "ce68c70f-43e4-403c-9a5a-e23f7e688243", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Sample Instrument Int32AnalogItem/0:InstrumentRange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Sample Instrument Int32AnalogItem/0:InstrumentRange", + "browse_name": "InstrumentRange", + "display_name": "InstrumentRange", + "node_class": "Variable", + "parent_id": "005ba9ca-820c-4945-947e-dba60d1cf747", + "children": [] + }, + { + "id": "beb93ddf-6336-4b78-ba1a-26aead043e1d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Sample Instrument Int32AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Sample Instrument Int32AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "005ba9ca-820c-4945-947e-dba60d1cf747", + "children": [] + }, + { + "id": "50b77771-39dd-40bf-9f03-88898c034399", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Sample Instrument Int32AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Sample Instrument Int32AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "005ba9ca-820c-4945-947e-dba60d1cf747", + "children": [] + } + ] + }, + { + "id": "c3f170d8-1c5c-465d-9d85-c976190ae1f4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItem", + "browse_name": "UInt16AnalogItem", + "display_name": "UInt16AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "f229e148-9d3c-4f70-9d0d-2cfb272ee48e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "c3f170d8-1c5c-465d-9d85-c976190ae1f4", + "children": [] + }, + { + "id": "c5956175-6e5b-462f-be3b-602b2804561f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "c3f170d8-1c5c-465d-9d85-c976190ae1f4", + "children": [] + }, + { + "id": "d795f5b0-157a-426f-abd1-c8a9b76b64ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "c3f170d8-1c5c-465d-9d85-c976190ae1f4", + "children": [] + } + ] + }, + { + "id": "c797dc35-3847-46e3-abf2-dfc2a2ec9d90", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItem", + "browse_name": "UInt32AnalogItem", + "display_name": "UInt32AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "59ad7983-c84f-42a2-a5dd-febf8b5e28e3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "c797dc35-3847-46e3-abf2-dfc2a2ec9d90", + "children": [] + }, + { + "id": "b00df7b6-f3f0-464b-b336-7782ab5debce", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "c797dc35-3847-46e3-abf2-dfc2a2ec9d90", + "children": [] + }, + { + "id": "7ebfbdf6-14ac-46ca-a653-dca6c91419c6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "c797dc35-3847-46e3-abf2-dfc2a2ec9d90", + "children": [] + } + ] + }, + { + "id": "944fb1be-ba51-42d8-9e1b-7dcdf0e3ccfd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItem", + "browse_name": "UInt64AnalogItem", + "display_name": "UInt64AnalogItem", + "node_class": "Variable", + "parent_id": "e346127a-f09d-453f-a604-5d2ac62f514d", + "children": [ + { + "id": "ab06ad7a-72d0-4429-900d-9b96d012abb9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "944fb1be-ba51-42d8-9e1b-7dcdf0e3ccfd", + "children": [] + }, + { + "id": "5cfcf48e-d7ab-4df5-ac11-e21b61849a58", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItem/0:EngineeringUnits", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItem/0:EngineeringUnits", + "browse_name": "EngineeringUnits", + "display_name": "EngineeringUnits", + "node_class": "Variable", + "parent_id": "944fb1be-ba51-42d8-9e1b-7dcdf0e3ccfd", + "children": [] + }, + { + "id": "8eb75473-0fde-41f7-858a-b84ce990e8cc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64AnalogItem/0:EURange", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64AnalogItem/0:EURange", + "browse_name": "EURange", + "display_name": "EURange", + "node_class": "Variable", + "parent_id": "944fb1be-ba51-42d8-9e1b-7dcdf0e3ccfd", + "children": [] + } + ] + } + ] + }, + { + "id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DataItems", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DataItems", + "browse_name": "DataItems", + "display_name": "DataItems", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "672340c7-35de-43d0-bfaa-a21d5b69bf67", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=BooleanDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "BooleanDataItem", + "browse_name": "BooleanDataItem", + "display_name": "BooleanDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "fd19f3cd-8644-4302-8e6a-71f6edcd2902", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=BooleanDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "BooleanDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "672340c7-35de-43d0-bfaa-a21d5b69bf67", + "children": [] + } + ] + }, + { + "id": "d98b9cc7-c493-4bfe-ad35-ea802c34e201", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteDataItem", + "browse_name": "ByteDataItem", + "display_name": "ByteDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "d183f31d-0806-4486-86f6-495726317a02", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "d98b9cc7-c493-4bfe-ad35-ea802c34e201", + "children": [] + } + ] + }, + { + "id": "2e16afa8-e0eb-4419-9673-7b2b90c3538d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteStringDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteStringDataItem", + "browse_name": "ByteStringDataItem", + "display_name": "ByteStringDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "4fff008b-9afd-4b95-9aa0-f36e9845b758", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteStringDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteStringDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "2e16afa8-e0eb-4419-9673-7b2b90c3538d", + "children": [] + } + ] + }, + { + "id": "fecefe9f-5479-421e-b89b-37365a0ba153", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DateTimeDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DateTimeDataItem", + "browse_name": "DateTimeDataItem", + "display_name": "DateTimeDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "143bbfa3-fb68-4ee8-902b-914d66d440fc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DateTimeDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DateTimeDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "fecefe9f-5479-421e-b89b-37365a0ba153", + "children": [] + } + ] + }, + { + "id": "f76067a9-56ed-4ad4-8930-d11cf82a2251", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleDataItem", + "browse_name": "DoubleDataItem", + "display_name": "DoubleDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "b0657776-f16d-4e0f-9d14-a400aa30f533", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "f76067a9-56ed-4ad4-8930-d11cf82a2251", + "children": [] + } + ] + }, + { + "id": "e9828473-122e-488a-b73c-8352f3a56814", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatDataItem", + "browse_name": "FloatDataItem", + "display_name": "FloatDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "a1404287-b802-4b13-a3f7-41986c9d6aae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "e9828473-122e-488a-b73c-8352f3a56814", + "children": [] + } + ] + }, + { + "id": "a54953ac-bda2-4e52-8d54-ebb129096083", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=GUIDDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "GUIDDataItem", + "browse_name": "GUIDDataItem", + "display_name": "GUIDDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "a2bf746a-4893-45a9-8545-7771e519272c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=GUIDDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "GUIDDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "a54953ac-bda2-4e52-8d54-ebb129096083", + "children": [] + } + ] + }, + { + "id": "bf3c60ca-49c9-43be-9004-c31861b7ff43", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16DataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16DataItem", + "browse_name": "Int16DataItem", + "display_name": "Int16DataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "60a5e9b3-d220-499b-8b64-08e7ed58be81", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16DataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16DataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "bf3c60ca-49c9-43be-9004-c31861b7ff43", + "children": [] + } + ] + }, + { + "id": "94c0376d-2bfe-43c2-8985-d14c172fe722", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32DataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32DataItem", + "browse_name": "Int32DataItem", + "display_name": "Int32DataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "a5e72b1d-3dfd-44fa-80eb-0548edf17536", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32DataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32DataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "94c0376d-2bfe-43c2-8985-d14c172fe722", + "children": [] + } + ] + }, + { + "id": "28746362-353b-4de1-9af8-ee36a8cc31d4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64DataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64DataItem", + "browse_name": "Int64DataItem", + "display_name": "Int64DataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "fdf4da8c-474b-4dfb-a0ef-fe8b8d17008a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64DataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64DataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "28746362-353b-4de1-9af8-ee36a8cc31d4", + "children": [] + } + ] + }, + { + "id": "3bf41f5b-eed6-4e43-bc53-91552a5b1a6b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteDataItem", + "browse_name": "SByteDataItem", + "display_name": "SByteDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "9a018465-e547-4972-927b-9d77a277e23d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "3bf41f5b-eed6-4e43-bc53-91552a5b1a6b", + "children": [] + } + ] + }, + { + "id": "f0c6f827-1d6c-4b10-873d-97a8ed5da980", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=StringDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "StringDataItem", + "browse_name": "StringDataItem", + "display_name": "StringDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "c2909117-b7a6-4120-b007-547bc0cff2f7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=StringDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "StringDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "f0c6f827-1d6c-4b10-873d-97a8ed5da980", + "children": [] + } + ] + }, + { + "id": "14f45a0f-5dc0-4856-8e94-5a28b159cc23", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16DataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16DataItem", + "browse_name": "UInt16DataItem", + "display_name": "UInt16DataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "84f75faa-2c9c-4989-bba9-5cd55487a7bc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16DataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16DataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "14f45a0f-5dc0-4856-8e94-5a28b159cc23", + "children": [] + } + ] + }, + { + "id": "9ba4b23c-06cd-4df9-9eac-02667097557c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32DataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32DataItem", + "browse_name": "UInt32DataItem", + "display_name": "UInt32DataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "18cd9db7-3817-4f37-9678-1d07b72ed7bc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32DataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32DataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "9ba4b23c-06cd-4df9-9eac-02667097557c", + "children": [] + } + ] + }, + { + "id": "42ebeca1-3059-44e6-a438-b96c03865282", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64DataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64DataItem", + "browse_name": "UInt64DataItem", + "display_name": "UInt64DataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "c08f3382-d56d-4fac-beb9-c65b3f2fdf51", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64DataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64DataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "42ebeca1-3059-44e6-a438-b96c03865282", + "children": [] + } + ] + }, + { + "id": "aaf39af7-1294-4958-8b0d-0c9b0a2ee140", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=XmlElementDataItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "XmlElementDataItem", + "browse_name": "XmlElementDataItem", + "display_name": "XmlElementDataItem", + "node_class": "Variable", + "parent_id": "52989709-aaed-4b2e-8230-f7889ed766a2", + "children": [ + { + "id": "075e4a5a-f6fc-4281-adb9-b198c017b212", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=XmlElementDataItem/0:Definition", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "XmlElementDataItem/0:Definition", + "browse_name": "Definition", + "display_name": "Definition", + "node_class": "Variable", + "parent_id": "aaf39af7-1294-4958-8b0d-0c9b0a2ee140", + "children": [] + } + ] + } + ] + }, + { + "id": "8b915224-802b-42e1-86d4-e3f5c115eb49", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepFolder", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepFolder", + "browse_name": "DeepFolder", + "display_name": "DeepFolder", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "66a201d1-e04c-4a4c-bb29-b8ae55891f1b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject01", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject01", + "browse_name": "DeepObject01", + "display_name": "DeepObject01", + "node_class": "Object", + "parent_id": "8b915224-802b-42e1-86d4-e3f5c115eb49", + "children": [ + { + "id": "167038ed-7ebf-4112-bcaa-09cd07073638", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject02", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject02", + "browse_name": "DeepObject02", + "display_name": "DeepObject02", + "node_class": "Object", + "parent_id": "66a201d1-e04c-4a4c-bb29-b8ae55891f1b", + "children": [ + { + "id": "6974df8f-7ce1-4ab4-862b-27c9ed47b9c1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject03", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject03", + "browse_name": "DeepObject03", + "display_name": "DeepObject03", + "node_class": "Object", + "parent_id": "167038ed-7ebf-4112-bcaa-09cd07073638", + "children": [ + { + "id": "b69e2028-d11e-4013-88a7-03ebe1eff8c5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject04", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject04", + "browse_name": "DeepObject04", + "display_name": "DeepObject04", + "node_class": "Object", + "parent_id": "6974df8f-7ce1-4ab4-862b-27c9ed47b9c1", + "children": [ + { + "id": "e88dd2d9-e55f-48ad-a09c-1c057ec47a3f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject05", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject05", + "browse_name": "DeepObject05", + "display_name": "DeepObject05", + "node_class": "Object", + "parent_id": "b69e2028-d11e-4013-88a7-03ebe1eff8c5", + "children": [ + { + "id": "17ef7dd0-4931-4f73-b348-2729ee31a6d7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject06", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject06", + "browse_name": "DeepObject06", + "display_name": "DeepObject06", + "node_class": "Object", + "parent_id": "e88dd2d9-e55f-48ad-a09c-1c057ec47a3f", + "children": [ + { + "id": "11aed601-445d-4eb9-8157-3e3243a8a779", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject07", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject07", + "browse_name": "DeepObject07", + "display_name": "DeepObject07", + "node_class": "Object", + "parent_id": "17ef7dd0-4931-4f73-b348-2729ee31a6d7", + "children": [ + { + "id": "708cb55d-c36d-4802-acfc-3116006f9f4b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject08", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject08", + "browse_name": "DeepObject08", + "display_name": "DeepObject08", + "node_class": "Object", + "parent_id": "11aed601-445d-4eb9-8157-3e3243a8a779", + "children": [ + { + "id": "2ccce903-65e1-4303-a325-8a83da7f8bbb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject09", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject09", + "browse_name": "DeepObject09", + "display_name": "DeepObject09", + "node_class": "Object", + "parent_id": "708cb55d-c36d-4802-acfc-3116006f9f4b", + "children": [ + { + "id": "ec5f3c9f-9aba-4504-b753-c13683c83416", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject10", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject10", + "browse_name": "DeepObject10", + "display_name": "DeepObject10", + "node_class": "Object", + "parent_id": "2ccce903-65e1-4303-a325-8a83da7f8bbb", + "children": [ + { + "id": "dc27875f-6a8d-4e0f-97ce-af6b9189593e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject11", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject11", + "browse_name": "DeepObject11", + "display_name": "DeepObject11", + "node_class": "Object", + "parent_id": "ec5f3c9f-9aba-4504-b753-c13683c83416", + "children": [ + { + "id": "e9c4da2a-dc00-4fb6-8a44-5c49a3632c04", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject12", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject12", + "browse_name": "DeepObject12", + "display_name": "DeepObject12", + "node_class": "Object", + "parent_id": "dc27875f-6a8d-4e0f-97ce-af6b9189593e", + "children": [ + { + "id": "854476fb-54f2-42e3-bfbe-a86062259a8c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject13", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject13", + "browse_name": "DeepObject13", + "display_name": "DeepObject13", + "node_class": "Object", + "parent_id": "e9c4da2a-dc00-4fb6-8a44-5c49a3632c04", + "children": [ + { + "id": "526c76dd-c4c6-402e-9a85-6089bf5cbbb8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject14", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject14", + "browse_name": "DeepObject14", + "display_name": "DeepObject14", + "node_class": "Object", + "parent_id": "854476fb-54f2-42e3-bfbe-a86062259a8c", + "children": [ + { + "id": "29fa4b7b-be71-477a-a7c1-d2becf9a3eb7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject15", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject15", + "browse_name": "DeepObject15", + "display_name": "DeepObject15", + "node_class": "Object", + "parent_id": "526c76dd-c4c6-402e-9a85-6089bf5cbbb8", + "children": [ + { + "id": "7f50eba9-46fd-4e89-aaa5-a746d3658139", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject16", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject16", + "browse_name": "DeepObject16", + "display_name": "DeepObject16", + "node_class": "Object", + "parent_id": "29fa4b7b-be71-477a-a7c1-d2becf9a3eb7", + "children": [ + { + "id": "907e6b93-a33b-4294-8280-39c6af80ea74", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject17", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject17", + "browse_name": "DeepObject17", + "display_name": "DeepObject17", + "node_class": "Object", + "parent_id": "7f50eba9-46fd-4e89-aaa5-a746d3658139", + "children": [ + { + "id": "85d2c94b-9bea-4e08-bd78-fd4e24c3ea3f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject18", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject18", + "browse_name": "DeepObject18", + "display_name": "DeepObject18", + "node_class": "Object", + "parent_id": "907e6b93-a33b-4294-8280-39c6af80ea74", + "children": [ + { + "id": "06090c97-b05c-453a-b14a-a736916da6b2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject19", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject19", + "browse_name": "DeepObject19", + "display_name": "DeepObject19", + "node_class": "Object", + "parent_id": "85d2c94b-9bea-4e08-bd78-fd4e24c3ea3f", + "children": [ + { + "id": "81818b7d-fd3d-4ed0-8c6a-0e65854ce196", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DeepObject20", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DeepObject20", + "browse_name": "DeepObject20", + "display_name": "DeepObject20", + "node_class": "Object", + "parent_id": "06090c97-b05c-453a-b14a-a736916da6b2", + "children": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "b5376be2-c7c7-4ee2-82b6-250d427d043d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=MultiStateItems", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "MultiStateItems", + "browse_name": "MultiStateItems", + "display_name": "MultiStateItems", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "94076ed0-7be7-4d3a-8191-f43f5a9d66ef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=MultiStateDiscreteItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "MultiStateDiscreteItem", + "browse_name": "MultiStateDiscreteItem", + "display_name": "MultiStateDiscreteItem", + "node_class": "Variable", + "parent_id": "b5376be2-c7c7-4ee2-82b6-250d427d043d", + "children": [ + { + "id": "297aab3e-34fd-4115-b805-e9b28ebc47be", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=MultiStateDiscreteItem/0:EnumStrings", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "MultiStateDiscreteItem/0:EnumStrings", + "browse_name": "EnumStrings", + "display_name": "EnumStrings", + "node_class": "Variable", + "parent_id": "94076ed0-7be7-4d3a-8191-f43f5a9d66ef", + "children": [] + } + ] + } + ] + }, + { + "id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=StaticArrayVariables", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "StaticArrayVariables", + "browse_name": "StaticArrayVariables", + "display_name": "StaticArrayVariables", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "c851d03b-5248-4a43-80e8-f27e09657aeb", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=BooleanArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "BooleanArray", + "browse_name": "BooleanArray", + "display_name": "BooleanArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "8fae9f48-fe19-45d5-ba96-e8bf4c536eac", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteArray", + "browse_name": "ByteArray", + "display_name": "ByteArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "b8089f8b-6f31-4233-a33b-b50e7e762099", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteStringArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteStringArray", + "browse_name": "ByteStringArray", + "display_name": "ByteStringArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "7341c2b5-3056-4bdc-9b35-662c7aefce5c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DateTimeArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DateTimeArray", + "browse_name": "DateTimeArray", + "display_name": "DateTimeArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "5ae2c0d8-abbe-4090-b9e1-39601ff806f6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DoubleArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DoubleArray", + "browse_name": "DoubleArray", + "display_name": "DoubleArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "fd04db5e-35c9-40a7-ac84-9dfc940f8ba1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=FloatArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "FloatArray", + "browse_name": "FloatArray", + "display_name": "FloatArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "54fe4e5d-4fd6-4907-bf0c-babbe13f0f40", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=GUIDArrayArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "GUIDArrayArray", + "browse_name": "GUIDArrayArray", + "display_name": "GUIDArrayArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "2d31267f-a5e4-4f3d-971a-d66172a4c9af", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16Array", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16Array", + "browse_name": "Int16Array", + "display_name": "Int16Array", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "fa7d7104-9efe-4e92-bba9-d0236a30b0ba", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32Array", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32Array", + "browse_name": "Int32Array", + "display_name": "Int32Array", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "22db2b4d-34e1-4f2d-8ac8-04b0dde2f7f8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64Array", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64Array", + "browse_name": "Int64Array", + "display_name": "Int64Array", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "00241a89-958d-4386-80b5-dfc476b68166", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=LocalizedTextArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "LocalizedTextArray", + "browse_name": "LocalizedTextArray", + "display_name": "LocalizedTextArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "bdc390a0-c02a-4650-83b8-4508a52679cd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=QualifiedNameArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "QualifiedNameArray", + "browse_name": "QualifiedNameArray", + "display_name": "QualifiedNameArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "cc62109f-e25c-4dc5-8ec4-376d99724e72", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByteArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByteArray", + "browse_name": "SByteArray", + "display_name": "SByteArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "2f639562-df69-4e94-a444-19c936887cb0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=StringArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "StringArray", + "browse_name": "StringArray", + "display_name": "StringArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "a37d44c8-7c20-4767-9404-b128b24cd646", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16Array", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16Array", + "browse_name": "UInt16Array", + "display_name": "UInt16Array", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "3e8d63fe-e41e-413e-92d8-c3f102bc10ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32Array", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32Array", + "browse_name": "UInt32Array", + "display_name": "UInt32Array", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "99dd4b61-2f50-4ff8-acfc-38131c32f475", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64Array", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64Array", + "browse_name": "UInt64Array", + "display_name": "UInt64Array", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "aeb08266-3c06-44f8-bb2e-9c773404509c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=VariantArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "VariantArray", + "browse_name": "VariantArray", + "display_name": "VariantArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + }, + { + "id": "38407757-b64a-4578-ae84-7bcfb94f865d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=XmlElementArray", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "XmlElementArray", + "browse_name": "XmlElementArray", + "display_name": "XmlElementArray", + "node_class": "Variable", + "parent_id": "d99550a1-f604-47f5-a55f-a17dc8379011", + "children": [] + } + ] + }, + { + "id": "98f9e82d-36a0-478b-a129-12b218194e70", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=StaticVariables", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "StaticVariables", + "browse_name": "StaticVariables", + "display_name": "StaticVariables", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "b8ac0ee5-a8d3-423f-958f-527f8b29a064", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Boolean", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Boolean", + "browse_name": "Boolean", + "display_name": "Boolean", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "f28c794e-f639-45fa-86a2-7f98d4d120da", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Byte", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Byte", + "browse_name": "Byte", + "display_name": "Byte", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "0ddc7293-5e89-45e8-9256-760fd096aaa2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ByteString", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ByteString", + "browse_name": "ByteString", + "display_name": "ByteString", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "feab510d-0a86-4e0c-b20e-18f51c86141e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=DateTime", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "DateTime", + "browse_name": "DateTime", + "display_name": "DateTime", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "f45fe026-0ed1-4fda-9e18-6ab570bd36fd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Double", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Double", + "browse_name": "Double", + "display_name": "Double", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "07ad3134-e278-49ad-95fe-c15c16892559", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Duration", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Duration", + "browse_name": "Duration", + "display_name": "Duration", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "fb982dc9-e8ff-47ff-a8c3-795f79e13f43", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Enumeration", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Enumeration", + "browse_name": "Enumeration", + "display_name": "Enumeration", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "f52f25bd-8369-4ce3-ba7e-d6a0747060ad", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Float", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Float", + "browse_name": "Float", + "display_name": "Float", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "ed1a6584-8e41-4bc0-9687-3bc0c8cd368c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=GUID", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "GUID", + "browse_name": "GUID", + "display_name": "GUID", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "f225056d-d413-41ed-af6c-eeeec184bb7d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Image", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Image", + "browse_name": "Image", + "display_name": "Image", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "e0efbdd7-195c-4ce9-ba07-70618750e14d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ImageBMP", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ImageBMP", + "browse_name": "ImageBMP", + "display_name": "ImageBMP", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "3ced07c1-b36d-4d3e-97fb-6ba987902638", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ImageGIF", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ImageGIF", + "browse_name": "ImageGIF", + "display_name": "ImageGIF", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "89d95768-8732-4c51-8d34-a18757ca3d3b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ImageJPG", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ImageJPG", + "browse_name": "ImageJPG", + "display_name": "ImageJPG", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "05933d89-15d9-4f9c-ab80-b09287cbfa61", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=ImagePNG", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "ImagePNG", + "browse_name": "ImagePNG", + "display_name": "ImagePNG", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "022cd1ba-57e6-4064-8bc2-6f9c7b518dda", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int16", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int16", + "browse_name": "Int16", + "display_name": "Int16", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "ec37d448-cbfb-42c7-98eb-cf4b3ed607ae", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int32", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int32", + "browse_name": "Int32", + "display_name": "Int32", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "8b368035-cd55-4540-962a-c22cf1ce2f17", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Int64", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Int64", + "browse_name": "Int64", + "display_name": "Int64", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "d05a364a-095b-4760-a22c-54345a5d62bd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Integer", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Integer", + "browse_name": "Integer", + "display_name": "Integer", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "b24bb14b-cb4b-42e9-ae38-36ba9d1fef84", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=LocaleId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "LocaleId", + "browse_name": "LocaleId", + "display_name": "LocaleId", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "610b0f13-646b-469d-8c12-99c1a9ef83f5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=LocalizedText", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "LocalizedText", + "browse_name": "LocalizedText", + "display_name": "LocalizedText", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "e3bc1cbe-0723-4253-a777-d227bdbc732b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=NodeId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "NodeId", + "browse_name": "NodeId", + "display_name": "NodeId", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "74c437b3-d5dd-4b27-90cf-6b7acf6db217", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Number", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Number", + "browse_name": "Number", + "display_name": "Number", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "b204456a-c212-4010-857d-1f54106cb8ee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=QualifiedName", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "QualifiedName", + "browse_name": "QualifiedName", + "display_name": "QualifiedName", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "c6140594-1425-4674-a7a0-a7265cf7186a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=SByte", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "SByte", + "browse_name": "SByte", + "display_name": "SByte", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "350e42ca-635c-46bb-bba2-e992595a73df", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=String", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "String", + "browse_name": "String", + "display_name": "String", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "2812c21e-b8d2-4554-a233-354486c290ab", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=TimeString", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "TimeString", + "browse_name": "TimeString", + "display_name": "TimeString", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "6a86247c-fc79-4471-bacd-4c74bfbc280b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt16", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt16", + "browse_name": "UInt16", + "display_name": "UInt16", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "d6c3d3c3-b38d-474e-aed8-9980b8370c9f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt32", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt32", + "browse_name": "UInt32", + "display_name": "UInt32", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "34b1136b-189b-4c9d-a587-0bf6ec4354bc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInt64", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInt64", + "browse_name": "UInt64", + "display_name": "UInt64", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "47161b94-b6d8-4733-919f-f72913cd5b06", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UInteger", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UInteger", + "browse_name": "UInteger", + "display_name": "UInteger", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "6f43afd5-7627-4516-962f-c1aea6e2c086", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=UtcTime", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "UtcTime", + "browse_name": "UtcTime", + "display_name": "UtcTime", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "b12a68d9-b5fa-4569-afc3-cc08ba78e1ac", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=Variant", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "Variant", + "browse_name": "Variant", + "display_name": "Variant", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + }, + { + "id": "78b11be0-ebd2-486e-a129-0c9b4475d37e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=XmlElement", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "XmlElement", + "browse_name": "XmlElement", + "display_name": "XmlElement", + "node_class": "Variable", + "parent_id": "98f9e82d-36a0-478b-a129-12b218194e70", + "children": [] + } + ] + }, + { + "id": "7fd12e30-00f2-46b3-a501-8647dd9f1a77", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=TwoStateItems", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "TwoStateItems", + "browse_name": "TwoStateItems", + "display_name": "TwoStateItems", + "node_class": "Object", + "parent_id": "1354c33d-e4c5-4a52-af6f-533839b58113", + "children": [ + { + "id": "97c202d2-4b81-4a5e-89e5-3424c7c0c7ef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=TwoStateDiscreteItem", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "TwoStateDiscreteItem", + "browse_name": "TwoStateDiscreteItem", + "display_name": "TwoStateDiscreteItem", + "node_class": "Variable", + "parent_id": "7fd12e30-00f2-46b3-a501-8647dd9f1a77", + "children": [ + { + "id": "37a241d0-faea-4d3b-a15f-4a7e85659c1a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=TwoStateDiscreteItem/0:FalseState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "TwoStateDiscreteItem/0:FalseState", + "browse_name": "FalseState", + "display_name": "FalseState", + "node_class": "Variable", + "parent_id": "97c202d2-4b81-4a5e-89e5-3424c7c0c7ef", + "children": [] + }, + { + "id": "4ae64d8f-b2f5-476b-8781-8cd568563481", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=5;s=TwoStateDiscreteItem/0:TrueState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/StaticNodes", + "namespace_index": 5, + "identifier_type": "s", + "identifier": "TwoStateDiscreteItem/0:TrueState", + "browse_name": "TrueState", + "display_name": "TrueState", + "node_class": "Variable", + "parent_id": "97c202d2-4b81-4a5e-89e5-3424c7c0c7ef", + "children": [] + } + ] + } + ] + } + ] + }, + { + "id": "1c22696f-51a1-438b-ad46-4ab5c5ecdd46", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyObjectsFolder", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyObjectsFolder", + "browse_name": "MyObjects", + "display_name": "MyObjects", + "node_class": "Object", + "parent_id": null, + "children": [ + { + "id": "1941ecbd-2214-4807-b19b-f60bb4dd8e57", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyDevice", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyDevice", + "browse_name": "MyDevice", + "display_name": "MyDevice", + "node_class": "Object", + "parent_id": "1c22696f-51a1-438b-ad46-4ab5c5ecdd46", + "children": [ + { + "id": "c5be7ba5-a48c-4247-b78b-cf7544e2494b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel", + "browse_name": "MyLevel", + "display_name": "MyLevel", + "node_class": "Variable", + "parent_id": "1941ecbd-2214-4807-b19b-f60bb4dd8e57", + "children": [] + }, + { + "id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm", + "browse_name": "MyLevelAlarm", + "display_name": "MyLevelAlarm", + "node_class": "Object", + "parent_id": "1941ecbd-2214-4807-b19b-f60bb4dd8e57", + "children": [ + { + "id": "8f5bc674-820b-481e-b4fc-2df82277fa9a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=9027", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "9027", + "browse_name": "Enable", + "display_name": "Enable", + "node_class": "Method", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "2bbb48b3-6641-481e-a9fd-7b73f2d9fe98", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=9028", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "9028", + "browse_name": "Disable", + "display_name": "Disable", + "node_class": "Method", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "cff4714b-2038-4538-ad4e-6383e7fc0c68", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=9029", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "9029", + "browse_name": "AddComment", + "display_name": "AddComment", + "node_class": "Method", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "1cf3ef78-ad57-4bc3-8ec8-f8e565a873e3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=9030", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "9030", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "cff4714b-2038-4538-ad4e-6383e7fc0c68", + "children": [] + } + ] + }, + { + "id": "358ae561-4eb2-419f-a995-c9d12ca53ea5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=9111", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "9111", + "browse_name": "Acknowledge", + "display_name": "Acknowledge", + "node_class": "Method", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "165e8cf4-253b-4977-94d9-8416718005c9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "i=9112", + "namespace_uri": "http://opcfoundation.org/UA/", + "namespace_index": 0, + "identifier_type": "i", + "identifier": "9112", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "358ae561-4eb2-419f-a995-c9d12ca53ea5", + "children": [] + } + ] + }, + { + "id": "092bd170-2cb5-4c23-9a07-5c3a39247ed6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:AckedState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:AckedState", + "browse_name": "AckedState", + "display_name": "AckedState", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "86f6fda8-d208-4a4c-bac1-ba90752ead24", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:AckedState/0:FalseState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:AckedState/0:FalseState", + "browse_name": "FalseState", + "display_name": "FalseState", + "node_class": "Variable", + "parent_id": "092bd170-2cb5-4c23-9a07-5c3a39247ed6", + "children": [] + }, + { + "id": "b2cf3191-ccbb-49da-8cda-562591422fc1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:AckedState/0:TrueState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:AckedState/0:TrueState", + "browse_name": "TrueState", + "display_name": "TrueState", + "node_class": "Variable", + "parent_id": "092bd170-2cb5-4c23-9a07-5c3a39247ed6", + "children": [] + }, + { + "id": "c5102122-7662-48ec-b007-c481eee3f71b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:AckedState/0:Id", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:AckedState/0:Id", + "browse_name": "Id", + "display_name": "Id", + "node_class": "Variable", + "parent_id": "092bd170-2cb5-4c23-9a07-5c3a39247ed6", + "children": [] + } + ] + }, + { + "id": "fde21e18-5b54-4bd5-ac99-776ab0596e78", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ActiveState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ActiveState", + "browse_name": "ActiveState", + "display_name": "ActiveState", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "9238ee93-18c8-40c1-8448-571f4ee3e8d9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ActiveState/0:FalseState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ActiveState/0:FalseState", + "browse_name": "FalseState", + "display_name": "FalseState", + "node_class": "Variable", + "parent_id": "fde21e18-5b54-4bd5-ac99-776ab0596e78", + "children": [] + }, + { + "id": "4f579c3d-2342-467f-b09e-d5ec72bbb04e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ActiveState/0:TrueState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ActiveState/0:TrueState", + "browse_name": "TrueState", + "display_name": "TrueState", + "node_class": "Variable", + "parent_id": "fde21e18-5b54-4bd5-ac99-776ab0596e78", + "children": [] + }, + { + "id": "2e128f10-9631-45e2-b3b5-31777d1d4e35", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ActiveState/0:Id", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ActiveState/0:Id", + "browse_name": "Id", + "display_name": "Id", + "node_class": "Variable", + "parent_id": "fde21e18-5b54-4bd5-ac99-776ab0596e78", + "children": [] + } + ] + }, + { + "id": "2838cbf5-f329-466f-9da9-a088f190b485", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Comment", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Comment", + "browse_name": "Comment", + "display_name": "Comment", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "a1020eba-3ce9-4de3-8b8d-2bd04b4d9b37", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Comment/0:SourceTimestamp", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Comment/0:SourceTimestamp", + "browse_name": "SourceTimestamp", + "display_name": "SourceTimestamp", + "node_class": "Variable", + "parent_id": "2838cbf5-f329-466f-9da9-a088f190b485", + "children": [] + } + ] + }, + { + "id": "e37d051f-7047-4501-9a14-6174fc1896c9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:EnabledState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:EnabledState", + "browse_name": "EnabledState", + "display_name": "EnabledState", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "a091f2b6-9b74-4fab-966f-11060d1c7ff5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:EnabledState/0:FalseState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:EnabledState/0:FalseState", + "browse_name": "FalseState", + "display_name": "FalseState", + "node_class": "Variable", + "parent_id": "e37d051f-7047-4501-9a14-6174fc1896c9", + "children": [] + }, + { + "id": "5f171059-8990-43db-ac5b-c3ed1d3558ef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:EnabledState/0:TrueState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:EnabledState/0:TrueState", + "browse_name": "TrueState", + "display_name": "TrueState", + "node_class": "Variable", + "parent_id": "e37d051f-7047-4501-9a14-6174fc1896c9", + "children": [] + }, + { + "id": "cc7abf4f-8db3-44d9-91b9-58b9dba67754", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:EnabledState/0:Id", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:EnabledState/0:Id", + "browse_name": "Id", + "display_name": "Id", + "node_class": "Variable", + "parent_id": "e37d051f-7047-4501-9a14-6174fc1896c9", + "children": [] + } + ] + }, + { + "id": "18f7bfd1-dc9e-4967-bf6a-bb95860a66da", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LastSeverity", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LastSeverity", + "browse_name": "LastSeverity", + "display_name": "LastSeverity", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "105fb1db-ef41-4232-a7a5-bf0c79d9a88c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LastSeverity/0:SourceTimestamp", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LastSeverity/0:SourceTimestamp", + "browse_name": "SourceTimestamp", + "display_name": "SourceTimestamp", + "node_class": "Variable", + "parent_id": "18f7bfd1-dc9e-4967-bf6a-bb95860a66da", + "children": [] + } + ] + }, + { + "id": "8d9aa04e-de35-42a1-a117-737202552d51", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LimitState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LimitState", + "browse_name": "LimitState", + "display_name": "LimitState", + "node_class": "Object", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "e5348006-50ea-453a-8301-1f00c27f218f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LimitState/0:CurrentState", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LimitState/0:CurrentState", + "browse_name": "CurrentState", + "display_name": "CurrentState", + "node_class": "Variable", + "parent_id": "8d9aa04e-de35-42a1-a117-737202552d51", + "children": [ + { + "id": "a7abcbdb-ff60-4707-b742-81d95b732fe8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LimitState/0:CurrentState/0:Id", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LimitState/0:CurrentState/0:Id", + "browse_name": "Id", + "display_name": "Id", + "node_class": "Variable", + "parent_id": "e5348006-50ea-453a-8301-1f00c27f218f", + "children": [] + } + ] + } + ] + }, + { + "id": "5a90d406-d4c0-49ae-bf48-b1793ee5a700", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Quality", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Quality", + "browse_name": "Quality", + "display_name": "Quality", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [ + { + "id": "750e7fbf-2e68-4e13-b4d5-279637d2eba6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Quality/0:SourceTimestamp", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Quality/0:SourceTimestamp", + "browse_name": "SourceTimestamp", + "display_name": "SourceTimestamp", + "node_class": "Variable", + "parent_id": "5a90d406-d4c0-49ae-bf48-b1793ee5a700", + "children": [] + } + ] + }, + { + "id": "4265027c-a15e-4711-a33f-066ae53d9923", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:EventId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:EventId", + "browse_name": "EventId", + "display_name": "EventId", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "a37d879d-8792-4a99-9a46-7040fd736f1c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ConditionClassId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ConditionClassId", + "browse_name": "ConditionClassId", + "display_name": "ConditionClassId", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "87d22529-938b-4de9-af1c-93a143c68888", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ConditionSubClassName", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ConditionSubClassName", + "browse_name": "ConditionSubClassName", + "display_name": "ConditionSubClassName", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "f3850d89-da88-4fd9-97c4-4ef5e646f701", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Time", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Time", + "browse_name": "Time", + "display_name": "Time", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "a4638e8e-7554-4915-a1d9-32488f83ba12", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:SuppressedOrShelved", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:SuppressedOrShelved", + "browse_name": "SuppressedOrShelved", + "display_name": "SuppressedOrShelved", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "c5f6d218-1e53-43d1-9c03-5e8ecce09360", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:SourceNode", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:SourceNode", + "browse_name": "SourceNode", + "display_name": "SourceNode", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "8ca4fd0e-6a89-4f91-a44f-ced92423ac14", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:EventType", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:EventType", + "browse_name": "EventType", + "display_name": "EventType", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "416a37e1-1bfc-493e-901b-888e0764613c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LowLowLimit", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LowLowLimit", + "browse_name": "LowLowLimit", + "display_name": "LowLowLimit", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "02402504-df28-4ad9-9654-e91ce3123475", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:HighHighLimit", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:HighHighLimit", + "browse_name": "HighHighLimit", + "display_name": "HighHighLimit", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "c8bc07f2-0b41-4889-aad9-86f9ef3102bf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:HighLimit", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:HighLimit", + "browse_name": "HighLimit", + "display_name": "HighLimit", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "687b19d3-5699-4710-acbe-edd8e8a47dcc", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Severity", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Severity", + "browse_name": "Severity", + "display_name": "Severity", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "0eda9f6b-74e2-4c0a-af10-0825ef62398b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:InputNode", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:InputNode", + "browse_name": "InputNode", + "display_name": "InputNode", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "48497d31-7f33-43db-89d8-04a166c89a12", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Retain", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Retain", + "browse_name": "Retain", + "display_name": "Retain", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "a8516583-c616-442a-9911-d305992729c8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:Message", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:Message", + "browse_name": "Message", + "display_name": "Message", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "4848a3be-07c9-4319-bd4f-5b42abbd2383", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ClientUserId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ClientUserId", + "browse_name": "ClientUserId", + "display_name": "ClientUserId", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "51e8b4a0-9c1c-4834-9363-0c72288b8638", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ConditionSubClassId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ConditionSubClassId", + "browse_name": "ConditionSubClassId", + "display_name": "ConditionSubClassId", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "9a1bc23f-db5b-43f0-812d-fc42f0d44db9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:BranchId", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:BranchId", + "browse_name": "BranchId", + "display_name": "BranchId", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "4fcad3a1-5837-4d5c-83ef-491ee2e2bcb2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ReceiveTime", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ReceiveTime", + "browse_name": "ReceiveTime", + "display_name": "ReceiveTime", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "4d9bf7a3-8bcf-4539-98f0-64931b367e09", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:SourceName", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:SourceName", + "browse_name": "SourceName", + "display_name": "SourceName", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "70237194-581e-4df9-8623-c0eb71868786", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ConditionClassName", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ConditionClassName", + "browse_name": "ConditionClassName", + "display_name": "ConditionClassName", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "04be15eb-7c0e-4f6d-9cf3-564251b6284c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:ConditionName", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:ConditionName", + "browse_name": "ConditionName", + "display_name": "ConditionName", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + }, + { + "id": "dfa3dac7-d06f-4aa7-8bb0-bc84cb075456", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyLevel.Alarm/0:LowLimit", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyLevel.Alarm/0:LowLimit", + "browse_name": "LowLimit", + "display_name": "LowLimit", + "node_class": "Variable", + "parent_id": "101a825d-70f8-427f-a945-b71d1fe6657c", + "children": [] + } + ] + }, + { + "id": "91da43c1-4995-4b3b-ac1b-60856fa90d96", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyMethod", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyMethod", + "browse_name": "MyMethod", + "display_name": "MyMethod", + "node_class": "Method", + "parent_id": "1941ecbd-2214-4807-b19b-f60bb4dd8e57", + "children": [ + { + "id": "843c61d3-5a95-4c06-9f32-15bc229c8171", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyMethod/0:InputArguments", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyMethod/0:InputArguments", + "browse_name": "InputArguments", + "display_name": "InputArguments", + "node_class": "Variable", + "parent_id": "91da43c1-4995-4b3b-ac1b-60856fa90d96", + "children": [] + }, + { + "id": "c39e713b-bf58-4e5a-b4f9-8782a33ec61c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MyMethod/0:OutputArguments", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MyMethod/0:OutputArguments", + "browse_name": "OutputArguments", + "display_name": "OutputArguments", + "node_class": "Variable", + "parent_id": "91da43c1-4995-4b3b-ac1b-60856fa90d96", + "children": [] + } + ] + }, + { + "id": "b18cb6f1-5880-49c7-8b02-42df28ce2109", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=6;s=MySwitch", + "namespace_uri": "http://www.prosysopc.com/OPCUA/SampleAddressSpace", + "namespace_index": 6, + "identifier_type": "s", + "identifier": "MySwitch", + "browse_name": "MySwitch", + "display_name": "MySwitch", + "node_class": "Variable", + "parent_id": "1941ecbd-2214-4807-b19b-f60bb4dd8e57", + "children": [] + } + ] + } + ] + }, + { + "id": "0c03ecf1-9883-42e5-9719-4a2dbd092e32", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;g=22ee03f2-1ff2-c745-99a8-bd8377705a2c", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "g", + "identifier": "22ee03f2-1ff2-c745-99a8-bd8377705a2c", + "browse_name": "Rust OPC UA Client", + "display_name": "Rust OPC UA Client", + "node_class": "Object", + "parent_id": null, + "children": [ + { + "id": "4a74d1b5-418d-4232-a8ed-b455c420e7aa", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SubscriptionDiagnosticsArray", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SubscriptionDiagnosticsArray", + "browse_name": "SubscriptionDiagnosticsArray", + "display_name": "SubscriptionDiagnosticsArray", + "node_class": "Variable", + "parent_id": "0c03ecf1-9883-42e5-9719-4a2dbd092e32", + "children": [] + } + ] + }, + { + "id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics", + "browse_name": "SessionDiagnostics", + "display_name": "SessionDiagnostics", + "node_class": "Variable", + "parent_id": null, + "children": [ + { + "id": "320cad1d-2c4c-4ce2-9d96-fb7e57709d1a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ActualSessionTimeout", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ActualSessionTimeout", + "browse_name": "ActualSessionTimeout", + "display_name": "ActualSessionTimeout", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "834f2840-4851-4eb5-af0b-66b8a98efcdd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddNodesCount", + "browse_name": "AddNodesCount", + "display_name": "AddNodesCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "3b1b107a-ead1-4044-8c67-2a79d951aa4c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "834f2840-4851-4eb5-af0b-66b8a98efcdd", + "children": [] + }, + { + "id": "dbab0593-1c78-45f5-9699-e41a05e6c85f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "834f2840-4851-4eb5-af0b-66b8a98efcdd", + "children": [] + } + ] + }, + { + "id": "0037bb11-d356-410e-a707-fd0481136adf", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddReferencesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddReferencesCount", + "browse_name": "AddReferencesCount", + "display_name": "AddReferencesCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "22442f2c-7dbc-4d5b-8925-3a0e332d449c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddReferencesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddReferencesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "0037bb11-d356-410e-a707-fd0481136adf", + "children": [] + }, + { + "id": "0d612f73-5f3d-4d73-9180-528c51592598", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddReferencesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:AddReferencesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "0037bb11-d356-410e-a707-fd0481136adf", + "children": [] + } + ] + }, + { + "id": "62359756-74e7-4ca9-8a21-07bacb55616b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseCount", + "browse_name": "BrowseCount", + "display_name": "BrowseCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "44a69f8c-c6fb-42e0-a754-8e4c88787c84", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "62359756-74e7-4ca9-8a21-07bacb55616b", + "children": [] + }, + { + "id": "ab413deb-9590-4cbe-80bb-e96c84f5c798", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "62359756-74e7-4ca9-8a21-07bacb55616b", + "children": [] + } + ] + }, + { + "id": "26f51711-0a7c-4f3c-8f3f-c5f78c476f99", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseNextCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseNextCount", + "browse_name": "BrowseNextCount", + "display_name": "BrowseNextCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "23106b58-a015-488e-a527-bbbd8bab2297", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseNextCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseNextCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "26f51711-0a7c-4f3c-8f3f-c5f78c476f99", + "children": [] + }, + { + "id": "41a18dea-9929-4b12-8a0d-07e62868d370", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseNextCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:BrowseNextCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "26f51711-0a7c-4f3c-8f3f-c5f78c476f99", + "children": [] + } + ] + }, + { + "id": "143839bd-f5a6-46d8-8ada-6780abd23814", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CallCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CallCount", + "browse_name": "CallCount", + "display_name": "CallCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "ff1784a0-8c8a-4c0c-a9dd-107ce7372bd6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CallCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CallCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "143839bd-f5a6-46d8-8ada-6780abd23814", + "children": [] + }, + { + "id": "c804f7f6-6890-4d01-8498-9dfa5a34388c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CallCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CallCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "143839bd-f5a6-46d8-8ada-6780abd23814", + "children": [] + } + ] + }, + { + "id": "15dbf268-a3b8-477c-9dd0-39431a1f050f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientConnectionTime", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientConnectionTime", + "browse_name": "ClientConnectionTime", + "display_name": "ClientConnectionTime", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription", + "browse_name": "ClientDescription", + "display_name": "ClientDescription", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "507e70e7-4cb2-4b89-a50d-ea0551016fd5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ApplicationName", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ApplicationName", + "browse_name": "ApplicationName", + "display_name": "ApplicationName", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + }, + { + "id": "2e8494dd-8ccc-4ec6-bcb5-0f241489b634", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ApplicationType", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ApplicationType", + "browse_name": "ApplicationType", + "display_name": "ApplicationType", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + }, + { + "id": "c3df913b-43c6-4403-80c6-a3651f32a1e9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ApplicationUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ApplicationUri", + "browse_name": "ApplicationUri", + "display_name": "ApplicationUri", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + }, + { + "id": "e7b65e75-c016-4ac6-ae25-1877d2dc0eee", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryProfileUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryProfileUri", + "browse_name": "DiscoveryProfileUri", + "display_name": "DiscoveryProfileUri", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + }, + { + "id": "188bc77e-6dee-49f4-b58b-848edf73539e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryUrls", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:DiscoveryUrls", + "browse_name": "DiscoveryUrls", + "display_name": "DiscoveryUrls", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + }, + { + "id": "9ad6a8e7-958b-43e0-84ca-b7392d65ce52", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:GatewayServerUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:GatewayServerUri", + "browse_name": "GatewayServerUri", + "display_name": "GatewayServerUri", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + }, + { + "id": "9f2292f8-43cc-4ccf-b750-79dd08951dcd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ProductUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientDescription/0:ProductUri", + "browse_name": "ProductUri", + "display_name": "ProductUri", + "node_class": "Variable", + "parent_id": "7f8765fa-63a0-4b27-873b-ebc2bba1c049", + "children": [] + } + ] + }, + { + "id": "1cf76814-a546-4c4f-bb2d-9a8b219fb5c2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientLastContactTime", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ClientLastContactTime", + "browse_name": "ClientLastContactTime", + "display_name": "ClientLastContactTime", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "7513ad0e-1d95-49bc-9bf6-a0c06a06f303", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateMonitoredItemsCount", + "browse_name": "CreateMonitoredItemsCount", + "display_name": "CreateMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "32721cb5-4efc-4457-890b-7d11c629b5f9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "7513ad0e-1d95-49bc-9bf6-a0c06a06f303", + "children": [] + }, + { + "id": "db27018d-613d-4ab5-b683-a092ebe97a96", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "7513ad0e-1d95-49bc-9bf6-a0c06a06f303", + "children": [] + } + ] + }, + { + "id": "720fe705-c0c6-456b-a0e3-887fa57fe39f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateSubscriptionCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateSubscriptionCount", + "browse_name": "CreateSubscriptionCount", + "display_name": "CreateSubscriptionCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "3add09c2-9070-4e88-a2bd-e678503e52ea", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateSubscriptionCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateSubscriptionCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "720fe705-c0c6-456b-a0e3-887fa57fe39f", + "children": [] + }, + { + "id": "3bf16e80-c12a-438e-9426-3ebde1ff30b8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateSubscriptionCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CreateSubscriptionCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "720fe705-c0c6-456b-a0e3-887fa57fe39f", + "children": [] + } + ] + }, + { + "id": "75551990-0ed7-4973-b0c6-bd856ce05c7e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CurrentMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CurrentMonitoredItemsCount", + "browse_name": "CurrentMonitoredItemsCount", + "display_name": "CurrentMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "14f802fe-8c8d-4297-9a37-5b3045c79c8e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CurrentPublishRequestsInQueue", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CurrentPublishRequestsInQueue", + "browse_name": "CurrentPublishRequestsInQueue", + "display_name": "CurrentPublishRequestsInQueue", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "85a0461e-a98b-4eaa-9feb-90b8b0c86d56", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CurrentSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:CurrentSubscriptionsCount", + "browse_name": "CurrentSubscriptionsCount", + "display_name": "CurrentSubscriptionsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "7a98d96b-7230-4b30-b6d0-64b7b441acb5", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteMonitoredItemsCount", + "browse_name": "DeleteMonitoredItemsCount", + "display_name": "DeleteMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "04d9c49a-a2e3-4993-9114-36f55900b0fe", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "7a98d96b-7230-4b30-b6d0-64b7b441acb5", + "children": [] + }, + { + "id": "7abd82fe-8c77-41d0-98cf-7bc4ea4640c6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "7a98d96b-7230-4b30-b6d0-64b7b441acb5", + "children": [] + } + ] + }, + { + "id": "5547ca6d-60d3-47d4-9245-39c6583975d8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteNodesCount", + "browse_name": "DeleteNodesCount", + "display_name": "DeleteNodesCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "1386fe2b-460b-4cf3-957a-726292bac462", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "5547ca6d-60d3-47d4-9245-39c6583975d8", + "children": [] + }, + { + "id": "7e896ce5-2aa0-409d-8f6f-0096c17d27de", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "5547ca6d-60d3-47d4-9245-39c6583975d8", + "children": [] + } + ] + }, + { + "id": "31e0fa05-655e-4fdc-9fcd-83a77e1186c3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteReferencesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteReferencesCount", + "browse_name": "DeleteReferencesCount", + "display_name": "DeleteReferencesCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "4412695e-07b4-4b4d-a5ec-47f63d8e2f92", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteReferencesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteReferencesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "31e0fa05-655e-4fdc-9fcd-83a77e1186c3", + "children": [] + }, + { + "id": "276a8688-250f-4dfb-a9ec-aace82b12b4e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteReferencesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteReferencesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "31e0fa05-655e-4fdc-9fcd-83a77e1186c3", + "children": [] + } + ] + }, + { + "id": "15c7bdb6-be4e-408c-8541-6aa8cc30a46b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteSubscriptionsCount", + "browse_name": "DeleteSubscriptionsCount", + "display_name": "DeleteSubscriptionsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "0bf1307c-aff3-4bbe-81df-a27d5ab907bd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "15c7bdb6-be4e-408c-8541-6aa8cc30a46b", + "children": [] + }, + { + "id": "3daa33ac-0333-41bb-bd92-279a832058d7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:DeleteSubscriptionsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "15c7bdb6-be4e-408c-8541-6aa8cc30a46b", + "children": [] + } + ] + }, + { + "id": "1d9c1170-2ab6-441e-b2ec-53fdf0544a35", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:EndpointUrl", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:EndpointUrl", + "browse_name": "EndpointUrl", + "display_name": "EndpointUrl", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "f6476397-8536-46c6-be6d-443db52291d1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryReadCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryReadCount", + "browse_name": "HistoryReadCount", + "display_name": "HistoryReadCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "878c42a2-a56a-4d71-bc90-d15e9acf5ee2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryReadCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryReadCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "f6476397-8536-46c6-be6d-443db52291d1", + "children": [] + }, + { + "id": "8ef425a7-64b7-4524-bb3b-32fdb839a60f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryReadCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryReadCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "f6476397-8536-46c6-be6d-443db52291d1", + "children": [] + } + ] + }, + { + "id": "c20535b9-f60d-48d4-91f3-e02004bc3f2d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryUpdateCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryUpdateCount", + "browse_name": "HistoryUpdateCount", + "display_name": "HistoryUpdateCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "72d6b917-888d-4984-8fe1-813b7a88145d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryUpdateCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryUpdateCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "c20535b9-f60d-48d4-91f3-e02004bc3f2d", + "children": [] + }, + { + "id": "9fec1b6a-add0-45c6-8385-de4d3637997d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryUpdateCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:HistoryUpdateCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "c20535b9-f60d-48d4-91f3-e02004bc3f2d", + "children": [] + } + ] + }, + { + "id": "6429f172-69e0-473d-9ceb-0f8fb5b07c35", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:LocaleIds", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:LocaleIds", + "browse_name": "LocaleIds", + "display_name": "LocaleIds", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "cee96e5a-770b-44af-8a2a-5fc9f754261b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:MaxResponseMessageSize", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:MaxResponseMessageSize", + "browse_name": "MaxResponseMessageSize", + "display_name": "MaxResponseMessageSize", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "7848edf9-49ec-4c9e-b7da-efc42d2b7f4c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifyMonitoredItemsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifyMonitoredItemsCount", + "browse_name": "ModifyMonitoredItemsCount", + "display_name": "ModifyMonitoredItemsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "4cc08fe1-b5ca-4fcd-ac20-e3f22009901b", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "7848edf9-49ec-4c9e-b7da-efc42d2b7f4c", + "children": [] + }, + { + "id": "91dc2ea3-33a9-4928-a25a-7a994b2fde56", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifyMonitoredItemsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "7848edf9-49ec-4c9e-b7da-efc42d2b7f4c", + "children": [] + } + ] + }, + { + "id": "4007f1f1-26a0-4d7e-9474-5886b2327a29", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifySubscriptionCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifySubscriptionCount", + "browse_name": "ModifySubscriptionCount", + "display_name": "ModifySubscriptionCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "d46cd857-eb80-4e15-bdac-3f26fcc663df", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifySubscriptionCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifySubscriptionCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4007f1f1-26a0-4d7e-9474-5886b2327a29", + "children": [] + }, + { + "id": "863db780-8259-46cf-bed2-75de17453df4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifySubscriptionCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ModifySubscriptionCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4007f1f1-26a0-4d7e-9474-5886b2327a29", + "children": [] + } + ] + }, + { + "id": "2198a993-7c26-40a8-bc12-625174aeda1f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:PublishCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:PublishCount", + "browse_name": "PublishCount", + "display_name": "PublishCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "b52c9e4b-7740-49e8-adf1-e9718b824a9d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:PublishCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:PublishCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "2198a993-7c26-40a8-bc12-625174aeda1f", + "children": [] + }, + { + "id": "f172e5eb-08e6-40c7-ba1d-eafcfeb4e7a4", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:PublishCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:PublishCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "2198a993-7c26-40a8-bc12-625174aeda1f", + "children": [] + } + ] + }, + { + "id": "4a1975fb-01d5-4636-bb05-546cc6b11bf8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryFirstCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryFirstCount", + "browse_name": "QueryFirstCount", + "display_name": "QueryFirstCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "b7ffbebf-098d-4b65-a03c-a2cfca718bb1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryFirstCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryFirstCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4a1975fb-01d5-4636-bb05-546cc6b11bf8", + "children": [] + }, + { + "id": "9d530691-c6ca-404b-a71f-889e8ce8ab9f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryFirstCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryFirstCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4a1975fb-01d5-4636-bb05-546cc6b11bf8", + "children": [] + } + ] + }, + { + "id": "99df2a0b-9ba6-4a72-9490-b9892b093445", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryNextCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryNextCount", + "browse_name": "QueryNextCount", + "display_name": "QueryNextCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "5fe95af4-0773-423e-8cb8-5178280e3ed2", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryNextCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryNextCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "99df2a0b-9ba6-4a72-9490-b9892b093445", + "children": [] + }, + { + "id": "c3b50d0c-6cc6-4334-833b-7bdcc02a1010", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryNextCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:QueryNextCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "99df2a0b-9ba6-4a72-9490-b9892b093445", + "children": [] + } + ] + }, + { + "id": "9a8cd21e-648a-4f2d-be61-f0312c95ab8f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ReadCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ReadCount", + "browse_name": "ReadCount", + "display_name": "ReadCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "0f5e915d-c485-4d6d-8778-75152f0e2e31", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ReadCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ReadCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "9a8cd21e-648a-4f2d-be61-f0312c95ab8f", + "children": [] + }, + { + "id": "85900811-dfc1-4097-83db-d308e7e35f42", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ReadCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ReadCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "9a8cd21e-648a-4f2d-be61-f0312c95ab8f", + "children": [] + } + ] + }, + { + "id": "37be6b00-37c1-419b-9918-e22c170a5e5d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RegisterNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RegisterNodesCount", + "browse_name": "RegisterNodesCount", + "display_name": "RegisterNodesCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "742e7b1c-d723-4cc7-89e6-fd1b41ed969f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RegisterNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RegisterNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "37be6b00-37c1-419b-9918-e22c170a5e5d", + "children": [] + }, + { + "id": "ad8c274e-d7bb-4602-9417-643bc0fc831a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RegisterNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RegisterNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "37be6b00-37c1-419b-9918-e22c170a5e5d", + "children": [] + } + ] + }, + { + "id": "5f5ebe54-ff92-4444-b46c-fac6e5299a37", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RepublishCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RepublishCount", + "browse_name": "RepublishCount", + "display_name": "RepublishCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "d4b789bb-5a0f-4eeb-a4a8-72a476621fc1", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RepublishCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RepublishCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "5f5ebe54-ff92-4444-b46c-fac6e5299a37", + "children": [] + }, + { + "id": "ba5d8843-4b3a-4bb2-92e1-44e0eb2c28ed", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RepublishCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:RepublishCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "5f5ebe54-ff92-4444-b46c-fac6e5299a37", + "children": [] + } + ] + }, + { + "id": "80d2aa4d-be43-416c-90d1-6c93c757f21e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ServerUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:ServerUri", + "browse_name": "ServerUri", + "display_name": "ServerUri", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "a79bb3ad-21ca-45dc-8a8d-d31391e28626", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SessionId", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SessionId", + "browse_name": "SessionId", + "display_name": "SessionId", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "077f2566-fc02-4967-8371-549614841fc3", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SessionName", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SessionName", + "browse_name": "SessionName", + "display_name": "SessionName", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "ec931f28-7a7c-459b-8787-cc152aa2adb8", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetMonitoringModeCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetMonitoringModeCount", + "browse_name": "SetMonitoringModeCount", + "display_name": "SetMonitoringModeCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "4c48759e-a3f8-40c5-85fd-2cb010c8d897", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetMonitoringModeCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetMonitoringModeCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ec931f28-7a7c-459b-8787-cc152aa2adb8", + "children": [] + }, + { + "id": "ad3d2b02-7de3-4127-93d7-551a506387c9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetMonitoringModeCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetMonitoringModeCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ec931f28-7a7c-459b-8787-cc152aa2adb8", + "children": [] + } + ] + }, + { + "id": "c514c20a-5edf-41cf-a275-da3bf01993f0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetPublishingModeCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetPublishingModeCount", + "browse_name": "SetPublishingModeCount", + "display_name": "SetPublishingModeCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "5bb2d896-926f-4ba2-8a82-9de52e5c281f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetPublishingModeCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetPublishingModeCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "c514c20a-5edf-41cf-a275-da3bf01993f0", + "children": [] + }, + { + "id": "17c30acc-1f03-4345-b449-de3c5c62b433", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetPublishingModeCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetPublishingModeCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "c514c20a-5edf-41cf-a275-da3bf01993f0", + "children": [] + } + ] + }, + { + "id": "191ca444-6b5a-4145-8c8d-2de51fe99eb0", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetTriggeringCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetTriggeringCount", + "browse_name": "SetTriggeringCount", + "display_name": "SetTriggeringCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "4fcb131e-d9a9-4290-859d-7de1dbd49bb9", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetTriggeringCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetTriggeringCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "191ca444-6b5a-4145-8c8d-2de51fe99eb0", + "children": [] + }, + { + "id": "17bd6dfd-c2a7-46c2-914f-d9a0867fb299", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetTriggeringCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:SetTriggeringCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "191ca444-6b5a-4145-8c8d-2de51fe99eb0", + "children": [] + } + ] + }, + { + "id": "4d35f5ed-006f-4685-a718-03c4d9fdb13d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TotalRequestCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TotalRequestCount", + "browse_name": "TotalRequestCount", + "display_name": "TotalRequestCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "08a58f0e-a99d-4f7c-9d03-ac63ade5c282", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TotalRequestCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TotalRequestCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4d35f5ed-006f-4685-a718-03c4d9fdb13d", + "children": [] + }, + { + "id": "5da5a387-d2d2-49e0-ad75-67cd079fc244", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TotalRequestCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TotalRequestCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4d35f5ed-006f-4685-a718-03c4d9fdb13d", + "children": [] + } + ] + }, + { + "id": "5811d0e3-8d49-45d0-a60c-b7629943b5ef", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TransferSubscriptionsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TransferSubscriptionsCount", + "browse_name": "TransferSubscriptionsCount", + "display_name": "TransferSubscriptionsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "4bbfc195-1a6a-4f26-a829-665de95b42dd", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "5811d0e3-8d49-45d0-a60c-b7629943b5ef", + "children": [] + }, + { + "id": "f570cd9d-81db-459c-b24b-5c1017d5025a", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TransferSubscriptionsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "5811d0e3-8d49-45d0-a60c-b7629943b5ef", + "children": [] + } + ] + }, + { + "id": "e346dd37-0c23-469a-83f1-f1144ba58063", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount", + "browse_name": "TranslateBrowsePathsToNodeIdsCount", + "display_name": "TranslateBrowsePathsToNodeIdsCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "c3e4a37f-e9ac-4cfb-aa4d-1cf9e97b8f1c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "e346dd37-0c23-469a-83f1-f1144ba58063", + "children": [] + }, + { + "id": "7283f392-dd8f-42f9-ae52-3432f97d5403", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:TranslateBrowsePathsToNodeIdsCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "e346dd37-0c23-469a-83f1-f1144ba58063", + "children": [] + } + ] + }, + { + "id": "9bef1392-7d34-484c-9f16-43e26540b46f", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnauthorizedRequestCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnauthorizedRequestCount", + "browse_name": "UnauthorizedRequestCount", + "display_name": "UnauthorizedRequestCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [] + }, + { + "id": "ab88e168-b290-4bfa-b79f-72f335077e0c", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnregisterNodesCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnregisterNodesCount", + "browse_name": "UnregisterNodesCount", + "display_name": "UnregisterNodesCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "d87732da-52fe-49ad-9ff8-eab5d9665c6d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnregisterNodesCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnregisterNodesCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "ab88e168-b290-4bfa-b79f-72f335077e0c", + "children": [] + }, + { + "id": "fc1a739b-17be-4815-b183-0dd9f43fb2a6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnregisterNodesCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:UnregisterNodesCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "ab88e168-b290-4bfa-b79f-72f335077e0c", + "children": [] + } + ] + }, + { + "id": "4195e95a-cc0e-487f-a1ea-2f4b38d16bff", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:WriteCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:WriteCount", + "browse_name": "WriteCount", + "display_name": "WriteCount", + "node_class": "Variable", + "parent_id": "103ecf81-4bf4-468d-a3ef-4f3cbfc3df2b", + "children": [ + { + "id": "1e970c1f-96d1-4db0-96a2-535749060871", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:WriteCount/0:ErrorCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:WriteCount/0:ErrorCount", + "browse_name": "ErrorCount", + "display_name": "ErrorCount", + "node_class": "Variable", + "parent_id": "4195e95a-cc0e-487f-a1ea-2f4b38d16bff", + "children": [] + }, + { + "id": "bc7d58a1-9e93-4f4a-8476-c9a452847498", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:WriteCount/0:TotalCount", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionDiagnostics/0:WriteCount/0:TotalCount", + "browse_name": "TotalCount", + "display_name": "TotalCount", + "node_class": "Variable", + "parent_id": "4195e95a-cc0e-487f-a1ea-2f4b38d16bff", + "children": [] + } + ] + } + ] + }, + { + "id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics", + "browse_name": "SessionSecurityDiagnostics", + "display_name": "SessionSecurityDiagnostics", + "node_class": "Variable", + "parent_id": null, + "children": [ + { + "id": "c43bd09c-96d3-4f01-9735-259a5b9e4f26", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:AuthenticationMechanism", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:AuthenticationMechanism", + "browse_name": "AuthenticationMechanism", + "display_name": "AuthenticationMechanism", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "bda9debd-dbca-40a1-a8bf-f7dc388b2c5e", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:ClientCertificate", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:ClientCertificate", + "browse_name": "ClientCertificate", + "display_name": "ClientCertificate", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "968c95d4-9c71-40a3-bdc3-2559bcf84ad7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:ClientUserIdHistory", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:ClientUserIdHistory", + "browse_name": "ClientUserIdHistory", + "display_name": "ClientUserIdHistory", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "10b6d307-56d6-4900-8b67-ba7c98157153", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:ClientUserIdOfSession", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:ClientUserIdOfSession", + "browse_name": "ClientUserIdOfSession", + "display_name": "ClientUserIdOfSession", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "9a5cdba6-7616-436d-a0c9-f7f9cd42c5c6", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:Encoding", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:Encoding", + "browse_name": "Encoding", + "display_name": "Encoding", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "04354398-3313-4f1d-ac84-da3249c10201", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:SecurityMode", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:SecurityMode", + "browse_name": "SecurityMode", + "display_name": "SecurityMode", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "7728b93d-3b1e-44c1-a68c-fd0c8e89c7f7", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:SecurityPolicyUri", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:SecurityPolicyUri", + "browse_name": "SecurityPolicyUri", + "display_name": "SecurityPolicyUri", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "587ab0af-7035-4f32-9c0a-60b28325993d", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:SessionId", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:SessionId", + "browse_name": "SessionId", + "display_name": "SessionId", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + }, + { + "id": "3d1f4d64-09c2-4f73-8197-f992b9e7d588", + "source_id": "a98ee9e4-168b-477f-b295-fcef8f9492cb", + "node_id": "ns=1;s=f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:TransportProtocol", + "namespace_uri": "urn:ABC123:OPCUA:SimulationServer", + "namespace_index": 1, + "identifier_type": "s", + "identifier": "f203ee22-f21f-45c7-99a8-bd8377705a2c/0:SessionSecurityDiagnostics/0:TransportProtocol", + "browse_name": "TransportProtocol", + "display_name": "TransportProtocol", + "node_class": "Variable", + "parent_id": "e0f8352f-429d-4efd-9fa6-bc85eedb9017", + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/src/views/coalFeeding.vue b/src/views/coalFeeding.vue new file mode 100644 index 0000000..151388f --- /dev/null +++ b/src/views/coalFeeding.vue @@ -0,0 +1,1241 @@ + + + diff --git a/src/views/coalFeeding2.vue b/src/views/coalFeeding2.vue new file mode 100644 index 0000000..0af8697 --- /dev/null +++ b/src/views/coalFeeding2.vue @@ -0,0 +1,922 @@ + + + diff --git a/src/views/coalFeedingA.vue b/src/views/coalFeedingA.vue new file mode 100644 index 0000000..b49d701 --- /dev/null +++ b/src/views/coalFeedingA.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/views/firesystem.vue b/src/views/firesystem.vue new file mode 100644 index 0000000..4a7daf1 --- /dev/null +++ b/src/views/firesystem.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/views/firesystem2.vue b/src/views/firesystem2.vue new file mode 100644 index 0000000..4a7daf1 --- /dev/null +++ b/src/views/firesystem2.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/views/plcList.vue b/src/views/plcList.vue new file mode 100644 index 0000000..7488c88 --- /dev/null +++ b/src/views/plcList.vue @@ -0,0 +1,175 @@ + + + + + diff --git a/src/views/plcList_form.vue b/src/views/plcList_form.vue new file mode 100644 index 0000000..1ae3ccd --- /dev/null +++ b/src/views/plcList_form.vue @@ -0,0 +1,169 @@ + + + diff --git a/src/views/runsystem.vue b/src/views/runsystem.vue new file mode 100644 index 0000000..4a7daf1 --- /dev/null +++ b/src/views/runsystem.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/views/startPage.vue b/src/views/startPage.vue new file mode 100644 index 0000000..4a7daf1 --- /dev/null +++ b/src/views/startPage.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/views/warning.vue b/src/views/warning.vue new file mode 100644 index 0000000..4a7daf1 --- /dev/null +++ b/src/views/warning.vue @@ -0,0 +1,14 @@ + + + diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..913b8f2 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "@vue/tsconfig/tsconfig.dom.json", + "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], + "exclude": ["src/**/__tests__/*"], + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + + "paths": { + "@/*": ["./src/*"] + } + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..9ee55fe --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + } + ], + "compilerOptions": { + "types": ["vite/client"], + "moduleResolution": "node" + } + +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..a83dfc9 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,19 @@ +{ + "extends": "@tsconfig/node22/tsconfig.json", + "include": [ + "vite.config.*", + "vitest.config.*", + "cypress.config.*", + "nightwatch.conf.*", + "playwright.config.*", + "eslint.config.*" + ], + "compilerOptions": { + "noEmit": true, + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + + "module": "ESNext", + "moduleResolution": "Bundler", + "types": ["node"] + } +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..82804af --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,37 @@ +import { fileURLToPath, URL } from "node:url"; + +import { defineConfig } from "vite"; +import vue from "@vitejs/plugin-vue"; +// import vueDevTools from "vite-plugin-vue-devtools"; + +// https://vite.dev/config/ +export default defineConfig({ + // plugins: [vue(), vueDevTools()], + plugins: [vue()], + define: { + "process.env": { TINY_MODE: "pc" }, + }, + build: { + sourcemap: false, + rollupOptions: { + output: { + manualChunks(id) { + if (!id.includes("node_modules")) return; + const parts = id.split("node_modules/")[1]?.split("/"); + const name = parts?.[0]?.startsWith("@") ? `${parts[0]}/${parts[1]}` : parts?.[0]; + if (!name) return "vendor"; + // Keep big UI libs separated for better caching and smaller initial chunk. + if (name.startsWith("@opentiny/")) return "vendor-opentiny"; + if (name === "vue" || name === "vue-router") return "vendor-vue"; + return "vendor"; + }, + }, + }, + }, + resolve: { + alias: { + '@': '/src' + // "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + } +});