diff --git a/goofy-client/.eslintignore b/goofy-client/.eslintignore
new file mode 100644
index 0000000000000000000000000000000000000000..3c3629e647f5ddf82548912e337bea9826b434af
--- /dev/null
+++ b/goofy-client/.eslintignore
@@ -0,0 +1 @@
+node_modules
diff --git a/goofy-client/.eslintrc.json b/goofy-client/.eslintrc.json
index b443427629577e480fd851bb7975abd94847fb81..36cccc70dd9c279002c566ff8f65abaa047801ea 100644
--- a/goofy-client/.eslintrc.json
+++ b/goofy-client/.eslintrc.json
@@ -1,44 +1,44 @@
 {
-  "root": true,
-  "parser": "@typescript-eslint/parser",
-  "parserOptions": {
-    "ecmaVersion": 2018,
-    "sourceType": "module",
-    "project": "./tsconfig.*?.json"
-  },
-  "ignorePatterns": ["**/*"],
-  "plugins": ["@typescript-eslint", "@nrwl/nx"],
-  "extends": [
-    "eslint:recommended",
-    "plugin:@typescript-eslint/eslint-recommended",
-    "plugin:@typescript-eslint/recommended",
-    "prettier",
-    "prettier/@typescript-eslint"
-  ],
-  "rules": {
-    "@typescript-eslint/explicit-member-accessibility": "off",
-    "@typescript-eslint/explicit-module-boundary-types": "off",
-    "@typescript-eslint/no-parameter-properties": "off",
-    "@nrwl/nx/enforce-module-boundaries": [
-      "error",
-      {
-        "enforceBuildableLibDependency": true,
-        "allow": [],
-        "depConstraints": [
-          {
-            "sourceTag": "*",
-            "onlyDependOnLibsWithTags": ["*"]
-          }
-        ]
-      }
-    ]
-  },
-  "overrides": [
-    {
-      "files": ["*.tsx"],
-      "rules": {
-        "@typescript-eslint/no-unused-vars": "off"
-      }
-    }
-  ]
+	"root": true,
+	"parser": "@typescript-eslint/parser",
+	"parserOptions": {
+		"ecmaVersion": 2018,
+		"sourceType": "module",
+		"project": "./tsconfig.*?.json"
+	},
+	"ignorePatterns": ["**/*"],
+	"plugins": ["@typescript-eslint", "@nx"],
+	"extends": [
+		"eslint:recommended",
+		"plugin:@typescript-eslint/eslint-recommended",
+		"plugin:@typescript-eslint/recommended",
+		"prettier",
+		"prettier/@typescript-eslint"
+	],
+	"rules": {
+		"@typescript-eslint/explicit-member-accessibility": "off",
+		"@typescript-eslint/explicit-module-boundary-types": "off",
+		"@typescript-eslint/no-parameter-properties": "off",
+		"@nx/enforce-module-boundaries": [
+			"error",
+			{
+				"enforceBuildableLibDependency": true,
+				"allow": [],
+				"depConstraints": [
+					{
+						"sourceTag": "*",
+						"onlyDependOnLibsWithTags": ["*"]
+					}
+				]
+			}
+		]
+	},
+	"overrides": [
+		{
+			"files": ["*.tsx"],
+			"rules": {
+				"@typescript-eslint/no-unused-vars": "off"
+			}
+		}
+	]
 }
diff --git a/goofy-client/.prettierignore b/goofy-client/.prettierignore
new file mode 100644
index 0000000000000000000000000000000000000000..e1853f8732117898382e1247c1a6afa9f340754f
--- /dev/null
+++ b/goofy-client/.prettierignore
@@ -0,0 +1,7 @@
+tmp
+/test
+/build
+node_modules
+/package.json
+/pnpm-lock.yaml
+packages/workspace/src/generators/**/files/**/*.json
diff --git a/goofy-client/angular.json b/goofy-client/angular.json
deleted file mode 100644
index 5f1d506b3b665e252c59633089bbac7e8e7f1d28..0000000000000000000000000000000000000000
--- a/goofy-client/angular.json
+++ /dev/null
@@ -1,1283 +0,0 @@
-{
-	"version": 1,
-	"projects": {
-		"api-root-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/api-root-shared",
-			"sourceRoot": "libs/api-root-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/api-root-shared/src/**/*.ts",
-							"libs/api-root-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/api-root-shared/tsconfig.spec.json",
-						"jestConfig": "libs/api-root-shared/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/api-root-shared"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"app-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/app-shared",
-			"sourceRoot": "libs/app-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/app-shared/src/**/*.ts",
-							"libs/app-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/app-shared/tsconfig.spec.json",
-						"jestConfig": "libs/app-shared/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/app-shared"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"bescheid": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/bescheid",
-			"sourceRoot": "libs/bescheid/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/bescheid"],
-					"options": {
-						"tsConfig": "libs/bescheid/tsconfig.spec.json",
-						"jestConfig": "libs/bescheid/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/bescheid/src/**/*.ts",
-							"libs/bescheid/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"bescheid-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/bescheid-shared",
-			"sourceRoot": "libs/bescheid-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/bescheid-shared"
-					],
-					"options": {
-						"tsConfig": "libs/bescheid-shared/tsconfig.spec.json",
-						"jestConfig": "libs/bescheid-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/bescheid-shared/src/**/*.ts",
-							"libs/bescheid-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"binary-file": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/binary-file",
-			"sourceRoot": "libs/binary-file/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/binary-file"],
-					"options": {
-						"tsConfig": "libs//binary-file/tsconfig.spec.json",
-						"jestConfig": "libs/binary-file/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/binary-file/src/**/*.ts",
-							"libs/binary-file/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"binary-file-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/binary-file-shared",
-			"sourceRoot": "libs/binary-file-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/binary-file-shared"
-					],
-					"options": {
-						"tsConfig": "libs/binary-file-shared/tsconfig.spec.json",
-						"jestConfig": "libs/binary-file-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/binary-file-shared/src/**/*.ts",
-							"libs/binary-file-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"command-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/command-shared",
-			"sourceRoot": "libs/command-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/command-shared/src/**/*.ts",
-							"libs/command-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/command-shared/tsconfig.spec.json",
-						"jestConfig": "libs/command-shared/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/command-shared"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"environment-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/environment-shared",
-			"sourceRoot": "libs/environment-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/environment-shared/src/**/*.ts",
-							"libs/environment-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/environment-shared/tsconfig.spec.json",
-						"jestConfig": "libs/environment-shared/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/environment-shared"
-					]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"forwarding": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/forwarding",
-			"sourceRoot": "libs/forwarding/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/forwarding/src/**/*.ts",
-							"libs/forwarding/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/forwarding"],
-					"options": {
-						"tsConfig": "libs/forwarding/tsconfig.spec.json",
-						"jestConfig": "libs/forwarding/jest.config.ts",
-						"passWithNoTests": true
-					}
-				}
-			},
-			"tags": []
-		},
-		"forwarding-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/forwarding-shared",
-			"sourceRoot": "libs/forwarding-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/forwarding-shared/src/**/*.ts",
-							"libs/forwarding-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/forwarding-shared"
-					],
-					"options": {
-						"tsConfig": "libs/forwarding-shared/tsconfig.spec.json",
-						"jestConfig": "libs/forwarding-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				}
-			},
-			"tags": []
-		},
-		"goofy": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "application",
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"root": "apps/goofy",
-			"sourceRoot": "apps/goofy/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"build": {
-					"builder": "@angular-devkit/build-angular:browser",
-					"options": {
-						"allowedCommonJsDependencies": ["file-saver"],
-						"outputPath": "dist/apps/goofy",
-						"index": "apps/goofy/src/index.html",
-						"main": "apps/goofy/src/main.ts",
-						"polyfills": "apps/goofy/src/polyfills.ts",
-						"tsConfig": "apps/goofy/tsconfig.app.json",
-						"assets": [
-							"apps/goofy/src/assets",
-							"apps/goofy/src/silent-refresh.html",
-							{
-								"input": "apps/goofy/src/favicon",
-								"glob": "**/*",
-								"output": ""
-							},
-							{
-								"input": "libs/ui/src/lib/assets",
-								"glob": "**/*",
-								"output": "assets/icons"
-							}
-						],
-						"styles": ["apps/goofy/src/styles/main.scss"],
-						"scripts": [],
-						"stylePreprocessorOptions": {
-							"includePaths": [
-								"apps/goofy/src/styles/abstracts",
-								"apps/goofy/src/styles/material",
-								"node_modules/@angular",
-								"node_modules/include-media",
-								"node_modules/typeface-roboto"
-							]
-						},
-						"vendorChunk": true,
-						"extractLicenses": false,
-						"buildOptimizer": false,
-						"sourceMap": true,
-						"optimization": false,
-						"namedChunks": true
-					},
-					"configurations": {
-						"production": {
-							"fileReplacements": [
-								{
-									"replace": "apps/goofy/src/environments/environment.ts",
-									"with": "apps/goofy/src/environments/environment.prod.ts"
-								}
-							],
-							"optimization": true,
-							"outputHashing": "all",
-							"sourceMap": false,
-							"namedChunks": false,
-							"extractLicenses": true,
-							"vendorChunk": false,
-							"buildOptimizer": true,
-							"budgets": [
-								{
-									"type": "initial",
-									"maximumWarning": "2mb",
-									"maximumError": "5mb"
-								},
-								{
-									"type": "anyComponentStyle",
-									"maximumWarning": "6kb",
-									"maximumError": "10kb"
-								}
-							]
-						}
-					},
-					"outputs": ["{options.outputPath}"]
-				},
-				"serve": {
-					"builder": "@angular-devkit/build-angular:dev-server",
-					"options": {
-						"browserTarget": "goofy:build",
-						"proxyConfig": "proxy.conf.mjs"
-					},
-					"configurations": {
-						"production": {
-							"browserTarget": "goofy:build:production"
-						}
-					}
-				},
-				"extract-i18n": {
-					"builder": "@angular-devkit/build-angular:extract-i18n",
-					"options": {
-						"browserTarget": "goofy:build"
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"apps/goofy/src/**/*.ts",
-							"apps/goofy/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "apps/goofy/tsconfig.spec.json",
-						"jestConfig": "apps/goofy/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/apps/goofy"]
-				}
-			},
-			"tags": []
-		},
-		"goofy-e2e": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"root": "apps/goofy-e2e",
-			"sourceRoot": "apps/goofy-e2e/src",
-			"projectType": "application",
-			"architect": {
-				"e2e": {
-					"builder": "@nrwl/cypress:cypress",
-					"options": {
-						"cypressConfig": "apps/goofy-e2e/cypress.config.ts",
-						"tsConfig": "apps/goofy-e2e/tsconfig.e2e.json",
-						"devServerTarget": "goofy:serve",
-						"testingType": "e2e"
-					},
-					"configurations": {
-						"production": {
-							"devServerTarget": "goofy:serve:production"
-						}
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"apps/goofy-e2e/**/*.{js,ts}",
-							"apps/goofy-e2e/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": [],
-			"implicitDependencies": ["goofy"]
-		},
-		"hint": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/hint",
-			"sourceRoot": "libs/hint/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/hint"],
-					"options": {
-						"tsConfig": "libs/hint/tsconfig.spec.json",
-						"jestConfig": "libs/hint/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/hint/**/*.ts",
-							"libs/hint/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"hint-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/hint-shared",
-			"sourceRoot": "libs/hint-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/hint-shared"],
-					"options": {
-						"tsConfig": "libs/hint-shared/tsconfig.spec.json",
-						"jestConfig": "libs/hint-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/hint-shared/**/*.ts",
-							"libs/hint-shared/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"historie": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/historie",
-			"sourceRoot": "libs/historie/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/historie"],
-					"options": {
-						"tsConfig": "libs/historie/tsconfig.spec.json",
-						"jestConfig": "libs/historie/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/historie/src/**/*.ts",
-							"libs/historie/src/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"historie-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/historie-shared",
-			"sourceRoot": "libs/historie-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/historie-shared"
-					],
-					"options": {
-						"tsConfig": "libs/historie-shared/tsconfig.spec.json",
-						"jestConfig": "libs/historie-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/historie-shared/src/**/*.ts",
-							"libs/historie-shared/src/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"kommentar": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/kommentar",
-			"sourceRoot": "libs/kommentar/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/kommentar"],
-					"options": {
-						"tsConfig": "libs/kommentar/tsconfig.spec.json",
-						"jestConfig": "libs/kommentar/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/kommentar/src/**/*.ts",
-							"libs/kommentar/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"kommentar-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/kommentar-shared",
-			"sourceRoot": "libs/kommentar-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/kommentar-shared"
-					],
-					"options": {
-						"tsConfig": "libs/kommentar-shared/tsconfig.spec.json",
-						"jestConfig": "libs/kommentar-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/kommentar-shared/src/**/*.ts",
-							"libs/kommentar-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"loesch-anforderung": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/loesch-anforderung",
-			"sourceRoot": "libs/loesch-anforderung/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/loesch-anforderung"
-					],
-					"options": {
-						"tsConfig": "libs/loesch-anforderung/tsconfig.spec.json",
-						"jestConfig": "libs/loesch-anforderung/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"outputs": ["{options.outputFile}"],
-					"options": {
-						"lintFilePatterns": [
-							"libs/loesch-anforderung/**/*.ts",
-							"libs/loesch-anforderung/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"loesch-anforderung-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/loesch-anforderung-shared",
-			"sourceRoot": "libs/loesch-anforderung-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/loesch-anforderung-shared"
-					],
-					"options": {
-						"tsConfig": "libs/loesch-anforderung-shared/tsconfig.spec.json",
-						"jestConfig": "libs/loesch-anforderung-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"outputs": ["{options.outputFile}"],
-					"options": {
-						"lintFilePatterns": [
-							"libs/loesch-anforderung-shared/**/*.ts",
-							"libs/loesch-anforderung-shared/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"navigation": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/navigation",
-			"sourceRoot": "libs/navigation/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/navigation/src/**/*.ts",
-							"libs/navigation/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/navigation/tsconfig.spec.json",
-						"jestConfig": "libs/navigation/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/navigation"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"navigation-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/navigation-shared",
-			"sourceRoot": "libs/navigation-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/navigation-shared"
-					],
-					"options": {
-						"tsConfig": "libs/navigation-shared/tsconfig.spec.json",
-						"jestConfig": "libs/navigation-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/navigation-shared/src/**/*.ts",
-							"libs/navigation-shared/src/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"postfach": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/postfach",
-			"sourceRoot": "libs/postfach/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/postfach"],
-					"options": {
-						"tsConfig": "libs/postfach/tsconfig.spec.json",
-						"jestConfig": "libs/postfach/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/postfach/src/**/*.ts",
-							"libs/postfach/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"postfach-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/postfach-shared",
-			"sourceRoot": "libs/postfach-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/postfach-shared"
-					],
-					"options": {
-						"tsConfig": "libs/postfach-shared/tsconfig.spec.json",
-						"jestConfig": "libs/postfach-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/postfach-shared/src/**/*.ts",
-							"libs/postfach-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"tech-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/tech-shared",
-			"sourceRoot": "libs/tech-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/tech-shared/src/**/*.ts",
-							"libs/tech-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/tech-shared/tsconfig.spec.json",
-						"jestConfig": "libs/tech-shared/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/tech-shared"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"test-utils": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/test-utils",
-			"sourceRoot": "libs/test-utils/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/test-utils/src/**/*.ts",
-							"libs/test-utils/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/test-utils/tsconfig.spec.json",
-						"jestConfig": "libs/test-utils/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/test-utils"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"ui": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/ui",
-			"sourceRoot": "libs/ui/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/ui/src/**/*.ts",
-							"libs/ui/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/ui/tsconfig.spec.json",
-						"jestConfig": "libs/ui/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/ui"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"user-assistance": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/user-assistance",
-			"sourceRoot": "libs/user-assistance/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/user-assistance"
-					],
-					"options": {
-						"jestConfig": "libs/user-assistance/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"outputs": ["{options.outputFile}"],
-					"options": {
-						"lintFilePatterns": [
-							"libs/user-assistance/**/*.ts",
-							"libs/user-assistance/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"user-profile": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/user-profile",
-			"sourceRoot": "libs/user-profile/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/user-profile"],
-					"options": {
-						"tsConfig": "libs/user-profile/tsconfig.spec.json",
-						"jestConfig": "libs/user-profile/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/user-profile/src/**/*.ts",
-							"libs/user-profile/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"user-profile-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/user-profile-shared",
-			"sourceRoot": "libs/user-profile-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/user-profile-shared"
-					],
-					"options": {
-						"tsConfig": "libs/user-profile-shared/tsconfig.spec.json",
-						"jestConfig": "libs/user-profile-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/user-profile-shared/src/**/*.ts",
-							"libs/user-profile-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				}
-			},
-			"tags": []
-		},
-		"user-settings": {
-			"projectType": "library",
-			"root": "libs/user-settings",
-			"sourceRoot": "libs/user-settings/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/user-settings"],
-					"options": {
-						"tsConfig": "libs/user-settings/tsconfig.spec.json",
-						"jestConfig": "libs/user-settings/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/user-settings/**/*.ts",
-							"libs/user-settings/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"user-settings-shared": {
-			"projectType": "library",
-			"root": "libs/user-settings-shared",
-			"sourceRoot": "libs/user-settings-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/user-settings-shared"
-					],
-					"options": {
-						"tsConfig": "libs/user-settings-shared/tsconfig.spec.json",
-						"jestConfig": "libs/user-settings-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				},
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/user-settings-shared/**/*.ts",
-							"libs/user-settings-shared/**/*.html"
-						]
-					}
-				}
-			},
-			"tags": []
-		},
-		"vorgang": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/vorgang",
-			"sourceRoot": "libs/vorgang/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/vorgang/src/**/*.ts",
-							"libs/vorgang/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/vorgang/tsconfig.spec.json",
-						"jestConfig": "libs/vorgang/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/vorgang"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"vorgang-detail": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/vorgang-detail",
-			"sourceRoot": "libs/vorgang-detail/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/vorgang-detail/src/**/*.ts",
-							"libs/vorgang-detail/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/vorgang-detail/tsconfig.spec.json",
-						"jestConfig": "libs/vorgang-detail/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/vorgang-detail"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"vorgang-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/vorgang-shared",
-			"sourceRoot": "libs/vorgang-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/vorgang-shared/src/**/*.ts",
-							"libs/vorgang-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"options": {
-						"tsConfig": "libs/vorgang-shared/tsconfig.spec.json",
-						"jestConfig": "libs/vorgang-shared/jest.config.ts",
-						"passWithNoTests": true
-					},
-					"outputs": ["{workspaceRoot}/coverage/libs/vorgang-shared"]
-				}
-			},
-			"schematics": {
-				"@schematics/angular:component": {
-					"style": "scss"
-				}
-			},
-			"tags": []
-		},
-		"vorgang-shared-ui": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/vorgang-shared-ui",
-			"sourceRoot": "libs/vorgang-shared-ui/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/vorgang-shared-ui/src/**/*.ts",
-							"libs/vorgang-shared-ui/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/vorgang-shared-ui"
-					],
-					"options": {
-						"tsConfig": "libs/vorgang-shared-ui/tsconfig.spec.json",
-						"jestConfig": "libs/vorgang-shared-ui/jest.config.ts",
-						"passWithNoTests": true
-					}
-				}
-			},
-			"tags": []
-		},
-		"wiedervorlage": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/wiedervorlage",
-			"sourceRoot": "libs/wiedervorlage/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/wiedervorlage/src/**/*.ts",
-							"libs/wiedervorlage/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": ["{workspaceRoot}/coverage/libs/wiedervorlage"],
-					"options": {
-						"tsConfig": "libs/wiedervorlage/tsconfig.spec.json",
-						"jestConfig": "libs/wiedervorlage/jest.config.ts",
-						"passWithNoTests": true
-					}
-				}
-			},
-			"tags": []
-		},
-		"wiedervorlage-shared": {
-			"$schema": "../../node_modules/nx/schemas/project-schema.json",
-			"projectType": "library",
-			"root": "libs/wiedervorlage-shared",
-			"sourceRoot": "libs/wiedervorlage-shared/src",
-			"prefix": "goofy-client",
-			"architect": {
-				"lint": {
-					"builder": "@nrwl/linter:eslint",
-					"options": {
-						"lintFilePatterns": [
-							"libs/wiedervorlage-shared/src/**/*.ts",
-							"libs/wiedervorlage-shared/src/**/*.html"
-						]
-					},
-					"outputs": ["{options.outputFile}"]
-				},
-				"test": {
-					"builder": "@nrwl/jest:jest",
-					"outputs": [
-						"{workspaceRoot}/coverage/libs/wiedervorlage-shared"
-					],
-					"options": {
-						"tsConfig": "libs/wiedervorlage-shared/tsconfig.spec.json",
-						"jestConfig": "libs/wiedervorlage-shared/jest.config.ts",
-						"passWithNoTests": true
-					}
-				}
-			},
-			"tags": []
-		}
-	},
-	"defaultProject": "goofy"
-}
diff --git a/goofy-client/apps/goofy-e2e/.eslintrc.json b/goofy-client/apps/goofy-e2e/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/apps/goofy-e2e/.eslintrc.json
+++ b/goofy-client/apps/goofy-e2e/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/apps/goofy-e2e/cypress-ci-einheitlicher-ansprechpartner.config.ts b/goofy-client/apps/goofy-e2e/cypress-ci-einheitlicher-ansprechpartner.config.ts
index 5ef91724365a1ed66f94db34d0c762d8b1b3b2b7..5a7f32959f5617b8ca4ac90f627ea3ad522608d6 100644
--- a/goofy-client/apps/goofy-e2e/cypress-ci-einheitlicher-ansprechpartner.config.ts
+++ b/goofy-client/apps/goofy-e2e/cypress-ci-einheitlicher-ansprechpartner.config.ts
@@ -1,4 +1,4 @@
-import { nxE2EPreset } from '@nrwl/cypress/plugins/cypress-preset';
+import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
 import { defineConfig } from 'cypress';
 
 //Cypress config is generated by JenkinsFile
@@ -11,6 +11,6 @@ export default defineConfig({
 		...cypressConfig,
 		setupNodeEvents(on, config) {
 			return cypressEvents(on, config);
-		}
+		},
 	},
-});
\ No newline at end of file
+});
diff --git a/goofy-client/apps/goofy-e2e/cypress-ci-main-tests.config.ts b/goofy-client/apps/goofy-e2e/cypress-ci-main-tests.config.ts
index c3b17666b23e7ef150bfc88da510380739f7f49a..d9043ab28a3c940fecea5d6ac352768a32c3c3f3 100644
--- a/goofy-client/apps/goofy-e2e/cypress-ci-main-tests.config.ts
+++ b/goofy-client/apps/goofy-e2e/cypress-ci-main-tests.config.ts
@@ -1,4 +1,4 @@
-import { nxE2EPreset } from '@nrwl/cypress/plugins/cypress-preset';
+import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
 import { defineConfig } from 'cypress';
 
 //Cypress config is generated by JenkinsFile
@@ -11,6 +11,6 @@ export default defineConfig({
 		...cypressConfig,
 		setupNodeEvents(on, config) {
 			return cypressEvents(on, config);
-		}
+		},
 	},
-});
\ No newline at end of file
+});
diff --git a/goofy-client/apps/goofy-e2e/cypress.config.ts b/goofy-client/apps/goofy-e2e/cypress.config.ts
index 21b3aad9fb32db1ae98081e63a3facb256b3593a..7d9ec9779202900fc1effd4eec91b151d1d7c773 100644
--- a/goofy-client/apps/goofy-e2e/cypress.config.ts
+++ b/goofy-client/apps/goofy-e2e/cypress.config.ts
@@ -1,4 +1,4 @@
-import { nxE2EPreset } from '@nrwl/cypress/plugins/cypress-preset';
+import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
 import { defineConfig } from 'cypress';
 
 const cypressConfig = require('./cypress.config.json');
@@ -10,6 +10,6 @@ export default defineConfig({
 		...cypressConfig,
 		setupNodeEvents(on, config) {
 			return cypressEvents(on, config);
-		}
+		},
 	},
 });
diff --git a/goofy-client/apps/goofy-e2e/project.json b/goofy-client/apps/goofy-e2e/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..d6229797f1d18f9086daea8c588c0aa4f21bebe2
--- /dev/null
+++ b/goofy-client/apps/goofy-e2e/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "goofy-e2e",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"sourceRoot": "apps/goofy-e2e/src",
+	"projectType": "application",
+	"targets": {
+		"e2e": {
+			"executor": "@nx/cypress:cypress",
+			"options": {
+				"cypressConfig": "apps/goofy-e2e/cypress.config.ts",
+				"tsConfig": "apps/goofy-e2e/tsconfig.e2e.json",
+				"devServerTarget": "goofy:serve",
+				"testingType": "e2e"
+			},
+			"configurations": {
+				"production": {
+					"devServerTarget": "goofy:serve:production"
+				}
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"apps/goofy-e2e/**/*.{js,ts}",
+					"apps/goofy-e2e/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": [],
+	"implicitDependencies": ["goofy"]
+}
diff --git a/goofy-client/apps/goofy/.eslintrc.json b/goofy-client/apps/goofy/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/apps/goofy/.eslintrc.json
+++ b/goofy-client/apps/goofy/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/apps/goofy/jest.config.ts b/goofy-client/apps/goofy/jest.config.ts
index 617056b20b7022fbf74505a340a226998b18b371..16e51fae528b8174a4ae92cb4ac05a5b2b4f86a3 100644
--- a/goofy-client/apps/goofy/jest.config.ts
+++ b/goofy-client/apps/goofy/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'goofy',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/apps/goofy',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/apps/goofy/project.json b/goofy-client/apps/goofy/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..4167aabc673e0406f98f1f72afc52582a9dc954c
--- /dev/null
+++ b/goofy-client/apps/goofy/project.json
@@ -0,0 +1,124 @@
+{
+	"name": "goofy",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "application",
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"sourceRoot": "apps/goofy/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"build": {
+			"executor": "@angular-devkit/build-angular:browser",
+			"options": {
+				"allowedCommonJsDependencies": ["file-saver"],
+				"outputPath": "dist/apps/goofy",
+				"index": "apps/goofy/src/index.html",
+				"main": "apps/goofy/src/main.ts",
+				"polyfills": "apps/goofy/src/polyfills.ts",
+				"tsConfig": "apps/goofy/tsconfig.app.json",
+				"assets": [
+					"apps/goofy/src/assets",
+					"apps/goofy/src/silent-refresh.html",
+					{
+						"input": "apps/goofy/src/favicon",
+						"glob": "**/*",
+						"output": ""
+					},
+					{
+						"input": "libs/ui/src/lib/assets",
+						"glob": "**/*",
+						"output": "assets/icons"
+					}
+				],
+				"styles": ["apps/goofy/src/styles/main.scss"],
+				"scripts": [],
+				"stylePreprocessorOptions": {
+					"includePaths": [
+						"apps/goofy/src/styles/abstracts",
+						"apps/goofy/src/styles/material",
+						"node_modules/@angular",
+						"node_modules/include-media",
+						"node_modules/typeface-roboto"
+					]
+				},
+				"vendorChunk": true,
+				"extractLicenses": false,
+				"buildOptimizer": false,
+				"sourceMap": true,
+				"optimization": false,
+				"namedChunks": true
+			},
+			"configurations": {
+				"production": {
+					"fileReplacements": [
+						{
+							"replace": "apps/goofy/src/environments/environment.ts",
+							"with": "apps/goofy/src/environments/environment.prod.ts"
+						}
+					],
+					"optimization": true,
+					"outputHashing": "all",
+					"sourceMap": false,
+					"namedChunks": false,
+					"extractLicenses": true,
+					"vendorChunk": false,
+					"buildOptimizer": true,
+					"budgets": [
+						{
+							"type": "initial",
+							"maximumWarning": "2mb",
+							"maximumError": "5mb"
+						},
+						{
+							"type": "anyComponentStyle",
+							"maximumWarning": "6kb",
+							"maximumError": "10kb"
+						}
+					]
+				}
+			},
+			"outputs": ["{options.outputPath}"]
+		},
+		"serve": {
+			"executor": "@angular-devkit/build-angular:dev-server",
+			"options": {
+				"browserTarget": "goofy:build",
+				"proxyConfig": "proxy.conf.mjs"
+			},
+			"configurations": {
+				"production": {
+					"browserTarget": "goofy:build:production"
+				}
+			}
+		},
+		"extract-i18n": {
+			"executor": "@angular-devkit/build-angular:extract-i18n",
+			"options": {
+				"browserTarget": "goofy:build"
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"apps/goofy/src/**/*.ts",
+					"apps/goofy/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "apps/goofy/tsconfig.spec.json",
+				"jestConfig": "apps/goofy/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/apps/goofy"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/decorate-angular-cli.js b/goofy-client/decorate-angular-cli.js
index cc047eb087a72db1dc841951074bd17bd5237a77..c18b84264532389caed8ce6f3c80479781f289ef 100644
--- a/goofy-client/decorate-angular-cli.js
+++ b/goofy-client/decorate-angular-cli.js
@@ -50,10 +50,12 @@ const cp = require('child_process');
 const isWindows = os.platform() === 'win32';
 let output;
 try {
-  output = require('@nrwl/workspace').output;
+	output = require('@nx/workspace').output;
 } catch (e) {
-  console.warn('Angular CLI could not be decorated to enable computation caching. Please ensure @nrwl/workspace is installed.');
-  process.exit(0);
+	console.warn(
+		'Angular CLI could not be decorated to enable computation caching. Please ensure @nx/workspace is installed.'
+	);
+	process.exit(0);
 }
 
 /**
@@ -61,32 +63,43 @@ try {
  * invoke the Nx CLI and get the benefits of computation caching.
  */
 function symlinkNgCLItoNxCLI() {
-  try {
-    const ngPath = './node_modules/.bin/ng';
-    const nxPath = './node_modules/.bin/nx';
-    if (isWindows) {
-      /**
-       * This is the most reliable way to create symlink-like behavior on Windows.
-       * Such that it works in all shells and works with npx.
-       */
-      ['', '.cmd', '.ps1'].forEach(ext => {
-        if (fs.existsSync(nxPath + ext)) fs.writeFileSync(ngPath + ext, fs.readFileSync(nxPath + ext));
-      });
-    } else {
-      // If unix-based, symlink
-      cp.execSync(`ln -sf ./nx ${ngPath}`);
-    }
-  }
-  catch(e) {
-    output.error({ title: 'Unable to create a symlink from the Angular CLI to the Nx CLI:' + e.message });
-    throw e;
-  }
+	try {
+		const ngPath = './node_modules/.bin/ng';
+		const nxPath = './node_modules/.bin/nx';
+		if (isWindows) {
+			/**
+			 * This is the most reliable way to create symlink-like behavior on Windows.
+			 * Such that it works in all shells and works with npx.
+			 */
+			['', '.cmd', '.ps1'].forEach((ext) => {
+				if (fs.existsSync(nxPath + ext))
+					fs.writeFileSync(
+						ngPath + ext,
+						fs.readFileSync(nxPath + ext)
+					);
+			});
+		} else {
+			// If unix-based, symlink
+			cp.execSync(`ln -sf ./nx ${ngPath}`);
+		}
+	} catch (e) {
+		output.error({
+			title:
+				'Unable to create a symlink from the Angular CLI to the Nx CLI:' +
+				e.message,
+		});
+		throw e;
+	}
 }
 
 try {
-  symlinkNgCLItoNxCLI();
-  require('@nrwl/cli/lib/decorate-cli').decorateCli();
-  output.log({ title: 'Angular CLI has been decorated to enable computation caching.' });
-} catch(e) {
-  output.error({ title: 'Decoration of the Angular CLI did not complete successfully' });
+	symlinkNgCLItoNxCLI();
+	require('@nrwl/cli/lib/decorate-cli').decorateCli();
+	output.log({
+		title: 'Angular CLI has been decorated to enable computation caching.',
+	});
+} catch (e) {
+	output.error({
+		title: 'Decoration of the Angular CLI did not complete successfully',
+	});
 }
diff --git a/goofy-client/jest.config.ts b/goofy-client/jest.config.ts
index efebde959ea95c418d213cfdb5460e5cf70d07b6..7aa1152fb729233880741e38af12cb4fc3475744 100644
--- a/goofy-client/jest.config.ts
+++ b/goofy-client/jest.config.ts
@@ -21,6 +21,6 @@
  * Die sprachspezifischen Genehmigungen und Beschränkungen
  * unter der Lizenz sind dem Lizenztext zu entnehmen.
  */
-const { getJestProjects } = require('@nrwl/jest');
+const { getJestProjects } = require('@nx/jest');
 
 export default { projects: getJestProjects() };
diff --git a/goofy-client/jest.preset.js b/goofy-client/jest.preset.js
index c157ee3afc4e6a0f9918eced30c25a8f1923944c..c727bf44b836de0eada0143d141828511f7174ef 100644
--- a/goofy-client/jest.preset.js
+++ b/goofy-client/jest.preset.js
@@ -21,7 +21,7 @@
  * Die sprachspezifischen Genehmigungen und Beschränkungen
  * unter der Lizenz sind dem Lizenztext zu entnehmen.
  */
-const nxPreset = require('@nrwl/jest/preset').default;
+const nxPreset = require('@nx/jest/preset').default;
 
 module.exports = {
 	...nxPreset,
diff --git a/goofy-client/libs/api-root-shared/.eslintrc.json b/goofy-client/libs/api-root-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/api-root-shared/.eslintrc.json
+++ b/goofy-client/libs/api-root-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/api-root-shared/jest.config.ts b/goofy-client/libs/api-root-shared/jest.config.ts
index d4a3e3a4aa818da1a9db3d0562e1616621129765..b4cf7efb67374106980f83d5e797d0ee5fdfeaa1 100644
--- a/goofy-client/libs/api-root-shared/jest.config.ts
+++ b/goofy-client/libs/api-root-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'api-root-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/api-root-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/api-root-shared/project.json b/goofy-client/libs/api-root-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..bb83ee24fa53f23f82067121f742c002723a8ff4
--- /dev/null
+++ b/goofy-client/libs/api-root-shared/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "api-root-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/api-root-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/api-root-shared/src/**/*.ts",
+					"libs/api-root-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/api-root-shared/tsconfig.spec.json",
+				"jestConfig": "libs/api-root-shared/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/api-root-shared"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/api-root-shared/src/lib/+state/api-root.facade.spec.ts b/goofy-client/libs/api-root-shared/src/lib/+state/api-root.facade.spec.ts
index 58034c562eaffc9dcd8c6b162b97d2090d81931b..c43e297b1d422fbc9f7860daa0ad98983977322a 100644
--- a/goofy-client/libs/api-root-shared/src/lib/+state/api-root.facade.spec.ts
+++ b/goofy-client/libs/api-root-shared/src/lib/+state/api-root.facade.spec.ts
@@ -26,7 +26,7 @@ import { TestBed } from '@angular/core/testing';
 import { mock } from '@goofy-client/test-utils';
 import { EffectsModule } from '@ngrx/effects';
 import { Store, StoreModule } from '@ngrx/store';
-import { readFirst } from '@nrwl/angular/testing';
+import { readFirst } from '@nx/angular/testing';
 import { createApiRootResource } from 'libs/api-root-shared/test/api-root';
 import { of } from 'rxjs';
 import { ApiRootResource } from '../api-root.model';
diff --git a/goofy-client/libs/app-shared/.eslintrc.json b/goofy-client/libs/app-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/app-shared/.eslintrc.json
+++ b/goofy-client/libs/app-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/app-shared/jest.config.ts b/goofy-client/libs/app-shared/jest.config.ts
index fe06b60b638f0dcc2e9de0b1ea40fa38ceb248a7..766e20f2f63db922cd5506517be0a5e39f6da7f7 100644
--- a/goofy-client/libs/app-shared/jest.config.ts
+++ b/goofy-client/libs/app-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'app-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/app-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/app-shared/project.json b/goofy-client/libs/app-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..646b268d88048588f7010470d6873c05a5a955fb
--- /dev/null
+++ b/goofy-client/libs/app-shared/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "app-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/app-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/app-shared/src/**/*.ts",
+					"libs/app-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/app-shared/tsconfig.spec.json",
+				"jestConfig": "libs/app-shared/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/app-shared"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/bescheid-shared/.eslintrc.json b/goofy-client/libs/bescheid-shared/.eslintrc.json
index 5d5efb2a6e71b42a5f466b0001f8b167f63278cc..77bb4c56571ee89beea168d18c5f3737b424df26 100644
--- a/goofy-client/libs/bescheid-shared/.eslintrc.json
+++ b/goofy-client/libs/bescheid-shared/.eslintrc.json
@@ -23,13 +23,13 @@
 				]
 			},
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			]
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/bescheid-shared/jest.config.ts b/goofy-client/libs/bescheid-shared/jest.config.ts
index 9542f815c9406804151b50d9c5627d7575f5c1e2..245218e41948fc892626b498859a534712ef33fa 100644
--- a/goofy-client/libs/bescheid-shared/jest.config.ts
+++ b/goofy-client/libs/bescheid-shared/jest.config.ts
@@ -2,15 +2,16 @@ export default {
 	displayName: 'bescheid-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/bescheid-shared',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/bescheid-shared/project.json b/goofy-client/libs/bescheid-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..0f4518e742c6c884547070c2b33383870eb76e81
--- /dev/null
+++ b/goofy-client/libs/bescheid-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "bescheid-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/bescheid-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/bescheid-shared"],
+			"options": {
+				"tsConfig": "libs/bescheid-shared/tsconfig.spec.json",
+				"jestConfig": "libs/bescheid-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/bescheid-shared/src/**/*.ts",
+					"libs/bescheid-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/bescheid/.eslintrc.json b/goofy-client/libs/bescheid/.eslintrc.json
index 28f19b630511beab4ad3ff61ffce5a45f7430728..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/bescheid/.eslintrc.json
+++ b/goofy-client/libs/bescheid/.eslintrc.json
@@ -5,7 +5,7 @@
 		{
 			"files": ["*.ts"],
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			],
 			"rules": {
@@ -29,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/bescheid/jest.config.ts b/goofy-client/libs/bescheid/jest.config.ts
index f4fb07f9788694c262b8b8d6321457f053c241e9..9442161c20ba37437ba36561b5468122e54205ea 100644
--- a/goofy-client/libs/bescheid/jest.config.ts
+++ b/goofy-client/libs/bescheid/jest.config.ts
@@ -2,15 +2,16 @@ export default {
 	displayName: 'bescheid',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/bescheid',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/bescheid/project.json b/goofy-client/libs/bescheid/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..292556909d036aff1ac9da52d513b0574ee5f57e
--- /dev/null
+++ b/goofy-client/libs/bescheid/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "bescheid",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/bescheid/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/bescheid"],
+			"options": {
+				"tsConfig": "libs/bescheid/tsconfig.spec.json",
+				"jestConfig": "libs/bescheid/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/bescheid/src/**/*.ts",
+					"libs/bescheid/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/binary-file-shared/.eslintrc.json b/goofy-client/libs/binary-file-shared/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/binary-file-shared/.eslintrc.json
+++ b/goofy-client/libs/binary-file-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/binary-file-shared/jest.config.ts b/goofy-client/libs/binary-file-shared/jest.config.ts
index 946434f37ee112e5af2d32c13ac885b7c7209de8..0b87c11107b24a700f9f43a98d33e04dfd29b3df 100644
--- a/goofy-client/libs/binary-file-shared/jest.config.ts
+++ b/goofy-client/libs/binary-file-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'binary-file-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/binary-file-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/binary-file-shared/project.json b/goofy-client/libs/binary-file-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..80a34f5998568ad27d270278b751a169f4016dc3
--- /dev/null
+++ b/goofy-client/libs/binary-file-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "binary-file-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/binary-file-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/binary-file-shared"],
+			"options": {
+				"tsConfig": "libs/binary-file-shared/tsconfig.spec.json",
+				"jestConfig": "libs/binary-file-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/binary-file-shared/src/**/*.ts",
+					"libs/binary-file-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/binary-file/.eslintrc.json b/goofy-client/libs/binary-file/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/binary-file/.eslintrc.json
+++ b/goofy-client/libs/binary-file/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/binary-file/jest.config.ts b/goofy-client/libs/binary-file/jest.config.ts
index 6e296708989aa0312e906308ff6e0a56a0ee12cb..b18a65a9c2f26b346b7cdb4391016cf40cf47312 100644
--- a/goofy-client/libs/binary-file/jest.config.ts
+++ b/goofy-client/libs/binary-file/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'binary-file',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/binary-file',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/binary-file/project.json b/goofy-client/libs/binary-file/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..7361dce22d7886152adacc8c467043a51178fd8c
--- /dev/null
+++ b/goofy-client/libs/binary-file/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "binary-file",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/binary-file/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/binary-file"],
+			"options": {
+				"tsConfig": "libs//binary-file/tsconfig.spec.json",
+				"jestConfig": "libs/binary-file/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/binary-file/src/**/*.ts",
+					"libs/binary-file/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/command-shared/.eslintrc.json b/goofy-client/libs/command-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/command-shared/.eslintrc.json
+++ b/goofy-client/libs/command-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/command-shared/jest.config.ts b/goofy-client/libs/command-shared/jest.config.ts
index e0b99f283cb609de831ec500d550bf7887fbf008..92848bb9669f53801488465236e528c95df973f7 100644
--- a/goofy-client/libs/command-shared/jest.config.ts
+++ b/goofy-client/libs/command-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'command-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/command-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/command-shared/project.json b/goofy-client/libs/command-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..a0c71b34bb6fee37bc6271c89592954289254a96
--- /dev/null
+++ b/goofy-client/libs/command-shared/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "command-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/command-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/command-shared/src/**/*.ts",
+					"libs/command-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/command-shared/tsconfig.spec.json",
+				"jestConfig": "libs/command-shared/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/command-shared"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/environment-shared/.eslintrc.json b/goofy-client/libs/environment-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/environment-shared/.eslintrc.json
+++ b/goofy-client/libs/environment-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/environment-shared/jest.config.ts b/goofy-client/libs/environment-shared/jest.config.ts
index 7a9ec731cfa259044376497b1c77facb892ae9c0..b07f96debd3345886bfc28ed25cc15f25f4e70ab 100644
--- a/goofy-client/libs/environment-shared/jest.config.ts
+++ b/goofy-client/libs/environment-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'environment-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/environment-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/environment-shared/project.json b/goofy-client/libs/environment-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e688798242462bc2726ded1dce0f7e3cbf9e943
--- /dev/null
+++ b/goofy-client/libs/environment-shared/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "environment-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/environment-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/environment-shared/src/**/*.ts",
+					"libs/environment-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/environment-shared/tsconfig.spec.json",
+				"jestConfig": "libs/environment-shared/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/environment-shared"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/forwarding-shared/.eslintrc.json b/goofy-client/libs/forwarding-shared/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/forwarding-shared/.eslintrc.json
+++ b/goofy-client/libs/forwarding-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/forwarding-shared/jest.config.ts b/goofy-client/libs/forwarding-shared/jest.config.ts
index bfb8392563d9c049f888142184784952749366f7..74eccca94e27e69606e0776fe1c8fc648274a2a8 100644
--- a/goofy-client/libs/forwarding-shared/jest.config.ts
+++ b/goofy-client/libs/forwarding-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'forwarding-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/forwarding-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/forwarding-shared/project.json b/goofy-client/libs/forwarding-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..f94da31b9fedcc946d008e085aa0c4a8d7bf9a4c
--- /dev/null
+++ b/goofy-client/libs/forwarding-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "forwarding-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/forwarding-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/forwarding-shared/src/**/*.ts",
+					"libs/forwarding-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/forwarding-shared"],
+			"options": {
+				"tsConfig": "libs/forwarding-shared/tsconfig.spec.json",
+				"jestConfig": "libs/forwarding-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/forwarding/.eslintrc.json b/goofy-client/libs/forwarding/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/forwarding/.eslintrc.json
+++ b/goofy-client/libs/forwarding/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/forwarding/jest.config.ts b/goofy-client/libs/forwarding/jest.config.ts
index 12b425a30359a0ad820b2d2817196d00d6b53227..14c9edb8c7d87d7f62c891b4263c6095431d8a90 100644
--- a/goofy-client/libs/forwarding/jest.config.ts
+++ b/goofy-client/libs/forwarding/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'forwarding',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/forwarding',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/forwarding/project.json b/goofy-client/libs/forwarding/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..91711866b61f5400cbbe061fde7911b04ff20bce
--- /dev/null
+++ b/goofy-client/libs/forwarding/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "forwarding",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/forwarding/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/forwarding/src/**/*.ts",
+					"libs/forwarding/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/forwarding"],
+			"options": {
+				"tsConfig": "libs/forwarding/tsconfig.spec.json",
+				"jestConfig": "libs/forwarding/jest.config.ts",
+				"passWithNoTests": true
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/hint-shared/.eslintrc.json b/goofy-client/libs/hint-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/hint-shared/.eslintrc.json
+++ b/goofy-client/libs/hint-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/hint-shared/jest.config.ts b/goofy-client/libs/hint-shared/jest.config.ts
index 342664458ef8d32266e7107d3bb2da194fa07041..5b70d99b604b0cd43c91c02e79f8fa383e5a2f4a 100644
--- a/goofy-client/libs/hint-shared/jest.config.ts
+++ b/goofy-client/libs/hint-shared/jest.config.ts
@@ -2,12 +2,7 @@ export default {
 	displayName: 'hint-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/hint-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -15,7 +10,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/hint-shared/project.json b/goofy-client/libs/hint-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..e3697d2900772769c4adb7b2f2391bee7f7e14b4
--- /dev/null
+++ b/goofy-client/libs/hint-shared/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "hint-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/hint-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/hint-shared"],
+			"options": {
+				"tsConfig": "libs/hint-shared/tsconfig.spec.json",
+				"jestConfig": "libs/hint-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/hint-shared/**/*.ts",
+					"libs/hint-shared/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/hint/.eslintrc.json b/goofy-client/libs/hint/.eslintrc.json
index 5d5efb2a6e71b42a5f466b0001f8b167f63278cc..77bb4c56571ee89beea168d18c5f3737b424df26 100644
--- a/goofy-client/libs/hint/.eslintrc.json
+++ b/goofy-client/libs/hint/.eslintrc.json
@@ -23,13 +23,13 @@
 				]
 			},
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			]
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/hint/jest.config.ts b/goofy-client/libs/hint/jest.config.ts
index ef9ca78d27b4cfe50d9b6c657c4a9088e07d917b..1eda8ae12ac80bb4fc06fb0f47a8dc65942c24ad 100644
--- a/goofy-client/libs/hint/jest.config.ts
+++ b/goofy-client/libs/hint/jest.config.ts
@@ -3,15 +3,16 @@ export default {
 	displayName: 'hint',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/hint',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/hint/project.json b/goofy-client/libs/hint/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..e0ffca43a68af1104862edca412a7be2735039ba
--- /dev/null
+++ b/goofy-client/libs/hint/project.json
@@ -0,0 +1,25 @@
+{
+	"name": "hint",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/hint/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/hint"],
+			"options": {
+				"tsConfig": "libs/hint/tsconfig.spec.json",
+				"jestConfig": "libs/hint/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": ["libs/hint/**/*.ts", "libs/hint/**/*.html"]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/historie-shared/.eslintrc.json b/goofy-client/libs/historie-shared/.eslintrc.json
index 28f19b630511beab4ad3ff61ffce5a45f7430728..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/historie-shared/.eslintrc.json
+++ b/goofy-client/libs/historie-shared/.eslintrc.json
@@ -5,7 +5,7 @@
 		{
 			"files": ["*.ts"],
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			],
 			"rules": {
@@ -29,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/historie-shared/jest.config.ts b/goofy-client/libs/historie-shared/jest.config.ts
index a31e11e65a7741bd0dc0d84fe7826f274ece070e..4cba4ebd5170e2ed46fe3cafd97bd14469dca5b9 100644
--- a/goofy-client/libs/historie-shared/jest.config.ts
+++ b/goofy-client/libs/historie-shared/jest.config.ts
@@ -28,15 +28,16 @@ export default {
 	displayName: 'historie-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/historie-shared',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
diff --git a/goofy-client/libs/historie-shared/project.json b/goofy-client/libs/historie-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..0cda2f5d83de9073e9e71efaf7897377950eb9ab
--- /dev/null
+++ b/goofy-client/libs/historie-shared/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "historie-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/historie-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/historie-shared"],
+			"options": {
+				"tsConfig": "libs/historie-shared/tsconfig.spec.json",
+				"jestConfig": "libs/historie-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/historie-shared/src/**/*.ts",
+					"libs/historie-shared/src/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/historie-shared/src/lib/+state/historie.facade.spec.ts b/goofy-client/libs/historie-shared/src/lib/+state/historie.facade.spec.ts
index 7ed8db86d20a01cc0501b8e122a3aa961763abb5..a1c170a2aab6902d86ca24afb37286452918270c 100644
--- a/goofy-client/libs/historie-shared/src/lib/+state/historie.facade.spec.ts
+++ b/goofy-client/libs/historie-shared/src/lib/+state/historie.facade.spec.ts
@@ -30,7 +30,7 @@ import { UserProfileResource, UserProfileService } from '@goofy-client/user-prof
 import { VorgangService } from '@goofy-client/vorgang-shared';
 import { EffectsModule } from '@ngrx/effects';
 import { Store, StoreModule } from '@ngrx/store';
-import { readFirst } from '@nrwl/angular/testing';
+import { readFirst } from '@nx/angular/testing';
 import { createCommandResource } from 'libs/command-shared/test/command';
 import { createVorgangResource } from 'libs/vorgang-shared/test/vorgang';
 import { of, Subject } from 'rxjs';
diff --git a/goofy-client/libs/historie/.eslintrc.json b/goofy-client/libs/historie/.eslintrc.json
index 28f19b630511beab4ad3ff61ffce5a45f7430728..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/historie/.eslintrc.json
+++ b/goofy-client/libs/historie/.eslintrc.json
@@ -5,7 +5,7 @@
 		{
 			"files": ["*.ts"],
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			],
 			"rules": {
@@ -29,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/historie/jest.config.ts b/goofy-client/libs/historie/jest.config.ts
index 9c73154d1fc9b5bcd8934dd81c4a589199d9ea52..f31cf0d58bc2072fd9986d94fcaeb3e231952e47 100644
--- a/goofy-client/libs/historie/jest.config.ts
+++ b/goofy-client/libs/historie/jest.config.ts
@@ -28,15 +28,16 @@ export default {
 	displayName: 'historie',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/historie',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/historie/project.json b/goofy-client/libs/historie/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..be8c3980eae349bd1132a0a579fef679051f7f72
--- /dev/null
+++ b/goofy-client/libs/historie/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "historie",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/historie/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/historie"],
+			"options": {
+				"tsConfig": "libs/historie/tsconfig.spec.json",
+				"jestConfig": "libs/historie/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/historie/src/**/*.ts",
+					"libs/historie/src/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/kommentar-shared/.eslintrc.json b/goofy-client/libs/kommentar-shared/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/kommentar-shared/.eslintrc.json
+++ b/goofy-client/libs/kommentar-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/kommentar-shared/jest.config.ts b/goofy-client/libs/kommentar-shared/jest.config.ts
index 06611eb0856e022c7409ea9a750e5ecb22fa592f..cf650b04653b3239cde531526f6bcb8a09b433ba 100644
--- a/goofy-client/libs/kommentar-shared/jest.config.ts
+++ b/goofy-client/libs/kommentar-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'kommentar-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/kommentar-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/kommentar-shared/project.json b/goofy-client/libs/kommentar-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..b47143fdfe62412d3fe48b85b5c7d0285d9a1853
--- /dev/null
+++ b/goofy-client/libs/kommentar-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "kommentar-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/kommentar-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/kommentar-shared"],
+			"options": {
+				"tsConfig": "libs/kommentar-shared/tsconfig.spec.json",
+				"jestConfig": "libs/kommentar-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/kommentar-shared/src/**/*.ts",
+					"libs/kommentar-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/kommentar/.eslintrc.json b/goofy-client/libs/kommentar/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/kommentar/.eslintrc.json
+++ b/goofy-client/libs/kommentar/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/kommentar/jest.config.ts b/goofy-client/libs/kommentar/jest.config.ts
index 80fcc6165081ac2db175928a9bca5da13e17c225..c6f13bcc465a9122f0ef26311b3fb716912bd0c4 100644
--- a/goofy-client/libs/kommentar/jest.config.ts
+++ b/goofy-client/libs/kommentar/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'kommentar',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/kommentar',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/kommentar/project.json b/goofy-client/libs/kommentar/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..228681a7c31e87e85082ea46d001ef9f566629f6
--- /dev/null
+++ b/goofy-client/libs/kommentar/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "kommentar",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/kommentar/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/kommentar"],
+			"options": {
+				"tsConfig": "libs/kommentar/tsconfig.spec.json",
+				"jestConfig": "libs/kommentar/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/kommentar/src/**/*.ts",
+					"libs/kommentar/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/loesch-anforderung-shared/.eslintrc.json b/goofy-client/libs/loesch-anforderung-shared/.eslintrc.json
index 5d5efb2a6e71b42a5f466b0001f8b167f63278cc..77bb4c56571ee89beea168d18c5f3737b424df26 100644
--- a/goofy-client/libs/loesch-anforderung-shared/.eslintrc.json
+++ b/goofy-client/libs/loesch-anforderung-shared/.eslintrc.json
@@ -23,13 +23,13 @@
 				]
 			},
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			]
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/loesch-anforderung-shared/jest.config.ts b/goofy-client/libs/loesch-anforderung-shared/jest.config.ts
index d3548bbd11cd995a8716df9e58fcbff0903f3702..931f64023f1225fab28046af577396dadc735eb0 100644
--- a/goofy-client/libs/loesch-anforderung-shared/jest.config.ts
+++ b/goofy-client/libs/loesch-anforderung-shared/jest.config.ts
@@ -3,15 +3,16 @@ export default {
 	displayName: 'loeschanforderung-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/loeschanforderung-shared',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/loesch-anforderung-shared/project.json b/goofy-client/libs/loesch-anforderung-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..2d3e5e97176f5d838dd43096afa2d5c01779bc8f
--- /dev/null
+++ b/goofy-client/libs/loesch-anforderung-shared/project.json
@@ -0,0 +1,31 @@
+{
+	"name": "loesch-anforderung-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/loesch-anforderung-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": [
+				"{workspaceRoot}/coverage/libs/loesch-anforderung-shared"
+			],
+			"options": {
+				"tsConfig": "libs/loesch-anforderung-shared/tsconfig.spec.json",
+				"jestConfig": "libs/loesch-anforderung-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"outputs": ["{options.outputFile}"],
+			"options": {
+				"lintFilePatterns": [
+					"libs/loesch-anforderung-shared/**/*.ts",
+					"libs/loesch-anforderung-shared/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/loesch-anforderung/.eslintrc.json b/goofy-client/libs/loesch-anforderung/.eslintrc.json
index 5d5efb2a6e71b42a5f466b0001f8b167f63278cc..77bb4c56571ee89beea168d18c5f3737b424df26 100644
--- a/goofy-client/libs/loesch-anforderung/.eslintrc.json
+++ b/goofy-client/libs/loesch-anforderung/.eslintrc.json
@@ -23,13 +23,13 @@
 				]
 			},
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			]
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/loesch-anforderung/jest.config.ts b/goofy-client/libs/loesch-anforderung/jest.config.ts
index a1b592683e91d3b49b6513922388fda91d136612..1a0df61686d96a21f08aa108d1fd37c29e0e307b 100644
--- a/goofy-client/libs/loesch-anforderung/jest.config.ts
+++ b/goofy-client/libs/loesch-anforderung/jest.config.ts
@@ -3,15 +3,16 @@ export default {
 	displayName: 'loesch-anforderung',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/loesch-anforderung',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/loesch-anforderung/project.json b/goofy-client/libs/loesch-anforderung/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..bb6d0678219b69a56835b7acb051be88a7ed726e
--- /dev/null
+++ b/goofy-client/libs/loesch-anforderung/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "loesch-anforderung",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/loesch-anforderung/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/loesch-anforderung"],
+			"options": {
+				"tsConfig": "libs/loesch-anforderung/tsconfig.spec.json",
+				"jestConfig": "libs/loesch-anforderung/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"outputs": ["{options.outputFile}"],
+			"options": {
+				"lintFilePatterns": [
+					"libs/loesch-anforderung/**/*.ts",
+					"libs/loesch-anforderung/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/navigation-shared/.eslintrc.json b/goofy-client/libs/navigation-shared/.eslintrc.json
index 28f19b630511beab4ad3ff61ffce5a45f7430728..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/navigation-shared/.eslintrc.json
+++ b/goofy-client/libs/navigation-shared/.eslintrc.json
@@ -5,7 +5,7 @@
 		{
 			"files": ["*.ts"],
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			],
 			"rules": {
@@ -29,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/navigation-shared/jest.config.ts b/goofy-client/libs/navigation-shared/jest.config.ts
index 69145be662310381414bb8405d0b23c85f7eb9b6..8f761dded1b7ac4f0321fa58733ff1e79831790b 100644
--- a/goofy-client/libs/navigation-shared/jest.config.ts
+++ b/goofy-client/libs/navigation-shared/jest.config.ts
@@ -28,15 +28,16 @@ export default {
 	displayName: 'navigation-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/navigation-shared',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/navigation-shared/project.json b/goofy-client/libs/navigation-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a5a59a721da204ddbe6798faf49e0ea94cfa31b
--- /dev/null
+++ b/goofy-client/libs/navigation-shared/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "navigation-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/navigation-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/navigation-shared"],
+			"options": {
+				"tsConfig": "libs/navigation-shared/tsconfig.spec.json",
+				"jestConfig": "libs/navigation-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/navigation-shared/src/**/*.ts",
+					"libs/navigation-shared/src/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/navigation/.eslintrc.json b/goofy-client/libs/navigation/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/navigation/.eslintrc.json
+++ b/goofy-client/libs/navigation/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/navigation/jest.config.ts b/goofy-client/libs/navigation/jest.config.ts
index dbf6ba75919e913fe11e622cb708ab4be53736f9..c3d300f08bd97f6d39e55f9cb7374132b9467e3c 100644
--- a/goofy-client/libs/navigation/jest.config.ts
+++ b/goofy-client/libs/navigation/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'navigation',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/navigation',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/navigation/project.json b/goofy-client/libs/navigation/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..f2d4684f8d05b24df0bc7aabe78354a8e3c5f134
--- /dev/null
+++ b/goofy-client/libs/navigation/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "navigation",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/navigation/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/navigation/src/**/*.ts",
+					"libs/navigation/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/navigation/tsconfig.spec.json",
+				"jestConfig": "libs/navigation/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/navigation"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/postfach-shared/.eslintrc.json b/goofy-client/libs/postfach-shared/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/postfach-shared/.eslintrc.json
+++ b/goofy-client/libs/postfach-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/postfach-shared/jest.config.ts b/goofy-client/libs/postfach-shared/jest.config.ts
index 8b37abb7c23db9d6fedb7f10715fd6bc24b0108a..7b052af37a15131ef8d3668d6be86c78d58b978e 100644
--- a/goofy-client/libs/postfach-shared/jest.config.ts
+++ b/goofy-client/libs/postfach-shared/jest.config.ts
@@ -28,15 +28,16 @@ export default {
 	displayName: 'postfach-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/postfach-shared',
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/postfach-shared/project.json b/goofy-client/libs/postfach-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..1f90b36862642b306cb5c65b63be1c6977f08f24
--- /dev/null
+++ b/goofy-client/libs/postfach-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "postfach-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/postfach-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/postfach-shared"],
+			"options": {
+				"tsConfig": "libs/postfach-shared/tsconfig.spec.json",
+				"jestConfig": "libs/postfach-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/postfach-shared/src/**/*.ts",
+					"libs/postfach-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/postfach/.eslintrc.json b/goofy-client/libs/postfach/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/postfach/.eslintrc.json
+++ b/goofy-client/libs/postfach/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/postfach/jest.config.ts b/goofy-client/libs/postfach/jest.config.ts
index 6d0b07a5812a21b1ce14a2934aff265c1866d672..76ac2eaf262b8da5d0a1fff77def0568a15ff59c 100644
--- a/goofy-client/libs/postfach/jest.config.ts
+++ b/goofy-client/libs/postfach/jest.config.ts
@@ -28,15 +28,16 @@ export default {
 	displayName: 'postfach',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/postfach',
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/postfach/project.json b/goofy-client/libs/postfach/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..e10551da1704b13a1df07fa950b5907940c2b615
--- /dev/null
+++ b/goofy-client/libs/postfach/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "postfach",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/postfach/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/postfach"],
+			"options": {
+				"tsConfig": "libs/postfach/tsconfig.spec.json",
+				"jestConfig": "libs/postfach/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/postfach/src/**/*.ts",
+					"libs/postfach/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/tech-shared/.eslintrc.json b/goofy-client/libs/tech-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/tech-shared/.eslintrc.json
+++ b/goofy-client/libs/tech-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/tech-shared/jest.config.ts b/goofy-client/libs/tech-shared/jest.config.ts
index 5fdd4a94f0d1776626e78270563fbeaf262d4e95..90e98b1caecb9c024345e037be6ada89baa51252 100644
--- a/goofy-client/libs/tech-shared/jest.config.ts
+++ b/goofy-client/libs/tech-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'tech-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/tech-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/tech-shared/project.json b/goofy-client/libs/tech-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..13a6f5ddb39616099263902aafa46f0338021f58
--- /dev/null
+++ b/goofy-client/libs/tech-shared/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "tech-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/tech-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/tech-shared/src/**/*.ts",
+					"libs/tech-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/tech-shared/tsconfig.spec.json",
+				"jestConfig": "libs/tech-shared/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/tech-shared"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/test-utils/.eslintrc.json b/goofy-client/libs/test-utils/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/test-utils/.eslintrc.json
+++ b/goofy-client/libs/test-utils/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/test-utils/jest.config.ts b/goofy-client/libs/test-utils/jest.config.ts
index 0f9eed2eafeb893762f0d31acaed895161c4a951..e140c832a807d33c66134eccb11e918359101393 100644
--- a/goofy-client/libs/test-utils/jest.config.ts
+++ b/goofy-client/libs/test-utils/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'test-utils',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/test-utils',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/test-utils/project.json b/goofy-client/libs/test-utils/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..467eb7eb4e6db8baf1c5af0868f78bb1a888b8ce
--- /dev/null
+++ b/goofy-client/libs/test-utils/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "test-utils",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/test-utils/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/test-utils/src/**/*.ts",
+					"libs/test-utils/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/test-utils/tsconfig.spec.json",
+				"jestConfig": "libs/test-utils/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/test-utils"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/ui/.eslintrc.json b/goofy-client/libs/ui/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/ui/.eslintrc.json
+++ b/goofy-client/libs/ui/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/ui/jest.config.ts b/goofy-client/libs/ui/jest.config.ts
index 349f31f589aa175e33e33785f161da7fa01a2cc1..5ea3a2c3665382587fde6aa28297b7d714ecb989 100644
--- a/goofy-client/libs/ui/jest.config.ts
+++ b/goofy-client/libs/ui/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'ui',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/ui',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/ui/project.json b/goofy-client/libs/ui/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..a34900c2218bdaa7ad00fdfdbdab94a1e0f27d35
--- /dev/null
+++ b/goofy-client/libs/ui/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "ui",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/ui/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/ui/src/**/*.ts",
+					"libs/ui/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/ui/tsconfig.spec.json",
+				"jestConfig": "libs/ui/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/ui"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/user-assistance/.eslintrc.json b/goofy-client/libs/user-assistance/.eslintrc.json
index 5d5efb2a6e71b42a5f466b0001f8b167f63278cc..77bb4c56571ee89beea168d18c5f3737b424df26 100644
--- a/goofy-client/libs/user-assistance/.eslintrc.json
+++ b/goofy-client/libs/user-assistance/.eslintrc.json
@@ -23,13 +23,13 @@
 				]
 			},
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			]
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/user-assistance/jest.config.ts b/goofy-client/libs/user-assistance/jest.config.ts
index 21653694fcf967247f3dbb8ef11e1cbf7d99f4ad..1832780aaf2634457ae963c4dd7dd3903126c78a 100644
--- a/goofy-client/libs/user-assistance/jest.config.ts
+++ b/goofy-client/libs/user-assistance/jest.config.ts
@@ -3,12 +3,7 @@ export default {
 	displayName: 'user-assistance',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/user-profile',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -16,7 +11,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
-};
\ No newline at end of file
+};
diff --git a/goofy-client/libs/user-assistance/project.json b/goofy-client/libs/user-assistance/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..3c50afaa285c221faf20f100147cb682d10d6473
--- /dev/null
+++ b/goofy-client/libs/user-assistance/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "user-assistance",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/user-assistance/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/user-assistance"],
+			"options": {
+				"jestConfig": "libs/user-assistance/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"outputs": ["{options.outputFile}"],
+			"options": {
+				"lintFilePatterns": [
+					"libs/user-assistance/**/*.ts",
+					"libs/user-assistance/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/user-profile-shared/.eslintrc.json b/goofy-client/libs/user-profile-shared/.eslintrc.json
index e69bfc6a73da1bd86f7f10639edeb30bd0b38448..150d72bf1b47d4a502efb560586992a5f41e7cc1 100644
--- a/goofy-client/libs/user-profile-shared/.eslintrc.json
+++ b/goofy-client/libs/user-profile-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/user-profile-shared/jest.config.ts b/goofy-client/libs/user-profile-shared/jest.config.ts
index 559082dfd52c892fc4a6a5072a2b402960b8e8f7..cb813f281febaef7eb21747cd54e9171b5476256 100644
--- a/goofy-client/libs/user-profile-shared/jest.config.ts
+++ b/goofy-client/libs/user-profile-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'user-profile-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/user-profile-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/user-profile-shared/project.json b/goofy-client/libs/user-profile-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..7bd6cc9c7b89b3e08c6adf763524fe1bfd33fac2
--- /dev/null
+++ b/goofy-client/libs/user-profile-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "user-profile-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/user-profile-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/user-profile-shared"],
+			"options": {
+				"tsConfig": "libs/user-profile-shared/tsconfig.spec.json",
+				"jestConfig": "libs/user-profile-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/user-profile-shared/src/**/*.ts",
+					"libs/user-profile-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/user-profile/.eslintrc.json b/goofy-client/libs/user-profile/.eslintrc.json
index e69bfc6a73da1bd86f7f10639edeb30bd0b38448..150d72bf1b47d4a502efb560586992a5f41e7cc1 100644
--- a/goofy-client/libs/user-profile/.eslintrc.json
+++ b/goofy-client/libs/user-profile/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/user-profile/jest.config.ts b/goofy-client/libs/user-profile/jest.config.ts
index b904653a8e10bfefede99aee2b6097bcdd1a947a..c3c1316c63f8d8691b3637f880d1588edc886410 100644
--- a/goofy-client/libs/user-profile/jest.config.ts
+++ b/goofy-client/libs/user-profile/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'user-profile',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/user-profile',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/user-profile/project.json b/goofy-client/libs/user-profile/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..f6194b2d9664bf9a7347d164b645f85052ab9351
--- /dev/null
+++ b/goofy-client/libs/user-profile/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "user-profile",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/user-profile/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/user-profile"],
+			"options": {
+				"tsConfig": "libs/user-profile/tsconfig.spec.json",
+				"jestConfig": "libs/user-profile/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/user-profile/src/**/*.ts",
+					"libs/user-profile/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/user-settings-shared/.eslintrc.json b/goofy-client/libs/user-settings-shared/.eslintrc.json
index 28f19b630511beab4ad3ff61ffce5a45f7430728..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/user-settings-shared/.eslintrc.json
+++ b/goofy-client/libs/user-settings-shared/.eslintrc.json
@@ -5,7 +5,7 @@
 		{
 			"files": ["*.ts"],
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			],
 			"rules": {
@@ -29,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/user-settings-shared/jest.config.ts b/goofy-client/libs/user-settings-shared/jest.config.ts
index 5a44c879d90fbb1b5f5aa61b14ac934671c879ff..c40371e9dc68a2f7a2ed4dc0855f2a7425327ee5 100644
--- a/goofy-client/libs/user-settings-shared/jest.config.ts
+++ b/goofy-client/libs/user-settings-shared/jest.config.ts
@@ -27,15 +27,16 @@ export default {
 	displayName: 'user-settings-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/user-settings-shared',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/user-settings-shared/project.json b/goofy-client/libs/user-settings-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..7c16068a820e82dbfbbfe34fde068b9977514640
--- /dev/null
+++ b/goofy-client/libs/user-settings-shared/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "user-settings-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/user-settings-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/user-settings-shared"],
+			"options": {
+				"tsConfig": "libs/user-settings-shared/tsconfig.spec.json",
+				"jestConfig": "libs/user-settings-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/user-settings-shared/**/*.ts",
+					"libs/user-settings-shared/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/user-settings/.eslintrc.json b/goofy-client/libs/user-settings/.eslintrc.json
index 28f19b630511beab4ad3ff61ffce5a45f7430728..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/user-settings/.eslintrc.json
+++ b/goofy-client/libs/user-settings/.eslintrc.json
@@ -5,7 +5,7 @@
 		{
 			"files": ["*.ts"],
 			"extends": [
-				"plugin:@nrwl/nx/angular",
+				"plugin:@nx/angular",
 				"plugin:@angular-eslint/template/process-inline-templates"
 			],
 			"rules": {
@@ -29,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/user-settings/jest.config.ts b/goofy-client/libs/user-settings/jest.config.ts
index 3cbc1d1a5023e1e579d71cc9f687aaa51498149a..b6cb94ecdf55f5fe1fb6195356fa9e68b4f683e4 100644
--- a/goofy-client/libs/user-settings/jest.config.ts
+++ b/goofy-client/libs/user-settings/jest.config.ts
@@ -27,15 +27,16 @@ export default {
 	displayName: 'user-settings',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/user-settings',
 	transform: {
-		'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+\\.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
 	snapshotSerializers: [
diff --git a/goofy-client/libs/user-settings/project.json b/goofy-client/libs/user-settings/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..d6bdc69800790ced7322d35ab4c7924c70f53e5e
--- /dev/null
+++ b/goofy-client/libs/user-settings/project.json
@@ -0,0 +1,28 @@
+{
+	"name": "user-settings",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/user-settings/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/user-settings"],
+			"options": {
+				"tsConfig": "libs/user-settings/tsconfig.spec.json",
+				"jestConfig": "libs/user-settings/jest.config.ts",
+				"passWithNoTests": true
+			}
+		},
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/user-settings/**/*.ts",
+					"libs/user-settings/**/*.html"
+				]
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/vorgang-detail/.eslintrc.json b/goofy-client/libs/vorgang-detail/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/vorgang-detail/.eslintrc.json
+++ b/goofy-client/libs/vorgang-detail/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/vorgang-detail/jest.config.ts b/goofy-client/libs/vorgang-detail/jest.config.ts
index 8b40886affc521fd372c369925fa1a82942c5f1a..bf8b4cd34cfd758ced06747aa02414d6882e2421 100644
--- a/goofy-client/libs/vorgang-detail/jest.config.ts
+++ b/goofy-client/libs/vorgang-detail/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'vorgang-detail',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/vorgang-detail',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/vorgang-detail/project.json b/goofy-client/libs/vorgang-detail/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..3e082197f4956ed8171136c7706557e59b3f0e0f
--- /dev/null
+++ b/goofy-client/libs/vorgang-detail/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "vorgang-detail",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/vorgang-detail/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/vorgang-detail/src/**/*.ts",
+					"libs/vorgang-detail/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/vorgang-detail/tsconfig.spec.json",
+				"jestConfig": "libs/vorgang-detail/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/vorgang-detail"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/vorgang-shared-ui/.eslintrc.json b/goofy-client/libs/vorgang-shared-ui/.eslintrc.json
index 4ddd7c574ab736525fce30e4cb47e879fe1b3a37..87a2bb376e6bb0a0ac56ee3db5ee61977aed735d 100644
--- a/goofy-client/libs/vorgang-shared-ui/.eslintrc.json
+++ b/goofy-client/libs/vorgang-shared-ui/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/vorgang-shared-ui/jest.config.ts b/goofy-client/libs/vorgang-shared-ui/jest.config.ts
index 09ecd6211d6194123743e6475fd895d0933e94ba..7ebc66395a15cabd62a5124f3429e2a2f8d13203 100644
--- a/goofy-client/libs/vorgang-shared-ui/jest.config.ts
+++ b/goofy-client/libs/vorgang-shared-ui/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'vorgang-shared-ui',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/vorgang-shared-ui',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/vorgang-shared-ui/project.json b/goofy-client/libs/vorgang-shared-ui/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..1d66dec190f300b3af18c7fc0c395e68225639dc
--- /dev/null
+++ b/goofy-client/libs/vorgang-shared-ui/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "vorgang-shared-ui",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/vorgang-shared-ui/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/vorgang-shared-ui/src/**/*.ts",
+					"libs/vorgang-shared-ui/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/vorgang-shared-ui"],
+			"options": {
+				"tsConfig": "libs/vorgang-shared-ui/tsconfig.spec.json",
+				"jestConfig": "libs/vorgang-shared-ui/jest.config.ts",
+				"passWithNoTests": true
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/vorgang-shared/.eslintrc.json b/goofy-client/libs/vorgang-shared/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/vorgang-shared/.eslintrc.json
+++ b/goofy-client/libs/vorgang-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/vorgang-shared/jest.config.ts b/goofy-client/libs/vorgang-shared/jest.config.ts
index cc19e1710a6fd6f196b754a13d2b4e502a2dbcab..6b23df5d549e6339b61b5de670f5fbf957c9230c 100644
--- a/goofy-client/libs/vorgang-shared/jest.config.ts
+++ b/goofy-client/libs/vorgang-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'vorgang-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/vorgang-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/vorgang-shared/project.json b/goofy-client/libs/vorgang-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..006f0033afeb3c1888e0329b806ae522b3dfe0b2
--- /dev/null
+++ b/goofy-client/libs/vorgang-shared/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "vorgang-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/vorgang-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/vorgang-shared/src/**/*.ts",
+					"libs/vorgang-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/vorgang-shared/tsconfig.spec.json",
+				"jestConfig": "libs/vorgang-shared/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/vorgang-shared"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/vorgang/.eslintrc.json b/goofy-client/libs/vorgang/.eslintrc.json
index 5f7f035e49534b06c8d6e2f2cba49e8391abe5ff..ae7ae2063d2c4184815b92ba878d8496d3b4cd87 100644
--- a/goofy-client/libs/vorgang/.eslintrc.json
+++ b/goofy-client/libs/vorgang/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/vorgang/jest.config.ts b/goofy-client/libs/vorgang/jest.config.ts
index 3ddbdde05650019090043af0ea3352b9af996a56..76bf56f75c05d445d435c00c2d8829f8a8a59e82 100644
--- a/goofy-client/libs/vorgang/jest.config.ts
+++ b/goofy-client/libs/vorgang/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'vorgang',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/vorgang',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/vorgang/project.json b/goofy-client/libs/vorgang/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..fcf9a13ea270804dab390a7c4032dd52c32d7f16
--- /dev/null
+++ b/goofy-client/libs/vorgang/project.json
@@ -0,0 +1,34 @@
+{
+	"name": "vorgang",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/vorgang/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/vorgang/src/**/*.ts",
+					"libs/vorgang/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"options": {
+				"tsConfig": "libs/vorgang/tsconfig.spec.json",
+				"jestConfig": "libs/vorgang/jest.config.ts",
+				"passWithNoTests": true
+			},
+			"outputs": ["{workspaceRoot}/coverage/libs/vorgang"]
+		}
+	},
+	"generators": {
+		"@schematics/angular:component": {
+			"style": "scss"
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/wiedervorlage-shared/.eslintrc.json b/goofy-client/libs/wiedervorlage-shared/.eslintrc.json
index e69bfc6a73da1bd86f7f10639edeb30bd0b38448..150d72bf1b47d4a502efb560586992a5f41e7cc1 100644
--- a/goofy-client/libs/wiedervorlage-shared/.eslintrc.json
+++ b/goofy-client/libs/wiedervorlage-shared/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/wiedervorlage-shared/jest.config.ts b/goofy-client/libs/wiedervorlage-shared/jest.config.ts
index 006790777116c1d6349de26dbbb070cdd31a064f..738371753cbae1c3f458a9f076a8acf36cd560e8 100644
--- a/goofy-client/libs/wiedervorlage-shared/jest.config.ts
+++ b/goofy-client/libs/wiedervorlage-shared/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'wiedervorlage-shared',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/wiedervorlage-shared',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/wiedervorlage-shared/project.json b/goofy-client/libs/wiedervorlage-shared/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..da33aec82e1f8903d7a047425f48faaff6dfa364
--- /dev/null
+++ b/goofy-client/libs/wiedervorlage-shared/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "wiedervorlage-shared",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/wiedervorlage-shared/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/wiedervorlage-shared/src/**/*.ts",
+					"libs/wiedervorlage-shared/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/wiedervorlage-shared"],
+			"options": {
+				"tsConfig": "libs/wiedervorlage-shared/tsconfig.spec.json",
+				"jestConfig": "libs/wiedervorlage-shared/jest.config.ts",
+				"passWithNoTests": true
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/libs/wiedervorlage/.eslintrc.json b/goofy-client/libs/wiedervorlage/.eslintrc.json
index e69bfc6a73da1bd86f7f10639edeb30bd0b38448..150d72bf1b47d4a502efb560586992a5f41e7cc1 100644
--- a/goofy-client/libs/wiedervorlage/.eslintrc.json
+++ b/goofy-client/libs/wiedervorlage/.eslintrc.json
@@ -4,7 +4,10 @@
 	"overrides": [
 		{
 			"files": ["*.ts"],
-			"extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"],
+			"extends": [
+				"plugin:@nx/angular",
+				"plugin:@angular-eslint/template/process-inline-templates"
+			],
 			"rules": {
 				"@angular-eslint/directive-selector": [
 					"error",
@@ -26,7 +29,7 @@
 		},
 		{
 			"files": ["*.html"],
-			"extends": ["plugin:@nrwl/nx/angular-template"],
+			"extends": ["plugin:@nx/angular-template"],
 			"rules": {}
 		}
 	]
diff --git a/goofy-client/libs/wiedervorlage/jest.config.ts b/goofy-client/libs/wiedervorlage/jest.config.ts
index 4fc9659198755f567eb0433079d667c0cd4ee135..3ed1aaacfacb6141613bc99702cefd4ce5bb959a 100644
--- a/goofy-client/libs/wiedervorlage/jest.config.ts
+++ b/goofy-client/libs/wiedervorlage/jest.config.ts
@@ -28,12 +28,7 @@ export default {
 	displayName: 'wiedervorlage',
 	preset: '../../jest.preset.js',
 	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
-	globals: {
-		'ts-jest': {
-			tsconfig: '<rootDir>/tsconfig.spec.json',
-			stringifyContentPathRegex: '\\.(html|svg)$',
-		},
-	},
+	globals: {},
 	coverageDirectory: '../../coverage/libs/wiedervorlage',
 	snapshotSerializers: [
 		'jest-preset-angular/build/serializers/no-ng-attributes',
@@ -41,7 +36,13 @@ export default {
 		'jest-preset-angular/build/serializers/html-comment',
 	],
 	transform: {
-		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
+		'^.+.(ts|mjs|js|html)$': [
+			'jest-preset-angular',
+			{
+				tsconfig: '<rootDir>/tsconfig.spec.json',
+				stringifyContentPathRegex: '\\.(html|svg)$',
+			},
+		],
 	},
 	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
 };
diff --git a/goofy-client/libs/wiedervorlage/project.json b/goofy-client/libs/wiedervorlage/project.json
new file mode 100644
index 0000000000000000000000000000000000000000..8235e66afad2aa631023529445234d0325f15831
--- /dev/null
+++ b/goofy-client/libs/wiedervorlage/project.json
@@ -0,0 +1,29 @@
+{
+	"name": "wiedervorlage",
+	"$schema": "../../node_modules/nx/schemas/project-schema.json",
+	"projectType": "library",
+	"sourceRoot": "libs/wiedervorlage/src",
+	"prefix": "goofy-client",
+	"targets": {
+		"lint": {
+			"executor": "@nx/linter:eslint",
+			"options": {
+				"lintFilePatterns": [
+					"libs/wiedervorlage/src/**/*.ts",
+					"libs/wiedervorlage/src/**/*.html"
+				]
+			},
+			"outputs": ["{options.outputFile}"]
+		},
+		"test": {
+			"executor": "@nx/jest:jest",
+			"outputs": ["{workspaceRoot}/coverage/libs/wiedervorlage"],
+			"options": {
+				"tsConfig": "libs/wiedervorlage/tsconfig.spec.json",
+				"jestConfig": "libs/wiedervorlage/jest.config.ts",
+				"passWithNoTests": true
+			}
+		}
+	},
+	"tags": []
+}
diff --git a/goofy-client/nx.json b/goofy-client/nx.json
index 92a6778e4ff5ba277800a5745eb86e21866fe709..42360bf25708bed96d9aeff3b936ad4fec50a86d 100644
--- a/goofy-client/nx.json
+++ b/goofy-client/nx.json
@@ -16,24 +16,13 @@
 		"analytics": "96410a10-f846-4f96-b18f-6da7a28dea2d"
 	},
 	"generators": {
-		"@nrwl/angular": {
-			"application": {
-				"linter": "eslint"
-			},
-			"library": {
-				"linter": "eslint"
-			},
-			"storybook-configuration": {
-				"linter": "eslint"
-			}
-		},
-		"@nrwl/angular:application": {
+		"@nx/angular:application": {
 			"style": "scss",
 			"linter": "eslint",
 			"unitTestRunner": "jest",
 			"e2eTestRunner": "cypress"
 		},
-		"@nrwl/angular:library": {
+		"@nx/angular:library": {
 			"linter": "eslint",
 			"unitTestRunner": "jest"
 		},
@@ -43,8 +32,19 @@
 		"@schematics/angular:component": {
 			"styleext": "scss"
 		},
-		"@nrwl/angular:component": {
+		"@nx/angular:component": {
 			"style": "scss"
+		},
+		"@nx/angular": {
+			"application": {
+				"linter": "eslint"
+			},
+			"library": {
+				"linter": "eslint"
+			},
+			"storybook-configuration": {
+				"linter": "eslint"
+			}
 		}
 	},
 	"defaultProject": "goofy",
@@ -81,7 +81,8 @@
 			"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
 			"!{projectRoot}/tsconfig.spec.json",
 			"!{projectRoot}/jest.config.[jt]s",
-			"!{projectRoot}/.eslintrc.json"
+			"!{projectRoot}/.eslintrc.json",
+			"!{projectRoot}/src/test-setup.[jt]s"
 		]
 	}
 }
diff --git a/goofy-client/package-lock.json b/goofy-client/package-lock.json
index f7e6c78364530df617dc20000bf696f1abe10aad..cbdbcb184fa5a8face78f79dd269bcd79193cc7e 100644
--- a/goofy-client/package-lock.json
+++ b/goofy-client/package-lock.json
@@ -10,24 +10,24 @@
 			"hasInstallScript": true,
 			"license": "MIT",
 			"dependencies": {
-				"@angular/animations": "15.1.4",
-				"@angular/cdk": "15.1.4",
-				"@angular/common": "15.1.4",
-				"@angular/compiler": "15.1.4",
-				"@angular/core": "15.1.4",
-				"@angular/forms": "15.1.4",
-				"@angular/material": "15.1.4",
-				"@angular/material-date-fns-adapter": "15.1.4",
-				"@angular/platform-browser": "15.1.4",
-				"@angular/platform-browser-dynamic": "15.1.4",
-				"@angular/router": "15.1.4",
-				"@ngrx/component-store": "15.0.0",
-				"@ngrx/effects": "15.0.0",
-				"@ngrx/entity": "15.0.0",
-				"@ngrx/router-store": "15.0.0",
-				"@ngrx/store": "15.0.0",
+				"@angular/animations": "16.2.11",
+				"@angular/cdk": "16.2.10",
+				"@angular/common": "16.2.11",
+				"@angular/compiler": "16.2.11",
+				"@angular/core": "16.2.11",
+				"@angular/forms": "16.2.11",
+				"@angular/material": "16.2.10",
+				"@angular/material-date-fns-adapter": "16.2.10",
+				"@angular/platform-browser": "16.2.11",
+				"@angular/platform-browser-dynamic": "16.2.11",
+				"@angular/router": "16.2.11",
+				"@ngrx/component-store": "16.0.1",
+				"@ngrx/effects": "16.0.1",
+				"@ngrx/entity": "16.0.1",
+				"@ngrx/router-store": "16.0.1",
+				"@ngrx/store": "16.0.1",
 				"@ngxp/rest": "8.0.0",
-				"@nrwl/angular": "15.6.3",
+				"@nx/angular": "16.10.0",
 				"angular-oauth2-oidc": "15.0.1",
 				"angular-oauth2-oidc-jwks": "15.0.1",
 				"date-fns": "^2.29.3",
@@ -39,68 +39,83 @@
 				"sanitize-filename-ts": "^1.0.2",
 				"tslib": "^2.3.0",
 				"typeface-roboto": "1.1.13",
-				"zone.js": "~0.12.0"
+				"zone.js": "0.13.3"
 			},
 			"devDependencies": {
-				"@angular-devkit/build-angular": "15.1.5",
-				"@angular-eslint/eslint-plugin": "15.0.0",
-				"@angular-eslint/eslint-plugin-template": "15.0.0",
-				"@angular-eslint/template-parser": "15.0.0",
-				"@angular/cli": "~15.1.0",
-				"@angular/compiler-cli": "15.1.4",
-				"@angular/language-service": "15.1.4",
+				"@angular-devkit/build-angular": "16.2.8",
+				"@angular-devkit/core": "16.2.8",
+				"@angular-devkit/schematics": "16.2.8",
+				"@angular-eslint/eslint-plugin": "16.0.3",
+				"@angular-eslint/eslint-plugin-template": "16.0.3",
+				"@angular-eslint/template-parser": "16.0.3",
+				"@angular/cli": "~16.2.0",
+				"@angular/compiler-cli": "16.2.11",
+				"@angular/language-service": "16.2.11",
 				"@bahmutov/cypress-extends": "1.1.0",
 				"@cypress/webpack-batteries-included-preprocessor": "^2.4.1",
 				"@cypress/webpack-preprocessor": "^5.17.1",
 				"@faker-js/faker": "^6.3.1",
-				"@ngrx/schematics": "15.0.0",
-				"@ngrx/store-devtools": "15.0.0",
-				"@nrwl/cli": "15.6.3",
-				"@nrwl/cypress": "15.6.3",
-				"@nrwl/eslint-plugin-nx": "15.6.3",
-				"@nrwl/jest": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
+				"@ngrx/schematics": "16.0.1",
+				"@ngrx/store-devtools": "16.0.1",
+				"@nx/cypress": "16.10.0",
+				"@nx/eslint-plugin": "16.10.0",
+				"@nx/jest": "16.10.0",
+				"@nx/linter": "16.10.0",
+				"@nx/workspace": "16.10.0",
+				"@schematics/angular": "16.2.8",
 				"@testing-library/jest-dom": "5.16.4",
 				"@types/file-saver": "2.0.6",
-				"@types/jest": "28.1.8",
+				"@types/jest": "29.4.4",
 				"@types/lodash-es": "4.17.10",
 				"@types/node": "^16.18.1",
-				"@typescript-eslint/eslint-plugin": "5.44.0",
-				"@typescript-eslint/parser": "5.44.0",
-				"cypress": "^12.17.4",
+				"@typescript-eslint/eslint-plugin": "5.62.0",
+				"@typescript-eslint/parser": "5.62.0",
+				"cypress": "^13.0.0",
 				"cypress-file-upload": "5.0.8",
 				"cypress-mochawesome-reporter": "3.6.0",
 				"cypress-real-events": "^1.10.3",
 				"cypress-timestamps": "^1.2.3",
-				"eslint": "8.15.0",
+				"eslint": "8.46.0",
 				"eslint-config-prettier": "8.3.0",
-				"eslint-plugin-cypress": "2.11.3",
+				"eslint-plugin-cypress": "2.15.1",
 				"jasmine-marbles": "~0.9.2",
-				"jest": "28.1.3",
+				"jest": "29.4.3",
 				"jest-createspyobj": "^2.0.0",
-				"jest-environment-jsdom": "28.1.1",
+				"jest-environment-jsdom": "29.4.3",
 				"jest-junit": "^14.0.0",
 				"jest-marbles": "3.0.3",
-				"jest-preset-angular": "12.2.3",
+				"jest-preset-angular": "13.1.2",
 				"jest-sonar-reporter": "^2.0.0",
 				"mongodb": "4.5.0",
 				"ng-mocks": "^14.11.0",
-				"nx": "15.6.3",
+				"nx": "16.10.0",
 				"prettier": "2.7.1",
 				"sonarqube-scanner": "3.1.0",
-				"ts-jest": "28.0.8",
+				"ts-jest": "29.1.1",
 				"ts-node": "10.9.1",
-				"typescript": "4.8.4"
+				"typescript": "5.1.6"
 			}
 		},
+		"node_modules/@aashutoshrathi/word-wrap": {
+			"version": "1.2.6",
+			"resolved": "http://localhost:4873/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
+			"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
+			"dev": true,
+			"engines": {
+				"node": ">=0.10.0"
+			}
+		},
+		"node_modules/@adobe/css-tools": {
+			"version": "4.3.1",
+			"resolved": "http://localhost:4873/@adobe/css-tools/-/css-tools-4.3.1.tgz",
+			"integrity": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg=="
+		},
 		"node_modules/@ampproject/remapping": {
-			"version": "2.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ampproject/remapping/-/remapping-2.2.0.tgz",
-			"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
-			"license": "Apache-2.0",
+			"version": "2.2.1",
+			"resolved": "http://localhost:4873/@ampproject/remapping/-/remapping-2.2.1.tgz",
+			"integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
 			"dependencies": {
-				"@jridgewell/gen-mapping": "^0.1.0",
+				"@jridgewell/gen-mapping": "^0.3.0",
 				"@jridgewell/trace-mapping": "^0.3.9"
 			},
 			"engines": {
@@ -108,102 +123,55 @@
 			}
 		},
 		"node_modules/@angular-devkit/architect": {
-			"version": "0.1501.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/architect/-/architect-0.1501.5.tgz",
-			"integrity": "sha512-T4zJMvJvCqZeeENdeHcFtdrISrZSe8MycQOWZwPYU9zBTGMmdYpa4GQKQmFRZGBwX2PKHFlkQ1HLLe366sySAQ==",
+			"version": "0.1602.8",
+			"resolved": "http://localhost:4873/@angular-devkit/architect/-/architect-0.1602.8.tgz",
+			"integrity": "sha512-bNdu2tF29Y/jOxMXlu9pmNbIlyZs9hRjLmi/tcfcMFay+3AhpNO59DWlUmI4gpvWu8CEXdQHSMuJTDHaNR+Ctg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-devkit/core": "15.1.5",
-				"rxjs": "6.6.7"
+				"@angular-devkit/core": "16.2.8",
+				"rxjs": "7.8.1"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			}
 		},
-		"node_modules/@angular-devkit/architect/node_modules/@angular-devkit/core": {
-			"version": "15.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.5.tgz",
-			"integrity": "sha512-SkGQFkruTwVM77WEOIQivfFBtnHW41tttsGrT6MTrti98hs8tvOTlzfYD/sDTyh0WKbZGeAtkRXx0raevb63YQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"ajv": "8.12.0",
-				"ajv-formats": "2.1.1",
-				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
-				"source-map": "0.7.4"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			},
-			"peerDependencies": {
-				"chokidar": "^3.5.2"
-			},
-			"peerDependenciesMeta": {
-				"chokidar": {
-					"optional": true
-				}
-			}
-		},
-		"node_modules/@angular-devkit/architect/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@angular-devkit/architect/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
-			"license": "0BSD"
-		},
 		"node_modules/@angular-devkit/build-angular": {
-			"version": "15.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/build-angular/-/build-angular-15.1.5.tgz",
-			"integrity": "sha512-tMWfBdhdl5zLtFHqeI3GVXAL9j7rm51rd5g0RU3KhUsohAvA6AS/bZTRWwr8BYPHQzYovgDDOcdd2Sapxibv7w==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@ampproject/remapping": "2.2.0",
-				"@angular-devkit/architect": "0.1501.5",
-				"@angular-devkit/build-webpack": "0.1501.5",
-				"@angular-devkit/core": "15.1.5",
-				"@babel/core": "7.20.12",
-				"@babel/generator": "7.20.7",
-				"@babel/helper-annotate-as-pure": "7.18.6",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular-devkit/build-angular/-/build-angular-16.2.8.tgz",
+			"integrity": "sha512-PgTaWerhDO3JjHjgJl/VWB1y1awN8eHrm7sqdpIsgKbVpi26oyByjtPS1gKKhinps9Che66lCbnxrkx2X3rWTg==",
+			"dev": true,
+			"dependencies": {
+				"@ampproject/remapping": "2.2.1",
+				"@angular-devkit/architect": "0.1602.8",
+				"@angular-devkit/build-webpack": "0.1602.8",
+				"@angular-devkit/core": "16.2.8",
+				"@babel/core": "7.22.9",
+				"@babel/generator": "7.22.9",
+				"@babel/helper-annotate-as-pure": "7.22.5",
+				"@babel/helper-split-export-declaration": "7.22.6",
 				"@babel/plugin-proposal-async-generator-functions": "7.20.7",
-				"@babel/plugin-transform-async-to-generator": "7.20.7",
-				"@babel/plugin-transform-runtime": "7.19.6",
-				"@babel/preset-env": "7.20.2",
-				"@babel/runtime": "7.20.7",
-				"@babel/template": "7.20.7",
+				"@babel/plugin-transform-async-to-generator": "7.22.5",
+				"@babel/plugin-transform-runtime": "7.22.9",
+				"@babel/preset-env": "7.22.9",
+				"@babel/runtime": "7.22.6",
+				"@babel/template": "7.22.5",
 				"@discoveryjs/json-ext": "0.5.7",
-				"@ngtools/webpack": "15.1.5",
+				"@ngtools/webpack": "16.2.8",
+				"@vitejs/plugin-basic-ssl": "1.0.1",
 				"ansi-colors": "4.1.3",
-				"autoprefixer": "10.4.13",
-				"babel-loader": "9.1.2",
+				"autoprefixer": "10.4.14",
+				"babel-loader": "9.1.3",
 				"babel-plugin-istanbul": "6.1.1",
-				"browserslist": "4.21.4",
-				"cacache": "17.0.4",
+				"browserslist": "^4.21.5",
 				"chokidar": "3.5.3",
 				"copy-webpack-plugin": "11.0.0",
-				"critters": "0.0.16",
-				"css-loader": "6.7.3",
-				"esbuild-wasm": "0.16.17",
-				"glob": "8.0.3",
+				"critters": "0.0.20",
+				"css-loader": "6.8.1",
+				"esbuild-wasm": "0.18.17",
+				"fast-glob": "3.3.1",
+				"guess-parser": "0.4.22",
 				"https-proxy-agent": "5.0.1",
 				"inquirer": "8.2.4",
 				"jsonc-parser": "3.2.0",
@@ -212,49 +180,54 @@
 				"less-loader": "11.1.0",
 				"license-webpack-plugin": "4.0.2",
 				"loader-utils": "3.2.1",
-				"magic-string": "0.27.0",
-				"mini-css-extract-plugin": "2.7.2",
-				"open": "8.4.0",
+				"magic-string": "0.30.1",
+				"mini-css-extract-plugin": "2.7.6",
+				"mrmime": "1.0.1",
+				"open": "8.4.2",
 				"ora": "5.4.1",
-				"parse5-html-rewriting-stream": "6.0.1",
-				"piscina": "3.2.0",
-				"postcss": "8.4.21",
-				"postcss-loader": "7.0.2",
+				"parse5-html-rewriting-stream": "7.0.0",
+				"picomatch": "2.3.1",
+				"piscina": "4.0.0",
+				"postcss": "8.4.31",
+				"postcss-loader": "7.3.3",
 				"resolve-url-loader": "5.0.0",
-				"rxjs": "6.6.7",
-				"sass": "1.57.1",
-				"sass-loader": "13.2.0",
-				"semver": "7.3.8",
+				"rxjs": "7.8.1",
+				"sass": "1.64.1",
+				"sass-loader": "13.3.2",
+				"semver": "7.5.4",
 				"source-map-loader": "4.0.1",
 				"source-map-support": "0.5.21",
-				"terser": "5.16.1",
+				"terser": "5.19.2",
 				"text-table": "0.2.0",
 				"tree-kill": "1.2.2",
-				"tslib": "2.4.1",
-				"webpack": "5.75.0",
-				"webpack-dev-middleware": "6.0.1",
-				"webpack-dev-server": "4.11.1",
-				"webpack-merge": "5.8.0",
+				"tslib": "2.6.1",
+				"vite": "4.4.7",
+				"webpack": "5.88.2",
+				"webpack-dev-middleware": "6.1.1",
+				"webpack-dev-server": "4.15.1",
+				"webpack-merge": "5.9.0",
 				"webpack-subresource-integrity": "5.1.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			},
 			"optionalDependencies": {
-				"esbuild": "0.16.17"
+				"esbuild": "0.18.17"
 			},
 			"peerDependencies": {
-				"@angular/compiler-cli": "^15.0.0",
-				"@angular/localize": "^15.0.0",
-				"@angular/platform-server": "^15.0.0",
-				"@angular/service-worker": "^15.0.0",
+				"@angular/compiler-cli": "^16.0.0",
+				"@angular/localize": "^16.0.0",
+				"@angular/platform-server": "^16.0.0",
+				"@angular/service-worker": "^16.0.0",
+				"jest": "^29.5.0",
+				"jest-environment-jsdom": "^29.5.0",
 				"karma": "^6.3.0",
-				"ng-packagr": "^15.0.0",
+				"ng-packagr": "^16.0.0",
 				"protractor": "^7.0.0",
 				"tailwindcss": "^2.0.0 || ^3.0.0",
-				"typescript": ">=4.8.2 <5.0"
+				"typescript": ">=4.9.3 <5.2"
 			},
 			"peerDependenciesMeta": {
 				"@angular/localize": {
@@ -266,6 +239,12 @@
 				"@angular/service-worker": {
 					"optional": true
 				},
+				"jest": {
+					"optional": true
+				},
+				"jest-environment-jsdom": {
+					"optional": true
+				},
 				"karma": {
 					"optional": true
 				},
@@ -280,55 +259,27 @@
 				}
 			}
 		},
-		"node_modules/@angular-devkit/build-angular/node_modules/@angular-devkit/core": {
-			"version": "15.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.5.tgz",
-			"integrity": "sha512-SkGQFkruTwVM77WEOIQivfFBtnHW41tttsGrT6MTrti98hs8tvOTlzfYD/sDTyh0WKbZGeAtkRXx0raevb63YQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"ajv": "8.12.0",
-				"ajv-formats": "2.1.1",
-				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
-				"source-map": "0.7.4"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			},
-			"peerDependencies": {
-				"chokidar": "^3.5.2"
-			},
-			"peerDependenciesMeta": {
-				"chokidar": {
-					"optional": true
-				}
-			}
-		},
 		"node_modules/@angular-devkit/build-angular/node_modules/@babel/core": {
-			"version": "7.20.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/core/-/core-7.20.12.tgz",
-			"integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==",
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/core/-/core-7.22.9.tgz",
+			"integrity": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@ampproject/remapping": "^2.1.0",
-				"@babel/code-frame": "^7.18.6",
-				"@babel/generator": "^7.20.7",
-				"@babel/helper-compilation-targets": "^7.20.7",
-				"@babel/helper-module-transforms": "^7.20.11",
-				"@babel/helpers": "^7.20.7",
-				"@babel/parser": "^7.20.7",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.20.12",
-				"@babel/types": "^7.20.7",
+				"@ampproject/remapping": "^2.2.0",
+				"@babel/code-frame": "^7.22.5",
+				"@babel/generator": "^7.22.9",
+				"@babel/helper-compilation-targets": "^7.22.9",
+				"@babel/helper-module-transforms": "^7.22.9",
+				"@babel/helpers": "^7.22.6",
+				"@babel/parser": "^7.22.7",
+				"@babel/template": "^7.22.5",
+				"@babel/traverse": "^7.22.8",
+				"@babel/types": "^7.22.5",
 				"convert-source-map": "^1.7.0",
 				"debug": "^4.1.0",
 				"gensync": "^1.0.0-beta.2",
 				"json5": "^2.2.2",
-				"semver": "^6.3.0"
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -339,293 +290,37 @@
 			}
 		},
 		"node_modules/@angular-devkit/build-angular/node_modules/@babel/core/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"dev": true,
-			"license": "ISC",
-			"bin": {
-				"semver": "bin/semver.js"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env": {
-			"version": "7.20.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/preset-env/-/preset-env-7.20.2.tgz",
-			"integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@babel/compat-data": "^7.20.1",
-				"@babel/helper-compilation-targets": "^7.20.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-option": "^7.18.6",
-				"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
-				"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
-				"@babel/plugin-proposal-async-generator-functions": "^7.20.1",
-				"@babel/plugin-proposal-class-properties": "^7.18.6",
-				"@babel/plugin-proposal-class-static-block": "^7.18.6",
-				"@babel/plugin-proposal-dynamic-import": "^7.18.6",
-				"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
-				"@babel/plugin-proposal-json-strings": "^7.18.6",
-				"@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
-				"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
-				"@babel/plugin-proposal-numeric-separator": "^7.18.6",
-				"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
-				"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
-				"@babel/plugin-proposal-optional-chaining": "^7.18.9",
-				"@babel/plugin-proposal-private-methods": "^7.18.6",
-				"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
-				"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
-				"@babel/plugin-syntax-async-generators": "^7.8.4",
-				"@babel/plugin-syntax-class-properties": "^7.12.13",
-				"@babel/plugin-syntax-class-static-block": "^7.14.5",
-				"@babel/plugin-syntax-dynamic-import": "^7.8.3",
-				"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-				"@babel/plugin-syntax-import-assertions": "^7.20.0",
-				"@babel/plugin-syntax-json-strings": "^7.8.3",
-				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
-				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
-				"@babel/plugin-syntax-numeric-separator": "^7.10.4",
-				"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
-				"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
-				"@babel/plugin-syntax-optional-chaining": "^7.8.3",
-				"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
-				"@babel/plugin-syntax-top-level-await": "^7.14.5",
-				"@babel/plugin-transform-arrow-functions": "^7.18.6",
-				"@babel/plugin-transform-async-to-generator": "^7.18.6",
-				"@babel/plugin-transform-block-scoped-functions": "^7.18.6",
-				"@babel/plugin-transform-block-scoping": "^7.20.2",
-				"@babel/plugin-transform-classes": "^7.20.2",
-				"@babel/plugin-transform-computed-properties": "^7.18.9",
-				"@babel/plugin-transform-destructuring": "^7.20.2",
-				"@babel/plugin-transform-dotall-regex": "^7.18.6",
-				"@babel/plugin-transform-duplicate-keys": "^7.18.9",
-				"@babel/plugin-transform-exponentiation-operator": "^7.18.6",
-				"@babel/plugin-transform-for-of": "^7.18.8",
-				"@babel/plugin-transform-function-name": "^7.18.9",
-				"@babel/plugin-transform-literals": "^7.18.9",
-				"@babel/plugin-transform-member-expression-literals": "^7.18.6",
-				"@babel/plugin-transform-modules-amd": "^7.19.6",
-				"@babel/plugin-transform-modules-commonjs": "^7.19.6",
-				"@babel/plugin-transform-modules-systemjs": "^7.19.6",
-				"@babel/plugin-transform-modules-umd": "^7.18.6",
-				"@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1",
-				"@babel/plugin-transform-new-target": "^7.18.6",
-				"@babel/plugin-transform-object-super": "^7.18.6",
-				"@babel/plugin-transform-parameters": "^7.20.1",
-				"@babel/plugin-transform-property-literals": "^7.18.6",
-				"@babel/plugin-transform-regenerator": "^7.18.6",
-				"@babel/plugin-transform-reserved-words": "^7.18.6",
-				"@babel/plugin-transform-shorthand-properties": "^7.18.6",
-				"@babel/plugin-transform-spread": "^7.19.0",
-				"@babel/plugin-transform-sticky-regex": "^7.18.6",
-				"@babel/plugin-transform-template-literals": "^7.18.9",
-				"@babel/plugin-transform-typeof-symbol": "^7.18.9",
-				"@babel/plugin-transform-unicode-escapes": "^7.18.10",
-				"@babel/plugin-transform-unicode-regex": "^7.18.6",
-				"@babel/preset-modules": "^0.1.5",
-				"@babel/types": "^7.20.2",
-				"babel-plugin-polyfill-corejs2": "^0.3.3",
-				"babel-plugin-polyfill-corejs3": "^0.6.0",
-				"babel-plugin-polyfill-regenerator": "^0.4.1",
-				"core-js-compat": "^3.25.1",
-				"semver": "^6.3.0"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 			"dev": true,
-			"license": "ISC",
 			"bin": {
 				"semver": "bin/semver.js"
 			}
 		},
-		"node_modules/@angular-devkit/build-angular/node_modules/enhanced-resolve": {
-			"version": "5.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
-			"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"graceful-fs": "^4.2.4",
-				"tapable": "^2.2.0"
-			},
-			"engines": {
-				"node": ">=10.13.0"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/eslint-scope": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
-			"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
-			"dev": true,
-			"license": "BSD-2-Clause",
-			"dependencies": {
-				"esrecurse": "^4.3.0",
-				"estraverse": "^4.1.1"
-			},
-			"engines": {
-				"node": ">=8.0.0"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/estraverse": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
-			"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
-			"dev": true,
-			"license": "BSD-2-Clause",
-			"engines": {
-				"node": ">=4.0"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/rxjs/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
-			"license": "0BSD"
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/schema-utils": {
-			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-			"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@types/json-schema": "^7.0.8",
-				"ajv": "^6.12.5",
-				"ajv-keywords": "^3.5.2"
-			},
-			"engines": {
-				"node": ">= 10.13.0"
-			},
-			"funding": {
-				"type": "opencollective",
-				"url": "https://opencollective.com/webpack"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/schema-utils/node_modules/ajv": {
-			"version": "6.12.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
-			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"dev": true,
-			"license": "MIT",
-			"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/@angular-devkit/build-angular/node_modules/schema-utils/node_modules/ajv-keywords": {
-			"version": "3.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-			"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+		"node_modules/@angular-devkit/build-angular/node_modules/magic-string": {
+			"version": "0.30.1",
+			"resolved": "http://localhost:4873/magic-string/-/magic-string-0.30.1.tgz",
+			"integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==",
 			"dev": true,
-			"license": "MIT",
-			"peerDependencies": {
-				"ajv": "^6.9.1"
-			}
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/schema-utils/node_modules/json-schema-traverse": {
-			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"dev": true,
-			"license": "MIT"
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/tslib": {
-			"version": "2.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-2.4.1.tgz",
-			"integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==",
-			"dev": true,
-			"license": "0BSD"
-		},
-		"node_modules/@angular-devkit/build-angular/node_modules/webpack": {
-			"version": "5.75.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack/-/webpack-5.75.0.tgz",
-			"integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==",
-			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@types/eslint-scope": "^3.7.3",
-				"@types/estree": "^0.0.51",
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/wasm-edit": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1",
-				"acorn": "^8.7.1",
-				"acorn-import-assertions": "^1.7.6",
-				"browserslist": "^4.14.5",
-				"chrome-trace-event": "^1.0.2",
-				"enhanced-resolve": "^5.10.0",
-				"es-module-lexer": "^0.9.0",
-				"eslint-scope": "5.1.1",
-				"events": "^3.2.0",
-				"glob-to-regexp": "^0.4.1",
-				"graceful-fs": "^4.2.9",
-				"json-parse-even-better-errors": "^2.3.1",
-				"loader-runner": "^4.2.0",
-				"mime-types": "^2.1.27",
-				"neo-async": "^2.6.2",
-				"schema-utils": "^3.1.0",
-				"tapable": "^2.1.1",
-				"terser-webpack-plugin": "^5.1.3",
-				"watchpack": "^2.4.0",
-				"webpack-sources": "^3.2.3"
-			},
-			"bin": {
-				"webpack": "bin/webpack.js"
+				"@jridgewell/sourcemap-codec": "^1.4.15"
 			},
 			"engines": {
-				"node": ">=10.13.0"
-			},
-			"funding": {
-				"type": "opencollective",
-				"url": "https://opencollective.com/webpack"
-			},
-			"peerDependenciesMeta": {
-				"webpack-cli": {
-					"optional": true
-				}
+				"node": ">=12"
 			}
 		},
 		"node_modules/@angular-devkit/build-webpack": {
-			"version": "0.1501.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/build-webpack/-/build-webpack-0.1501.5.tgz",
-			"integrity": "sha512-qLDxRBPfiNBRPwgfN8Abs0a+4vBApMnQsL0iWc0FKT729SCy7lgD6h/hP70wZue2shiiih23Qp5RdKT6oCeXwQ==",
+			"version": "0.1602.8",
+			"resolved": "http://localhost:4873/@angular-devkit/build-webpack/-/build-webpack-0.1602.8.tgz",
+			"integrity": "sha512-wGE2R6hnhSVpH7jvqtkZ63IX9oMRd+uh7sC65hGgzajPqThQcNdnGG3+79QGWapgkoHuZHpDlKOBFt0IOMAaMA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-devkit/architect": "0.1501.5",
-				"rxjs": "6.6.7"
+				"@angular-devkit/architect": "0.1602.8",
+				"rxjs": "7.8.1"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			},
@@ -634,42 +329,21 @@
 				"webpack-dev-server": "^4.0.0"
 			}
 		},
-		"node_modules/@angular-devkit/build-webpack/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@angular-devkit/build-webpack/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
-			"license": "0BSD"
-		},
 		"node_modules/@angular-devkit/core": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.0.0.tgz",
-			"integrity": "sha512-2Mg1+eyodO7od2Ax0EaArmm3rDzI2O00pBNU2Upz5hTfHcsqXlPzX5aYjWBiL1lBM0xYLY99dZqSdcQBMZy/Qg==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular-devkit/core/-/core-16.2.8.tgz",
+			"integrity": "sha512-PTGozYvh1Bin5lB15PwcXa26Ayd17bWGLS3H8Rs0s+04mUDvfNofmweaX1LgumWWy3nCUTDuwHxX10M3G0wE2g==",
 			"dev": true,
-			"license": "MIT",
-			"peer": true,
 			"dependencies": {
-				"ajv": "8.11.0",
+				"ajv": "8.12.0",
 				"ajv-formats": "2.1.1",
 				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
+				"picomatch": "2.3.1",
+				"rxjs": "7.8.1",
 				"source-map": "0.7.4"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			},
@@ -682,172 +356,50 @@
 				}
 			}
 		},
-		"node_modules/@angular-devkit/core/node_modules/ajv": {
-			"version": "8.11.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-8.11.0.tgz",
-			"integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"fast-deep-equal": "^3.1.1",
-				"json-schema-traverse": "^1.0.0",
-				"require-from-string": "^2.0.2",
-				"uri-js": "^4.2.2"
-			},
-			"funding": {
-				"type": "github",
-				"url": "https://github.com/sponsors/epoberezkin"
-			}
-		},
-		"node_modules/@angular-devkit/core/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"peer": true,
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@angular-devkit/core/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
-			"license": "0BSD",
-			"peer": true
-		},
 		"node_modules/@angular-devkit/schematics": {
-			"version": "14.2.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-14.2.9.tgz",
-			"integrity": "sha512-E7muTIbDqysjQld5r9AGXiW8vKHadkHaGe+0QONpmr8TMAtTMqBFxBXRG9vajiUzt/GcFL9dbGGEwM/1dc7VPQ==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular-devkit/schematics/-/schematics-16.2.8.tgz",
+			"integrity": "sha512-MBiKZOlR9/YMdflALr7/7w/BGAfo/BGTrlkqsIB6rDWV1dYiCgxI+033HsiNssLS6RQyCFx/e7JA2aBBzu9zEg==",
 			"dev": true,
-			"license": "MIT",
-			"peer": true,
 			"dependencies": {
-				"@angular-devkit/core": "14.2.9",
-				"jsonc-parser": "3.1.0",
-				"magic-string": "0.26.2",
+				"@angular-devkit/core": "16.2.8",
+				"jsonc-parser": "3.2.0",
+				"magic-string": "0.30.1",
 				"ora": "5.4.1",
-				"rxjs": "6.6.7"
+				"rxjs": "7.8.1"
 			},
 			"engines": {
-				"node": "^14.15.0 || >=16.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			}
 		},
-		"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
-			"version": "14.2.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-14.2.9.tgz",
-			"integrity": "sha512-+e2OmzH/0gjNNH96xJDgshbuIM/NPSwE0NQlgU/KRb8TZt+7ooTmZJ1vk25HKV2YS99BEYzUSqvVAaJtxX/6Qw==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"ajv": "8.11.0",
-				"ajv-formats": "2.1.1",
-				"jsonc-parser": "3.1.0",
-				"rxjs": "6.6.7",
-				"source-map": "0.7.4"
-			},
-			"engines": {
-				"node": "^14.15.0 || >=16.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			},
-			"peerDependencies": {
-				"chokidar": "^3.5.2"
-			},
-			"peerDependenciesMeta": {
-				"chokidar": {
-					"optional": true
-				}
-			}
-		},
-		"node_modules/@angular-devkit/schematics/node_modules/ajv": {
-			"version": "8.11.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-8.11.0.tgz",
-			"integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"fast-deep-equal": "^3.1.1",
-				"json-schema-traverse": "^1.0.0",
-				"require-from-string": "^2.0.2",
-				"uri-js": "^4.2.2"
-			},
-			"funding": {
-				"type": "github",
-				"url": "https://github.com/sponsors/epoberezkin"
-			}
-		},
-		"node_modules/@angular-devkit/schematics/node_modules/jsonc-parser": {
-			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsonc-parser/-/jsonc-parser-3.1.0.tgz",
-			"integrity": "sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true
-		},
 		"node_modules/@angular-devkit/schematics/node_modules/magic-string": {
-			"version": "0.26.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.26.2.tgz",
-			"integrity": "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==",
+			"version": "0.30.1",
+			"resolved": "http://localhost:4873/magic-string/-/magic-string-0.30.1.tgz",
+			"integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==",
 			"dev": true,
-			"license": "MIT",
-			"peer": true,
 			"dependencies": {
-				"sourcemap-codec": "^1.4.8"
+				"@jridgewell/sourcemap-codec": "^1.4.15"
 			},
 			"engines": {
 				"node": ">=12"
 			}
 		},
-		"node_modules/@angular-devkit/schematics/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"peer": true,
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@angular-devkit/schematics/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
-			"license": "0BSD",
-			"peer": true
-		},
 		"node_modules/@angular-eslint/bundled-angular-compiler": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.0.0.tgz",
-			"integrity": "sha512-IFJFVCc3t+ujD8J6//RzYrtp7N9wUQhZnRUkd7pI7IpUT1XrQx5uNbDca9OLXM5F+HCHOQPIoaCyg3O/XJcc8Q==",
-			"dev": true,
-			"license": "MIT"
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz",
+			"integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==",
+			"dev": true
 		},
 		"node_modules/@angular-eslint/eslint-plugin": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/eslint-plugin/-/eslint-plugin-15.0.0.tgz",
-			"integrity": "sha512-Yj/GeLQ+bBUgrIQDqa//nHrS9UvxZ1KQhavcK0xruuy29AYf+yolVdEGKvFNlpMoGRXkv2eMmWUkODS495DTYQ==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz",
+			"integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-eslint/utils": "15.0.0",
-				"@typescript-eslint/utils": "5.43.0"
+				"@angular-eslint/utils": "16.0.3",
+				"@typescript-eslint/utils": "5.59.7"
 			},
 			"peerDependencies": {
 				"eslint": "^7.20.0 || ^8.0.0",
@@ -855,16 +407,15 @@
 			}
 		},
 		"node_modules/@angular-eslint/eslint-plugin-template": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.0.0.tgz",
-			"integrity": "sha512-9i8BFnqhN1/xR1vZaeRUf48DWxgRnJDOXfJtNONkTUUsImXzShJUgFK++/YC6BeNRsZf0wPN/qpstuScwELJKA==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz",
+			"integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-eslint/bundled-angular-compiler": "15.0.0",
-				"@angular-eslint/utils": "15.0.0",
-				"@typescript-eslint/type-utils": "5.43.0",
-				"@typescript-eslint/utils": "5.43.0",
+				"@angular-eslint/bundled-angular-compiler": "16.0.3",
+				"@angular-eslint/utils": "16.0.3",
+				"@typescript-eslint/type-utils": "5.59.7",
+				"@typescript-eslint/utils": "5.59.7",
 				"aria-query": "5.1.3",
 				"axobject-query": "3.1.1"
 			},
@@ -874,13 +425,12 @@
 			}
 		},
 		"node_modules/@angular-eslint/template-parser": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/template-parser/-/template-parser-15.0.0.tgz",
-			"integrity": "sha512-tidZOhQ9ygXPyUwxXzXbEVJUiHRNF0oFu1Pf+hSlOwgjvRqCqVwXfDxEe6NjFEwRXsp0CtDgyseu7E9+ml+m6A==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz",
+			"integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-eslint/bundled-angular-compiler": "15.0.0",
+				"@angular-eslint/bundled-angular-compiler": "16.0.3",
 				"eslint-scope": "^7.0.0"
 			},
 			"peerDependencies": {
@@ -889,14 +439,13 @@
 			}
 		},
 		"node_modules/@angular-eslint/utils": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/utils/-/utils-15.0.0.tgz",
-			"integrity": "sha512-+eI2vNixlxmwAH+vcF81DNtzZ1CJAe6e1yktT5Xmn/FUVWKe4hHQN95Km0H8G0epF8MovCJwmPdhFYwi/X8u3w==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/utils/-/utils-16.0.3.tgz",
+			"integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-eslint/bundled-angular-compiler": "15.0.0",
-				"@typescript-eslint/utils": "5.43.0"
+				"@angular-eslint/bundled-angular-compiler": "16.0.3",
+				"@typescript-eslint/utils": "5.59.7"
 			},
 			"peerDependencies": {
 				"eslint": "^7.20.0 || ^8.0.0",
@@ -904,25 +453,23 @@
 			}
 		},
 		"node_modules/@angular/animations": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/animations/-/animations-15.1.4.tgz",
-			"integrity": "sha512-aNLBjEsxykkG+cVA86IMLQaqVym7TSe3yAVM+KrOX4l76V7rDnByR/Fh29mj5tOfx/V08gm4HgIQ7VMqZAhCWw==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/animations/-/animations-16.2.11.tgz",
+			"integrity": "sha512-xdLYXsGi7OuJawhiVIppl2VkPHhPdxUP/nR6+ETR3TdAscVruCWJs4z9XKval4fbik/brekbFNFuYtlx6csDhQ==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "15.1.4"
+				"@angular/core": "16.2.11"
 			}
 		},
 		"node_modules/@angular/cdk": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/cdk/-/cdk-15.1.4.tgz",
-			"integrity": "sha512-uCYrquUYakm+ym3l/0GG2HtyEtzJlr3eO3T8Oezvl4HcNB0jlcN80ut5SwQC0KcgiWDuP1BVv8PGinD2vearJg==",
-			"license": "MIT",
+			"version": "16.2.10",
+			"resolved": "http://localhost:4873/@angular/cdk/-/cdk-16.2.10.tgz",
+			"integrity": "sha512-kOQrPxSMPi66aM9XfwZIjQXhH+q0PkhK4BNMHB9RkvaaQ34ovOrKaGsT7t0+sjlVhiwTiy2mB1Qgz6NlIB0ZZw==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
@@ -930,157 +477,72 @@
 				"parse5": "^7.1.2"
 			},
 			"peerDependencies": {
-				"@angular/common": "^15.0.0 || ^16.0.0",
-				"@angular/core": "^15.0.0 || ^16.0.0",
+				"@angular/common": "^16.0.0 || ^17.0.0",
+				"@angular/core": "^16.0.0 || ^17.0.0",
 				"rxjs": "^6.5.3 || ^7.4.0"
 			}
 		},
 		"node_modules/@angular/cli": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/cli/-/cli-15.1.6.tgz",
-			"integrity": "sha512-GmC9jZK2ipUWj0dlfTI5oEYia4y1fLfO3AtAKU5CylNYrGyB+DRytKY8Bx6Fs4kaNBY8V8YnyLi7E/78gziMdg==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular/cli/-/cli-16.2.8.tgz",
+			"integrity": "sha512-iPrDv+SemRb6ZhayxwLsEdykHpV2TYSgH5Smg8GqSaIR/KUiemuzBrIKEUEaIG4n2dVEOtcsuh2JRHQndF7wmw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@angular-devkit/architect": "0.1501.6",
-				"@angular-devkit/core": "15.1.6",
-				"@angular-devkit/schematics": "15.1.6",
-				"@schematics/angular": "15.1.6",
+				"@angular-devkit/architect": "0.1602.8",
+				"@angular-devkit/core": "16.2.8",
+				"@angular-devkit/schematics": "16.2.8",
+				"@schematics/angular": "16.2.8",
 				"@yarnpkg/lockfile": "1.1.0",
 				"ansi-colors": "4.1.3",
-				"ini": "3.0.1",
+				"ini": "4.1.1",
 				"inquirer": "8.2.4",
 				"jsonc-parser": "3.2.0",
 				"npm-package-arg": "10.1.0",
 				"npm-pick-manifest": "8.0.1",
-				"open": "8.4.0",
+				"open": "8.4.2",
 				"ora": "5.4.1",
-				"pacote": "15.0.8",
-				"resolve": "1.22.1",
-				"semver": "7.3.8",
+				"pacote": "15.2.0",
+				"resolve": "1.22.2",
+				"semver": "7.5.4",
 				"symbol-observable": "4.0.0",
-				"yargs": "17.6.2"
+				"yargs": "17.7.2"
 			},
 			"bin": {
 				"ng": "bin/ng.js"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			}
-		},
-		"node_modules/@angular/cli/node_modules/@angular-devkit/architect": {
-			"version": "0.1501.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/architect/-/architect-0.1501.6.tgz",
-			"integrity": "sha512-u07zZFlfrg0Qn4mu5M9Nz0pH2Yd2028XF/73980PsZMxwkSm4diF08v4bHk3UyR7yPT7phwvt4znj6ryZhx1gw==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@angular-devkit/core": "15.1.6",
-				"rxjs": "6.6.7"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			}
 		},
-		"node_modules/@angular/cli/node_modules/@angular-devkit/core": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.6.tgz",
-			"integrity": "sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"ajv": "8.12.0",
-				"ajv-formats": "2.1.1",
-				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
-				"source-map": "0.7.4"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			},
-			"peerDependencies": {
-				"chokidar": "^3.5.2"
-			},
-			"peerDependenciesMeta": {
-				"chokidar": {
-					"optional": true
-				}
-			}
-		},
-		"node_modules/@angular/cli/node_modules/@angular-devkit/schematics": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-15.1.6.tgz",
-			"integrity": "sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@angular-devkit/core": "15.1.6",
-				"jsonc-parser": "3.2.0",
-				"magic-string": "0.27.0",
-				"ora": "5.4.1",
-				"rxjs": "6.6.7"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			}
-		},
-		"node_modules/@angular/cli/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@angular/cli/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
-			"license": "0BSD"
-		},
 		"node_modules/@angular/common": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/common/-/common-15.1.4.tgz",
-			"integrity": "sha512-E2klptW9CbXDAYZEL988RQ0XWQPf8obr6p+/+j2zy8kn14VJgsjn/27S9M8sX76nfXOaA6vQSbofZycTU7IiFQ==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/common/-/common-16.2.11.tgz",
+			"integrity": "sha512-h80WUR2OYlqxQy+4XgNtWT2vB+vZ6oCrFX/q8cU5jAvbvGQfJuH0zfcbSlUflStmAhk5/OT25F0mt96cqapEAw==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "15.1.4",
+				"@angular/core": "16.2.11",
 				"rxjs": "^6.5.3 || ^7.4.0"
 			}
 		},
 		"node_modules/@angular/compiler": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/compiler/-/compiler-15.1.4.tgz",
-			"integrity": "sha512-b2jH336pl647IKgMYzsmJ/2Qpw6JqlP/OeCsOnAJ55LIQa37w+bnuTpdPh4pk8qV9h735rV9NXNO5t3pQFOo3Q==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/compiler/-/compiler-16.2.11.tgz",
+			"integrity": "sha512-9q/E3uurvoQbdTTWDyWCLpzmfJ4+et7SUca1/EljD/X7Xg2FNU5GpTMutBtWFL7wDyWk1oswivuq9/C4GVW7fA==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "15.1.4"
+				"@angular/core": "16.2.11"
 			},
 			"peerDependenciesMeta": {
 				"@angular/core": {
@@ -1089,18 +551,15 @@
 			}
 		},
 		"node_modules/@angular/compiler-cli": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/compiler-cli/-/compiler-cli-15.1.4.tgz",
-			"integrity": "sha512-FupMkr69YLZcjvPa7Y79ua6VvbzNroPUTDexEpqYkmnyKK8fNSHwTEOCz4IQbUeOxaZkRP5pHAI87foZigNPCA==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/compiler-cli/-/compiler-cli-16.2.11.tgz",
+			"integrity": "sha512-ZtZCXfkVBH78HUm2Byf+WX3Y6WzQK9EXYXNU/ni1rvSZ1vLNwieLDfWb/xwiO7QojrHZTym1RJ10jTMinTguqw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@babel/core": "7.19.3",
+				"@babel/core": "7.23.2",
 				"@jridgewell/sourcemap-codec": "^1.4.14",
 				"chokidar": "^3.0.0",
 				"convert-source-map": "^1.5.1",
-				"dependency-graph": "^0.11.0",
-				"magic-string": "^0.27.0",
 				"reflect-metadata": "^0.1.2",
 				"semver": "^7.0.0",
 				"tslib": "^2.3.0",
@@ -1109,195 +568,148 @@
 			"bin": {
 				"ng-xi18n": "bundles/src/bin/ng_xi18n.js",
 				"ngc": "bundles/src/bin/ngc.js",
-				"ngcc": "bundles/ngcc/main-ngcc.js"
+				"ngcc": "bundles/ngcc/index.js"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/compiler": "15.1.4",
-				"typescript": ">=4.8.2 <5.0"
-			}
-		},
-		"node_modules/@angular/compiler-cli/node_modules/@babel/core": {
-			"version": "7.19.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/core/-/core-7.19.3.tgz",
-			"integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@ampproject/remapping": "^2.1.0",
-				"@babel/code-frame": "^7.18.6",
-				"@babel/generator": "^7.19.3",
-				"@babel/helper-compilation-targets": "^7.19.3",
-				"@babel/helper-module-transforms": "^7.19.0",
-				"@babel/helpers": "^7.19.0",
-				"@babel/parser": "^7.19.3",
-				"@babel/template": "^7.18.10",
-				"@babel/traverse": "^7.19.3",
-				"@babel/types": "^7.19.3",
-				"convert-source-map": "^1.7.0",
-				"debug": "^4.1.0",
-				"gensync": "^1.0.0-beta.2",
-				"json5": "^2.2.1",
-				"semver": "^6.3.0"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"funding": {
-				"type": "opencollective",
-				"url": "https://opencollective.com/babel"
-			}
-		},
-		"node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"dev": true,
-			"license": "ISC",
-			"bin": {
-				"semver": "bin/semver.js"
+				"@angular/compiler": "16.2.11",
+				"typescript": ">=4.9.3 <5.2"
 			}
 		},
 		"node_modules/@angular/core": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/core/-/core-15.1.4.tgz",
-			"integrity": "sha512-eWXtL4pe/pG4klehsm1URpgF4gnUjFpCXzHJ0Shp5HwLszoflZMbzdoRTSyOG5iMxDhsk0wwnHTfG+j4NTJN3A==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/core/-/core-16.2.11.tgz",
+			"integrity": "sha512-Jb+7/p1vczQRQ3iC1QxUS5cE4X1hPVAvbrFnyMpSx6Pq5o274v/lK6PvhUZrfKrp9FxFp9pN+WHjUqNFqOuJZg==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
 				"rxjs": "^6.5.3 || ^7.4.0",
-				"zone.js": "~0.11.4 || ~0.12.0"
+				"zone.js": "~0.13.0"
 			}
 		},
 		"node_modules/@angular/forms": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/forms/-/forms-15.1.4.tgz",
-			"integrity": "sha512-gUBenRZS4gTevA3AJdpCVIuMeWU++OTqj6Rd8bv+x42W/RoOSVVcb3bInVECJFedAhx6P2/TWFGV1sVGwW+3sg==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/forms/-/forms-16.2.11.tgz",
+			"integrity": "sha512-2powweUorehB1opfev6/sUeb3Bdey+Txq4gjI1Qdeo9c9OgtaKu6wK0KXgoism8HXXRFcGHMfS0dUVoDPVrtiQ==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/common": "15.1.4",
-				"@angular/core": "15.1.4",
-				"@angular/platform-browser": "15.1.4",
+				"@angular/common": "16.2.11",
+				"@angular/core": "16.2.11",
+				"@angular/platform-browser": "16.2.11",
 				"rxjs": "^6.5.3 || ^7.4.0"
 			}
 		},
 		"node_modules/@angular/language-service": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/language-service/-/language-service-15.1.4.tgz",
-			"integrity": "sha512-ulI2Z4f77iA/WYQ8HCEcognoWv8grltVf2JEzGxVtJapEnkGyWsuhBT1XuvytOsfurHI1gKYe6WT0Qi1xE/KVA==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/language-service/-/language-service-16.2.11.tgz",
+			"integrity": "sha512-rzZcqeBvgByu27gZk/f0K1VuwIYbScOG3sJYyWXBdSMmjqnl3ARwEEI/zyQT7I6uU6I9SwmoJhy44pQlrDDD7g==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			}
 		},
 		"node_modules/@angular/material": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/material/-/material-15.1.4.tgz",
-			"integrity": "sha512-mepKRVzO3v4BxGkzkwO1PZjWTdLDbqkydmmiEYkzPOUk9I3tElzjYlybB0xuY6A5CIdXU9Mdc+AaUZWng2yN/g==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/auto-init": "15.0.0-canary.684e33d25.0",
-				"@material/banner": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/card": "15.0.0-canary.684e33d25.0",
-				"@material/checkbox": "15.0.0-canary.684e33d25.0",
-				"@material/chips": "15.0.0-canary.684e33d25.0",
-				"@material/circular-progress": "15.0.0-canary.684e33d25.0",
-				"@material/data-table": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dialog": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/drawer": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/fab": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/form-field": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/image-list": "15.0.0-canary.684e33d25.0",
-				"@material/layout-grid": "15.0.0-canary.684e33d25.0",
-				"@material/line-ripple": "15.0.0-canary.684e33d25.0",
-				"@material/linear-progress": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu": "15.0.0-canary.684e33d25.0",
-				"@material/menu-surface": "15.0.0-canary.684e33d25.0",
-				"@material/notched-outline": "15.0.0-canary.684e33d25.0",
-				"@material/radio": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/segmented-button": "15.0.0-canary.684e33d25.0",
-				"@material/select": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/slider": "15.0.0-canary.684e33d25.0",
-				"@material/snackbar": "15.0.0-canary.684e33d25.0",
-				"@material/switch": "15.0.0-canary.684e33d25.0",
-				"@material/tab": "15.0.0-canary.684e33d25.0",
-				"@material/tab-bar": "15.0.0-canary.684e33d25.0",
-				"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/tab-scroller": "15.0.0-canary.684e33d25.0",
-				"@material/textfield": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tooltip": "15.0.0-canary.684e33d25.0",
-				"@material/top-app-bar": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "16.2.10",
+			"resolved": "http://localhost:4873/@angular/material/-/material-16.2.10.tgz",
+			"integrity": "sha512-0XhMwbcxpEESL11mVO8ycwxa+Jlh+8egOSRleD30zFUesqBA5EhtRpH8cqtna03f/xxtRq00Q315igMIMNiOSg==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/auto-init": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/banner": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/card": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/chips": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/circular-progress": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/data-table": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dialog": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/drawer": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/fab": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/form-field": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/image-list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/layout-grid": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/linear-progress": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/radio": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/segmented-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/select": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/slider": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/snackbar": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/switch": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-bar": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-scroller": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/textfield": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tooltip": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/top-app-bar": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.3.0"
 			},
 			"peerDependencies": {
-				"@angular/animations": "^15.0.0 || ^16.0.0",
-				"@angular/cdk": "15.1.4",
-				"@angular/common": "^15.0.0 || ^16.0.0",
-				"@angular/core": "^15.0.0 || ^16.0.0",
-				"@angular/forms": "^15.0.0 || ^16.0.0",
-				"@angular/platform-browser": "^15.0.0 || ^16.0.0",
+				"@angular/animations": "^16.0.0 || ^17.0.0",
+				"@angular/cdk": "16.2.10",
+				"@angular/common": "^16.0.0 || ^17.0.0",
+				"@angular/core": "^16.0.0 || ^17.0.0",
+				"@angular/forms": "^16.0.0 || ^17.0.0",
+				"@angular/platform-browser": "^16.0.0 || ^17.0.0",
 				"rxjs": "^6.5.3 || ^7.4.0"
 			}
 		},
 		"node_modules/@angular/material-date-fns-adapter": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/material-date-fns-adapter/-/material-date-fns-adapter-15.1.4.tgz",
-			"integrity": "sha512-60ue6ToOCHKHyTi98B2bKt39YO9UswdS8RgB5FlMT3S/6+9/7HzFqsfMcd9gECkfGxsw3YjvLz0BPzIjQ7xObQ==",
-			"license": "MIT",
+			"version": "16.2.10",
+			"resolved": "http://localhost:4873/@angular/material-date-fns-adapter/-/material-date-fns-adapter-16.2.10.tgz",
+			"integrity": "sha512-1N6Dd/EePo7ag/+X651CBEwSfGnE/tbUESp063bOoIhmSH30q52DrJtN/q+ahmndxQ6O9MSsisNQlV1FNDaP7g==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "^15.0.0 || ^16.0.0",
-				"@angular/material": "15.1.4",
+				"@angular/core": "^16.0.0 || ^17.0.0",
+				"@angular/material": "16.2.10",
 				"date-fns": "^2.23.0"
 			}
 		},
 		"node_modules/@angular/platform-browser": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/platform-browser/-/platform-browser-15.1.4.tgz",
-			"integrity": "sha512-PrRNVbnPY38eh0zVDoNlx2EDHe4AzQ4bhJv3Wsrm+IFgi0e4yet8FQuL6sj1JBjLztKuZsndG2M/fyRWIpYkMQ==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/platform-browser/-/platform-browser-16.2.11.tgz",
+			"integrity": "sha512-gUptbI3lbaRg+L8rcTlxKtFunYmR/M/mm9/l9uRd+5qk2mnFI0+s/tzRoaq7K0XaRGKZiWLNTz6FTkviO1zo2g==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/animations": "15.1.4",
-				"@angular/common": "15.1.4",
-				"@angular/core": "15.1.4"
+				"@angular/animations": "16.2.11",
+				"@angular/common": "16.2.11",
+				"@angular/core": "16.2.11"
 			},
 			"peerDependenciesMeta": {
 				"@angular/animations": {
@@ -1306,90 +718,85 @@
 			}
 		},
 		"node_modules/@angular/platform-browser-dynamic": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/platform-browser-dynamic/-/platform-browser-dynamic-15.1.4.tgz",
-			"integrity": "sha512-C1M5xqh57OQpQwFjGthIvqvBozhHBZtTbMFGn8zcbmkedm+oH++PsibRSHAKgsERvIIqQafxEr+9NM4En+CpFA==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.2.11.tgz",
+			"integrity": "sha512-e+A7z6MUJaqC4Fdq7XQfIhAox3ZPM1lczM6G08fUKPbFDEe+c9i7C8YRLL+69BXDuG790btugIeOQcn5lnJcFg==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/common": "15.1.4",
-				"@angular/compiler": "15.1.4",
-				"@angular/core": "15.1.4",
-				"@angular/platform-browser": "15.1.4"
+				"@angular/common": "16.2.11",
+				"@angular/compiler": "16.2.11",
+				"@angular/core": "16.2.11",
+				"@angular/platform-browser": "16.2.11"
 			}
 		},
 		"node_modules/@angular/router": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/router/-/router-15.1.4.tgz",
-			"integrity": "sha512-umHlpz1JQjgMT9VffoKX3NZG/i+Ayb1PtSLmJjo4KRSANUudILRreW9NWLYihFBotO/sX78/m2p1IHZeuyh1jw==",
-			"license": "MIT",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/router/-/router-16.2.11.tgz",
+			"integrity": "sha512-QTssqJue+xQ8M1gzmfJcIHPIpPOijVwGnXQjt7cnFggNe/CedOckLEzk2j7/6aC1b5aQKuZePPw6XMvk8ciilQ==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
+				"node": "^16.14.0 || >=18.10.0"
 			},
 			"peerDependencies": {
-				"@angular/common": "15.1.4",
-				"@angular/core": "15.1.4",
-				"@angular/platform-browser": "15.1.4",
+				"@angular/common": "16.2.11",
+				"@angular/core": "16.2.11",
+				"@angular/platform-browser": "16.2.11",
 				"rxjs": "^6.5.3 || ^7.4.0"
 			}
 		},
 		"node_modules/@assemblyscript/loader": {
 			"version": "0.10.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@assemblyscript/loader/-/loader-0.10.1.tgz",
+			"resolved": "http://localhost:4873/@assemblyscript/loader/-/loader-0.10.1.tgz",
 			"integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==",
-			"dev": true,
-			"license": "Apache-2.0"
+			"dev": true
 		},
 		"node_modules/@babel/code-frame": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/code-frame/-/code-frame-7.21.4.tgz",
-			"integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
-			"license": "MIT",
+			"version": "7.22.13",
+			"resolved": "http://localhost:4873/@babel/code-frame/-/code-frame-7.22.13.tgz",
+			"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
 			"dependencies": {
-				"@babel/highlight": "^7.18.6"
+				"@babel/highlight": "^7.22.13",
+				"chalk": "^2.4.2"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/compat-data": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/compat-data/-/compat-data-7.21.4.tgz",
-			"integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==",
-			"license": "MIT",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/compat-data/-/compat-data-7.23.2.tgz",
+			"integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==",
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/core": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/core/-/core-7.21.4.tgz",
-			"integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==",
-			"license": "MIT",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/core/-/core-7.23.2.tgz",
+			"integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==",
 			"dependencies": {
 				"@ampproject/remapping": "^2.2.0",
-				"@babel/code-frame": "^7.21.4",
-				"@babel/generator": "^7.21.4",
-				"@babel/helper-compilation-targets": "^7.21.4",
-				"@babel/helper-module-transforms": "^7.21.2",
-				"@babel/helpers": "^7.21.0",
-				"@babel/parser": "^7.21.4",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.21.4",
-				"@babel/types": "^7.21.4",
-				"convert-source-map": "^1.7.0",
+				"@babel/code-frame": "^7.22.13",
+				"@babel/generator": "^7.23.0",
+				"@babel/helper-compilation-targets": "^7.22.15",
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helpers": "^7.23.2",
+				"@babel/parser": "^7.23.0",
+				"@babel/template": "^7.22.15",
+				"@babel/traverse": "^7.23.2",
+				"@babel/types": "^7.23.0",
+				"convert-source-map": "^2.0.0",
 				"debug": "^4.1.0",
 				"gensync": "^1.0.0-beta.2",
-				"json5": "^2.2.2",
-				"semver": "^6.3.0"
+				"json5": "^2.2.3",
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -1400,12 +807,11 @@
 			}
 		},
 		"node_modules/@babel/core/node_modules/@babel/generator": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/generator/-/generator-7.21.4.tgz",
-			"integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/generator/-/generator-7.23.0.tgz",
+			"integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
 			"dependencies": {
-				"@babel/types": "^7.21.4",
+				"@babel/types": "^7.23.0",
 				"@jridgewell/gen-mapping": "^0.3.2",
 				"@jridgewell/trace-mapping": "^0.3.17",
 				"jsesc": "^2.5.1"
@@ -1414,124 +820,105 @@
 				"node": ">=6.9.0"
 			}
 		},
-		"node_modules/@babel/core/node_modules/@jridgewell/gen-mapping": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-			"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-			"license": "MIT",
+		"node_modules/@babel/core/node_modules/@babel/template": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+			"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
 			"dependencies": {
-				"@jridgewell/set-array": "^1.0.1",
-				"@jridgewell/sourcemap-codec": "^1.4.10",
-				"@jridgewell/trace-mapping": "^0.3.9"
+				"@babel/code-frame": "^7.22.13",
+				"@babel/parser": "^7.22.15",
+				"@babel/types": "^7.22.15"
 			},
 			"engines": {
-				"node": ">=6.0.0"
+				"node": ">=6.9.0"
 			}
 		},
+		"node_modules/@babel/core/node_modules/convert-source-map": {
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/convert-source-map/-/convert-source-map-2.0.0.tgz",
+			"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+		},
 		"node_modules/@babel/core/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 			"bin": {
 				"semver": "bin/semver.js"
 			}
 		},
 		"node_modules/@babel/generator": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/generator/-/generator-7.20.7.tgz",
-			"integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==",
-			"license": "MIT",
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/generator/-/generator-7.22.9.tgz",
+			"integrity": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==",
 			"dependencies": {
-				"@babel/types": "^7.20.7",
+				"@babel/types": "^7.22.5",
 				"@jridgewell/gen-mapping": "^0.3.2",
+				"@jridgewell/trace-mapping": "^0.3.17",
 				"jsesc": "^2.5.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
-		"node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-			"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-			"license": "MIT",
-			"dependencies": {
-				"@jridgewell/set-array": "^1.0.1",
-				"@jridgewell/sourcemap-codec": "^1.4.10",
-				"@jridgewell/trace-mapping": "^0.3.9"
-			},
-			"engines": {
-				"node": ">=6.0.0"
-			}
-		},
 		"node_modules/@babel/helper-annotate-as-pure": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
-			"integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz",
+			"integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==",
 			"dependencies": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz",
-			"integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz",
+			"integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==",
 			"dependencies": {
-				"@babel/helper-explode-assignable-expression": "^7.18.6",
-				"@babel/types": "^7.18.9"
+				"@babel/types": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-compilation-targets": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz",
-			"integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz",
+			"integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==",
 			"dependencies": {
-				"@babel/compat-data": "^7.21.4",
-				"@babel/helper-validator-option": "^7.21.0",
-				"browserslist": "^4.21.3",
+				"@babel/compat-data": "^7.22.9",
+				"@babel/helper-validator-option": "^7.22.15",
+				"browserslist": "^4.21.9",
 				"lru-cache": "^5.1.1",
-				"semver": "^6.3.0"
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0"
 			}
 		},
 		"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 			"bin": {
 				"semver": "bin/semver.js"
 			}
 		},
 		"node_modules/@babel/helper-create-class-features-plugin": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz",
-			"integrity": "sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz",
+			"integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==",
 			"dependencies": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-function-name": "^7.21.0",
-				"@babel/helper-member-expression-to-functions": "^7.21.0",
-				"@babel/helper-optimise-call-expression": "^7.18.6",
-				"@babel/helper-replace-supers": "^7.20.7",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
-				"@babel/helper-split-export-declaration": "^7.18.6"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-environment-visitor": "^7.22.5",
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/helper-member-expression-to-functions": "^7.22.15",
+				"@babel/helper-optimise-call-expression": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.9",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -1540,14 +927,22 @@
 				"@babel/core": "^7.0.0"
 			}
 		},
+		"node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+			"bin": {
+				"semver": "bin/semver.js"
+			}
+		},
 		"node_modules/@babel/helper-create-regexp-features-plugin": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz",
-			"integrity": "sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz",
+			"integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==",
 			"dependencies": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"regexpu-core": "^5.3.1"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"regexpu-core": "^5.3.1",
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -1556,152 +951,140 @@
 				"@babel/core": "^7.0.0"
 			}
 		},
+		"node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": {
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+			"bin": {
+				"semver": "bin/semver.js"
+			}
+		},
 		"node_modules/@babel/helper-define-polyfill-provider": {
-			"version": "0.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
-			"integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
-			"license": "MIT",
+			"version": "0.4.3",
+			"resolved": "http://localhost:4873/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz",
+			"integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==",
 			"dependencies": {
-				"@babel/helper-compilation-targets": "^7.17.7",
-				"@babel/helper-plugin-utils": "^7.16.7",
+				"@babel/helper-compilation-targets": "^7.22.6",
+				"@babel/helper-plugin-utils": "^7.22.5",
 				"debug": "^4.1.1",
 				"lodash.debounce": "^4.0.8",
-				"resolve": "^1.14.2",
-				"semver": "^6.1.2"
+				"resolve": "^1.14.2"
 			},
 			"peerDependencies": {
-				"@babel/core": "^7.4.0-0"
-			}
-		},
-		"node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
-			"bin": {
-				"semver": "bin/semver.js"
+				"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
 			}
 		},
 		"node_modules/@babel/helper-environment-visitor": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
-			"integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==",
-			"license": "MIT",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+			"integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
-		"node_modules/@babel/helper-explode-assignable-expression": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz",
-			"integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==",
-			"license": "MIT",
+		"node_modules/@babel/helper-function-name": {
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+			"integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
 			"dependencies": {
-				"@babel/types": "^7.18.6"
+				"@babel/template": "^7.22.15",
+				"@babel/types": "^7.23.0"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
-		"node_modules/@babel/helper-function-name": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
-			"integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
-			"license": "MIT",
+		"node_modules/@babel/helper-function-name/node_modules/@babel/template": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+			"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
 			"dependencies": {
-				"@babel/template": "^7.20.7",
-				"@babel/types": "^7.21.0"
+				"@babel/code-frame": "^7.22.13",
+				"@babel/parser": "^7.22.15",
+				"@babel/types": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-hoist-variables": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
-			"integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
+			"integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
 			"dependencies": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-member-expression-to-functions": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz",
-			"integrity": "sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz",
+			"integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==",
 			"dependencies": {
-				"@babel/types": "^7.21.0"
+				"@babel/types": "^7.23.0"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-module-imports": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
-			"integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
+			"integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
 			"dependencies": {
-				"@babel/types": "^7.21.4"
+				"@babel/types": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-module-transforms": {
-			"version": "7.21.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz",
-			"integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz",
+			"integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==",
 			"dependencies": {
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-module-imports": "^7.18.6",
-				"@babel/helper-simple-access": "^7.20.2",
-				"@babel/helper-split-export-declaration": "^7.18.6",
-				"@babel/helper-validator-identifier": "^7.19.1",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.21.2",
-				"@babel/types": "^7.21.2"
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-module-imports": "^7.22.15",
+				"@babel/helper-simple-access": "^7.22.5",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"@babel/helper-validator-identifier": "^7.22.20"
 			},
 			"engines": {
 				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0"
 			}
 		},
 		"node_modules/@babel/helper-optimise-call-expression": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
-			"integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz",
+			"integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==",
 			"dependencies": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-plugin-utils": {
-			"version": "7.20.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz",
-			"integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz",
+			"integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==",
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-remap-async-to-generator": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
-			"integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
-			"license": "MIT",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz",
+			"integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==",
 			"dependencies": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-wrap-function": "^7.18.9",
-				"@babel/types": "^7.18.9"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-wrap-function": "^7.22.20"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -1711,122 +1094,137 @@
 			}
 		},
 		"node_modules/@babel/helper-replace-supers": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz",
-			"integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==",
-			"license": "MIT",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz",
+			"integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==",
 			"dependencies": {
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-member-expression-to-functions": "^7.20.7",
-				"@babel/helper-optimise-call-expression": "^7.18.6",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.20.7",
-				"@babel/types": "^7.20.7"
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-member-expression-to-functions": "^7.22.15",
+				"@babel/helper-optimise-call-expression": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0"
 			}
 		},
 		"node_modules/@babel/helper-simple-access": {
-			"version": "7.20.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz",
-			"integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
+			"integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
 			"dependencies": {
-				"@babel/types": "^7.20.2"
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
-			"version": "7.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
-			"integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz",
+			"integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==",
 			"dependencies": {
-				"@babel/types": "^7.20.0"
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-split-export-declaration": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
-			"integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
-			"license": "MIT",
+			"version": "7.22.6",
+			"resolved": "http://localhost:4873/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
+			"integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
 			"dependencies": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-string-parser": {
-			"version": "7.19.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
-			"integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
+			"integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-validator-identifier": {
-			"version": "7.19.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
-			"integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
-			"license": "MIT",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+			"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-validator-option": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
-			"integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz",
+			"integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==",
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helper-wrap-function": {
-			"version": "7.20.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
-			"integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
-			"license": "MIT",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz",
+			"integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==",
 			"dependencies": {
-				"@babel/helper-function-name": "^7.19.0",
-				"@babel/template": "^7.18.10",
-				"@babel/traverse": "^7.20.5",
-				"@babel/types": "^7.20.5"
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/template": "^7.22.15",
+				"@babel/types": "^7.22.19"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			}
+		},
+		"node_modules/@babel/helper-wrap-function/node_modules/@babel/template": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+			"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
+			"dependencies": {
+				"@babel/code-frame": "^7.22.13",
+				"@babel/parser": "^7.22.15",
+				"@babel/types": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/helpers": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helpers/-/helpers-7.21.0.tgz",
-			"integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==",
-			"license": "MIT",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/helpers/-/helpers-7.23.2.tgz",
+			"integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==",
 			"dependencies": {
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.21.0",
-				"@babel/types": "^7.21.0"
+				"@babel/template": "^7.22.15",
+				"@babel/traverse": "^7.23.2",
+				"@babel/types": "^7.23.0"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			}
+		},
+		"node_modules/@babel/helpers/node_modules/@babel/template": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+			"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
+			"dependencies": {
+				"@babel/code-frame": "^7.22.13",
+				"@babel/parser": "^7.22.15",
+				"@babel/types": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/highlight": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/highlight/-/highlight-7.18.6.tgz",
-			"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
-			"license": "MIT",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/highlight/-/highlight-7.22.20.tgz",
+			"integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
 			"dependencies": {
-				"@babel/helper-validator-identifier": "^7.18.6",
-				"chalk": "^2.0.0",
+				"@babel/helper-validator-identifier": "^7.22.20",
+				"chalk": "^2.4.2",
 				"js-tokens": "^4.0.0"
 			},
 			"engines": {
@@ -1834,10 +1232,9 @@
 			}
 		},
 		"node_modules/@babel/parser": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/parser/-/parser-7.21.4.tgz",
-			"integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/parser/-/parser-7.23.0.tgz",
+			"integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
 			"bin": {
 				"parser": "bin/babel-parser.js"
 			},
@@ -1846,12 +1243,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
-			"integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz",
+			"integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -1861,14 +1257,13 @@
 			}
 		},
 		"node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
-			"integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz",
+			"integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
-				"@babel/plugin-proposal-optional-chaining": "^7.20.7"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+				"@babel/plugin-transform-optional-chaining": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -1881,6 +1276,7 @@
 			"version": "7.20.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
 			"integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-environment-visitor": "^7.18.9",
@@ -1911,130 +1307,16 @@
 				"@babel/core": "^7.0.0-0"
 			}
 		},
-		"node_modules/@babel/plugin-proposal-class-static-block": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
-			"integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-class-static-block": "^7.14.5"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.12.0"
-			}
-		},
 		"node_modules/@babel/plugin-proposal-decorators": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz",
-			"integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-replace-supers": "^7.20.7",
-				"@babel/helper-split-export-declaration": "^7.18.6",
-				"@babel/plugin-syntax-decorators": "^7.21.0"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-dynamic-import": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
-			"integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-dynamic-import": "^7.8.3"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-export-namespace-from": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
-			"integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
-			"license": "MIT",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.2.tgz",
+			"integrity": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.9",
-				"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-json-strings": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
-			"integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-json-strings": "^7.8.3"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-logical-assignment-operators": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
-			"integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
-			"integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-numeric-separator": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
-			"integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-numeric-separator": "^7.10.4"
+				"@babel/helper-create-class-features-plugin": "^7.22.15",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.20",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"@babel/plugin-syntax-decorators": "^7.22.10"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2047,6 +1329,7 @@
 			"version": "7.20.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
 			"integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"@babel/compat-data": "^7.20.5",
@@ -2062,66 +1345,10 @@
 				"@babel/core": "^7.0.0-0"
 			}
 		},
-		"node_modules/@babel/plugin-proposal-optional-catch-binding": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
-			"integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-optional-chaining": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
-			"integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
-				"@babel/plugin-syntax-optional-chaining": "^7.8.3"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
-		"node_modules/@babel/plugin-proposal-private-methods": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
-			"integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-create-class-features-plugin": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
-			},
-			"engines": {
-				"node": ">=6.9.0"
-			},
-			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
-			}
-		},
 		"node_modules/@babel/plugin-proposal-private-property-in-object": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
-			"integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
-			},
+			"version": "7.21.0-placeholder-for-preset-env.2",
+			"resolved": "http://localhost:4873/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
+			"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
 			"engines": {
 				"node": ">=6.9.0"
 			},
@@ -2159,9 +1386,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-bigint": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
 			"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			},
@@ -2183,9 +1409,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-class-static-block": {
 			"version": "7.14.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
 			"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.14.5"
 			},
@@ -2197,12 +1422,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-syntax-decorators": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz",
-			"integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==",
-			"license": "MIT",
+			"version": "7.22.10",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.10.tgz",
+			"integrity": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2213,9 +1437,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-dynamic-import": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
 			"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			},
@@ -2225,9 +1448,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-export-namespace-from": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
 			"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.3"
 			},
@@ -2236,12 +1458,25 @@
 			}
 		},
 		"node_modules/@babel/plugin-syntax-import-assertions": {
-			"version": "7.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
-			"integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz",
+			"integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.19.0"
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-syntax-import-attributes": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz",
+			"integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2252,9 +1487,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-import-meta": {
 			"version": "7.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
 			"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.10.4"
 			},
@@ -2264,9 +1498,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-json-strings": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
 			"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			},
@@ -2275,12 +1508,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-syntax-jsx": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
-			"integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz",
+			"integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2291,9 +1523,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-logical-assignment-operators": {
 			"version": "7.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
 			"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.10.4"
 			},
@@ -2303,9 +1534,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
 			"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			},
@@ -2315,9 +1545,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-numeric-separator": {
 			"version": "7.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
 			"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.10.4"
 			},
@@ -2339,9 +1568,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-optional-catch-binding": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
 			"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			},
@@ -2351,9 +1579,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-optional-chaining": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
 			"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			},
@@ -2363,9 +1590,8 @@
 		},
 		"node_modules/@babel/plugin-syntax-private-property-in-object": {
 			"version": "7.14.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
 			"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.14.5"
 			},
@@ -2392,12 +1618,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-syntax-typescript": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz",
-			"integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz",
+			"integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2406,13 +1631,44 @@
 				"@babel/core": "^7.0.0-0"
 			}
 		},
+		"node_modules/@babel/plugin-syntax-unicode-sets-regex": {
+			"version": "7.18.6",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
+			"integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
+			"dependencies": {
+				"@babel/helper-create-regexp-features-plugin": "^7.18.6",
+				"@babel/helper-plugin-utils": "^7.18.6"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0"
+			}
+		},
 		"node_modules/@babel/plugin-transform-arrow-functions": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz",
-			"integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz",
+			"integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-async-generator-functions": {
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz",
+			"integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-remap-async-to-generator": "^7.22.20",
+				"@babel/plugin-syntax-async-generators": "^7.8.4"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2422,14 +1678,13 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-async-to-generator": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
-			"integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz",
+			"integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==",
 			"dependencies": {
-				"@babel/helper-module-imports": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-remap-async-to-generator": "^7.18.9"
+				"@babel/helper-module-imports": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-remap-async-to-generator": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2439,12 +1694,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-block-scoped-functions": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
-			"integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz",
+			"integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2454,12 +1708,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-block-scoping": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
-			"integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz",
+			"integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2468,20 +1721,50 @@
 				"@babel/core": "^7.0.0-0"
 			}
 		},
-		"node_modules/@babel/plugin-transform-classes": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
-			"integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
-			"license": "MIT",
+		"node_modules/@babel/plugin-transform-class-properties": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz",
+			"integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==",
 			"dependencies": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-compilation-targets": "^7.20.7",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-function-name": "^7.21.0",
-				"@babel/helper-optimise-call-expression": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-replace-supers": "^7.20.7",
-				"@babel/helper-split-export-declaration": "^7.18.6",
+				"@babel/helper-create-class-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-class-static-block": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz",
+			"integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==",
+			"dependencies": {
+				"@babel/helper-create-class-features-plugin": "^7.22.11",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-class-static-block": "^7.14.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.12.0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-classes": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz",
+			"integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==",
+			"dependencies": {
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-compilation-targets": "^7.22.15",
+				"@babel/helper-environment-visitor": "^7.22.5",
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/helper-optimise-call-expression": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.9",
+				"@babel/helper-split-export-declaration": "^7.22.6",
 				"globals": "^11.1.0"
 			},
 			"engines": {
@@ -2492,13 +1775,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-computed-properties": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz",
-			"integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz",
+			"integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/template": "^7.20.7"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/template": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2508,12 +1790,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-destructuring": {
-			"version": "7.21.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
-			"integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz",
+			"integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2523,13 +1804,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-dotall-regex": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
-			"integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz",
+			"integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==",
 			"dependencies": {
-				"@babel/helper-create-regexp-features-plugin": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2539,12 +1819,26 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-duplicate-keys": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
-			"integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz",
+			"integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-dynamic-import": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz",
+			"integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-dynamic-import": "^7.8.3"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2554,13 +1848,27 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-exponentiation-operator": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
-			"integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz",
+			"integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==",
 			"dependencies": {
-				"@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-export-namespace-from": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz",
+			"integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2570,12 +1878,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-for-of": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz",
-			"integrity": "sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz",
+			"integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2585,14 +1892,28 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-function-name": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
-			"integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz",
+			"integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==",
+			"dependencies": {
+				"@babel/helper-compilation-targets": "^7.22.5",
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-json-strings": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz",
+			"integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==",
 			"dependencies": {
-				"@babel/helper-compilation-targets": "^7.18.9",
-				"@babel/helper-function-name": "^7.18.9",
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-json-strings": "^7.8.3"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2602,12 +1923,26 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-literals": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
-			"integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz",
+			"integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-logical-assignment-operators": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz",
+			"integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2617,12 +1952,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-member-expression-literals": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
-			"integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz",
+			"integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2632,13 +1966,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-modules-amd": {
-			"version": "7.20.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
-			"integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz",
+			"integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==",
 			"dependencies": {
-				"@babel/helper-module-transforms": "^7.20.11",
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2648,14 +1981,13 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-modules-commonjs": {
-			"version": "7.21.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz",
-			"integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz",
+			"integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==",
 			"dependencies": {
-				"@babel/helper-module-transforms": "^7.21.2",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-simple-access": "^7.20.2"
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-simple-access": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2665,15 +1997,14 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-modules-systemjs": {
-			"version": "7.20.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
-			"integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz",
+			"integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==",
 			"dependencies": {
-				"@babel/helper-hoist-variables": "^7.18.6",
-				"@babel/helper-module-transforms": "^7.20.11",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-identifier": "^7.19.1"
+				"@babel/helper-hoist-variables": "^7.22.5",
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-validator-identifier": "^7.22.20"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2683,13 +2014,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-modules-umd": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
-			"integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz",
+			"integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==",
 			"dependencies": {
-				"@babel/helper-module-transforms": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-module-transforms": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2699,13 +2029,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
-			"version": "7.20.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
-			"integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz",
+			"integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==",
 			"dependencies": {
-				"@babel/helper-create-regexp-features-plugin": "^7.20.5",
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2715,12 +2044,59 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-new-target": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
-			"integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz",
+			"integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz",
+			"integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-numeric-separator": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz",
+			"integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-numeric-separator": "^7.10.4"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-object-rest-spread": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz",
+			"integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==",
+			"dependencies": {
+				"@babel/compat-data": "^7.22.9",
+				"@babel/helper-compilation-targets": "^7.22.15",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+				"@babel/plugin-transform-parameters": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2730,13 +2106,43 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-object-super": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
-			"integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz",
+			"integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/helper-replace-supers": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-optional-catch-binding": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz",
+			"integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-optional-chaining": {
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz",
+			"integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+				"@babel/plugin-syntax-optional-chaining": "^7.8.3"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2746,12 +2152,43 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-parameters": {
-			"version": "7.21.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
-			"integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz",
+			"integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==",
+			"dependencies": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-private-methods": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz",
+			"integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==",
+			"dependencies": {
+				"@babel/helper-create-class-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-private-property-in-object": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz",
+			"integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-create-class-features-plugin": "^7.22.11",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2761,12 +2198,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-property-literals": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
-			"integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz",
+			"integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2845,13 +2281,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-regenerator": {
-			"version": "7.20.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz",
-			"integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==",
-			"license": "MIT",
+			"version": "7.22.10",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz",
+			"integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"regenerator-transform": "^0.15.1"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"regenerator-transform": "^0.15.2"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2861,12 +2296,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-reserved-words": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
-			"integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz",
+			"integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2876,17 +2310,16 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-runtime": {
-			"version": "7.19.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz",
-			"integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==",
-			"license": "MIT",
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz",
+			"integrity": "sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==",
 			"dependencies": {
-				"@babel/helper-module-imports": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.19.0",
-				"babel-plugin-polyfill-corejs2": "^0.3.3",
-				"babel-plugin-polyfill-corejs3": "^0.6.0",
-				"babel-plugin-polyfill-regenerator": "^0.4.1",
-				"semver": "^6.3.0"
+				"@babel/helper-module-imports": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"babel-plugin-polyfill-corejs2": "^0.4.4",
+				"babel-plugin-polyfill-corejs3": "^0.8.2",
+				"babel-plugin-polyfill-regenerator": "^0.5.1",
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2896,21 +2329,19 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-runtime/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 			"bin": {
 				"semver": "bin/semver.js"
 			}
 		},
 		"node_modules/@babel/plugin-transform-shorthand-properties": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
-			"integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz",
+			"integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2920,13 +2351,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-spread": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
-			"integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz",
+			"integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2936,12 +2366,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-sticky-regex": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
-			"integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz",
+			"integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2951,12 +2380,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-template-literals": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
-			"integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz",
+			"integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2966,12 +2394,11 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-typeof-symbol": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
-			"integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz",
+			"integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2981,15 +2408,14 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-typescript": {
-			"version": "7.21.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz",
-			"integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==",
-			"license": "MIT",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz",
+			"integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==",
 			"dependencies": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-typescript": "^7.20.0"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-create-class-features-plugin": "^7.22.15",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-typescript": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -2999,12 +2425,26 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-unicode-escapes": {
-			"version": "7.18.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz",
-			"integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==",
-			"license": "MIT",
+			"version": "7.22.10",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz",
+			"integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0-0"
+			}
+		},
+		"node_modules/@babel/plugin-transform-unicode-property-regex": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz",
+			"integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==",
+			"dependencies": {
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -3014,13 +2454,12 @@
 			}
 		},
 		"node_modules/@babel/plugin-transform-unicode-regex": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
-			"integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz",
+			"integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==",
 			"dependencies": {
-				"@babel/helper-create-regexp-features-plugin": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -3029,39 +2468,41 @@
 				"@babel/core": "^7.0.0-0"
 			}
 		},
-		"node_modules/@babel/preset-env": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/preset-env/-/preset-env-7.21.4.tgz",
-			"integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==",
-			"license": "MIT",
+		"node_modules/@babel/plugin-transform-unicode-sets-regex": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz",
+			"integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==",
 			"dependencies": {
-				"@babel/compat-data": "^7.21.4",
-				"@babel/helper-compilation-targets": "^7.21.4",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-option": "^7.21.0",
-				"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
-				"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
-				"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
-				"@babel/plugin-proposal-class-properties": "^7.18.6",
-				"@babel/plugin-proposal-class-static-block": "^7.21.0",
-				"@babel/plugin-proposal-dynamic-import": "^7.18.6",
-				"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
-				"@babel/plugin-proposal-json-strings": "^7.18.6",
-				"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
-				"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
-				"@babel/plugin-proposal-numeric-separator": "^7.18.6",
-				"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
-				"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
-				"@babel/plugin-proposal-optional-chaining": "^7.21.0",
-				"@babel/plugin-proposal-private-methods": "^7.18.6",
-				"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
-				"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			},
+			"engines": {
+				"node": ">=6.9.0"
+			},
+			"peerDependencies": {
+				"@babel/core": "^7.0.0"
+			}
+		},
+		"node_modules/@babel/preset-env": {
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/preset-env/-/preset-env-7.22.9.tgz",
+			"integrity": "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==",
+			"dependencies": {
+				"@babel/compat-data": "^7.22.9",
+				"@babel/helper-compilation-targets": "^7.22.9",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-validator-option": "^7.22.5",
+				"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5",
+				"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5",
+				"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
 				"@babel/plugin-syntax-async-generators": "^7.8.4",
 				"@babel/plugin-syntax-class-properties": "^7.12.13",
 				"@babel/plugin-syntax-class-static-block": "^7.14.5",
 				"@babel/plugin-syntax-dynamic-import": "^7.8.3",
 				"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-				"@babel/plugin-syntax-import-assertions": "^7.20.0",
+				"@babel/plugin-syntax-import-assertions": "^7.22.5",
+				"@babel/plugin-syntax-import-attributes": "^7.22.5",
+				"@babel/plugin-syntax-import-meta": "^7.10.4",
 				"@babel/plugin-syntax-json-strings": "^7.8.3",
 				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
 				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
@@ -3071,45 +2512,62 @@
 				"@babel/plugin-syntax-optional-chaining": "^7.8.3",
 				"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
 				"@babel/plugin-syntax-top-level-await": "^7.14.5",
-				"@babel/plugin-transform-arrow-functions": "^7.20.7",
-				"@babel/plugin-transform-async-to-generator": "^7.20.7",
-				"@babel/plugin-transform-block-scoped-functions": "^7.18.6",
-				"@babel/plugin-transform-block-scoping": "^7.21.0",
-				"@babel/plugin-transform-classes": "^7.21.0",
-				"@babel/plugin-transform-computed-properties": "^7.20.7",
-				"@babel/plugin-transform-destructuring": "^7.21.3",
-				"@babel/plugin-transform-dotall-regex": "^7.18.6",
-				"@babel/plugin-transform-duplicate-keys": "^7.18.9",
-				"@babel/plugin-transform-exponentiation-operator": "^7.18.6",
-				"@babel/plugin-transform-for-of": "^7.21.0",
-				"@babel/plugin-transform-function-name": "^7.18.9",
-				"@babel/plugin-transform-literals": "^7.18.9",
-				"@babel/plugin-transform-member-expression-literals": "^7.18.6",
-				"@babel/plugin-transform-modules-amd": "^7.20.11",
-				"@babel/plugin-transform-modules-commonjs": "^7.21.2",
-				"@babel/plugin-transform-modules-systemjs": "^7.20.11",
-				"@babel/plugin-transform-modules-umd": "^7.18.6",
-				"@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
-				"@babel/plugin-transform-new-target": "^7.18.6",
-				"@babel/plugin-transform-object-super": "^7.18.6",
-				"@babel/plugin-transform-parameters": "^7.21.3",
-				"@babel/plugin-transform-property-literals": "^7.18.6",
-				"@babel/plugin-transform-regenerator": "^7.20.5",
-				"@babel/plugin-transform-reserved-words": "^7.18.6",
-				"@babel/plugin-transform-shorthand-properties": "^7.18.6",
-				"@babel/plugin-transform-spread": "^7.20.7",
-				"@babel/plugin-transform-sticky-regex": "^7.18.6",
-				"@babel/plugin-transform-template-literals": "^7.18.9",
-				"@babel/plugin-transform-typeof-symbol": "^7.18.9",
-				"@babel/plugin-transform-unicode-escapes": "^7.18.10",
-				"@babel/plugin-transform-unicode-regex": "^7.18.6",
+				"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+				"@babel/plugin-transform-arrow-functions": "^7.22.5",
+				"@babel/plugin-transform-async-generator-functions": "^7.22.7",
+				"@babel/plugin-transform-async-to-generator": "^7.22.5",
+				"@babel/plugin-transform-block-scoped-functions": "^7.22.5",
+				"@babel/plugin-transform-block-scoping": "^7.22.5",
+				"@babel/plugin-transform-class-properties": "^7.22.5",
+				"@babel/plugin-transform-class-static-block": "^7.22.5",
+				"@babel/plugin-transform-classes": "^7.22.6",
+				"@babel/plugin-transform-computed-properties": "^7.22.5",
+				"@babel/plugin-transform-destructuring": "^7.22.5",
+				"@babel/plugin-transform-dotall-regex": "^7.22.5",
+				"@babel/plugin-transform-duplicate-keys": "^7.22.5",
+				"@babel/plugin-transform-dynamic-import": "^7.22.5",
+				"@babel/plugin-transform-exponentiation-operator": "^7.22.5",
+				"@babel/plugin-transform-export-namespace-from": "^7.22.5",
+				"@babel/plugin-transform-for-of": "^7.22.5",
+				"@babel/plugin-transform-function-name": "^7.22.5",
+				"@babel/plugin-transform-json-strings": "^7.22.5",
+				"@babel/plugin-transform-literals": "^7.22.5",
+				"@babel/plugin-transform-logical-assignment-operators": "^7.22.5",
+				"@babel/plugin-transform-member-expression-literals": "^7.22.5",
+				"@babel/plugin-transform-modules-amd": "^7.22.5",
+				"@babel/plugin-transform-modules-commonjs": "^7.22.5",
+				"@babel/plugin-transform-modules-systemjs": "^7.22.5",
+				"@babel/plugin-transform-modules-umd": "^7.22.5",
+				"@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
+				"@babel/plugin-transform-new-target": "^7.22.5",
+				"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5",
+				"@babel/plugin-transform-numeric-separator": "^7.22.5",
+				"@babel/plugin-transform-object-rest-spread": "^7.22.5",
+				"@babel/plugin-transform-object-super": "^7.22.5",
+				"@babel/plugin-transform-optional-catch-binding": "^7.22.5",
+				"@babel/plugin-transform-optional-chaining": "^7.22.6",
+				"@babel/plugin-transform-parameters": "^7.22.5",
+				"@babel/plugin-transform-private-methods": "^7.22.5",
+				"@babel/plugin-transform-private-property-in-object": "^7.22.5",
+				"@babel/plugin-transform-property-literals": "^7.22.5",
+				"@babel/plugin-transform-regenerator": "^7.22.5",
+				"@babel/plugin-transform-reserved-words": "^7.22.5",
+				"@babel/plugin-transform-shorthand-properties": "^7.22.5",
+				"@babel/plugin-transform-spread": "^7.22.5",
+				"@babel/plugin-transform-sticky-regex": "^7.22.5",
+				"@babel/plugin-transform-template-literals": "^7.22.5",
+				"@babel/plugin-transform-typeof-symbol": "^7.22.5",
+				"@babel/plugin-transform-unicode-escapes": "^7.22.5",
+				"@babel/plugin-transform-unicode-property-regex": "^7.22.5",
+				"@babel/plugin-transform-unicode-regex": "^7.22.5",
+				"@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
 				"@babel/preset-modules": "^0.1.5",
-				"@babel/types": "^7.21.4",
-				"babel-plugin-polyfill-corejs2": "^0.3.3",
-				"babel-plugin-polyfill-corejs3": "^0.6.0",
-				"babel-plugin-polyfill-regenerator": "^0.4.1",
-				"core-js-compat": "^3.25.1",
-				"semver": "^6.3.0"
+				"@babel/types": "^7.22.5",
+				"babel-plugin-polyfill-corejs2": "^0.4.4",
+				"babel-plugin-polyfill-corejs3": "^0.8.2",
+				"babel-plugin-polyfill-regenerator": "^0.5.1",
+				"core-js-compat": "^3.31.0",
+				"semver": "^6.3.1"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -3119,10 +2577,9 @@
 			}
 		},
 		"node_modules/@babel/preset-env/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 			"bin": {
 				"semver": "bin/semver.js"
 			}
@@ -3165,16 +2622,15 @@
 			}
 		},
 		"node_modules/@babel/preset-typescript": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/preset-typescript/-/preset-typescript-7.21.4.tgz",
-			"integrity": "sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==",
-			"license": "MIT",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz",
+			"integrity": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==",
 			"dependencies": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-option": "^7.21.0",
-				"@babel/plugin-syntax-jsx": "^7.21.4",
-				"@babel/plugin-transform-modules-commonjs": "^7.21.2",
-				"@babel/plugin-transform-typescript": "^7.21.3"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-validator-option": "^7.22.15",
+				"@babel/plugin-syntax-jsx": "^7.22.5",
+				"@babel/plugin-transform-modules-commonjs": "^7.23.0",
+				"@babel/plugin-transform-typescript": "^7.22.15"
 			},
 			"engines": {
 				"node": ">=6.9.0"
@@ -3190,10 +2646,9 @@
 			"license": "MIT"
 		},
 		"node_modules/@babel/runtime": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/runtime/-/runtime-7.20.7.tgz",
-			"integrity": "sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==",
-			"license": "MIT",
+			"version": "7.22.6",
+			"resolved": "http://localhost:4873/@babel/runtime/-/runtime-7.22.6.tgz",
+			"integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==",
 			"dependencies": {
 				"regenerator-runtime": "^0.13.11"
 			},
@@ -3202,33 +2657,31 @@
 			}
 		},
 		"node_modules/@babel/template": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/template/-/template-7.20.7.tgz",
-			"integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
-			"license": "MIT",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/template/-/template-7.22.5.tgz",
+			"integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==",
 			"dependencies": {
-				"@babel/code-frame": "^7.18.6",
-				"@babel/parser": "^7.20.7",
-				"@babel/types": "^7.20.7"
+				"@babel/code-frame": "^7.22.5",
+				"@babel/parser": "^7.22.5",
+				"@babel/types": "^7.22.5"
 			},
 			"engines": {
 				"node": ">=6.9.0"
 			}
 		},
 		"node_modules/@babel/traverse": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/traverse/-/traverse-7.21.4.tgz",
-			"integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/code-frame": "^7.21.4",
-				"@babel/generator": "^7.21.4",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-function-name": "^7.21.0",
-				"@babel/helper-hoist-variables": "^7.18.6",
-				"@babel/helper-split-export-declaration": "^7.18.6",
-				"@babel/parser": "^7.21.4",
-				"@babel/types": "^7.21.4",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/traverse/-/traverse-7.23.2.tgz",
+			"integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==",
+			"dependencies": {
+				"@babel/code-frame": "^7.22.13",
+				"@babel/generator": "^7.23.0",
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-function-name": "^7.23.0",
+				"@babel/helper-hoist-variables": "^7.22.5",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"@babel/parser": "^7.23.0",
+				"@babel/types": "^7.23.0",
 				"debug": "^4.1.0",
 				"globals": "^11.1.0"
 			},
@@ -3237,12 +2690,11 @@
 			}
 		},
 		"node_modules/@babel/traverse/node_modules/@babel/generator": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/generator/-/generator-7.21.4.tgz",
-			"integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/generator/-/generator-7.23.0.tgz",
+			"integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
 			"dependencies": {
-				"@babel/types": "^7.21.4",
+				"@babel/types": "^7.23.0",
 				"@jridgewell/gen-mapping": "^0.3.2",
 				"@jridgewell/trace-mapping": "^0.3.17",
 				"jsesc": "^2.5.1"
@@ -3251,28 +2703,13 @@
 				"node": ">=6.9.0"
 			}
 		},
-		"node_modules/@babel/traverse/node_modules/@jridgewell/gen-mapping": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-			"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-			"license": "MIT",
-			"dependencies": {
-				"@jridgewell/set-array": "^1.0.1",
-				"@jridgewell/sourcemap-codec": "^1.4.10",
-				"@jridgewell/trace-mapping": "^0.3.9"
-			},
-			"engines": {
-				"node": ">=6.0.0"
-			}
-		},
 		"node_modules/@babel/types": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/types/-/types-7.21.4.tgz",
-			"integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==",
-			"license": "MIT",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/types/-/types-7.23.0.tgz",
+			"integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
 			"dependencies": {
-				"@babel/helper-string-parser": "^7.19.4",
-				"@babel/helper-validator-identifier": "^7.19.1",
+				"@babel/helper-string-parser": "^7.22.5",
+				"@babel/helper-validator-identifier": "^7.22.20",
 				"to-fast-properties": "^2.0.0"
 			},
 			"engines": {
@@ -3303,9 +2740,8 @@
 		},
 		"node_modules/@bcoe/v8-coverage": {
 			"version": "0.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
-			"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
+			"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
 		},
 		"node_modules/@colors/colors": {
 			"version": "1.5.0",
@@ -3341,11 +2777,10 @@
 			}
 		},
 		"node_modules/@cypress/request": {
-			"version": "2.88.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@cypress/request/-/request-2.88.12.tgz",
-			"integrity": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/@cypress/request/-/request-3.0.1.tgz",
+			"integrity": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==",
+			"dev": true,
 			"dependencies": {
 				"aws-sign2": "~0.7.0",
 				"aws4": "^1.8.0",
@@ -3360,7 +2795,7 @@
 				"json-stringify-safe": "~5.0.1",
 				"mime-types": "~2.1.19",
 				"performance-now": "^2.1.0",
-				"qs": "~6.10.3",
+				"qs": "6.10.4",
 				"safe-buffer": "^5.1.2",
 				"tough-cookie": "^4.1.3",
 				"tunnel-agent": "^0.6.0",
@@ -4368,7 +3803,7 @@
 			"version": "1.2.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@cypress/xvfb/-/xvfb-1.2.4.tgz",
 			"integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"debug": "^3.1.0",
@@ -4379,7 +3814,7 @@
 			"version": "3.2.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-3.2.7.tgz",
 			"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ms": "^2.1.1"
@@ -4396,14 +3831,13 @@
 			}
 		},
 		"node_modules/@esbuild/android-arm": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/android-arm/-/android-arm-0.16.17.tgz",
-			"integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/android-arm/-/android-arm-0.18.17.tgz",
+			"integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==",
 			"cpu": [
 				"arm"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"android"
@@ -4413,14 +3847,13 @@
 			}
 		},
 		"node_modules/@esbuild/android-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz",
-			"integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz",
+			"integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==",
 			"cpu": [
 				"arm64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"android"
@@ -4430,14 +3863,13 @@
 			}
 		},
 		"node_modules/@esbuild/android-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/android-x64/-/android-x64-0.16.17.tgz",
-			"integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/android-x64/-/android-x64-0.18.17.tgz",
+			"integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"android"
@@ -4447,14 +3879,13 @@
 			}
 		},
 		"node_modules/@esbuild/darwin-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz",
-			"integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz",
+			"integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==",
 			"cpu": [
 				"arm64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"darwin"
@@ -4464,14 +3895,13 @@
 			}
 		},
 		"node_modules/@esbuild/darwin-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz",
-			"integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz",
+			"integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"darwin"
@@ -4481,14 +3911,13 @@
 			}
 		},
 		"node_modules/@esbuild/freebsd-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz",
-			"integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz",
+			"integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==",
 			"cpu": [
 				"arm64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"freebsd"
@@ -4498,14 +3927,13 @@
 			}
 		},
 		"node_modules/@esbuild/freebsd-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz",
-			"integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz",
+			"integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"freebsd"
@@ -4515,14 +3943,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-arm": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz",
-			"integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz",
+			"integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==",
 			"cpu": [
 				"arm"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4532,14 +3959,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz",
-			"integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz",
+			"integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==",
 			"cpu": [
 				"arm64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4549,14 +3975,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-ia32": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz",
-			"integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz",
+			"integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==",
 			"cpu": [
 				"ia32"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4566,14 +3991,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-loong64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz",
-			"integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz",
+			"integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==",
 			"cpu": [
 				"loong64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4583,14 +4007,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-mips64el": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz",
-			"integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz",
+			"integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==",
 			"cpu": [
 				"mips64el"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4600,14 +4023,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-ppc64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz",
-			"integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz",
+			"integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==",
 			"cpu": [
 				"ppc64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4617,14 +4039,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-riscv64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz",
-			"integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz",
+			"integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==",
 			"cpu": [
 				"riscv64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4634,14 +4055,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-s390x": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz",
-			"integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz",
+			"integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==",
 			"cpu": [
 				"s390x"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4651,14 +4071,13 @@
 			}
 		},
 		"node_modules/@esbuild/linux-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz",
-			"integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz",
+			"integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"linux"
@@ -4668,14 +4087,13 @@
 			}
 		},
 		"node_modules/@esbuild/netbsd-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz",
-			"integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz",
+			"integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"netbsd"
@@ -4685,14 +4103,13 @@
 			}
 		},
 		"node_modules/@esbuild/openbsd-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz",
-			"integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz",
+			"integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"openbsd"
@@ -4702,14 +4119,13 @@
 			}
 		},
 		"node_modules/@esbuild/sunos-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz",
-			"integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz",
+			"integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"sunos"
@@ -4719,14 +4135,13 @@
 			}
 		},
 		"node_modules/@esbuild/win32-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz",
-			"integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz",
+			"integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==",
 			"cpu": [
 				"arm64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"win32"
@@ -4736,14 +4151,13 @@
 			}
 		},
 		"node_modules/@esbuild/win32-ia32": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz",
-			"integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz",
+			"integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==",
 			"cpu": [
 				"ia32"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"win32"
@@ -4753,14 +4167,13 @@
 			}
 		},
 		"node_modules/@esbuild/win32-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz",
-			"integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz",
+			"integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==",
 			"cpu": [
 				"x64"
 			],
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"win32"
@@ -4769,16 +4182,38 @@
 				"node": ">=12"
 			}
 		},
+		"node_modules/@eslint-community/eslint-utils": {
+			"version": "4.4.0",
+			"resolved": "http://localhost:4873/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
+			"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
+			"dependencies": {
+				"eslint-visitor-keys": "^3.3.0"
+			},
+			"engines": {
+				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+			},
+			"peerDependencies": {
+				"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+			}
+		},
+		"node_modules/@eslint-community/regexpp": {
+			"version": "4.10.0",
+			"resolved": "http://localhost:4873/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
+			"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
+			"dev": true,
+			"engines": {
+				"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+			}
+		},
 		"node_modules/@eslint/eslintrc": {
-			"version": "1.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
-			"integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
-			"devOptional": true,
-			"license": "MIT",
+			"version": "2.1.2",
+			"resolved": "http://localhost:4873/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
+			"integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
+			"dev": true,
 			"dependencies": {
 				"ajv": "^6.12.4",
 				"debug": "^4.3.2",
-				"espree": "^9.4.0",
+				"espree": "^9.6.0",
 				"globals": "^13.19.0",
 				"ignore": "^5.2.0",
 				"import-fresh": "^3.2.1",
@@ -4795,10 +4230,9 @@
 		},
 		"node_modules/@eslint/eslintrc/node_modules/ajv": {
 			"version": "6.12.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+			"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"fast-deep-equal": "^3.1.1",
 				"fast-json-stable-stringify": "^2.0.0",
@@ -4812,17 +4246,15 @@
 		},
 		"node_modules/@eslint/eslintrc/node_modules/argparse": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/argparse/-/argparse-2.0.1.tgz",
+			"resolved": "http://localhost:4873/argparse/-/argparse-2.0.1.tgz",
 			"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-			"devOptional": true,
-			"license": "Python-2.0"
+			"dev": true
 		},
 		"node_modules/@eslint/eslintrc/node_modules/globals": {
-			"version": "13.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globals/-/globals-13.20.0.tgz",
-			"integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
-			"devOptional": true,
-			"license": "MIT",
+			"version": "13.23.0",
+			"resolved": "http://localhost:4873/globals/-/globals-13.23.0.tgz",
+			"integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==",
+			"dev": true,
 			"dependencies": {
 				"type-fest": "^0.20.2"
 			},
@@ -4835,10 +4267,9 @@
 		},
 		"node_modules/@eslint/eslintrc/node_modules/js-yaml": {
 			"version": "4.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-yaml/-/js-yaml-4.1.0.tgz",
+			"resolved": "http://localhost:4873/js-yaml/-/js-yaml-4.1.0.tgz",
 			"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"argparse": "^2.0.1"
 			},
@@ -4848,17 +4279,15 @@
 		},
 		"node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+			"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/@eslint/eslintrc/node_modules/minimatch": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"devOptional": true,
-			"license": "ISC",
+			"dev": true,
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
 			},
@@ -4868,10 +4297,9 @@
 		},
 		"node_modules/@eslint/eslintrc/node_modules/type-fest": {
 			"version": "0.20.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-fest/-/type-fest-0.20.2.tgz",
+			"resolved": "http://localhost:4873/type-fest/-/type-fest-0.20.2.tgz",
 			"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
-			"devOptional": true,
-			"license": "(MIT OR CC0-1.0)",
+			"dev": true,
 			"engines": {
 				"node": ">=10"
 			},
@@ -4879,6 +4307,15 @@
 				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
+		"node_modules/@eslint/js": {
+			"version": "8.52.0",
+			"resolved": "http://localhost:4873/@eslint/js/-/js-8.52.0.tgz",
+			"integrity": "sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==",
+			"dev": true,
+			"engines": {
+				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+			}
+		},
 		"node_modules/@faker-js/faker": {
 			"version": "6.3.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@faker-js/faker/-/faker-6.3.1.tgz",
@@ -4890,34 +4327,134 @@
 				"npm": ">=6.0.0"
 			}
 		},
-		"node_modules/@gar/promisify": {
-			"version": "1.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@gar/promisify/-/promisify-1.1.3.tgz",
-			"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
-			"dev": true,
-			"license": "MIT"
-		},
 		"node_modules/@humanwhocodes/config-array": {
-			"version": "0.9.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
-			"integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+			"version": "0.11.13",
+			"resolved": "http://localhost:4873/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
+			"integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==",
+			"dev": true,
 			"dependencies": {
-				"@humanwhocodes/object-schema": "^1.2.1",
+				"@humanwhocodes/object-schema": "^2.0.1",
 				"debug": "^4.1.1",
-				"minimatch": "^3.0.4"
+				"minimatch": "^3.0.5"
 			},
 			"engines": {
 				"node": ">=10.10.0"
 			}
 		},
+		"node_modules/@humanwhocodes/module-importer": {
+			"version": "1.0.1",
+			"resolved": "http://localhost:4873/@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/object-schema": {
-			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
-			"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
-			"devOptional": true,
-			"license": "BSD-3-Clause"
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz",
+			"integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==",
+			"dev": true
+		},
+		"node_modules/@isaacs/cliui": {
+			"version": "8.0.2",
+			"resolved": "http://localhost:4873/@isaacs/cliui/-/cliui-8.0.2.tgz",
+			"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+			"dev": true,
+			"dependencies": {
+				"string-width": "^5.1.2",
+				"string-width-cjs": "npm:string-width@^4.2.0",
+				"strip-ansi": "^7.0.1",
+				"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+				"wrap-ansi": "^8.1.0",
+				"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+			},
+			"engines": {
+				"node": ">=12"
+			}
+		},
+		"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/ansi-regex/-/ansi-regex-6.0.1.tgz",
+			"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+			"dev": true,
+			"engines": {
+				"node": ">=12"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/ansi-regex?sponsor=1"
+			}
+		},
+		"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
+			"version": "6.2.1",
+			"resolved": "http://localhost:4873/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/@isaacs/cliui/node_modules/emoji-regex": {
+			"version": "9.2.2",
+			"resolved": "http://localhost:4873/emoji-regex/-/emoji-regex-9.2.2.tgz",
+			"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+			"dev": true
+		},
+		"node_modules/@isaacs/cliui/node_modules/string-width": {
+			"version": "5.1.2",
+			"resolved": "http://localhost:4873/string-width/-/string-width-5.1.2.tgz",
+			"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+			"dev": true,
+			"dependencies": {
+				"eastasianwidth": "^0.2.0",
+				"emoji-regex": "^9.2.2",
+				"strip-ansi": "^7.0.1"
+			},
+			"engines": {
+				"node": ">=12"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+			"version": "7.1.0",
+			"resolved": "http://localhost:4873/strip-ansi/-/strip-ansi-7.1.0.tgz",
+			"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+			"dev": true,
+			"dependencies": {
+				"ansi-regex": "^6.0.1"
+			},
+			"engines": {
+				"node": ">=12"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/strip-ansi?sponsor=1"
+			}
+		},
+		"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+			"version": "8.1.0",
+			"resolved": "http://localhost:4873/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+			"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+			"dev": true,
+			"dependencies": {
+				"ansi-styles": "^6.1.0",
+				"string-width": "^5.0.1",
+				"strip-ansi": "^7.0.1"
+			},
+			"engines": {
+				"node": ">=12"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+			}
 		},
 		"node_modules/@istanbuljs/load-nyc-config": {
 			"version": "1.1.0",
@@ -4945,27 +4482,25 @@
 			}
 		},
 		"node_modules/@jest/console": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/console/-/console-28.1.3.tgz",
-			"integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/console/-/console-29.7.0.tgz",
+			"integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"slash": "^3.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/console/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -4978,9 +4513,8 @@
 		},
 		"node_modules/@jest/console/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -4994,9 +4528,8 @@
 		},
 		"node_modules/@jest/console/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -5006,41 +4539,21 @@
 		},
 		"node_modules/@jest/console/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/@jest/console/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@jest/console/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/@jest/console/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -5049,89 +4562,42 @@
 			}
 		},
 		"node_modules/@jest/core": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/core/-/core-28.1.3.tgz",
-			"integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/core/-/core-29.7.0.tgz",
+			"integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/reporters": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/console": "^29.7.0",
+				"@jest/reporters": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"ansi-escapes": "^4.2.1",
 				"chalk": "^4.0.0",
 				"ci-info": "^3.2.0",
 				"exit": "^0.1.2",
 				"graceful-fs": "^4.2.9",
-				"jest-changed-files": "^28.1.3",
-				"jest-config": "^28.1.3",
-				"jest-haste-map": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.3",
-				"jest-resolve-dependencies": "^28.1.3",
-				"jest-runner": "^28.1.3",
-				"jest-runtime": "^28.1.3",
-				"jest-snapshot": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"jest-watcher": "^28.1.3",
+				"jest-changed-files": "^29.7.0",
+				"jest-config": "^29.7.0",
+				"jest-haste-map": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-regex-util": "^29.6.3",
+				"jest-resolve": "^29.7.0",
+				"jest-resolve-dependencies": "^29.7.0",
+				"jest-runner": "^29.7.0",
+				"jest-runtime": "^29.7.0",
+				"jest-snapshot": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
+				"jest-watcher": "^29.7.0",
 				"micromatch": "^4.0.4",
-				"pretty-format": "^28.1.3",
-				"rimraf": "^3.0.0",
+				"pretty-format": "^29.7.0",
 				"slash": "^3.0.0",
 				"strip-ansi": "^6.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			},
-			"peerDependencies": {
-				"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
-			},
-			"peerDependenciesMeta": {
-				"node-notifier": {
-					"optional": true
-				}
-			}
-		},
-		"node_modules/@jest/core/node_modules/@jest/reporters": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/reporters/-/reporters-28.1.3.tgz",
-			"integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@bcoe/v8-coverage": "^0.2.3",
-				"@jest/console": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@jridgewell/trace-mapping": "^0.3.13",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"collect-v8-coverage": "^1.0.0",
-				"exit": "^0.1.2",
-				"glob": "^7.1.3",
-				"graceful-fs": "^4.2.9",
-				"istanbul-lib-coverage": "^3.0.0",
-				"istanbul-lib-instrument": "^5.1.0",
-				"istanbul-lib-report": "^3.0.0",
-				"istanbul-lib-source-maps": "^4.0.0",
-				"istanbul-reports": "^3.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-worker": "^28.1.3",
-				"slash": "^3.0.0",
-				"string-length": "^4.0.1",
-				"strip-ansi": "^6.0.0",
-				"terminal-link": "^2.0.0",
-				"v8-to-istanbul": "^9.0.1"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
@@ -5142,28 +4608,11 @@
 				}
 			}
 		},
-		"node_modules/@jest/core/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/@jest/core/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -5176,10 +4625,9 @@
 		},
 		"node_modules/@jest/core/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -5193,10 +4641,9 @@
 		},
 		"node_modules/@jest/core/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -5206,146 +4653,24 @@
 		},
 		"node_modules/@jest/core/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"dev": true,
-			"license": "MIT"
-		},
-		"node_modules/@jest/core/node_modules/glob": {
-			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
-			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"fs.realpath": "^1.0.0",
-				"inflight": "^1.0.4",
-				"inherits": "2",
-				"minimatch": "^3.1.1",
-				"once": "^1.3.0",
-				"path-is-absolute": "^1.0.0"
-			},
-			"engines": {
-				"node": "*"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/isaacs"
-			}
+			"dev": true
 		},
 		"node_modules/@jest/core/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@jest/core/node_modules/jest-config": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-config/-/jest-config-28.1.3.tgz",
-			"integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@babel/core": "^7.11.6",
-				"@jest/test-sequencer": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"babel-jest": "^28.1.3",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"deepmerge": "^4.2.2",
-				"glob": "^7.1.3",
-				"graceful-fs": "^4.2.9",
-				"jest-circus": "^28.1.3",
-				"jest-environment-node": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.3",
-				"jest-runner": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"micromatch": "^4.0.4",
-				"parse-json": "^5.2.0",
-				"pretty-format": "^28.1.3",
-				"slash": "^3.0.0",
-				"strip-json-comments": "^3.1.1"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			},
-			"peerDependencies": {
-				"@types/node": "*",
-				"ts-node": ">=9.0.0"
-			},
-			"peerDependenciesMeta": {
-				"@types/node": {
-					"optional": true
-				},
-				"ts-node": {
-					"optional": true
-				}
-			}
-		},
-		"node_modules/@jest/core/node_modules/jest-resolve": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-			"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"chalk": "^4.0.0",
-				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-pnp-resolver": "^1.2.2",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"resolve": "^1.20.0",
-				"resolve.exports": "^1.1.0",
-				"slash": "^3.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/@jest/core/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/@jest/core/node_modules/minimatch": {
-			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
-			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"brace-expansion": "^1.1.7"
-			},
-			"engines": {
-				"node": "*"
-			}
-		},
 		"node_modules/@jest/core/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -5354,175 +4679,83 @@
 			}
 		},
 		"node_modules/@jest/environment": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/environment/-/environment-28.1.3.tgz",
-			"integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/environment/-/environment-29.7.0.tgz",
+			"integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==",
 			"dependencies": {
-				"@jest/fake-timers": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/fake-timers": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
-				"jest-mock": "^28.1.3"
+				"jest-mock": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/expect": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/expect/-/expect-28.1.3.tgz",
-			"integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/expect/-/expect-29.7.0.tgz",
+			"integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
 			"dependencies": {
-				"expect": "^28.1.3",
-				"jest-snapshot": "^28.1.3"
+				"expect": "^29.7.0",
+				"jest-snapshot": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/expect-utils": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/expect-utils/-/expect-utils-28.1.3.tgz",
-			"integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/expect-utils/-/expect-utils-29.7.0.tgz",
+			"integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==",
 			"dependencies": {
-				"jest-get-type": "^28.0.2"
+				"jest-get-type": "^29.6.3"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/fake-timers": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/fake-timers/-/fake-timers-28.1.3.tgz",
-			"integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@sinonjs/fake-timers": "^9.1.2",
-				"@types/node": "*",
-				"jest-message-util": "^28.1.3",
-				"jest-mock": "^28.1.3",
-				"jest-util": "^28.1.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/@jest/fake-timers/node_modules/ansi-styles": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
-			"dependencies": {
-				"color-convert": "^2.0.1"
-			},
-			"engines": {
-				"node": ">=8"
-			},
-			"funding": {
-				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
-			}
-		},
-		"node_modules/@jest/fake-timers/node_modules/chalk": {
-			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
-			"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/@jest/fake-timers/node_modules/color-convert": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
-			"dependencies": {
-				"color-name": "~1.1.4"
-			},
-			"engines": {
-				"node": ">=7.0.0"
-			}
-		},
-		"node_modules/@jest/fake-timers/node_modules/color-name": {
-			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/@jest/fake-timers/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/@jest/fake-timers/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/fake-timers/-/fake-timers-29.7.0.tgz",
+			"integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
+				"@sinonjs/fake-timers": "^10.0.2",
 				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
+				"jest-message-util": "^29.7.0",
+				"jest-mock": "^29.7.0",
+				"jest-util": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/@jest/fake-timers/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
-			"dependencies": {
-				"has-flag": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=8"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/globals": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/globals/-/globals-28.1.3.tgz",
-			"integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/globals/-/globals-29.7.0.tgz",
+			"integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
 			"dependencies": {
-				"@jest/environment": "^28.1.3",
-				"@jest/expect": "^28.1.3",
-				"@jest/types": "^28.1.3"
+				"@jest/environment": "^29.7.0",
+				"@jest/expect": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"jest-mock": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/reporters": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/reporters/-/reporters-28.1.1.tgz",
-			"integrity": "sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/reporters/-/reporters-29.7.0.tgz",
+			"integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
 			"dependencies": {
 				"@bcoe/v8-coverage": "^0.2.3",
-				"@jest/console": "^28.1.1",
-				"@jest/test-result": "^28.1.1",
-				"@jest/transform": "^28.1.1",
-				"@jest/types": "^28.1.1",
-				"@jridgewell/trace-mapping": "^0.3.7",
+				"@jest/console": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"@jridgewell/trace-mapping": "^0.3.18",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"collect-v8-coverage": "^1.0.0",
@@ -5530,21 +4763,20 @@
 				"glob": "^7.1.3",
 				"graceful-fs": "^4.2.9",
 				"istanbul-lib-coverage": "^3.0.0",
-				"istanbul-lib-instrument": "^5.1.0",
+				"istanbul-lib-instrument": "^6.0.0",
 				"istanbul-lib-report": "^3.0.0",
 				"istanbul-lib-source-maps": "^4.0.0",
 				"istanbul-reports": "^3.1.3",
-				"jest-message-util": "^28.1.1",
-				"jest-util": "^28.1.1",
-				"jest-worker": "^28.1.1",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-worker": "^29.7.0",
 				"slash": "^3.0.0",
 				"string-length": "^4.0.1",
 				"strip-ansi": "^6.0.0",
-				"terminal-link": "^2.0.0",
-				"v8-to-istanbul": "^9.0.0"
+				"v8-to-istanbul": "^9.0.1"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
@@ -5557,9 +4789,8 @@
 		},
 		"node_modules/@jest/reporters/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -5572,9 +4803,8 @@
 		},
 		"node_modules/@jest/reporters/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -5588,9 +4818,8 @@
 		},
 		"node_modules/@jest/reporters/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -5600,15 +4829,13 @@
 		},
 		"node_modules/@jest/reporters/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/@jest/reporters/node_modules/glob": {
 			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+			"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-			"license": "ISC",
 			"dependencies": {
 				"fs.realpath": "^1.0.0",
 				"inflight": "^1.0.4",
@@ -5626,18 +4853,31 @@
 		},
 		"node_modules/@jest/reporters/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
+		"node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": {
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz",
+			"integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==",
+			"dependencies": {
+				"@babel/core": "^7.12.3",
+				"@babel/parser": "^7.14.7",
+				"@istanbuljs/schema": "^0.1.2",
+				"istanbul-lib-coverage": "^3.2.0",
+				"semver": "^7.5.4"
+			},
+			"engines": {
+				"node": ">=10"
+			}
+		},
 		"node_modules/@jest/reporters/node_modules/minimatch": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
 			},
@@ -5647,9 +4887,8 @@
 		},
 		"node_modules/@jest/reporters/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -5658,107 +4897,86 @@
 			}
 		},
 		"node_modules/@jest/schemas": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/schemas/-/schemas-28.1.3.tgz",
-			"integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/@jest/schemas/-/schemas-29.6.3.tgz",
+			"integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
 			"dependencies": {
-				"@sinclair/typebox": "^0.24.1"
+				"@sinclair/typebox": "^0.27.8"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/source-map": {
-			"version": "28.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/source-map/-/source-map-28.1.2.tgz",
-			"integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/@jest/source-map/-/source-map-29.6.3.tgz",
+			"integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
 			"dependencies": {
-				"@jridgewell/trace-mapping": "^0.3.13",
+				"@jridgewell/trace-mapping": "^0.3.18",
 				"callsites": "^3.0.0",
 				"graceful-fs": "^4.2.9"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/test-result": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.1.tgz",
-			"integrity": "sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/test-result/-/test-result-29.7.0.tgz",
+			"integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
 			"dependencies": {
-				"@jest/console": "^28.1.1",
-				"@jest/types": "^28.1.1",
+				"@jest/console": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/istanbul-lib-coverage": "^2.0.0",
 				"collect-v8-coverage": "^1.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/test-sequencer": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz",
-			"integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
+			"integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
 			"dependencies": {
-				"@jest/test-result": "^28.1.3",
+				"@jest/test-result": "^29.7.0",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
+				"jest-haste-map": "^29.7.0",
 				"slash": "^3.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/@jest/test-sequencer/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/transform": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/transform/-/transform-28.1.3.tgz",
-			"integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/transform/-/transform-29.7.0.tgz",
+			"integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
 			"dependencies": {
 				"@babel/core": "^7.11.6",
-				"@jest/types": "^28.1.3",
-				"@jridgewell/trace-mapping": "^0.3.13",
+				"@jest/types": "^29.6.3",
+				"@jridgewell/trace-mapping": "^0.3.18",
 				"babel-plugin-istanbul": "^6.1.1",
 				"chalk": "^4.0.0",
-				"convert-source-map": "^1.4.0",
-				"fast-json-stable-stringify": "^2.0.0",
+				"convert-source-map": "^2.0.0",
+				"fast-json-stable-stringify": "^2.1.0",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-regex-util": "^28.0.2",
-				"jest-util": "^28.1.3",
+				"jest-haste-map": "^29.7.0",
+				"jest-regex-util": "^29.6.3",
+				"jest-util": "^29.7.0",
 				"micromatch": "^4.0.4",
 				"pirates": "^4.0.4",
 				"slash": "^3.0.0",
-				"write-file-atomic": "^4.0.1"
+				"write-file-atomic": "^4.0.2"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/transform/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -5771,9 +4989,8 @@
 		},
 		"node_modules/@jest/transform/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -5787,9 +5004,8 @@
 		},
 		"node_modules/@jest/transform/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -5799,41 +5015,26 @@
 		},
 		"node_modules/@jest/transform/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+		},
+		"node_modules/@jest/transform/node_modules/convert-source-map": {
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/convert-source-map/-/convert-source-map-2.0.0.tgz",
+			"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
 		},
 		"node_modules/@jest/transform/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@jest/transform/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/@jest/transform/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -5842,12 +5043,11 @@
 			}
 		},
 		"node_modules/@jest/types": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/types/-/types-28.1.3.tgz",
-			"integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/@jest/types/-/types-29.6.3.tgz",
+			"integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
 			"dependencies": {
-				"@jest/schemas": "^28.1.3",
+				"@jest/schemas": "^29.6.3",
 				"@types/istanbul-lib-coverage": "^2.0.0",
 				"@types/istanbul-reports": "^3.0.0",
 				"@types/node": "*",
@@ -5855,14 +5055,13 @@
 				"chalk": "^4.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@jest/types/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -5875,9 +5074,8 @@
 		},
 		"node_modules/@jest/types/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -5891,9 +5089,8 @@
 		},
 		"node_modules/@jest/types/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -5903,24 +5100,21 @@
 		},
 		"node_modules/@jest/types/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/@jest/types/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/@jest/types/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -5929,13 +5123,13 @@
 			}
 		},
 		"node_modules/@jridgewell/gen-mapping": {
-			"version": "0.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
-			"integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
-			"license": "MIT",
+			"version": "0.3.3",
+			"resolved": "http://localhost:4873/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
+			"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
 			"dependencies": {
-				"@jridgewell/set-array": "^1.0.0",
-				"@jridgewell/sourcemap-codec": "^1.4.10"
+				"@jridgewell/set-array": "^1.0.1",
+				"@jridgewell/sourcemap-codec": "^1.4.10",
+				"@jridgewell/trace-mapping": "^0.3.9"
 			},
 			"engines": {
 				"node": ">=6.0.0"
@@ -5952,969 +5146,889 @@
 		},
 		"node_modules/@jridgewell/set-array": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/set-array/-/set-array-1.1.2.tgz",
+			"resolved": "http://localhost:4873/@jridgewell/set-array/-/set-array-1.1.2.tgz",
 			"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6.0.0"
 			}
 		},
 		"node_modules/@jridgewell/source-map": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/source-map/-/source-map-0.3.2.tgz",
-			"integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
-			"license": "MIT",
+			"version": "0.3.5",
+			"resolved": "http://localhost:4873/@jridgewell/source-map/-/source-map-0.3.5.tgz",
+			"integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
 			"dependencies": {
 				"@jridgewell/gen-mapping": "^0.3.0",
 				"@jridgewell/trace-mapping": "^0.3.9"
 			}
 		},
-		"node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-			"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-			"license": "MIT",
-			"dependencies": {
-				"@jridgewell/set-array": "^1.0.1",
-				"@jridgewell/sourcemap-codec": "^1.4.10",
-				"@jridgewell/trace-mapping": "^0.3.9"
-			},
-			"engines": {
-				"node": ">=6.0.0"
-			}
-		},
 		"node_modules/@jridgewell/sourcemap-codec": {
-			"version": "1.4.14",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
-			"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==",
-			"license": "MIT"
+			"version": "1.4.15",
+			"resolved": "http://localhost:4873/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
+			"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
 		},
 		"node_modules/@jridgewell/trace-mapping": {
-			"version": "0.3.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
-			"integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
-			"license": "MIT",
+			"version": "0.3.20",
+			"resolved": "http://localhost:4873/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz",
+			"integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==",
 			"dependencies": {
-				"@jridgewell/resolve-uri": "3.1.0",
-				"@jridgewell/sourcemap-codec": "1.4.14"
+				"@jridgewell/resolve-uri": "^3.1.0",
+				"@jridgewell/sourcemap-codec": "^1.4.14"
 			}
 		},
 		"node_modules/@leichtgewicht/ip-codec": {
 			"version": "2.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
-			"integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
+			"integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="
 		},
 		"node_modules/@material/animation": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/animation/-/animation-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-5osi1z4JQIXcklPALbH/zTfOm2pDzHt9Fxm7ZyURy250xIZj6QjULRzPTnzOhC2ropfix9ra2Cfggbf0dcRbEQ==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/animation/-/animation-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-leRf+BcZTfC/iSigLXnYgcHAGvFVQveoJT5+2PIRdyPI/bIG7hhciRgacHRsCKC0sGya81dDblLgdkjSUemYLw==",
 			"dependencies": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/auto-init": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/auto-init/-/auto-init-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-OigQTmrVzkcGvxNjOaIe5oItTFPgrO9xLewvharDI6m6yvO1z7OBnkcW+sFN6ggLNYNxd0O1u9v64vMsmeDABQ==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/auto-init/-/auto-init-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-uxzDq7q3c0Bu1pAsMugc1Ik9ftQYQqZY+5e2ybNplT8gTImJhNt4M2mMiMHbMANk2l3UgICmUyRSomgPBWCPIA==",
 			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/banner": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/banner/-/banner-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-PqtGp3KWzdu58rWv/DIvSfe38m5YKOBbAAbBinSvgadBb/da+IE1t5F7YPNKE1T5lJsQBGVUYx6QBIeXm+aI/A==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/banner/-/banner-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-SHeVoidCUFVhXANN6MNWxK9SZoTSgpIP8GZB7kAl52BywLxtV+FirTtLXkg/8RUkxZRyRWl7HvQ0ZFZa7QQAyA==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/base": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/base/-/base-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-oOaqb/SfjWwTKsdJUZmeh/Qrs41nIJI0N+zELsxnvbGjSIN1ZMAKYZFPMahqvC68OJ6+5CvJM8PoTNs5l+B8IQ==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/base/-/base-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Fc3vGuOf+duGo22HTRP6dHdc+MUe0VqQfWOuKrn/wXKD62m0QQR2TqJd3rRhCumH557T5QUyheW943M3E+IGfg==",
 			"dependencies": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/button": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/button/-/button-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-Nkekk4edeX+ObVOa7UlwavaHdmckPV5wU4SAJf3iA3R61cmz+KsgAgpzfcwv5WfNhIlc2nLu8QYEecpHdo9d/w==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/button/-/button-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-3AQgwrPZCTWHDJvwgKq7Cj+BurQ4wTjDdGL+FEnIGUAjJDskwi1yzx5tW2Wf/NxIi7IoPFyOY3UB41jwMiOrnw==",
+			"dependencies": {
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/card": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/card/-/card-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-xhyB7XX5KkEiCEqwSPkl58ZGYL6xFdnY62zimyBXJRG/Eaa0Swj3kW20hVCpt4f7c9Zmp8Se27rg8vnKmhvO3g==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/card/-/card-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-nPlhiWvbLmooTnBmV5gmzB0eLWSgLKsSRBYAbIBmO76Okgz1y+fQNLag+lpm/TDaHVsn5fmQJH8e0zIg0rYsQA==",
+			"dependencies": {
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/checkbox": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/checkbox/-/checkbox-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-NFpM3TS924PmVsk2KQLNU95OYCf8ZwYgzeqfnAexU0bEfjUJXINBun2Go0AaeOUMjuvWUe+byjrXgv8SFYbMUA==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/checkbox/-/checkbox-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-4tpNnO1L0IppoMF3oeQn8F17t2n0WHB0D7mdJK9rhrujen/fLbekkIC82APB3fdGtLGg3qeNqDqPsJm1YnmrwA==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/chips": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/chips/-/chips-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-z4ajQ4NnsAQ/Si9tZ4xmxzjj2Qb+vW++4QjCjjjwAGIZbCe0xglAnMh2t66XLJUxt7RoKZuZVEO7ZqcFZpvJFQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/checkbox": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/chips/-/chips-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-fqHKvE5bSWK0bXVkf57MWxZtytGqYBZvvHIOs4JI9HPHEhaJy4CpSw562BEtbm3yFxxALoQknvPW2KYzvADnmA==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"safevalues": "^0.3.4",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/circular-progress": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/circular-progress/-/circular-progress-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-G6qD0nGNtEUwWnAMJuA9INYFpZoKtx7KFjBaPF4Ol2YLHtmShALNAYyn54TMAK8AZ2IpW08PXjGS7Ye88vrdEQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/progress-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/circular-progress/-/circular-progress-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Lxe8BGAxQwCQqrLhrYrIP0Uok10h7aYS3RBXP41ph+5GmwJd5zdyE2t93qm2dyThvU6qKuXw9726Dtq/N+wvZQ==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/progress-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/data-table": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/data-table/-/data-table-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-+wDw1DDDFfAsKAMzs84f/5GCjux39zjNfW8tL4wFbkWNwewmQrG9zaQMJhBpVOtLCrM8Gj6SOgOANqgqoCjvGg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/checkbox": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/linear-progress": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/select": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/data-table/-/data-table-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-j/7qplT9+sUpfe4pyWhPbl01qJA+OoNAG3VMJruBBR461ZBKyTi7ssKH9yksFGZ8eCEPkOsk/+kDxsiZvRWkeQ==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/linear-progress": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/select": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/density": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/density/-/density-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-661yEVRMGrlq6S6WuSbPRO+ZwpdUOg2glCc7y96doM6itSLOa3UEAldjOLfsYZVB74GnKCiuDp//QmfoRyYTfA==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/density/-/density-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Zt3u07fXrBWLW06Tl5fgvjicxNQMkFdawLyNTzZ5TvbXfVkErILLePwwGaw8LNcvzqJP6ABLA8jiR+sKNoJQCg==",
 			"dependencies": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/dialog": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/dialog/-/dialog-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-szn0dHnfeQTSOC6SSRSGAzX6Tnx+4NnSMUwNkXm+3bwjds8ZVK26+DXwLrP5f3ID5F1K5sFsRf2INo5/TNTHyQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/dialog/-/dialog-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-o+9a/fmwJ9+gY3Z/uhj/PMVJDq7it1NTWKJn2GwAKdB+fDkT4hb9qEdcxMPyvJJ5ups+XiKZo03+tZrD+38c1w==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/dom": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/dom/-/dom-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-7pEJLYov+tGgfuD8mZxoVU6rWtPI8ppjTAhz+F27Hz9FG0JETMWTKpDPBXLnKvX7vhIxL83GvZ9geNHCe8Hfog==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/dom/-/dom-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-ly78R7aoCJtundSUu0UROU+5pQD5Piae0Y1MkN6bs0724azeazX1KeXFeaf06JOXnlr5/41ol+fSUPowjoqnOg==",
 			"dependencies": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/drawer": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/drawer/-/drawer-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-/KMckLf1PYU/H3PXnS4e0aFl03qG3JlSv4LGgX6juJufcONqGTl/m63EMO/L/eUy6H1CRrXmVDjik/jzHLyDhg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/drawer/-/drawer-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-PFL4cEFnt7VTxDsuspFVNhsFDYyumjU0VWfj3PWB7XudsEfQ3lo85D3HCEtTTbRsCainGN8bgYNDNafLBqiigw==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/elevation": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/elevation/-/elevation-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-WDF8SsRtq3rXUbVVbd9K4DUijIPH0bUFSOreVYxudpuxAfTlDS5+aeS1EK9UIBFYLuba4u5wVT2tDv6e1RTfrQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/elevation/-/elevation-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Ro+Pk8jFuap+T0B0shA3xI1hs2b89dNQ2EIPCNjNMp87emHKAzJfhKb7EZGIwv3+gFLlVaLyIVkb94I89KLsyg==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/fab": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/fab/-/fab-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-KCu87rWOKEAe9vZcAm6K8XazYSWPNjMG+OhrbPjHW6bCO7as1YCgtmkBkhff7csY/rFmcVpIy884xtUfLmSudQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/fab/-/fab-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-dvU0KWMRglwJEQwmQtFAmJcAjzg9VFF6Aqj78bJYu/DAIGFJ1VTTTSgoXM/XCm1YyQEZ7kZRvxBO37CH54rSDg==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/feature-targeting": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/feature-targeting/-/feature-targeting-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-HyH1erNTSjS63sigNSUMaCd0nJhTNdDFeC+myrxwtDaQm+uYJ8troCNtQM3g6mx0XATNtX5aTOoPmrM6yVVi1A==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/feature-targeting/-/feature-targeting-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-wkDjVcoVEYYaJvun28IXdln/foLgPD7n9ZC9TY76GErGCwTq+HWpU6wBAAk+ePmpRFDayw4vI4wBlaWGxLtysQ==",
 			"dependencies": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/floating-label": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/floating-label/-/floating-label-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-f7TPp6bKpGvV3sYYiZHSGlrixXKkXXITW3Esp7KB9jRq42c0H82novmdwvY0eTef4ootmA2JEysr78KQfHBUPg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/floating-label/-/floating-label-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-bUWPtXzZITOD/2mkvLkEPO1ngDWmb74y0Kgbz6llHLOQBtycyJIpuoQJ1q2Ez0NM/tFLwPphhAgRqmL3YQ/Kzw==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/focus-ring": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/focus-ring/-/focus-ring-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-ikw2RVUfgzXChpWIzPH1VzRvTjYb5ZKj4H+CZf7jqPUXMstFOZg90Bp7ARLZHqYiyNMuUq3zUTHozS6iHorSqg==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/focus-ring/-/focus-ring-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-cZHThVose3GvAlJzpJoBI1iqL6d1/Jj9hXrR+r8Mwtb1hBIUEG3hxfsRd4vGREuzROPlf0OgNf/V+YHoSwgR5w==",
 			"dependencies": {
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0"
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0"
 			}
 		},
 		"node_modules/@material/form-field": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/form-field/-/form-field-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-vpF9N/uq5no/7+8GAbEH0868FhOuBgxAWRr1Sfb+jthKfBr8OS/wPU/AHzZHdHdAm7PQynbeOXfDsX2dI//PDA==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/form-field/-/form-field-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-+JFXy5X44Gue1CbZZAQ6YejnI203lebYwL0i6k0ylDpWHEOdD5xkF2PyHR28r9/65Ebcbwbff6q7kI1SGoT7MA==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/icon-button": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/icon-button/-/icon-button-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-wMI+XGzmIN/o2ePBKg2hLyx7H4pXCRAyyIKMQS1FMp1UKa2tYmiHVX/V8skhKwCqxg3i6Ls/LxMjfPxTR18WvQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/icon-button/-/icon-button-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-1a0MHgyIwOs4RzxrVljsqSizGYFlM1zY2AZaLDsgT4G3kzsplTx8HZQ022GpUCjAygW+WLvg4z1qAhQHvsbqlw==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/image-list": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/image-list/-/image-list-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-Ol+uaHYBe5R/cgzlfh5ONnMVX0wO6fV74JMUcQCQlxP6lXau/edARo4tkRc7A7UJUkU3VRv0EpEjLoCRNUPGaA==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/image-list/-/image-list-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-WKWmiYap2iu4QdqmeUSliLlN4O2Ueqa0OuVAYHn/TCzmQ2xmnhZ1pvDLbs6TplpOmlki7vFfe+aSt5SU9gwfOQ==",
+			"dependencies": {
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/layout-grid": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/layout-grid/-/layout-grid-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-ALXE1mqFNb/RB2lVRQ3/r1Aufw2mFZnOjRE+boYDVepmAG/xWyPCyaGoavELJF5l4GAb0tXi8wA/8HeGbLOpuA==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/layout-grid/-/layout-grid-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-5GqmT6oTZhUGWIb+CLD0ZNyDyTiJsr/rm9oRIi3+vCujACwxFkON9tzBlZohdtFS16nuzUusthN6Jt9UrJcN6Q==",
 			"dependencies": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/line-ripple": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/line-ripple/-/line-ripple-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-7hRx8C/e9i0P6pgQpNOMfTwSS2r1fwEvBL72QDVGLtLuoKKwsjjgP6Z0Jat/GeHJe87u9LQvGBoD4upt+of/HA==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/line-ripple/-/line-ripple-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-8S30WXEuUdgDdBulzUDlPXD6qMzwCX9SxYb5mGDYLwl199cpSGdXHtGgEcCjokvnpLhdZhcT1Dsxeo1g2Evh5Q==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/linear-progress": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/linear-progress/-/linear-progress-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-iJclt7mKmcMk6pqD7ocXKfCWZhqBoODp7N593jYlxVpTJuEz2wiVAjZUDn/YGj/Uz3CRH+2YFfOiLr9pwWjhDg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/progress-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/linear-progress/-/linear-progress-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-6EJpjrz6aoH2/gXLg9iMe0yF2C42hpQyZoHpmcgTLKeci85ktDvJIjwup8tnk8ULQyFiGiIrhXw2v2RSsiFjvQ==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/progress-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/list": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/list/-/list-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-rQ+FCSdzmwTcT00IYE0uRV3CS4oGSccKFl9hkcF+aHFW61L7ORh/SCGUDPrEfQFrFkMn5f8qroVJjpUAMXBz4g==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/list/-/list-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-TQ1ppqiCMQj/P7bGD4edbIIv4goczZUoiUAaPq/feb1dflvrFMzYqJ7tQRRCyBL8nRhJoI2x99tk8Q2RXvlGUQ==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/menu": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/menu/-/menu-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-r7wzDLSGSI9629/mfpvsMzkVxpmV75kcD3IrW0Pcu6/Bv/1xi0EvjcUXzNJJoQlwN4Zj35Ymz/PCjZkIDIz68Q==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu-surface": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/menu/-/menu-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-IlAh61xzrzxXs38QZlt74UYt8J431zGznSzDtB1Fqs6YFNd11QPKoiRXn1J2Qu/lUxbFV7i8NBKMCKtia0n6/Q==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/menu-surface": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/menu-surface/-/menu-surface-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-RVO5GAYcfWPaKwxsF/NhUAmrYXQCQBKvRQW0TIlbmAJz6lcFeTs6YZqF3u1C7qrL3ZQGz+sur/7ywj6QU0oMow==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/menu-surface/-/menu-surface-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-dMtSPN+olTWE+08M5qe4ea1IZOhVryYqzK0Gyb2u1G75rSArUxCOB5rr6OC/ST3Mq3RS6zGuYo7srZt4534K9Q==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/notched-outline": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/notched-outline/-/notched-outline-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-9YHcBkvJLPVYzkHcWoTpBZAFrEd+j1hjhGxLhh0LuNrZe8VroUkZD1TTnUAPHRG3os6EqEWWaKb0RN+aPIF2yQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/notched-outline/-/notched-outline-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-WuurMg44xexkvLTBTnsO0A+qnzFjpcPdvgWBGstBepYozsvSF9zJGdb1x7Zv1MmqbpYh/Ohnuxtb/Y3jOh6irg==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/progress-indicator": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/progress-indicator/-/progress-indicator-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-c0icji4faeNWUoqGENGC7Hav0Puxh0RwXIDVizffaUxKIGbajpIp5+4Zop73fK/xFLGMB/npg7TbP+aCGjQ3fw==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/progress-indicator/-/progress-indicator-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-uOnsvqw5F2fkeTnTl4MrYzjI7KCLmmLyZaM0cgLNuLsWVlddQE+SGMl28tENx7DUK3HebWq0FxCP8f25LuDD+w==",
 			"dependencies": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/radio": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/radio/-/radio-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-U3Eh8sNUA8trDla1Bq8Bo02foxYvtoewaKeF8A8tAju81XZ4jRiftfOsOWZDZEHCVbbCB2QwvutvFlnay5n+Aw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/radio/-/radio-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-ehzOK+U1IxQN+OQjgD2lsnf1t7t7RAwQzeO6Czkiuid29ookYbQynWuLWk7NW8H8ohl7lnmfqTP1xSNkkL/F0g==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/ripple": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/ripple/-/ripple-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-RyePu7SjIm/OuyyEieZ/gxiPYkNZOZHeid72WRcN9ofdlljj2pifcdPvcfZA+v/DMS33xo5GjG2L/Qj6ClWrKw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/ripple/-/ripple-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-JfLW+g3GMVDv4cruQ19+HUxpKVdWCldFlIPw1UYezz2h3WTNDy05S3uP2zUdXzZ01C3dkBFviv4nqZ0GCT16MA==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/rtl": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/rtl/-/rtl-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-NqdJl8Ayupp1Th+vCNCpVQHbUFOuF7TCte9LD1norTIBUF/QizIxWby2W5uUEiPbnh5j9PmE1CJtfLwKun3pcw==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/rtl/-/rtl-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-SkKLNLFp5QtG7/JEFg9R92qq4MzTcZ5As6sWbH7rRg6ahTHoJEuqE+pOb9Vrtbj84k5gtX+vCYPvCILtSlr2uw==",
 			"dependencies": {
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/segmented-button": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/segmented-button/-/segmented-button-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-bEGgg8vgXNLyukyV8HRjFMuQ6t6nm5LQ4Pgm22um61Yc8qyi0BOqV41OR4SVdUrUqZxh1aVD+p+4NN03+LfQXw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/segmented-button/-/segmented-button-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-YDwkCWP9l5mIZJ7pZJZ2hMDxfBlIGVJ+deNzr8O+Z7/xC5LGXbl4R5aPtUVHygvXAXxpf5096ZD+dSXzYzvWlw==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/select": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/select/-/select-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-kf178/2TeEinTv0mgmSBcmmExQ2h7a7dtR1E3WuqQgisJ/R6+zVLMkC2CnfIyzxYX2vkuUTG0ue3Reh/6XiqSg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/line-ripple": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu": "15.0.0-canary.684e33d25.0",
-				"@material/menu-surface": "15.0.0-canary.684e33d25.0",
-				"@material/notched-outline": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/select/-/select-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-unfOWVf7T0sixVG+3k3RTuATfzqvCF6QAzA6J9rlCh/Tq4HuIBNDdV4z19IVu4zwmgWYxY0iSvqWUvdJJYwakQ==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/shape": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/shape/-/shape-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-aEelpaTFmpnCji3TUGP9bVCS/bRVjUmLTHBPZtuu1gOrUVVtJ6kYOg73dZNJF+XOoNL2yOX/LRcKwsop29tptA==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/shape/-/shape-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Dsvr771ZKC46ODzoixLdGwlLEQLfxfLrtnRojXABoZf5G3o9KtJU+J+5Ld5aa960OAsCzzANuaub4iR88b1guA==",
 			"dependencies": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/slider": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/slider/-/slider-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-WVyK+2pSNSZmj07M2K/a3TADoQ9FBCndfNC/vE7/wGIg4dddJJK5KvQ+yruf9R2cSzTL/S1sZ5WpyyeM8E9HTw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/slider/-/slider-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-3AEu+7PwW4DSNLndue47dh2u7ga4hDJRYmuu7wnJCIWJBnLCkp6C92kNc4Rj5iQY2ftJio5aj1gqryluh5tlYg==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/snackbar": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/snackbar/-/snackbar-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-itO+DCkOannZzR1/cCHcqAm7ifhuFvXmDItNoA8qLEcAyJDJJRkhpwj3XQ01yuo9gBFcSctp7Txt7e+Hncm/Jg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/snackbar/-/snackbar-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-TwwQSYxfGK6mc03/rdDamycND6o+1p61WNd7ElZv1F1CLxB4ihRjbCoH7Qo+oVDaP8CTpjeclka+24RLhQq0mA==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/switch": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/switch/-/switch-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-Jxi0gl92yvvZZsAPxvVHzXx2ga+T/djMow98jvEczmpUorWnAhgiCr9CsSSRoosahWyRB8NLZOxUQrACxvffjw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/switch/-/switch-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-OjUjtT0kRz1ASAsOS+dNzwMwvsjmqy5edK57692qmrP6bL4GblFfBDoiNJ6t0AN4OaKcmL5Hy/xNrTdOZW7Qqw==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
 				"safevalues": "^0.3.4",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/tab": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab/-/tab-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-WQL3wj9syHNcfe8KbgGGUcA34M8C/xZ+n0Fkkh8Kk6puVwaU+xqUNihsxPY6YzKpmh4PZ4oJaBdiN8zvFT1zqQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab/-/tab-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-s/L9otAwn/pZwVQZBRQJmPqYeNbjoEbzbjMpDQf/VBG/6dJ+aP03ilIBEkqo8NVnCoChqcdtVCoDNRtbU+yp6w==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/tab-bar": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab-bar/-/tab-bar-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-SW/cMaDsIGGkM1ag3A7GJRlmr8eXmObWsvitQJzh6Azr5zzZtSI+GQygkMesAEE1gbpqOVN8d40rh3H7VVIAcA==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/tab": "15.0.0-canary.684e33d25.0",
-				"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/tab-scroller": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab-bar/-/tab-bar-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Xmtq0wJGfu5k+zQeFeNsr4bUKv7L+feCmUp/gsapJ655LQKMXOUQZtSv9ZqWOfrCMy55hoF1CzGFV+oN3tyWWQ==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-scroller": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/tab-indicator": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab-indicator/-/tab-indicator-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-kKICqSPqOlaf0lzaFFCmuOqPXJC+cK48Qmsc+m5o6fJhkmuZRCYpIwB2JeP+uZSOq/bTH+SrPtCtnVlgWg6ksA==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab-indicator/-/tab-indicator-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-despCJYi1GrDDq7F2hvLQkObHnSLZPPDxnOzU16zJ6FNYvIdszgfzn2HgAZ6pl5hLOexQ8cla6cAqjTDuaJBhQ==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/tab-scroller": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab-scroller/-/tab-scroller-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-H6EU/TSiK/M2DyyORX5GEtXD9rKYxTMHC2VxsNWARPMFJGzgeW2ugYkFv+rKI1/c0bs0CJ4e+qFnOlBsQXZvyQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/tab": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab-scroller/-/tab-scroller-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-QWHG/EWxirj4V9u2IHz+OSY9XCWrnNrPnNgEufxAJVUKV/A8ma1DYeFSQqxhX709R8wKGdycJksg0Flkl7Gq7w==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/textfield": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/textfield/-/textfield-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-OvgpDXjvpyJTtAWskO69IDybFvDNzr9w2PN/Fk7yFm+uNVupaWz1Ew8lZ4gGslaTNSVmh2XcsvmzxcLINSiiNg==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/line-ripple": "15.0.0-canary.684e33d25.0",
-				"@material/notched-outline": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/textfield/-/textfield-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-R3qRex9kCaZIAK8DuxPnVC42R0OaW7AB7fsFknDKeTeVQvRcbnV8E+iWSdqTiGdsi6QQHifX8idUrXw+O45zPw==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/theme": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/theme/-/theme-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-AZxaXXAvRKzAi20RlMxzt2U5UmkCWyv7DMWEBXsxtG5Tk54mi1HsbVUp3fxDPTlmL7Pq8p1/DESg/o7TgRCVlw==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/theme/-/theme-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-CpUwXGE0dbhxQ45Hu9r9wbJtO/MAlv5ER4tBHA9tp/K+SU+lDgurBE2touFMg5INmdfVNtdumxb0nPPLaNQcUg==",
 			"dependencies": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/tokens": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tokens/-/tokens-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-wVwbQOTCXDPKYPdHQHLr026y36MMFelID1CmbfRk6mSol4O8yE9U0fXcShfRDW8Qo5E3X31w9c2A6T3neJY7wQ==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tokens/-/tokens-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-nbEuGj05txWz6ZMUanpM47SaAD7soyjKILR+XwDell9Zg3bGhsnexCNXPEz2fD+YgomS+jM5XmIcaJJHg/H93Q==",
 			"dependencies": {
-				"@material/elevation": "15.0.0-canary.684e33d25.0"
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0"
 			}
 		},
 		"node_modules/@material/tooltip": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tooltip/-/tooltip-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-dtm26QjxyQdinc8btgz6yys07b7bUW4FZgNF2EBPeGrICrPg7jf+JEvDziz5g8VMaTBQLOQRSCGy0MKuRlOjLw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tooltip/-/tooltip-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-UzuXp0b9NuWuYLYpPguxrjbJnCmT/Cco8CkjI/6JajxaeA3o2XEBbQfRMTq8PTafuBjCHTc0b0mQY7rtxUp1Gg==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"safevalues": "^0.3.4",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/top-app-bar": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/top-app-bar/-/top-app-bar-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-1M+oupUxflfW7u81P1XlxoLZB8bLzwtpKofIfDNRbEsiKhlLTERJR3Yak3BGE9xakNMysAaBHlkb5MrN5bNPFw==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/top-app-bar/-/top-app-bar-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-vJWjsvqtdSD5+yQ/9vgoBtBSCvPJ5uF/DVssv8Hdhgs1PYaAcODUi77kdi0+sy/TaWyOsTkQixqmwnFS16zesA==",
+			"dependencies": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/touch-target": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/touch-target/-/touch-target-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-zdE69Slg8+T7sTn1OwqZ6H7WBYac9mxJ/JlJqfTqthzIjZRcCxBSYymQJcDHjsrPnUojOtr9U4Tpm5YZ96TEkQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/touch-target/-/touch-target-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-AqYh9fjt+tv4ZE0C6MeYHblS2H+XwLbDl2mtyrK0DOEnCVQk5/l5ImKDfhrUdFWHvS4a5nBM4AA+sa7KaroLoA==",
+			"dependencies": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@material/typography": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/typography/-/typography-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-aVnvgMwcfNa/K4wujzpKDIxjGl2hbkEL+m+OKDSQqWYjKcP9QrbzCXJruJBqxrBoPRHLbqo47k5f9uT8raSgjw==",
-			"license": "MIT",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/typography/-/typography-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-CKsG1zyv34AKPNyZC8olER2OdPII64iR2SzQjpqh1UUvmIFiMPk23LvQ1OnC5aCB14pOXzmVgvJt31r9eNdZ6Q==",
 			"dependencies": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"node_modules/@ngrx/component-store": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/component-store/-/component-store-15.0.0.tgz",
-			"integrity": "sha512-j6Xdch4z54NCXYUKBAJYp2d3F7IObnqJ2dcsYqNhlXE5VUUtZPY1i75RJfMKuBCoSByRVnv1f/OkOxrPnvXp+g==",
-			"license": "MIT",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/component-store/-/component-store-16.0.1.tgz",
+			"integrity": "sha512-c52V2bHnKV1MRjA+270oEpRa9hTUD7xP8t1eElYzV0ISisILO8xfWB9/C6XOJtjkK6+j6tHQmtiIGK9gZyIh3g==",
 			"dependencies": {
 				"tslib": "^2.0.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "^15.0.0",
+				"@angular/core": "^16.0.0",
 				"rxjs": "^6.5.3 || ^7.5.0"
 			}
 		},
 		"node_modules/@ngrx/effects": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/effects/-/effects-15.0.0.tgz",
-			"integrity": "sha512-EfYmGYFF1bNLPCRPnfAZnppT47RPwpprZK6HSQQ1fvV0sA0FYKQilg93ictNhDv+0IhMBZJEbR/hBMYyi4rkBg==",
-			"license": "MIT",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/effects/-/effects-16.0.1.tgz",
+			"integrity": "sha512-hpmON8p7kT44jIiruLBy3raFkYhNzQ45was0puKPkGhv41VrAoo44UcEn4Aysdx5yHaJc/CMCtI/+emFIpqgGA==",
 			"dependencies": {
 				"tslib": "^2.0.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "^15.0.0",
-				"@ngrx/store": "15.0.0",
+				"@angular/core": "^16.0.0",
+				"@ngrx/store": "16.0.1",
 				"rxjs": "^6.5.3 || ^7.5.0"
 			}
 		},
 		"node_modules/@ngrx/entity": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/entity/-/entity-15.0.0.tgz",
-			"integrity": "sha512-hzturyYclwDazAVc9HzLcQw03uSql7HkwLJDMhivUIal27BDcALM0554szzhWW4M/pn43FWX9lAiW0s7zysD+w==",
-			"license": "MIT",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/entity/-/entity-16.0.1.tgz",
+			"integrity": "sha512-LUqcFnH9+Civwq5F3bQ5CIrev6NYG89q918kDnM2ETmhIm7penjLmSj5uR8C4Byl14MpXArKaQuHQeMWovewFQ==",
 			"dependencies": {
 				"tslib": "^2.0.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "^15.0.0",
-				"@ngrx/store": "15.0.0",
+				"@angular/core": "^16.0.0",
+				"@ngrx/store": "16.0.1",
 				"rxjs": "^6.5.3 || ^7.5.0"
 			}
 		},
 		"node_modules/@ngrx/router-store": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/router-store/-/router-store-15.0.0.tgz",
-			"integrity": "sha512-WBgT2uI/CejfYfdi3cjDsp9Q5UZTFnTcTGMTDFT8HujrCD75PxVw8ad9k2GMqp7j96qE13xi+8VRknQyUPx3HA==",
-			"license": "MIT",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/router-store/-/router-store-16.0.1.tgz",
+			"integrity": "sha512-2lqKK3d6g15VwBH09aIgTEKSGZ2CYcflpYyaHVja0GAg/iGPpc69P9fF76Z3GomsuMD2g8dCYYoFn6fbrqJp+Q==",
 			"dependencies": {
 				"tslib": "^2.0.0"
 			},
 			"peerDependencies": {
-				"@angular/common": "^15.0.0",
-				"@angular/core": "^15.0.0",
-				"@angular/router": "^15.0.0",
-				"@ngrx/store": "15.0.0",
+				"@angular/common": "^16.0.0",
+				"@angular/core": "^16.0.0",
+				"@angular/router": "^16.0.0",
+				"@ngrx/store": "16.0.1",
 				"rxjs": "^6.5.3 || ^7.5.0"
 			}
 		},
 		"node_modules/@ngrx/schematics": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/schematics/-/schematics-15.0.0.tgz",
-			"integrity": "sha512-P34CBkJaMWTfcaxf7OHF1zH+qg7rY1re4tWk5LrZAFFI3LMv8hhM1peWQehENPrbNWudo6yMr8HIU7ygnpBWZQ==",
-			"dev": true,
-			"license": "MIT",
-			"peerDependencies": {
-				"@angular-devkit/core": "15.0.0",
-				"@angular-devkit/schematics": "14.2.9"
-			}
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/schematics/-/schematics-16.0.1.tgz",
+			"integrity": "sha512-NLRSQF6kjgVFi5/JVTFU6PuuMrQ4lL6SIK81ZPCFEIm3wZH0e4FcQhsKe0D/gqoENTunFquRR4PWr9tdbsa5pg==",
+			"dev": true
 		},
 		"node_modules/@ngrx/store": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/store/-/store-15.0.0.tgz",
-			"integrity": "sha512-zGEK7pgL9X1M2d+tF5tJRjN9dUibfPnyAFcI0+375gBkUSU2gJxuphB0NoGPVJMtLFsW+5yI4+kjui7M6nsaYQ==",
-			"license": "MIT",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/store/-/store-16.0.1.tgz",
+			"integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==",
 			"dependencies": {
 				"tslib": "^2.0.0"
 			},
 			"peerDependencies": {
-				"@angular/core": "^15.0.0",
+				"@angular/core": "^16.0.0",
 				"rxjs": "^6.5.3 || ^7.5.0"
 			}
 		},
 		"node_modules/@ngrx/store-devtools": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/store-devtools/-/store-devtools-15.0.0.tgz",
-			"integrity": "sha512-qvMFjPR9joQWN7Z+zhP03TCb4aCVt2l0wuJkZfhwmeaE1f4d5ms8FuOJh1lNEZg7ZyEfVP+XQ737kl59hEQMUA==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/store-devtools/-/store-devtools-16.0.1.tgz",
+			"integrity": "sha512-fOk/etV2ldgPgy3BD7v0yK4ocsxNUx7iktjMOVSvfPY/eg6KsfUy0ObQ2/kJasan32wN9rADCVRD6PzLg1Zo8g==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"tslib": "^2.0.0"
 			},
 			"peerDependencies": {
-				"@ngrx/store": "15.0.0",
+				"@ngrx/store": "16.0.1",
 				"rxjs": "^6.5.3 || ^7.5.0"
 			}
 		},
 		"node_modules/@ngtools/webpack": {
-			"version": "15.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngtools/webpack/-/webpack-15.1.5.tgz",
-			"integrity": "sha512-/rneUv2A7a473ID6vNMWVEq6ImgITYRmyAwcF4wsrUguRSbQzwuuxEDapakMJaYnb8ejoMahD/1lSKO6ZV1nig==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@ngtools/webpack/-/webpack-16.2.8.tgz",
+			"integrity": "sha512-GeblhLBwXe3qPYa4YHxbo0xujRl1FKkfIusU1mTIhkQBRtZY4Xgz4iMnPIEMJTU3XXGMkS+SCx34lqbwwMhR5A==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			},
 			"peerDependencies": {
-				"@angular/compiler-cli": "^15.0.0",
-				"typescript": ">=4.8.2 <5.0",
+				"@angular/compiler-cli": "^16.0.0",
+				"typescript": ">=4.9.3 <5.2",
 				"webpack": "^5.54.0"
 			}
 		},
@@ -6970,10 +6084,9 @@
 		},
 		"node_modules/@npmcli/fs": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/fs/-/fs-3.1.0.tgz",
+			"resolved": "http://localhost:4873/@npmcli/fs/-/fs-3.1.0.tgz",
 			"integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"semver": "^7.3.5"
 			},
@@ -6982,11 +6095,10 @@
 			}
 		},
 		"node_modules/@npmcli/git": {
-			"version": "4.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/git/-/git-4.0.4.tgz",
-			"integrity": "sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==",
+			"version": "4.1.0",
+			"resolved": "http://localhost:4873/@npmcli/git/-/git-4.1.0.tgz",
+			"integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"@npmcli/promise-spawn": "^6.0.0",
 				"lru-cache": "^7.4.4",
@@ -7003,20 +6115,18 @@
 		},
 		"node_modules/@npmcli/git/node_modules/lru-cache": {
 			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 			"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": ">=12"
 			}
 		},
 		"node_modules/@npmcli/git/node_modules/which": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/which/-/which-3.0.0.tgz",
-			"integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/which/-/which-3.0.1.tgz",
+			"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"isexe": "^2.0.0"
 			},
@@ -7029,10 +6139,9 @@
 		},
 		"node_modules/@npmcli/installed-package-contents": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz",
+			"resolved": "http://localhost:4873/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz",
 			"integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"npm-bundled": "^3.0.0",
 				"npm-normalize-package-bin": "^3.0.0"
@@ -7044,37 +6153,20 @@
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/@npmcli/move-file": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/move-file/-/move-file-2.0.1.tgz",
-			"integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==",
-			"deprecated": "This functionality has been moved to @npmcli/fs",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"mkdirp": "^1.0.4",
-				"rimraf": "^3.0.2"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
 		"node_modules/@npmcli/node-gyp": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz",
+			"resolved": "http://localhost:4873/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz",
 			"integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
 		"node_modules/@npmcli/promise-spawn": {
 			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
+			"resolved": "http://localhost:4873/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
 			"integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"which": "^3.0.0"
 			},
@@ -7083,11 +6175,10 @@
 			}
 		},
 		"node_modules/@npmcli/promise-spawn/node_modules/which": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/which/-/which-3.0.0.tgz",
-			"integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/which/-/which-3.0.1.tgz",
+			"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"isexe": "^2.0.0"
 			},
@@ -7099,11 +6190,10 @@
 			}
 		},
 		"node_modules/@npmcli/run-script": {
-			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/run-script/-/run-script-6.0.0.tgz",
-			"integrity": "sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==",
+			"version": "6.0.2",
+			"resolved": "http://localhost:4873/@npmcli/run-script/-/run-script-6.0.2.tgz",
+			"integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"@npmcli/node-gyp": "^3.0.0",
 				"@npmcli/promise-spawn": "^6.0.0",
@@ -7116,11 +6206,10 @@
 			}
 		},
 		"node_modules/@npmcli/run-script/node_modules/which": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/which/-/which-3.0.0.tgz",
-			"integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/which/-/which-3.0.1.tgz",
+			"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"isexe": "^2.0.0"
 			},
@@ -7132,141 +6221,139 @@
 			}
 		},
 		"node_modules/@nrwl/angular": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/angular/-/angular-15.6.3.tgz",
-			"integrity": "sha512-IHOwDe1T3E35BblBYaUAmQr6iti/HDEnIcHeSCbBcomrDPsMR1RSE1COSDv14dQI90nmU4Jx1eUWiEkoY0FVJA==",
-			"hasInstallScript": true,
-			"license": "MIT",
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/angular/-/angular-16.10.0.tgz",
+			"integrity": "sha512-MT4gYcvsHxNXTIu40CZKVmO7PD42HeJKfQpVOKPZnfRl9Zf38tRtDnC99QxMpVk/4fo9y1hM8ifoDO97WFOBOQ==",
 			"dependencies": {
-				"@angular-devkit/schematics": "~15.1.0",
-				"@nrwl/cypress": "15.6.3",
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/jest": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/webpack": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
-				"@schematics/angular": "~15.1.0",
-				"chalk": "^4.1.0",
-				"chokidar": "^3.5.1",
-				"http-server": "^14.1.0",
-				"ignore": "^5.0.4",
-				"magic-string": "~0.26.2",
-				"minimatch": "3.0.5",
-				"semver": "7.3.4",
-				"ts-node": "10.9.1",
-				"tsconfig-paths": "^4.1.2",
-				"tslib": "^2.3.0",
-				"webpack": "^5.75.0",
-				"webpack-merge": "5.7.3"
-			},
-			"peerDependencies": {
-				"@nguniversal/builders": "~15.1.0",
-				"rxjs": "^6.5.3 || ^7.5.0"
-			},
-			"peerDependenciesMeta": {
-				"@nguniversal/builders": {
-					"optional": true
-				}
+				"@nx/angular": "16.10.0",
+				"tslib": "^2.3.0"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/core": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.6.tgz",
-			"integrity": "sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==",
-			"license": "MIT",
+		"node_modules/@nrwl/cypress": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/cypress/-/cypress-16.10.0.tgz",
+			"integrity": "sha512-ns6VQrrF08XYwZE4OduLVK2rwpN6dNrkVArw4fzJccuZ1g3YxR5JSuxpdBQA3FjKWoo2DybivuQudpIlYGq3UQ==",
 			"dependencies": {
-				"ajv": "8.12.0",
-				"ajv-formats": "2.1.1",
-				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
-				"source-map": "0.7.4"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			},
-			"peerDependencies": {
-				"chokidar": "^3.5.2"
-			},
-			"peerDependenciesMeta": {
-				"chokidar": {
-					"optional": true
-				}
+				"@nx/cypress": "16.10.0"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/core/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"license": "Apache-2.0",
+		"node_modules/@nrwl/devkit": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/devkit/-/devkit-16.10.0.tgz",
+			"integrity": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==",
 			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
+				"@nx/devkit": "16.10.0"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/core/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"license": "0BSD"
+		"node_modules/@nrwl/eslint-plugin-nx": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.10.0.tgz",
+			"integrity": "sha512-w8fHXEatdPHQeP/Yompsdrgz4BJ2BSVaaaulcovzTNJ9KrCCtDyTGY7sihU7qLVcbZtUVq9xoAsSeuTQuOCTDw==",
+			"dev": true,
+			"dependencies": {
+				"@nx/eslint-plugin": "16.10.0"
+			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/schematics": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-15.1.6.tgz",
-			"integrity": "sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==",
-			"license": "MIT",
+		"node_modules/@nrwl/jest": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/jest/-/jest-16.10.0.tgz",
+			"integrity": "sha512-hZuIK3xXh4HaE6/Ny8hGidjkJ4aLZjnQtPDxKD/423gznQe2FdHx3avoSlbOEOx5Oc6sJ9QGGZLcvckKQ5uWww==",
 			"dependencies": {
-				"@angular-devkit/core": "15.1.6",
-				"jsonc-parser": "3.2.0",
-				"magic-string": "0.27.0",
-				"ora": "5.4.1",
-				"rxjs": "6.6.7"
-			},
-			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
+				"@nx/jest": "16.10.0"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/schematics/node_modules/magic-string": {
-			"version": "0.27.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.27.0.tgz",
-			"integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
-			"license": "MIT",
+		"node_modules/@nrwl/js": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/js/-/js-16.10.0.tgz",
+			"integrity": "sha512-asybPpyPrxLLDWWdYzFqbgubLmDKLEhoMz8x9MPOm3CH8v2vlIE6hD0JT19GdJArBPxRB33nhjtu8wmJGz5czw==",
 			"dependencies": {
-				"@jridgewell/sourcemap-codec": "^1.4.13"
-			},
-			"engines": {
-				"node": ">=12"
+				"@nx/js": "16.10.0"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/schematics/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"license": "Apache-2.0",
+		"node_modules/@nrwl/linter": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/linter/-/linter-16.10.0.tgz",
+			"integrity": "sha512-XvMuTeIc2I3630iaqhlV4w3qgABQIo+kv8mT0DbT1HfjjZDm4ST8hrvkdWSf9mCl24vShNL8GDVQVNOX0bZY5A==",
+			"dependencies": {
+				"@nx/linter": "16.10.0"
+			}
+		},
+		"node_modules/@nrwl/tao": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/tao/-/tao-16.10.0.tgz",
+			"integrity": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==",
 			"dependencies": {
-				"tslib": "^1.9.0"
+				"nx": "16.10.0",
+				"tslib": "^2.3.0"
 			},
-			"engines": {
-				"npm": ">=2.0.0"
+			"bin": {
+				"tao": "index.js"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/@angular-devkit/schematics/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"license": "0BSD"
+		"node_modules/@nrwl/webpack": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/webpack/-/webpack-16.10.0.tgz",
+			"integrity": "sha512-oh/8jzytaU2YM6DOvEOt2CysKWpru+fc+M31JGj6gdq1c1wr4feSs1c/rmJ4jAfvYqejrJwyZK96XX1uRo+3RQ==",
+			"dependencies": {
+				"@nx/webpack": "16.10.0"
+			}
 		},
-		"node_modules/@nrwl/angular/node_modules/ansi-styles": {
+		"node_modules/@nrwl/workspace": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/workspace/-/workspace-16.10.0.tgz",
+			"integrity": "sha512-fZeNxhFs/2cm326NebfJIgSI3W4KZN94WGS46wlIBrUUGP5/vwHYsi09Kx6sG1kRkAuZVtgJ33uU2F6xcAWzUA==",
+			"dependencies": {
+				"@nx/workspace": "16.10.0"
+			}
+		},
+		"node_modules/@nx/angular": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/angular/-/angular-16.10.0.tgz",
+			"integrity": "sha512-NkXe6N0vYrd8YexAjDUE9yLVOBtNrXuCnp2HW+QePd0sW5AiUeNeGwy07oStCJwH9xD5Rr5nl3JPrpBFEdNlVg==",
+			"dependencies": {
+				"@nrwl/angular": "16.10.0",
+				"@nx/cypress": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/jest": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@nx/linter": "16.10.0",
+				"@nx/webpack": "16.10.0",
+				"@nx/workspace": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
+				"@typescript-eslint/type-utils": "^5.36.1",
+				"chalk": "^4.1.0",
+				"enquirer": "^2.3.6",
+				"find-cache-dir": "^3.3.2",
+				"ignore": "^5.0.4",
+				"magic-string": "~0.30.2",
+				"minimatch": "3.0.5",
+				"semver": "7.5.3",
+				"tslib": "^2.3.0",
+				"webpack": "^5.80.0",
+				"webpack-merge": "^5.8.0"
+			},
+			"peerDependencies": {
+				"@angular-devkit/build-angular": ">= 14.0.0 < 17.0.0",
+				"@angular-devkit/core": ">= 14.0.0 < 17.0.0",
+				"@angular-devkit/schematics": ">= 14.0.0 < 17.0.0",
+				"@nguniversal/builders": ">= 14.0.0 < 17.0.0",
+				"@schematics/angular": ">= 14.0.0 < 17.0.0",
+				"esbuild": "^0.19.2",
+				"rxjs": "^6.5.3 || ^7.5.0"
+			},
+			"peerDependenciesMeta": {
+				"@nguniversal/builders": {
+					"optional": true
+				},
+				"esbuild": {
+					"optional": true
+				}
+			}
+		},
+		"node_modules/@nx/angular/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -7277,11 +6364,10 @@
 				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/chalk": {
+		"node_modules/@nx/angular/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -7293,11 +6379,10 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/color-convert": {
+		"node_modules/@nx/angular/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -7305,26 +6390,23 @@
 				"node": ">=7.0.0"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/color-name": {
+		"node_modules/@nx/angular/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
-		"node_modules/@nrwl/angular/node_modules/has-flag": {
+		"node_modules/@nx/angular/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/lru-cache": {
+		"node_modules/@nx/angular/node_modules/lru-cache": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -7332,23 +6414,21 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/magic-string": {
-			"version": "0.26.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.26.7.tgz",
-			"integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==",
-			"license": "MIT",
+		"node_modules/@nx/angular/node_modules/magic-string": {
+			"version": "0.30.5",
+			"resolved": "http://localhost:4873/magic-string/-/magic-string-0.30.5.tgz",
+			"integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==",
 			"dependencies": {
-				"sourcemap-codec": "^1.4.8"
+				"@jridgewell/sourcemap-codec": "^1.4.15"
 			},
 			"engines": {
 				"node": ">=12"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/semver": {
-			"version": "7.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-			"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-			"license": "ISC",
+		"node_modules/@nx/angular/node_modules/semver": {
+			"version": "7.5.3",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+			"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 			"dependencies": {
 				"lru-cache": "^6.0.0"
 			},
@@ -7359,11 +6439,10 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/supports-color": {
+		"node_modules/@nx/angular/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -7371,49 +6450,27 @@
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/angular/node_modules/webpack-merge": {
-			"version": "5.7.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-merge/-/webpack-merge-5.7.3.tgz",
-			"integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==",
-			"license": "MIT",
-			"dependencies": {
-				"clone-deep": "^4.0.1",
-				"wildcard": "^2.0.0"
-			},
-			"engines": {
-				"node": ">=10.0.0"
-			}
-		},
-		"node_modules/@nrwl/angular/node_modules/yallist": {
+		"node_modules/@nx/angular/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"license": "ISC"
-		},
-		"node_modules/@nrwl/cli": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/cli/-/cli-15.6.3.tgz",
-			"integrity": "sha512-K4E0spofThZXMnhA6R8hkUTdfqmwSnUE2+DlD5Y3jqsvKTAgwF5U41IFkEouFZCf+dWjy0RA20bWoX48EVFtmQ==",
-			"license": "MIT",
-			"dependencies": {
-				"nx": "15.6.3"
-			}
-		},
-		"node_modules/@nrwl/cypress": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/cypress/-/cypress-15.6.3.tgz",
-			"integrity": "sha512-ZPQ60KTkEgCQaIhaoPICiACfufuE8klwkBSl3bbTL5d6QEYlpTb2M1IeHEYZP1aEKXJlC9Kb6al9lB87peNVkQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
-				"dotenv": "~10.0.0",
-				"semver": "7.3.4"
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
+			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
+		},
+		"node_modules/@nx/cypress": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/cypress/-/cypress-16.10.0.tgz",
+			"integrity": "sha512-suYc5jC6Os0D78Fn2pAIuGOkM6nhIWsSEb94PWwdZWE0XKQiWrgQJZBXDIu3x2zq6oZxYdx8OufUFli8vr4/Tw==",
+			"dependencies": {
+				"@nrwl/cypress": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@nx/linter": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
+				"detect-port": "^1.5.1",
+				"semver": "7.5.3",
+				"tslib": "^2.3.0"
 			},
 			"peerDependencies": {
-				"cypress": ">= 3 < 13"
+				"cypress": ">= 3 < 14"
 			},
 			"peerDependenciesMeta": {
 				"cypress": {
@@ -7421,11 +6478,10 @@
 				}
 			}
 		},
-		"node_modules/@nrwl/cypress/node_modules/lru-cache": {
+		"node_modules/@nx/cypress/node_modules/lru-cache": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -7433,11 +6489,10 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/cypress/node_modules/semver": {
-			"version": "7.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-			"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-			"license": "ISC",
+		"node_modules/@nx/cypress/node_modules/semver": {
+			"version": "7.5.3",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+			"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 			"dependencies": {
 				"lru-cache": "^6.0.0"
 			},
@@ -7448,33 +6503,32 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/cypress/node_modules/yallist": {
+		"node_modules/@nx/cypress/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
+			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 		},
-		"node_modules/@nrwl/devkit": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/devkit/-/devkit-15.6.3.tgz",
-			"integrity": "sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ==",
-			"license": "MIT",
+		"node_modules/@nx/devkit": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/devkit/-/devkit-16.10.0.tgz",
+			"integrity": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==",
 			"dependencies": {
-				"@phenomnomnominal/tsquery": "4.1.1",
+				"@nrwl/devkit": "16.10.0",
 				"ejs": "^3.1.7",
+				"enquirer": "~2.3.6",
 				"ignore": "^5.0.4",
-				"semver": "7.3.4",
+				"semver": "7.5.3",
+				"tmp": "~0.2.1",
 				"tslib": "^2.3.0"
 			},
 			"peerDependencies": {
-				"nx": ">= 14 <= 16"
+				"nx": ">= 15 <= 17"
 			}
 		},
-		"node_modules/@nrwl/devkit/node_modules/lru-cache": {
+		"node_modules/@nx/devkit/node_modules/lru-cache": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -7482,11 +6536,10 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/devkit/node_modules/semver": {
-			"version": "7.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-			"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-			"license": "ISC",
+		"node_modules/@nx/devkit/node_modules/semver": {
+			"version": "7.5.3",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+			"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 			"dependencies": {
 				"lru-cache": "^6.0.0"
 			},
@@ -7497,27 +6550,30 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/devkit/node_modules/yallist": {
+		"node_modules/@nx/devkit/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
+			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 		},
-		"node_modules/@nrwl/eslint-plugin-nx": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-15.6.3.tgz",
-			"integrity": "sha512-UCwyMKlU3shoccNHSeYqF/F9FPm3vMx827Pu2L+Kmkbuy8MhpA20BBpNm/ISXD4w37BBrXgr5e8ATZPuVZTl7A==",
+		"node_modules/@nx/eslint-plugin": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/eslint-plugin/-/eslint-plugin-16.10.0.tgz",
+			"integrity": "sha512-fdOlCrSJK6HfCs+FVXUxzS5gobnGymTU85B3vXPYkVpJwKmq9voX7HBhx9euScRGgXdO9335DIixc/QV6zGpKA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@nrwl/devkit": "15.6.3",
-				"@typescript-eslint/utils": "^5.36.1",
+				"@nrwl/eslint-plugin-nx": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@typescript-eslint/type-utils": "^5.60.1",
+				"@typescript-eslint/utils": "^5.60.1",
 				"chalk": "^4.1.0",
 				"confusing-browser-globals": "^1.0.9",
-				"semver": "7.3.4"
+				"jsonc-eslint-parser": "^2.1.0",
+				"semver": "7.5.3",
+				"tslib": "^2.3.0"
 			},
 			"peerDependencies": {
-				"@typescript-eslint/parser": "^5.29.0",
+				"@typescript-eslint/parser": "^5.60.1",
 				"eslint-config-prettier": "^8.1.0"
 			},
 			"peerDependenciesMeta": {
@@ -7526,12 +6582,64 @@
 				}
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/ansi-styles": {
+		"node_modules/@nx/eslint-plugin/node_modules/@typescript-eslint/type-utils": {
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
+			"integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
+			"dev": true,
+			"dependencies": {
+				"@typescript-eslint/typescript-estree": "5.62.0",
+				"@typescript-eslint/utils": "5.62.0",
+				"debug": "^4.3.4",
+				"tsutils": "^3.21.0"
+			},
+			"engines": {
+				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+			},
+			"funding": {
+				"type": "opencollective",
+				"url": "https://opencollective.com/typescript-eslint"
+			},
+			"peerDependencies": {
+				"eslint": "*"
+			},
+			"peerDependenciesMeta": {
+				"typescript": {
+					"optional": true
+				}
+			}
+		},
+		"node_modules/@nx/eslint-plugin/node_modules/@typescript-eslint/utils": {
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/utils/-/utils-5.62.0.tgz",
+			"integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
+			"dev": true,
+			"dependencies": {
+				"@eslint-community/eslint-utils": "^4.2.0",
+				"@types/json-schema": "^7.0.9",
+				"@types/semver": "^7.3.12",
+				"@typescript-eslint/scope-manager": "5.62.0",
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/typescript-estree": "5.62.0",
+				"eslint-scope": "^5.1.1",
+				"semver": "^7.3.7"
+			},
+			"engines": {
+				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+			},
+			"funding": {
+				"type": "opencollective",
+				"url": "https://opencollective.com/typescript-eslint"
+			},
+			"peerDependencies": {
+				"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+			}
+		},
+		"node_modules/@nx/eslint-plugin/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -7542,12 +6650,11 @@
 				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/chalk": {
+		"node_modules/@nx/eslint-plugin/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -7559,12 +6666,11 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/color-convert": {
+		"node_modules/@nx/eslint-plugin/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -7572,29 +6678,48 @@
 				"node": ">=7.0.0"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/color-name": {
+		"node_modules/@nx/eslint-plugin/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+			"dev": true
+		},
+		"node_modules/@nx/eslint-plugin/node_modules/eslint-scope": {
+			"version": "5.1.1",
+			"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
+			"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
 			"dev": true,
-			"license": "MIT"
+			"dependencies": {
+				"esrecurse": "^4.3.0",
+				"estraverse": "^4.1.1"
+			},
+			"engines": {
+				"node": ">=8.0.0"
+			}
+		},
+		"node_modules/@nx/eslint-plugin/node_modules/estraverse": {
+			"version": "4.3.0",
+			"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
+			"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+			"dev": true,
+			"engines": {
+				"node": ">=4.0"
+			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/has-flag": {
+		"node_modules/@nx/eslint-plugin/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/lru-cache": {
+		"node_modules/@nx/eslint-plugin/node_modules/lru-cache": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -7602,12 +6727,11 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/semver": {
-			"version": "7.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-			"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+		"node_modules/@nx/eslint-plugin/node_modules/semver": {
+			"version": "7.5.3",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+			"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"lru-cache": "^6.0.0"
 			},
@@ -7618,12 +6742,11 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/supports-color": {
+		"node_modules/@nx/eslint-plugin/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -7631,38 +6754,36 @@
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/eslint-plugin-nx/node_modules/yallist": {
+		"node_modules/@nx/eslint-plugin/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
-		"node_modules/@nrwl/jest": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/jest/-/jest-15.6.3.tgz",
-			"integrity": "sha512-pG8ESEJFkgyBGOOVZ6bFohklkDXn7JrDPSjmnoKvcOzprluPS7Nx4Ce5bw7wk2Ul3fqJcpAcH5LAZvb+HtA85w==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/reporters": "28.1.1",
-				"@jest/test-result": "28.1.1",
-				"@nrwl/devkit": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
+		"node_modules/@nx/jest": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/jest/-/jest-16.10.0.tgz",
+			"integrity": "sha512-QseeLjDrl4c9q9Dd/057SXYqd47JVLhD2VQlQDraYwjsHz3lWkzlGaaHy0ZrVu8LSzY7lUUhJMPyYO3qo8wT6A==",
+			"dependencies": {
+				"@jest/reporters": "^29.4.1",
+				"@jest/test-result": "^29.4.1",
+				"@nrwl/jest": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
 				"chalk": "^4.1.0",
-				"dotenv": "~10.0.0",
 				"identity-obj-proxy": "3.0.0",
-				"jest-config": "28.1.1",
-				"jest-resolve": "28.1.1",
-				"jest-util": "28.1.1",
+				"jest-config": "^29.4.1",
+				"jest-resolve": "^29.4.1",
+				"jest-util": "^29.4.1",
 				"resolve.exports": "1.1.0",
 				"tslib": "^2.3.0"
 			}
 		},
-		"node_modules/@nrwl/jest/node_modules/ansi-styles": {
+		"node_modules/@nx/jest/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -7673,11 +6794,10 @@
 				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/jest/node_modules/chalk": {
+		"node_modules/@nx/jest/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -7689,11 +6809,10 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/jest/node_modules/color-convert": {
+		"node_modules/@nx/jest/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -7701,26 +6820,23 @@
 				"node": ">=7.0.0"
 			}
 		},
-		"node_modules/@nrwl/jest/node_modules/color-name": {
+		"node_modules/@nx/jest/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
-		"node_modules/@nrwl/jest/node_modules/has-flag": {
+		"node_modules/@nx/jest/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/jest/node_modules/supports-color": {
+		"node_modules/@nx/jest/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -7728,41 +6844,55 @@
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/js": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/js/-/js-15.6.3.tgz",
-			"integrity": "sha512-OkjpbNAL6732jGPR7Lz/6K6AScqjxMGuZCHmMqmlK0NpSRcOtYJpGsn4XZzPRsWteqXCvY/l3efceiL6eNPmRg==",
-			"license": "MIT",
-			"dependencies": {
-				"@babel/core": "^7.15.0",
-				"@babel/plugin-proposal-class-properties": "^7.14.5",
-				"@babel/plugin-proposal-decorators": "^7.14.5",
-				"@babel/plugin-transform-runtime": "^7.15.0",
-				"@babel/preset-env": "^7.15.0",
-				"@babel/preset-typescript": "^7.15.0",
-				"@babel/runtime": "^7.14.8",
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
+		"node_modules/@nx/js": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/js/-/js-16.10.0.tgz",
+			"integrity": "sha512-27AH0/+XTMzOxVS6oV8Zl7/Rr1UDMYsnCVqoCU9CXp087uxcD4VnBOEjsEUlJKh1RdwGE3K0hBkk7NC1LP+vYQ==",
+			"dependencies": {
+				"@babel/core": "^7.22.9",
+				"@babel/plugin-proposal-class-properties": "^7.18.6",
+				"@babel/plugin-proposal-decorators": "^7.22.7",
+				"@babel/plugin-transform-runtime": "^7.22.9",
+				"@babel/preset-env": "^7.22.9",
+				"@babel/preset-typescript": "^7.22.5",
+				"@babel/runtime": "^7.22.6",
+				"@nrwl/js": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/workspace": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
 				"babel-plugin-const-enum": "^1.0.1",
 				"babel-plugin-macros": "^2.8.0",
 				"babel-plugin-transform-typescript-metadata": "^0.3.1",
 				"chalk": "^4.1.0",
+				"columnify": "^1.6.0",
+				"detect-port": "^1.5.1",
 				"fast-glob": "3.2.7",
 				"fs-extra": "^11.1.0",
 				"ignore": "^5.0.4",
 				"js-tokens": "^4.0.0",
 				"minimatch": "3.0.5",
+				"npm-package-arg": "11.0.1",
+				"npm-run-path": "^4.0.1",
+				"ora": "5.3.0",
+				"semver": "7.5.3",
 				"source-map-support": "0.5.19",
-				"tree-kill": "1.2.2",
+				"ts-node": "10.9.1",
+				"tsconfig-paths": "^4.1.2",
 				"tslib": "^2.3.0"
+			},
+			"peerDependencies": {
+				"verdaccio": "^5.0.4"
+			},
+			"peerDependenciesMeta": {
+				"verdaccio": {
+					"optional": true
+				}
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/ansi-styles": {
+		"node_modules/@nx/js/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -7773,11 +6903,10 @@
 				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/chalk": {
+		"node_modules/@nx/js/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -7789,11 +6918,10 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/color-convert": {
+		"node_modules/@nx/js/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -7801,45 +6929,134 @@
 				"node": ">=7.0.0"
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/color-name": {
+		"node_modules/@nx/js/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+		},
+		"node_modules/@nx/js/node_modules/fast-glob": {
+			"version": "3.2.7",
+			"resolved": "http://localhost:4873/fast-glob/-/fast-glob-3.2.7.tgz",
+			"integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
+			"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.4"
+			},
+			"engines": {
+				"node": ">=8"
+			}
 		},
-		"node_modules/@nrwl/js/node_modules/has-flag": {
+		"node_modules/@nx/js/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/source-map": {
+		"node_modules/@nx/js/node_modules/hosted-git-info": {
+			"version": "7.0.1",
+			"resolved": "http://localhost:4873/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
+			"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
+			"dependencies": {
+				"lru-cache": "^10.0.1"
+			},
+			"engines": {
+				"node": "^16.14.0 || >=18.0.0"
+			}
+		},
+		"node_modules/@nx/js/node_modules/lru-cache": {
+			"version": "10.0.1",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-10.0.1.tgz",
+			"integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
+			"engines": {
+				"node": "14 || >=16.14"
+			}
+		},
+		"node_modules/@nx/js/node_modules/npm-package-arg": {
+			"version": "11.0.1",
+			"resolved": "http://localhost:4873/npm-package-arg/-/npm-package-arg-11.0.1.tgz",
+			"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",
+			"dependencies": {
+				"hosted-git-info": "^7.0.0",
+				"proc-log": "^3.0.0",
+				"semver": "^7.3.5",
+				"validate-npm-package-name": "^5.0.0"
+			},
+			"engines": {
+				"node": "^16.14.0 || >=18.0.0"
+			}
+		},
+		"node_modules/@nx/js/node_modules/ora": {
+			"version": "5.3.0",
+			"resolved": "http://localhost:4873/ora/-/ora-5.3.0.tgz",
+			"integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==",
+			"dependencies": {
+				"bl": "^4.0.3",
+				"chalk": "^4.1.0",
+				"cli-cursor": "^3.1.0",
+				"cli-spinners": "^2.5.0",
+				"is-interactive": "^1.0.0",
+				"log-symbols": "^4.0.0",
+				"strip-ansi": "^6.0.0",
+				"wcwidth": "^1.0.1"
+			},
+			"engines": {
+				"node": ">=10"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/@nx/js/node_modules/semver": {
+			"version": "7.5.3",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+			"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
+			"dependencies": {
+				"lru-cache": "^6.0.0"
+			},
+			"bin": {
+				"semver": "bin/semver.js"
+			},
+			"engines": {
+				"node": ">=10"
+			}
+		},
+		"node_modules/@nx/js/node_modules/semver/node_modules/lru-cache": {
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
+			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+			"dependencies": {
+				"yallist": "^4.0.0"
+			},
+			"engines": {
+				"node": ">=10"
+			}
+		},
+		"node_modules/@nx/js/node_modules/source-map": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+			"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-			"license": "BSD-3-Clause",
 			"engines": {
 				"node": ">=0.10.0"
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/source-map-support": {
+		"node_modules/@nx/js/node_modules/source-map-support": {
 			"version": "0.5.19",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-support/-/source-map-support-0.5.19.tgz",
+			"resolved": "http://localhost:4873/source-map-support/-/source-map-support-0.5.19.tgz",
 			"integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==",
-			"license": "MIT",
 			"dependencies": {
 				"buffer-from": "^1.0.0",
 				"source-map": "^0.6.0"
 			}
 		},
-		"node_modules/@nrwl/js/node_modules/supports-color": {
+		"node_modules/@nx/js/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -7847,16 +7064,23 @@
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/linter": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/linter/-/linter-15.6.3.tgz",
-			"integrity": "sha512-efGOduHbUa/L6MuJLb2SoDwi4hEKpz6lM1X/Yg36dYDjLuJdpLC23K4WwEOQeZL6jkcUerfY65W8NMPinAHWKg==",
-			"license": "MIT",
-			"dependencies": {
-				"@nrwl/devkit": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
+		"node_modules/@nx/js/node_modules/yallist": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
+			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
+		},
+		"node_modules/@nx/linter": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/linter/-/linter-16.10.0.tgz",
+			"integrity": "sha512-G6XBfuMHNHoJDc4n2Gip4fsa9KssT91V5PF2Rd4hILkg4YU8B8mlmHN71stpzwbEyUJtyhyJc5SGgVLrSpRQew==",
+			"dependencies": {
+				"@nrwl/linter": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
 				"tmp": "~0.2.1",
-				"tslib": "^2.3.0"
+				"tslib": "^2.3.0",
+				"typescript": "~5.1.3"
 			},
 			"peerDependencies": {
 				"eslint": "^8.0.0"
@@ -7867,74 +7091,203 @@
 				}
 			}
 		},
-		"node_modules/@nrwl/tao": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/tao/-/tao-15.6.3.tgz",
-			"integrity": "sha512-bDZbPIbU5Mf2BvX0q8GjPxrm1WkYyfW+gp7mLuuJth2sEpZiCr47mSwuGko/y4CKXvIX46VQcAS0pKQMKugXsg==",
-			"license": "MIT",
-			"dependencies": {
-				"nx": "15.6.3"
-			},
-			"bin": {
-				"tao": "index.js"
+		"node_modules/@nx/nx-darwin-arm64": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.10.0.tgz",
+			"integrity": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==",
+			"cpu": [
+				"arm64"
+			],
+			"optional": true,
+			"os": [
+				"darwin"
+			],
+			"engines": {
+				"node": ">= 10"
 			}
 		},
-		"node_modules/@nrwl/webpack": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/webpack/-/webpack-15.6.3.tgz",
-			"integrity": "sha512-/cnUHtMwUE9/FnctI0sQCc9Y/VdS4w15FBSlN1JB+CSF9Sm/CIZ9LzpINGnjqxa+3P2Pz3svx0eyzsBIUFseMA==",
-			"license": "MIT",
+		"node_modules/@nx/nx-darwin-x64": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-darwin-x64/-/nx-darwin-x64-16.10.0.tgz",
+			"integrity": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==",
+			"cpu": [
+				"x64"
+			],
+			"optional": true,
+			"os": [
+				"darwin"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-freebsd-x64": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.10.0.tgz",
+			"integrity": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==",
+			"cpu": [
+				"x64"
+			],
+			"optional": true,
+			"os": [
+				"freebsd"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-linux-arm-gnueabihf": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.10.0.tgz",
+			"integrity": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==",
+			"cpu": [
+				"arm"
+			],
+			"optional": true,
+			"os": [
+				"linux"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-linux-arm64-gnu": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.10.0.tgz",
+			"integrity": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==",
+			"cpu": [
+				"arm64"
+			],
+			"optional": true,
+			"os": [
+				"linux"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-linux-arm64-musl": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.10.0.tgz",
+			"integrity": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==",
+			"cpu": [
+				"arm64"
+			],
+			"optional": true,
+			"os": [
+				"linux"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-linux-x64-gnu": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.10.0.tgz",
+			"integrity": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==",
+			"cpu": [
+				"x64"
+			],
+			"optional": true,
+			"os": [
+				"linux"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-linux-x64-musl": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.10.0.tgz",
+			"integrity": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==",
+			"cpu": [
+				"x64"
+			],
+			"optional": true,
+			"os": [
+				"linux"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-win32-arm64-msvc": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.10.0.tgz",
+			"integrity": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==",
+			"cpu": [
+				"arm64"
+			],
+			"optional": true,
+			"os": [
+				"win32"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/nx-win32-x64-msvc": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.10.0.tgz",
+			"integrity": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==",
+			"cpu": [
+				"x64"
+			],
+			"optional": true,
+			"os": [
+				"win32"
+			],
+			"engines": {
+				"node": ">= 10"
+			}
+		},
+		"node_modules/@nx/webpack": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/webpack/-/webpack-16.10.0.tgz",
+			"integrity": "sha512-rKftYWh4kW6A7svMx73Zg3fJFDS3618cKTZsCkuQWeSE+RMQXjcefeCxYhwvHXc/ehoakCIIBx7jDCR+6NIlzQ==",
 			"dependencies": {
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/js": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
+				"@babel/core": "^7.22.9",
+				"@nrwl/webpack": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
 				"autoprefixer": "^10.4.9",
 				"babel-loader": "^9.1.2",
+				"browserslist": "^4.21.4",
 				"chalk": "^4.1.0",
-				"chokidar": "^3.5.1",
 				"copy-webpack-plugin": "^10.2.4",
 				"css-loader": "^6.4.0",
-				"css-minimizer-webpack-plugin": "^3.4.1",
-				"dotenv": "~10.0.0",
-				"file-loader": "^6.2.0",
+				"css-minimizer-webpack-plugin": "^5.0.0",
 				"fork-ts-checker-webpack-plugin": "7.2.13",
-				"fs-extra": "^11.1.0",
-				"ignore": "^5.0.4",
-				"less": "3.12.2",
-				"less-loader": "^11.1.0",
+				"less": "4.1.3",
+				"less-loader": "11.1.0",
 				"license-webpack-plugin": "^4.0.2",
 				"loader-utils": "^2.0.3",
 				"mini-css-extract-plugin": "~2.4.7",
 				"parse5": "4.0.0",
-				"parse5-html-rewriting-stream": "6.0.1",
 				"postcss": "^8.4.14",
 				"postcss-import": "~14.1.0",
 				"postcss-loader": "^6.1.1",
-				"rxjs": "^6.5.4",
+				"rxjs": "^7.8.0",
 				"sass": "^1.42.1",
 				"sass-loader": "^12.2.0",
 				"source-map-loader": "^3.0.0",
 				"style-loader": "^3.3.0",
-				"stylus": "^0.55.0",
+				"stylus": "^0.59.0",
 				"stylus-loader": "^7.1.0",
 				"terser-webpack-plugin": "^5.3.3",
 				"ts-loader": "^9.3.1",
-				"ts-node": "10.9.1",
-				"tsconfig-paths": "^4.1.2",
 				"tsconfig-paths-webpack-plugin": "4.0.0",
 				"tslib": "^2.3.0",
-				"webpack": "^5.75.0",
+				"webpack": "^5.80.0",
 				"webpack-dev-server": "^4.9.3",
-				"webpack-merge": "^5.8.0",
 				"webpack-node-externals": "^3.0.0",
 				"webpack-subresource-integrity": "^5.1.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/ansi-styles": {
+		"node_modules/@nx/webpack/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -7945,11 +7298,10 @@
 				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/array-union": {
+		"node_modules/@nx/webpack/node_modules/array-union": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-union/-/array-union-3.0.1.tgz",
+			"resolved": "http://localhost:4873/array-union/-/array-union-3.0.1.tgz",
 			"integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=12"
 			},
@@ -7957,11 +7309,10 @@
 				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/chalk": {
+		"node_modules/@nx/webpack/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -7973,11 +7324,10 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/color-convert": {
+		"node_modules/@nx/webpack/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -7985,17 +7335,15 @@
 				"node": ">=7.0.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/color-name": {
+		"node_modules/@nx/webpack/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
-		"node_modules/@nrwl/webpack/node_modules/copy-webpack-plugin": {
+		"node_modules/@nx/webpack/node_modules/copy-webpack-plugin": {
 			"version": "10.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz",
+			"resolved": "http://localhost:4873/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz",
 			"integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==",
-			"license": "MIT",
 			"dependencies": {
 				"fast-glob": "^3.2.7",
 				"glob-parent": "^6.0.1",
@@ -8015,11 +7363,10 @@
 				"webpack": "^5.1.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/cosmiconfig": {
+		"node_modules/@nx/webpack/node_modules/cosmiconfig": {
 			"version": "7.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+			"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
 			"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
-			"license": "MIT",
 			"dependencies": {
 				"@types/parse-json": "^4.0.0",
 				"import-fresh": "^3.2.1",
@@ -8031,11 +7378,10 @@
 				"node": ">=10"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/enhanced-resolve": {
-			"version": "5.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
-			"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
-			"license": "MIT",
+		"node_modules/@nx/webpack/node_modules/enhanced-resolve": {
+			"version": "5.15.0",
+			"resolved": "http://localhost:4873/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
+			"integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
 			"dependencies": {
 				"graceful-fs": "^4.2.4",
 				"tapable": "^2.2.0"
@@ -8044,11 +7390,10 @@
 				"node": ">=10.13.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/glob-parent": {
+		"node_modules/@nx/webpack/node_modules/glob-parent": {
 			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-6.0.2.tgz",
+			"resolved": "http://localhost:4873/glob-parent/-/glob-parent-6.0.2.tgz",
 			"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
-			"license": "ISC",
 			"dependencies": {
 				"is-glob": "^4.0.3"
 			},
@@ -8056,11 +7401,10 @@
 				"node": ">=10.13.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/globby": {
+		"node_modules/@nx/webpack/node_modules/globby": {
 			"version": "12.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globby/-/globby-12.2.0.tgz",
+			"resolved": "http://localhost:4873/globby/-/globby-12.2.0.tgz",
 			"integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==",
-			"license": "MIT",
 			"dependencies": {
 				"array-union": "^3.0.1",
 				"dir-glob": "^3.0.1",
@@ -8076,20 +7420,18 @@
 				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/has-flag": {
+		"node_modules/@nx/webpack/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/iconv-lite": {
+		"node_modules/@nx/webpack/node_modules/iconv-lite": {
 			"version": "0.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/iconv-lite/-/iconv-lite-0.6.3.tgz",
+			"resolved": "http://localhost:4873/iconv-lite/-/iconv-lite-0.6.3.tgz",
 			"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
-			"license": "MIT",
 			"dependencies": {
 				"safer-buffer": ">= 2.1.2 < 3.0.0"
 			},
@@ -8097,41 +7439,10 @@
 				"node": ">=0.10.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/less": {
-			"version": "3.12.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/less/-/less-3.12.2.tgz",
-			"integrity": "sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==",
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.10.0"
-			},
-			"bin": {
-				"lessc": "bin/lessc"
-			},
-			"engines": {
-				"node": ">=6"
-			},
-			"optionalDependencies": {
-				"errno": "^0.1.1",
-				"graceful-fs": "^4.1.2",
-				"image-size": "~0.5.0",
-				"make-dir": "^2.1.0",
-				"mime": "^1.4.1",
-				"native-request": "^1.0.5",
-				"source-map": "~0.6.0"
-			}
-		},
-		"node_modules/@nrwl/webpack/node_modules/less/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"license": "0BSD"
-		},
-		"node_modules/@nrwl/webpack/node_modules/loader-utils": {
+		"node_modules/@nx/webpack/node_modules/loader-utils": {
 			"version": "2.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/loader-utils/-/loader-utils-2.0.4.tgz",
+			"resolved": "http://localhost:4873/loader-utils/-/loader-utils-2.0.4.tgz",
 			"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
-			"license": "MIT",
 			"dependencies": {
 				"big.js": "^5.2.2",
 				"emojis-list": "^3.0.0",
@@ -8141,35 +7452,10 @@
 				"node": ">=8.9.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/make-dir": {
-			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-dir/-/make-dir-2.1.0.tgz",
-			"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
-			"license": "MIT",
-			"optional": true,
-			"dependencies": {
-				"pify": "^4.0.1",
-				"semver": "^5.6.0"
-			},
-			"engines": {
-				"node": ">=6"
-			}
-		},
-		"node_modules/@nrwl/webpack/node_modules/make-dir/node_modules/semver": {
-			"version": "5.7.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-5.7.1.tgz",
-			"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
-			"license": "ISC",
-			"optional": true,
-			"bin": {
-				"semver": "bin/semver"
-			}
-		},
-		"node_modules/@nrwl/webpack/node_modules/mini-css-extract-plugin": {
+		"node_modules/@nx/webpack/node_modules/mini-css-extract-plugin": {
 			"version": "2.4.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz",
+			"resolved": "http://localhost:4873/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz",
 			"integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==",
-			"license": "MIT",
 			"dependencies": {
 				"schema-utils": "^4.0.0"
 			},
@@ -8184,27 +7470,15 @@
 				"webpack": "^5.0.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/parse5": {
+		"node_modules/@nx/webpack/node_modules/parse5": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-4.0.0.tgz",
-			"integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==",
-			"license": "MIT"
-		},
-		"node_modules/@nrwl/webpack/node_modules/pify": {
-			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pify/-/pify-4.0.1.tgz",
-			"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
-			"license": "MIT",
-			"optional": true,
-			"engines": {
-				"node": ">=6"
-			}
+			"resolved": "http://localhost:4873/parse5/-/parse5-4.0.0.tgz",
+			"integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA=="
 		},
-		"node_modules/@nrwl/webpack/node_modules/postcss-loader": {
+		"node_modules/@nx/webpack/node_modules/postcss-loader": {
 			"version": "6.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-loader/-/postcss-loader-6.2.1.tgz",
+			"resolved": "http://localhost:4873/postcss-loader/-/postcss-loader-6.2.1.tgz",
 			"integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==",
-			"license": "MIT",
 			"dependencies": {
 				"cosmiconfig": "^7.0.0",
 				"klona": "^2.0.5",
@@ -8222,29 +7496,10 @@
 				"webpack": "^5.0.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@nrwl/webpack/node_modules/rxjs/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"license": "0BSD"
-		},
-		"node_modules/@nrwl/webpack/node_modules/sass-loader": {
+		"node_modules/@nx/webpack/node_modules/sass-loader": {
 			"version": "12.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sass-loader/-/sass-loader-12.6.0.tgz",
+			"resolved": "http://localhost:4873/sass-loader/-/sass-loader-12.6.0.tgz",
 			"integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==",
-			"license": "MIT",
 			"dependencies": {
 				"klona": "^2.0.4",
 				"neo-async": "^2.6.2"
@@ -8278,11 +7533,10 @@
 				}
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/slash": {
+		"node_modules/@nx/webpack/node_modules/slash": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slash/-/slash-4.0.0.tgz",
+			"resolved": "http://localhost:4873/slash/-/slash-4.0.0.tgz",
 			"integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=12"
 			},
@@ -8290,21 +7544,10 @@
 				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/source-map": {
-			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-			"license": "BSD-3-Clause",
-			"optional": true,
-			"engines": {
-				"node": ">=0.10.0"
-			}
-		},
-		"node_modules/@nrwl/webpack/node_modules/source-map-loader": {
+		"node_modules/@nx/webpack/node_modules/source-map-loader": {
 			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-loader/-/source-map-loader-3.0.2.tgz",
+			"resolved": "http://localhost:4873/source-map-loader/-/source-map-loader-3.0.2.tgz",
 			"integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==",
-			"license": "MIT",
 			"dependencies": {
 				"abab": "^2.0.5",
 				"iconv-lite": "^0.6.3",
@@ -8321,11 +7564,10 @@
 				"webpack": "^5.0.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/supports-color": {
+		"node_modules/@nx/webpack/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -8333,16 +7575,16 @@
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/ts-loader": {
-			"version": "9.4.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ts-loader/-/ts-loader-9.4.2.tgz",
-			"integrity": "sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==",
-			"license": "MIT",
+		"node_modules/@nx/webpack/node_modules/ts-loader": {
+			"version": "9.5.0",
+			"resolved": "http://localhost:4873/ts-loader/-/ts-loader-9.5.0.tgz",
+			"integrity": "sha512-LLlB/pkB4q9mW2yLdFMnK3dEHbrBjeZTYguaaIfusyojBgAGf5kF+O6KcWqiGzWqHk0LBsoolrp4VftEURhybg==",
 			"dependencies": {
 				"chalk": "^4.1.0",
 				"enhanced-resolve": "^5.0.0",
 				"micromatch": "^4.0.0",
-				"semver": "^7.3.4"
+				"semver": "^7.3.4",
+				"source-map": "^0.7.4"
 			},
 			"engines": {
 				"node": ">=12.0.0"
@@ -8352,11 +7594,10 @@
 				"webpack": "^5.0.0"
 			}
 		},
-		"node_modules/@nrwl/webpack/node_modules/tsconfig-paths-webpack-plugin": {
+		"node_modules/@nx/webpack/node_modules/tsconfig-paths-webpack-plugin": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz",
+			"resolved": "http://localhost:4873/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz",
 			"integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==",
-			"license": "MIT",
 			"dependencies": {
 				"chalk": "^4.1.0",
 				"enhanced-resolve": "^5.7.0",
@@ -8366,52 +7607,26 @@
 				"node": ">=10.13.0"
 			}
 		},
-		"node_modules/@nrwl/workspace": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/workspace/-/workspace-15.6.3.tgz",
-			"integrity": "sha512-RkCmDvcMXCVanR0RS8CZ14D7OMojSyvAal+b37P521MpizDkiN+zdRKewKvyOonzDeTAmZODtYccQ/uM5DjRfQ==",
-			"license": "MIT",
+		"node_modules/@nx/workspace": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/workspace/-/workspace-16.10.0.tgz",
+			"integrity": "sha512-95Eq36bzq2hb095Zvg+Ru8o9oIeOE62tNGGpohBkZPKoK2CUTYEq0AZtdj1suXS82ukCFCyyZ/c/fwxL62HRZA==",
 			"dependencies": {
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@parcel/watcher": "2.0.4",
+				"@nrwl/workspace": "16.10.0",
+				"@nx/devkit": "16.10.0",
 				"chalk": "^4.1.0",
-				"chokidar": "^3.5.1",
-				"cli-cursor": "3.1.0",
-				"cli-spinners": "2.6.1",
-				"dotenv": "~10.0.0",
 				"enquirer": "~2.3.6",
-				"figures": "3.2.0",
-				"flat": "^5.0.2",
-				"fs-extra": "^11.1.0",
-				"glob": "7.1.4",
 				"ignore": "^5.0.4",
-				"jsonc-parser": "3.2.0",
-				"minimatch": "3.0.5",
-				"npm-run-path": "^4.0.1",
-				"nx": "15.6.3",
-				"open": "^8.4.0",
-				"rxjs": "^6.5.4",
-				"semver": "7.3.4",
-				"tmp": "~0.2.1",
+				"nx": "16.10.0",
+				"rxjs": "^7.8.0",
 				"tslib": "^2.3.0",
-				"yargs": "^17.6.2",
 				"yargs-parser": "21.1.1"
-			},
-			"peerDependencies": {
-				"prettier": "^2.6.2"
-			},
-			"peerDependenciesMeta": {
-				"prettier": {
-					"optional": true
-				}
 			}
 		},
-		"node_modules/@nrwl/workspace/node_modules/ansi-styles": {
+		"node_modules/@nx/workspace/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -8422,11 +7637,10 @@
 				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/workspace/node_modules/chalk": {
+		"node_modules/@nx/workspace/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -8438,11 +7652,10 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
-		"node_modules/@nrwl/workspace/node_modules/color-convert": {
+		"node_modules/@nx/workspace/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -8450,88 +7663,23 @@
 				"node": ">=7.0.0"
 			}
 		},
-		"node_modules/@nrwl/workspace/node_modules/color-name": {
+		"node_modules/@nx/workspace/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/@nrwl/workspace/node_modules/glob": {
-			"version": "7.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.1.4.tgz",
-			"integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==",
-			"license": "ISC",
-			"dependencies": {
-				"fs.realpath": "^1.0.0",
-				"inflight": "^1.0.4",
-				"inherits": "2",
-				"minimatch": "^3.0.4",
-				"once": "^1.3.0",
-				"path-is-absolute": "^1.0.0"
-			},
-			"engines": {
-				"node": "*"
-			}
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
-		"node_modules/@nrwl/workspace/node_modules/has-flag": {
+		"node_modules/@nx/workspace/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/workspace/node_modules/lru-cache": {
-			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
-			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-			"license": "ISC",
-			"dependencies": {
-				"yallist": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
-		"node_modules/@nrwl/workspace/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"license": "Apache-2.0",
-			"dependencies": {
-				"tslib": "^1.9.0"
-			},
-			"engines": {
-				"npm": ">=2.0.0"
-			}
-		},
-		"node_modules/@nrwl/workspace/node_modules/rxjs/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"license": "0BSD"
-		},
-		"node_modules/@nrwl/workspace/node_modules/semver": {
-			"version": "7.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-			"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-			"license": "ISC",
-			"dependencies": {
-				"lru-cache": "^6.0.0"
-			},
-			"bin": {
-				"semver": "bin/semver.js"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
-		"node_modules/@nrwl/workspace/node_modules/supports-color": {
+		"node_modules/@nx/workspace/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -8539,12 +7687,6 @@
 				"node": ">=8"
 			}
 		},
-		"node_modules/@nrwl/workspace/node_modules/yallist": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"license": "ISC"
-		},
 		"node_modules/@parcel/watcher": {
 			"version": "2.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@parcel/watcher/-/watcher-2.0.4.tgz",
@@ -8564,117 +7706,109 @@
 			}
 		},
 		"node_modules/@phenomnomnominal/tsquery": {
-			"version": "4.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz",
-			"integrity": "sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==",
-			"license": "MIT",
+			"version": "5.0.1",
+			"resolved": "http://localhost:4873/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz",
+			"integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==",
 			"dependencies": {
-				"esquery": "^1.0.1"
+				"esquery": "^1.4.0"
 			},
 			"peerDependencies": {
-				"typescript": "^3 || ^4"
+				"typescript": "^3 || ^4 || ^5"
+			}
+		},
+		"node_modules/@pkgjs/parseargs": {
+			"version": "0.11.0",
+			"resolved": "http://localhost:4873/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+			"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+			"dev": true,
+			"optional": true,
+			"engines": {
+				"node": ">=14"
 			}
 		},
 		"node_modules/@schematics/angular": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@schematics/angular/-/angular-15.1.6.tgz",
-			"integrity": "sha512-y2kIQ1wJL0wR6v/LM5+PFJUivrYtdaIJVRdOXLLWl0AB5aLwObiWgLzAuBsbGm/9//WPPhw9PglS5EFFxTBDzg==",
-			"license": "MIT",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@schematics/angular/-/angular-16.2.8.tgz",
+			"integrity": "sha512-yxfxJ2IMRIt+dQcqyJR30qd/osb5NwRsi9US3gFIHP1jfjOAs1Nk8ENNd5ycYV+yykCa78KWhmbOw4G1zpR56Q==",
+			"dev": true,
 			"dependencies": {
-				"@angular-devkit/core": "15.1.6",
-				"@angular-devkit/schematics": "15.1.6",
+				"@angular-devkit/core": "16.2.8",
+				"@angular-devkit/schematics": "16.2.8",
 				"jsonc-parser": "3.2.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
+				"node": "^16.14.0 || >=18.10.0",
 				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
 				"yarn": ">= 1.13.0"
 			}
 		},
-		"node_modules/@schematics/angular/node_modules/@angular-devkit/core": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.6.tgz",
-			"integrity": "sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==",
-			"license": "MIT",
+		"node_modules/@sigstore/bundle": {
+			"version": "1.1.0",
+			"resolved": "http://localhost:4873/@sigstore/bundle/-/bundle-1.1.0.tgz",
+			"integrity": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==",
+			"dev": true,
 			"dependencies": {
-				"ajv": "8.12.0",
-				"ajv-formats": "2.1.1",
-				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
-				"source-map": "0.7.4"
+				"@sigstore/protobuf-specs": "^0.2.0"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
-			},
-			"peerDependencies": {
-				"chokidar": "^3.5.2"
-			},
-			"peerDependenciesMeta": {
-				"chokidar": {
-					"optional": true
-				}
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/@schematics/angular/node_modules/@angular-devkit/schematics": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-15.1.6.tgz",
-			"integrity": "sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==",
-			"license": "MIT",
+		"node_modules/@sigstore/protobuf-specs": {
+			"version": "0.2.1",
+			"resolved": "http://localhost:4873/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz",
+			"integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==",
+			"dev": true,
+			"engines": {
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+			}
+		},
+		"node_modules/@sigstore/sign": {
+			"version": "1.0.0",
+			"resolved": "http://localhost:4873/@sigstore/sign/-/sign-1.0.0.tgz",
+			"integrity": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==",
+			"dev": true,
 			"dependencies": {
-				"@angular-devkit/core": "15.1.6",
-				"jsonc-parser": "3.2.0",
-				"magic-string": "0.27.0",
-				"ora": "5.4.1",
-				"rxjs": "6.6.7"
+				"@sigstore/bundle": "^1.1.0",
+				"@sigstore/protobuf-specs": "^0.2.0",
+				"make-fetch-happen": "^11.0.1"
 			},
 			"engines": {
-				"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
-				"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
-				"yarn": ">= 1.13.0"
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/@schematics/angular/node_modules/rxjs": {
-			"version": "6.6.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-			"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-			"license": "Apache-2.0",
+		"node_modules/@sigstore/tuf": {
+			"version": "1.0.3",
+			"resolved": "http://localhost:4873/@sigstore/tuf/-/tuf-1.0.3.tgz",
+			"integrity": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==",
+			"dev": true,
 			"dependencies": {
-				"tslib": "^1.9.0"
+				"@sigstore/protobuf-specs": "^0.2.0",
+				"tuf-js": "^1.1.7"
 			},
 			"engines": {
-				"npm": ">=2.0.0"
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/@schematics/angular/node_modules/tslib": {
-			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"license": "0BSD"
-		},
 		"node_modules/@sinclair/typebox": {
-			"version": "0.24.51",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@sinclair/typebox/-/typebox-0.24.51.tgz",
-			"integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==",
-			"license": "MIT"
+			"version": "0.27.8",
+			"resolved": "http://localhost:4873/@sinclair/typebox/-/typebox-0.27.8.tgz",
+			"integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="
 		},
 		"node_modules/@sinonjs/commons": {
-			"version": "1.8.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@sinonjs/commons/-/commons-1.8.6.tgz",
-			"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
-			"license": "BSD-3-Clause",
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/@sinonjs/commons/-/commons-3.0.0.tgz",
+			"integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==",
 			"dependencies": {
 				"type-detect": "4.0.8"
 			}
 		},
 		"node_modules/@sinonjs/fake-timers": {
-			"version": "9.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
-			"integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
-			"license": "BSD-3-Clause",
+			"version": "10.3.0",
+			"resolved": "http://localhost:4873/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz",
+			"integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
 			"dependencies": {
-				"@sinonjs/commons": "^1.7.0"
+				"@sinonjs/commons": "^3.0.0"
 			}
 		},
 		"node_modules/@testing-library/jest-dom": {
@@ -8785,9 +7919,8 @@
 		},
 		"node_modules/@trysound/sax": {
 			"version": "0.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@trysound/sax/-/sax-0.2.0.tgz",
+			"resolved": "http://localhost:4873/@trysound/sax/-/sax-0.2.0.tgz",
 			"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
-			"license": "ISC",
 			"engines": {
 				"node": ">=10.13.0"
 			}
@@ -8816,11 +7949,56 @@
 			"integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==",
 			"license": "MIT"
 		},
+		"node_modules/@tufjs/canonical-json": {
+			"version": "1.0.0",
+			"resolved": "http://localhost:4873/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz",
+			"integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==",
+			"dev": true,
+			"engines": {
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+			}
+		},
+		"node_modules/@tufjs/models": {
+			"version": "1.0.4",
+			"resolved": "http://localhost:4873/@tufjs/models/-/models-1.0.4.tgz",
+			"integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==",
+			"dev": true,
+			"dependencies": {
+				"@tufjs/canonical-json": "1.0.0",
+				"minimatch": "^9.0.0"
+			},
+			"engines": {
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+			}
+		},
+		"node_modules/@tufjs/models/node_modules/brace-expansion": {
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
+			"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+			"dev": true,
+			"dependencies": {
+				"balanced-match": "^1.0.0"
+			}
+		},
+		"node_modules/@tufjs/models/node_modules/minimatch": {
+			"version": "9.0.3",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-9.0.3.tgz",
+			"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+			"dev": true,
+			"dependencies": {
+				"brace-expansion": "^2.0.1"
+			},
+			"engines": {
+				"node": ">=16 || 14 >=14.17"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/isaacs"
+			}
+		},
 		"node_modules/@types/babel__core": {
-			"version": "7.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__core/-/babel__core-7.20.0.tgz",
-			"integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==",
-			"license": "MIT",
+			"version": "7.20.3",
+			"resolved": "http://localhost:4873/@types/babel__core/-/babel__core-7.20.3.tgz",
+			"integrity": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==",
 			"dependencies": {
 				"@babel/parser": "^7.20.7",
 				"@babel/types": "^7.20.7",
@@ -8830,102 +8008,91 @@
 			}
 		},
 		"node_modules/@types/babel__generator": {
-			"version": "7.6.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__generator/-/babel__generator-7.6.4.tgz",
-			"integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
-			"license": "MIT",
+			"version": "7.6.6",
+			"resolved": "http://localhost:4873/@types/babel__generator/-/babel__generator-7.6.6.tgz",
+			"integrity": "sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==",
 			"dependencies": {
 				"@babel/types": "^7.0.0"
 			}
 		},
 		"node_modules/@types/babel__template": {
-			"version": "7.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__template/-/babel__template-7.4.1.tgz",
-			"integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
-			"license": "MIT",
+			"version": "7.4.3",
+			"resolved": "http://localhost:4873/@types/babel__template/-/babel__template-7.4.3.tgz",
+			"integrity": "sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==",
 			"dependencies": {
 				"@babel/parser": "^7.1.0",
 				"@babel/types": "^7.0.0"
 			}
 		},
 		"node_modules/@types/babel__traverse": {
-			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__traverse/-/babel__traverse-7.18.3.tgz",
-			"integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==",
-			"license": "MIT",
+			"version": "7.20.3",
+			"resolved": "http://localhost:4873/@types/babel__traverse/-/babel__traverse-7.20.3.tgz",
+			"integrity": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==",
 			"dependencies": {
-				"@babel/types": "^7.3.0"
+				"@babel/types": "^7.20.7"
 			}
 		},
 		"node_modules/@types/body-parser": {
-			"version": "1.19.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/body-parser/-/body-parser-1.19.2.tgz",
-			"integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
-			"license": "MIT",
+			"version": "1.19.4",
+			"resolved": "http://localhost:4873/@types/body-parser/-/body-parser-1.19.4.tgz",
+			"integrity": "sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==",
 			"dependencies": {
 				"@types/connect": "*",
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/bonjour": {
-			"version": "3.5.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/bonjour/-/bonjour-3.5.10.tgz",
-			"integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==",
-			"license": "MIT",
+			"version": "3.5.12",
+			"resolved": "http://localhost:4873/@types/bonjour/-/bonjour-3.5.12.tgz",
+			"integrity": "sha512-ky0kWSqXVxSqgqJvPIkgFkcn4C8MnRog308Ou8xBBIVo39OmUFy+jqNe0nPwLCDFxUpmT9EvT91YzOJgkDRcFg==",
 			"dependencies": {
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/connect": {
-			"version": "3.4.35",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/connect/-/connect-3.4.35.tgz",
-			"integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
-			"license": "MIT",
+			"version": "3.4.37",
+			"resolved": "http://localhost:4873/@types/connect/-/connect-3.4.37.tgz",
+			"integrity": "sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==",
 			"dependencies": {
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/connect-history-api-fallback": {
-			"version": "1.3.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz",
-			"integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==",
-			"license": "MIT",
+			"version": "1.5.2",
+			"resolved": "http://localhost:4873/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.2.tgz",
+			"integrity": "sha512-gX2j9x+NzSh4zOhnRPSdPPmTepS4DfxES0AvIFv3jGv5QyeAJf6u6dY5/BAoAJU9Qq1uTvwOku8SSC2GnCRl6Q==",
 			"dependencies": {
 				"@types/express-serve-static-core": "*",
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/eslint": {
-			"version": "8.37.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/eslint/-/eslint-8.37.0.tgz",
-			"integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==",
-			"license": "MIT",
+			"version": "8.44.6",
+			"resolved": "http://localhost:4873/@types/eslint/-/eslint-8.44.6.tgz",
+			"integrity": "sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==",
 			"dependencies": {
 				"@types/estree": "*",
 				"@types/json-schema": "*"
 			}
 		},
 		"node_modules/@types/eslint-scope": {
-			"version": "3.7.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/eslint-scope/-/eslint-scope-3.7.4.tgz",
-			"integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==",
-			"license": "MIT",
+			"version": "3.7.6",
+			"resolved": "http://localhost:4873/@types/eslint-scope/-/eslint-scope-3.7.6.tgz",
+			"integrity": "sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==",
 			"dependencies": {
 				"@types/eslint": "*",
 				"@types/estree": "*"
 			}
 		},
 		"node_modules/@types/estree": {
-			"version": "0.0.51",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/estree/-/estree-0.0.51.tgz",
-			"integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
-			"license": "MIT"
+			"version": "1.0.3",
+			"resolved": "http://localhost:4873/@types/estree/-/estree-1.0.3.tgz",
+			"integrity": "sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ=="
 		},
 		"node_modules/@types/express": {
-			"version": "4.17.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/express/-/express-4.17.17.tgz",
-			"integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
-			"license": "MIT",
+			"version": "4.17.20",
+			"resolved": "http://localhost:4873/@types/express/-/express-4.17.20.tgz",
+			"integrity": "sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==",
 			"dependencies": {
 				"@types/body-parser": "*",
 				"@types/express-serve-static-core": "^4.17.33",
@@ -8934,14 +8101,14 @@
 			}
 		},
 		"node_modules/@types/express-serve-static-core": {
-			"version": "4.17.33",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz",
-			"integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==",
-			"license": "MIT",
+			"version": "4.17.39",
+			"resolved": "http://localhost:4873/@types/express-serve-static-core/-/express-serve-static-core-4.17.39.tgz",
+			"integrity": "sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==",
 			"dependencies": {
 				"@types/node": "*",
 				"@types/qs": "*",
-				"@types/range-parser": "*"
+				"@types/range-parser": "*",
+				"@types/send": "*"
 			}
 		},
 		"node_modules/@types/file-saver": {
@@ -8952,68 +8119,66 @@
 			"license": "MIT"
 		},
 		"node_modules/@types/graceful-fs": {
-			"version": "4.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
-			"integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==",
-			"license": "MIT",
+			"version": "4.1.8",
+			"resolved": "http://localhost:4873/@types/graceful-fs/-/graceful-fs-4.1.8.tgz",
+			"integrity": "sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==",
 			"dependencies": {
 				"@types/node": "*"
 			}
 		},
+		"node_modules/@types/http-errors": {
+			"version": "2.0.3",
+			"resolved": "http://localhost:4873/@types/http-errors/-/http-errors-2.0.3.tgz",
+			"integrity": "sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA=="
+		},
 		"node_modules/@types/http-proxy": {
-			"version": "1.17.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/http-proxy/-/http-proxy-1.17.10.tgz",
-			"integrity": "sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==",
-			"license": "MIT",
+			"version": "1.17.13",
+			"resolved": "http://localhost:4873/@types/http-proxy/-/http-proxy-1.17.13.tgz",
+			"integrity": "sha512-GkhdWcMNiR5QSQRYnJ+/oXzu0+7JJEPC8vkWXK351BkhjraZF+1W13CUYARUvX9+NqIU2n6YHA4iwywsc/M6Sw==",
 			"dependencies": {
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/istanbul-lib-coverage": {
-			"version": "2.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
-			"integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
-			"license": "MIT"
+			"version": "2.0.5",
+			"resolved": "http://localhost:4873/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz",
+			"integrity": "sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ=="
 		},
 		"node_modules/@types/istanbul-lib-report": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
-			"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
-			"license": "MIT",
+			"version": "3.0.2",
+			"resolved": "http://localhost:4873/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.2.tgz",
+			"integrity": "sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==",
 			"dependencies": {
 				"@types/istanbul-lib-coverage": "*"
 			}
 		},
 		"node_modules/@types/istanbul-reports": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
-			"integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
-			"license": "MIT",
+			"version": "3.0.3",
+			"resolved": "http://localhost:4873/@types/istanbul-reports/-/istanbul-reports-3.0.3.tgz",
+			"integrity": "sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==",
 			"dependencies": {
 				"@types/istanbul-lib-report": "*"
 			}
 		},
 		"node_modules/@types/jest": {
-			"version": "28.1.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/jest/-/jest-28.1.8.tgz",
-			"integrity": "sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==",
+			"version": "29.4.4",
+			"resolved": "http://localhost:4873/@types/jest/-/jest-29.4.4.tgz",
+			"integrity": "sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"expect": "^28.0.0",
-				"pretty-format": "^28.0.0"
+				"expect": "^29.0.0",
+				"pretty-format": "^29.0.0"
 			}
 		},
 		"node_modules/@types/jsdom": {
-			"version": "16.2.15",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/jsdom/-/jsdom-16.2.15.tgz",
-			"integrity": "sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==",
+			"version": "20.0.1",
+			"resolved": "http://localhost:4873/@types/jsdom/-/jsdom-20.0.1.tgz",
+			"integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"@types/node": "*",
-				"@types/parse5": "^6.0.3",
-				"@types/tough-cookie": "*"
+				"@types/tough-cookie": "*",
+				"parse5": "^7.0.0"
 			}
 		},
 		"node_modules/@types/json-schema": {
@@ -9047,10 +8212,9 @@
 			}
 		},
 		"node_modules/@types/mime": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/mime/-/mime-3.0.1.tgz",
-			"integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==",
-			"license": "MIT"
+			"version": "1.3.4",
+			"resolved": "http://localhost:4873/@types/mime/-/mime-1.3.4.tgz",
+			"integrity": "sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw=="
 		},
 		"node_modules/@types/node": {
 			"version": "16.18.54",
@@ -9059,64 +8223,53 @@
 			"license": "MIT"
 		},
 		"node_modules/@types/parse-json": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/parse-json/-/parse-json-4.0.0.tgz",
-			"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
-			"license": "MIT"
-		},
-		"node_modules/@types/parse5": {
-			"version": "6.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/parse5/-/parse5-6.0.3.tgz",
-			"integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==",
-			"dev": true,
-			"license": "MIT"
-		},
-		"node_modules/@types/prettier": {
-			"version": "2.7.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/prettier/-/prettier-2.7.2.tgz",
-			"integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==",
-			"license": "MIT"
+			"version": "4.0.1",
+			"resolved": "http://localhost:4873/@types/parse-json/-/parse-json-4.0.1.tgz",
+			"integrity": "sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng=="
 		},
 		"node_modules/@types/qs": {
-			"version": "6.9.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/qs/-/qs-6.9.7.tgz",
-			"integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
-			"license": "MIT"
+			"version": "6.9.9",
+			"resolved": "http://localhost:4873/@types/qs/-/qs-6.9.9.tgz",
+			"integrity": "sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg=="
 		},
 		"node_modules/@types/range-parser": {
-			"version": "1.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/range-parser/-/range-parser-1.2.4.tgz",
-			"integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==",
-			"license": "MIT"
+			"version": "1.2.6",
+			"resolved": "http://localhost:4873/@types/range-parser/-/range-parser-1.2.6.tgz",
+			"integrity": "sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA=="
 		},
 		"node_modules/@types/retry": {
 			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/retry/-/retry-0.12.0.tgz",
-			"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/@types/retry/-/retry-0.12.0.tgz",
+			"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
 		},
 		"node_modules/@types/semver": {
-			"version": "7.3.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/semver/-/semver-7.3.13.tgz",
-			"integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==",
-			"dev": true,
-			"license": "MIT"
+			"version": "7.5.4",
+			"resolved": "http://localhost:4873/@types/semver/-/semver-7.5.4.tgz",
+			"integrity": "sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ=="
+		},
+		"node_modules/@types/send": {
+			"version": "0.17.3",
+			"resolved": "http://localhost:4873/@types/send/-/send-0.17.3.tgz",
+			"integrity": "sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==",
+			"dependencies": {
+				"@types/mime": "^1",
+				"@types/node": "*"
+			}
 		},
 		"node_modules/@types/serve-index": {
-			"version": "1.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/serve-index/-/serve-index-1.9.1.tgz",
-			"integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==",
-			"license": "MIT",
+			"version": "1.9.3",
+			"resolved": "http://localhost:4873/@types/serve-index/-/serve-index-1.9.3.tgz",
+			"integrity": "sha512-4KG+yMEuvDPRrYq5fyVm/I2uqAJSAwZK9VSa+Zf+zUq9/oxSSvy3kkIqyL+jjStv6UCVi8/Aho0NHtB1Fwosrg==",
 			"dependencies": {
 				"@types/express": "*"
 			}
 		},
 		"node_modules/@types/serve-static": {
-			"version": "1.15.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/serve-static/-/serve-static-1.15.1.tgz",
-			"integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
-			"license": "MIT",
+			"version": "1.15.4",
+			"resolved": "http://localhost:4873/@types/serve-static/-/serve-static-1.15.4.tgz",
+			"integrity": "sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==",
 			"dependencies": {
+				"@types/http-errors": "*",
 				"@types/mime": "*",
 				"@types/node": "*"
 			}
@@ -9125,30 +8278,28 @@
 			"version": "8.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz",
 			"integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/@types/sizzle": {
 			"version": "2.3.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/sizzle/-/sizzle-2.3.3.tgz",
 			"integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/@types/sockjs": {
-			"version": "0.3.33",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/sockjs/-/sockjs-0.3.33.tgz",
-			"integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==",
-			"license": "MIT",
+			"version": "0.3.35",
+			"resolved": "http://localhost:4873/@types/sockjs/-/sockjs-0.3.35.tgz",
+			"integrity": "sha512-tIF57KB+ZvOBpAQwSaACfEu7htponHXaFzP7RfKYgsOS0NoYnn+9+jzp7bbq4fWerizI3dTB4NfAZoyeQKWJLw==",
 			"dependencies": {
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/stack-utils": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/stack-utils/-/stack-utils-2.0.1.tgz",
-			"integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
-			"license": "MIT"
+			"version": "2.0.2",
+			"resolved": "http://localhost:4873/@types/stack-utils/-/stack-utils-2.0.2.tgz",
+			"integrity": "sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw=="
 		},
 		"node_modules/@types/strip-bom": {
 			"version": "3.0.0",
@@ -9175,11 +8326,10 @@
 			}
 		},
 		"node_modules/@types/tough-cookie": {
-			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/tough-cookie/-/tough-cookie-4.0.2.tgz",
-			"integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==",
-			"dev": true,
-			"license": "MIT"
+			"version": "4.0.4",
+			"resolved": "http://localhost:4873/@types/tough-cookie/-/tough-cookie-4.0.4.tgz",
+			"integrity": "sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==",
+			"dev": true
 		},
 		"node_modules/@types/webidl-conversions": {
 			"version": "7.0.0",
@@ -9200,28 +8350,25 @@
 			}
 		},
 		"node_modules/@types/ws": {
-			"version": "8.5.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/ws/-/ws-8.5.4.tgz",
-			"integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==",
-			"license": "MIT",
+			"version": "8.5.8",
+			"resolved": "http://localhost:4873/@types/ws/-/ws-8.5.8.tgz",
+			"integrity": "sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg==",
 			"dependencies": {
 				"@types/node": "*"
 			}
 		},
 		"node_modules/@types/yargs": {
-			"version": "17.0.24",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/yargs/-/yargs-17.0.24.tgz",
-			"integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
-			"license": "MIT",
+			"version": "17.0.29",
+			"resolved": "http://localhost:4873/@types/yargs/-/yargs-17.0.29.tgz",
+			"integrity": "sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==",
 			"dependencies": {
 				"@types/yargs-parser": "*"
 			}
 		},
 		"node_modules/@types/yargs-parser": {
-			"version": "21.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
-			"integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==",
-			"license": "MIT"
+			"version": "21.0.2",
+			"resolved": "http://localhost:4873/@types/yargs-parser/-/yargs-parser-21.0.2.tgz",
+			"integrity": "sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw=="
 		},
 		"node_modules/@types/yauzl": {
 			"version": "2.10.0",
@@ -9235,19 +8382,19 @@
 			}
 		},
 		"node_modules/@typescript-eslint/eslint-plugin": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.44.0.tgz",
-			"integrity": "sha512-j5ULd7FmmekcyWeArx+i8x7sdRHzAtXTkmDPthE4amxZOWKFK7bomoJ4r7PJ8K7PoMzD16U8MmuZFAonr1ERvw==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
+			"integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@typescript-eslint/scope-manager": "5.44.0",
-				"@typescript-eslint/type-utils": "5.44.0",
-				"@typescript-eslint/utils": "5.44.0",
+				"@eslint-community/regexpp": "^4.4.0",
+				"@typescript-eslint/scope-manager": "5.62.0",
+				"@typescript-eslint/type-utils": "5.62.0",
+				"@typescript-eslint/utils": "5.62.0",
 				"debug": "^4.3.4",
+				"graphemer": "^1.4.0",
 				"ignore": "^5.2.0",
 				"natural-compare-lite": "^1.4.0",
-				"regexpp": "^3.2.0",
 				"semver": "^7.3.7",
 				"tsutils": "^3.21.0"
 			},
@@ -9269,14 +8416,13 @@
 			}
 		},
 		"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/type-utils/-/type-utils-5.44.0.tgz",
-			"integrity": "sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
+			"integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@typescript-eslint/typescript-estree": "5.44.0",
-				"@typescript-eslint/utils": "5.44.0",
+				"@typescript-eslint/typescript-estree": "5.62.0",
+				"@typescript-eslint/utils": "5.62.0",
 				"debug": "^4.3.4",
 				"tsutils": "^3.21.0"
 			},
@@ -9297,19 +8443,18 @@
 			}
 		},
 		"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/utils/-/utils-5.44.0.tgz",
-			"integrity": "sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/utils/-/utils-5.62.0.tgz",
+			"integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
+				"@eslint-community/eslint-utils": "^4.2.0",
 				"@types/json-schema": "^7.0.9",
 				"@types/semver": "^7.3.12",
-				"@typescript-eslint/scope-manager": "5.44.0",
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/typescript-estree": "5.44.0",
+				"@typescript-eslint/scope-manager": "5.62.0",
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/typescript-estree": "5.62.0",
 				"eslint-scope": "^5.1.1",
-				"eslint-utils": "^3.0.0",
 				"semver": "^7.3.7"
 			},
 			"engines": {
@@ -9325,10 +8470,9 @@
 		},
 		"node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope": {
 			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
+			"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
 			"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"esrecurse": "^4.3.0",
 				"estraverse": "^4.1.1"
@@ -9339,24 +8483,22 @@
 		},
 		"node_modules/@typescript-eslint/eslint-plugin/node_modules/estraverse": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
+			"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
 			"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"engines": {
 				"node": ">=4.0"
 			}
 		},
 		"node_modules/@typescript-eslint/parser": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/parser/-/parser-5.44.0.tgz",
-			"integrity": "sha512-H7LCqbZnKqkkgQHaKLGC6KUjt3pjJDx8ETDqmwncyb6PuoigYajyAwBGz08VU/l86dZWZgI4zm5k2VaKqayYyA==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/parser/-/parser-5.62.0.tgz",
+			"integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
-				"@typescript-eslint/scope-manager": "5.44.0",
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/typescript-estree": "5.44.0",
+				"@typescript-eslint/scope-manager": "5.62.0",
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/typescript-estree": "5.62.0",
 				"debug": "^4.3.4"
 			},
 			"engines": {
@@ -9376,14 +8518,13 @@
 			}
 		},
 		"node_modules/@typescript-eslint/scope-manager": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/scope-manager/-/scope-manager-5.44.0.tgz",
-			"integrity": "sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
+			"integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/visitor-keys": "5.44.0"
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/visitor-keys": "5.62.0"
 			},
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -9394,14 +8535,12 @@
 			}
 		},
 		"node_modules/@typescript-eslint/type-utils": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/type-utils/-/type-utils-5.43.0.tgz",
-			"integrity": "sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz",
+			"integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==",
 			"dependencies": {
-				"@typescript-eslint/typescript-estree": "5.43.0",
-				"@typescript-eslint/utils": "5.43.0",
+				"@typescript-eslint/typescript-estree": "5.59.7",
+				"@typescript-eslint/utils": "5.59.7",
 				"debug": "^4.3.4",
 				"tsutils": "^3.21.0"
 			},
@@ -9422,11 +8561,9 @@
 			}
 		},
 		"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/types/-/types-5.43.0.tgz",
-			"integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/types/-/types-5.59.7.tgz",
+			"integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==",
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 			},
@@ -9436,14 +8573,12 @@
 			}
 		},
 		"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz",
-			"integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==",
-			"dev": true,
-			"license": "BSD-2-Clause",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
+			"integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
 			"dependencies": {
-				"@typescript-eslint/types": "5.43.0",
-				"@typescript-eslint/visitor-keys": "5.43.0",
+				"@typescript-eslint/types": "5.59.7",
+				"@typescript-eslint/visitor-keys": "5.59.7",
 				"debug": "^4.3.4",
 				"globby": "^11.1.0",
 				"is-glob": "^4.0.3",
@@ -9464,13 +8599,11 @@
 			}
 		},
 		"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz",
-			"integrity": "sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
+			"integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
 			"dependencies": {
-				"@typescript-eslint/types": "5.43.0",
+				"@typescript-eslint/types": "5.59.7",
 				"eslint-visitor-keys": "^3.3.0"
 			},
 			"engines": {
@@ -9482,11 +8615,10 @@
 			}
 		},
 		"node_modules/@typescript-eslint/types": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/types/-/types-5.44.0.tgz",
-			"integrity": "sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/types/-/types-5.62.0.tgz",
+			"integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 			},
@@ -9496,14 +8628,13 @@
 			}
 		},
 		"node_modules/@typescript-eslint/typescript-estree": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/typescript-estree/-/typescript-estree-5.44.0.tgz",
-			"integrity": "sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
+			"integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/visitor-keys": "5.44.0",
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/visitor-keys": "5.62.0",
 				"debug": "^4.3.4",
 				"globby": "^11.1.0",
 				"is-glob": "^4.0.3",
@@ -9524,19 +8655,17 @@
 			}
 		},
 		"node_modules/@typescript-eslint/utils": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/utils/-/utils-5.43.0.tgz",
-			"integrity": "sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/utils/-/utils-5.59.7.tgz",
+			"integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==",
 			"dependencies": {
+				"@eslint-community/eslint-utils": "^4.2.0",
 				"@types/json-schema": "^7.0.9",
 				"@types/semver": "^7.3.12",
-				"@typescript-eslint/scope-manager": "5.43.0",
-				"@typescript-eslint/types": "5.43.0",
-				"@typescript-eslint/typescript-estree": "5.43.0",
+				"@typescript-eslint/scope-manager": "5.59.7",
+				"@typescript-eslint/types": "5.59.7",
+				"@typescript-eslint/typescript-estree": "5.59.7",
 				"eslint-scope": "^5.1.1",
-				"eslint-utils": "^3.0.0",
 				"semver": "^7.3.7"
 			},
 			"engines": {
@@ -9551,14 +8680,12 @@
 			}
 		},
 		"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz",
-			"integrity": "sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz",
+			"integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==",
 			"dependencies": {
-				"@typescript-eslint/types": "5.43.0",
-				"@typescript-eslint/visitor-keys": "5.43.0"
+				"@typescript-eslint/types": "5.59.7",
+				"@typescript-eslint/visitor-keys": "5.59.7"
 			},
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -9569,11 +8696,9 @@
 			}
 		},
 		"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/types/-/types-5.43.0.tgz",
-			"integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/types/-/types-5.59.7.tgz",
+			"integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==",
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 			},
@@ -9583,14 +8708,12 @@
 			}
 		},
 		"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz",
-			"integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==",
-			"dev": true,
-			"license": "BSD-2-Clause",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
+			"integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
 			"dependencies": {
-				"@typescript-eslint/types": "5.43.0",
-				"@typescript-eslint/visitor-keys": "5.43.0",
+				"@typescript-eslint/types": "5.59.7",
+				"@typescript-eslint/visitor-keys": "5.59.7",
 				"debug": "^4.3.4",
 				"globby": "^11.1.0",
 				"is-glob": "^4.0.3",
@@ -9611,13 +8734,11 @@
 			}
 		},
 		"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz",
-			"integrity": "sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==",
-			"dev": true,
-			"license": "MIT",
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
+			"integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
 			"dependencies": {
-				"@typescript-eslint/types": "5.43.0",
+				"@typescript-eslint/types": "5.59.7",
 				"eslint-visitor-keys": "^3.3.0"
 			},
 			"engines": {
@@ -9630,10 +8751,8 @@
 		},
 		"node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
 			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
+			"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
 			"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
-			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"esrecurse": "^4.3.0",
 				"estraverse": "^4.1.1"
@@ -9644,22 +8763,19 @@
 		},
 		"node_modules/@typescript-eslint/utils/node_modules/estraverse": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
+			"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
 			"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
-			"dev": true,
-			"license": "BSD-2-Clause",
 			"engines": {
 				"node": ">=4.0"
 			}
 		},
 		"node_modules/@typescript-eslint/visitor-keys": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/visitor-keys/-/visitor-keys-5.44.0.tgz",
-			"integrity": "sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
+			"integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@typescript-eslint/types": "5.44.0",
+				"@typescript-eslint/types": "5.62.0",
 				"eslint-visitor-keys": "^3.3.0"
 			},
 			"engines": {
@@ -9670,33 +8786,41 @@
 				"url": "https://opencollective.com/typescript-eslint"
 			}
 		},
+		"node_modules/@vitejs/plugin-basic-ssl": {
+			"version": "1.0.1",
+			"resolved": "http://localhost:4873/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz",
+			"integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==",
+			"dev": true,
+			"engines": {
+				"node": ">=14.6.0"
+			},
+			"peerDependencies": {
+				"vite": "^3.0.0 || ^4.0.0"
+			}
+		},
 		"node_modules/@webassemblyjs/ast": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/ast/-/ast-1.11.1.tgz",
-			"integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/ast/-/ast-1.11.6.tgz",
+			"integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==",
 			"dependencies": {
-				"@webassemblyjs/helper-numbers": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1"
+				"@webassemblyjs/helper-numbers": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6"
 			}
 		},
 		"node_modules/@webassemblyjs/floating-point-hex-parser": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
-			"integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==",
-			"license": "MIT"
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz",
+			"integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw=="
 		},
 		"node_modules/@webassemblyjs/helper-api-error": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
-			"integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==",
-			"license": "MIT"
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz",
+			"integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q=="
 		},
 		"node_modules/@webassemblyjs/helper-buffer": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
-			"integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==",
-			"license": "MIT"
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz",
+			"integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA=="
 		},
 		"node_modules/@webassemblyjs/helper-code-frame": {
 			"version": "1.9.0",
@@ -9776,111 +8900,101 @@
 			"license": "MIT"
 		},
 		"node_modules/@webassemblyjs/helper-numbers": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
-			"integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz",
+			"integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==",
 			"dependencies": {
-				"@webassemblyjs/floating-point-hex-parser": "1.11.1",
-				"@webassemblyjs/helper-api-error": "1.11.1",
+				"@webassemblyjs/floating-point-hex-parser": "1.11.6",
+				"@webassemblyjs/helper-api-error": "1.11.6",
 				"@xtuc/long": "4.2.2"
 			}
 		},
 		"node_modules/@webassemblyjs/helper-wasm-bytecode": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
-			"integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==",
-			"license": "MIT"
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz",
+			"integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA=="
 		},
 		"node_modules/@webassemblyjs/helper-wasm-section": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
-			"integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz",
+			"integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==",
 			"dependencies": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-buffer": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/wasm-gen": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-buffer": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/wasm-gen": "1.11.6"
 			}
 		},
 		"node_modules/@webassemblyjs/ieee754": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
-			"integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz",
+			"integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==",
 			"dependencies": {
 				"@xtuc/ieee754": "^1.2.0"
 			}
 		},
 		"node_modules/@webassemblyjs/leb128": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
-			"integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
-			"license": "Apache-2.0",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/leb128/-/leb128-1.11.6.tgz",
+			"integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==",
 			"dependencies": {
 				"@xtuc/long": "4.2.2"
 			}
 		},
 		"node_modules/@webassemblyjs/utf8": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
-			"integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==",
-			"license": "MIT"
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/utf8/-/utf8-1.11.6.tgz",
+			"integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA=="
 		},
 		"node_modules/@webassemblyjs/wasm-edit": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
-			"integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz",
+			"integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==",
 			"dependencies": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-buffer": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/helper-wasm-section": "1.11.1",
-				"@webassemblyjs/wasm-gen": "1.11.1",
-				"@webassemblyjs/wasm-opt": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1",
-				"@webassemblyjs/wast-printer": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-buffer": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/helper-wasm-section": "1.11.6",
+				"@webassemblyjs/wasm-gen": "1.11.6",
+				"@webassemblyjs/wasm-opt": "1.11.6",
+				"@webassemblyjs/wasm-parser": "1.11.6",
+				"@webassemblyjs/wast-printer": "1.11.6"
 			}
 		},
 		"node_modules/@webassemblyjs/wasm-gen": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
-			"integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz",
+			"integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==",
 			"dependencies": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/ieee754": "1.11.1",
-				"@webassemblyjs/leb128": "1.11.1",
-				"@webassemblyjs/utf8": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/ieee754": "1.11.6",
+				"@webassemblyjs/leb128": "1.11.6",
+				"@webassemblyjs/utf8": "1.11.6"
 			}
 		},
 		"node_modules/@webassemblyjs/wasm-opt": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
-			"integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz",
+			"integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==",
 			"dependencies": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-buffer": "1.11.1",
-				"@webassemblyjs/wasm-gen": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-buffer": "1.11.6",
+				"@webassemblyjs/wasm-gen": "1.11.6",
+				"@webassemblyjs/wasm-parser": "1.11.6"
 			}
 		},
 		"node_modules/@webassemblyjs/wasm-parser": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
-			"integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz",
+			"integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==",
 			"dependencies": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-api-error": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/ieee754": "1.11.1",
-				"@webassemblyjs/leb128": "1.11.1",
-				"@webassemblyjs/utf8": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-api-error": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/ieee754": "1.11.6",
+				"@webassemblyjs/leb128": "1.11.6",
+				"@webassemblyjs/utf8": "1.11.6"
 			}
 		},
 		"node_modules/@webassemblyjs/wast-parser": {
@@ -9932,15 +9046,107 @@
 			"license": "MIT"
 		},
 		"node_modules/@webassemblyjs/wast-printer": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
-			"integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
-			"license": "MIT",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz",
+			"integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==",
 			"dependencies": {
-				"@webassemblyjs/ast": "1.11.1",
+				"@webassemblyjs/ast": "1.11.6",
 				"@xtuc/long": "4.2.2"
 			}
 		},
+		"node_modules/@wessberg/ts-evaluator": {
+			"version": "0.0.27",
+			"resolved": "http://localhost:4873/@wessberg/ts-evaluator/-/ts-evaluator-0.0.27.tgz",
+			"integrity": "sha512-7gOpVm3yYojUp/Yn7F4ZybJRxyqfMNf0LXK5KJiawbPfL0XTsJV+0mgrEDjOIR6Bi0OYk2Cyg4tjFu1r8MCZaA==",
+			"deprecated": "this package has been renamed to ts-evaluator. Please install ts-evaluator instead",
+			"dev": true,
+			"dependencies": {
+				"chalk": "^4.1.0",
+				"jsdom": "^16.4.0",
+				"object-path": "^0.11.5",
+				"tslib": "^2.0.3"
+			},
+			"engines": {
+				"node": ">=10.1.0"
+			},
+			"funding": {
+				"type": "github",
+				"url": "https://github.com/wessberg/ts-evaluator?sponsor=1"
+			},
+			"peerDependencies": {
+				"typescript": ">=3.2.x || >= 4.x"
+			}
+		},
+		"node_modules/@wessberg/ts-evaluator/node_modules/ansi-styles": {
+			"version": "4.3.0",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+			"dev": true,
+			"dependencies": {
+				"color-convert": "^2.0.1"
+			},
+			"engines": {
+				"node": ">=8"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
+			}
+		},
+		"node_modules/@wessberg/ts-evaluator/node_modules/chalk": {
+			"version": "4.1.2",
+			"resolved": "http://localhost:4873/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/@wessberg/ts-evaluator/node_modules/color-convert": {
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
+			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+			"dev": true,
+			"dependencies": {
+				"color-name": "~1.1.4"
+			},
+			"engines": {
+				"node": ">=7.0.0"
+			}
+		},
+		"node_modules/@wessberg/ts-evaluator/node_modules/color-name": {
+			"version": "1.1.4",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+			"dev": true
+		},
+		"node_modules/@wessberg/ts-evaluator/node_modules/has-flag": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
+			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+			"dev": true,
+			"engines": {
+				"node": ">=8"
+			}
+		},
+		"node_modules/@wessberg/ts-evaluator/node_modules/supports-color": {
+			"version": "7.2.0",
+			"resolved": "http://localhost:4873/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/@xtuc/ieee754": {
 			"version": "1.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
@@ -9960,10 +9166,9 @@
 			"license": "BSD-2-Clause"
 		},
 		"node_modules/@yarnpkg/parsers": {
-			"version": "3.0.0-rc.42",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@yarnpkg/parsers/-/parsers-3.0.0-rc.42.tgz",
-			"integrity": "sha512-eW9Mbegmb5bJjwawJM9ghjUjUqciNMhC6L7XrQPF/clXS5bbP66MstsgCT5hy9VlfUh/CfBT+0Wucf531dMjHA==",
-			"license": "BSD-2-Clause",
+			"version": "3.0.0-rc.46",
+			"resolved": "http://localhost:4873/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz",
+			"integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==",
 			"dependencies": {
 				"js-yaml": "^3.10.0",
 				"tslib": "^2.4.0"
@@ -9998,16 +9203,14 @@
 		},
 		"node_modules/abbrev": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/abbrev/-/abbrev-1.1.1.tgz",
+			"resolved": "http://localhost:4873/abbrev/-/abbrev-1.1.1.tgz",
 			"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/accepts": {
 			"version": "1.3.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/accepts/-/accepts-1.3.8.tgz",
+			"resolved": "http://localhost:4873/accepts/-/accepts-1.3.8.tgz",
 			"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
-			"license": "MIT",
 			"dependencies": {
 				"mime-types": "~2.1.34",
 				"negotiator": "0.6.3"
@@ -10017,10 +9220,9 @@
 			}
 		},
 		"node_modules/acorn": {
-			"version": "8.8.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn/-/acorn-8.8.2.tgz",
-			"integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
-			"license": "MIT",
+			"version": "8.10.0",
+			"resolved": "http://localhost:4873/acorn/-/acorn-8.10.0.tgz",
+			"integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
 			"bin": {
 				"acorn": "bin/acorn"
 			},
@@ -10030,10 +9232,9 @@
 		},
 		"node_modules/acorn-globals": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-globals/-/acorn-globals-6.0.0.tgz",
+			"resolved": "http://localhost:4873/acorn-globals/-/acorn-globals-6.0.0.tgz",
 			"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"acorn": "^7.1.1",
 				"acorn-walk": "^7.1.1"
@@ -10041,10 +9242,9 @@
 		},
 		"node_modules/acorn-globals/node_modules/acorn": {
 			"version": "7.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn/-/acorn-7.4.1.tgz",
+			"resolved": "http://localhost:4873/acorn/-/acorn-7.4.1.tgz",
 			"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
 			"dev": true,
-			"license": "MIT",
 			"bin": {
 				"acorn": "bin/acorn"
 			},
@@ -10053,34 +9253,39 @@
 			}
 		},
 		"node_modules/acorn-import-assertions": {
-			"version": "1.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
-			"integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
-			"license": "MIT",
+			"version": "1.9.0",
+			"resolved": "http://localhost:4873/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz",
+			"integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==",
 			"peerDependencies": {
 				"acorn": "^8"
 			}
 		},
 		"node_modules/acorn-jsx": {
 			"version": "5.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+			"resolved": "http://localhost:4873/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
 			"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"peerDependencies": {
 				"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
 			}
 		},
 		"node_modules/acorn-walk": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-walk/-/acorn-walk-7.2.0.tgz",
+			"resolved": "http://localhost:4873/acorn-walk/-/acorn-walk-7.2.0.tgz",
 			"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=0.4.0"
 			}
 		},
+		"node_modules/address": {
+			"version": "1.2.2",
+			"resolved": "http://localhost:4873/address/-/address-1.2.2.tgz",
+			"integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
+			"engines": {
+				"node": ">= 10.0.0"
+			}
+		},
 		"node_modules/adjust-sourcemap-loader": {
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
@@ -10134,14 +9339,11 @@
 			}
 		},
 		"node_modules/agentkeepalive": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/agentkeepalive/-/agentkeepalive-4.3.0.tgz",
-			"integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==",
+			"version": "4.5.0",
+			"resolved": "http://localhost:4873/agentkeepalive/-/agentkeepalive-4.5.0.tgz",
+			"integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"debug": "^4.1.0",
-				"depd": "^2.0.0",
 				"humanize-ms": "^1.2.1"
 			},
 			"engines": {
@@ -10152,7 +9354,7 @@
 			"version": "3.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aggregate-error/-/aggregate-error-3.1.0.tgz",
 			"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"clean-stack": "^2.0.0",
@@ -10266,12 +9468,11 @@
 		},
 		"node_modules/ansi-html-community": {
 			"version": "0.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
+			"resolved": "http://localhost:4873/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
 			"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
 			"engines": [
 				"node >= 0.8.0"
 			],
-			"license": "Apache-2.0",
 			"bin": {
 				"ansi-html": "bin/ansi-html"
 			}
@@ -10287,9 +9488,8 @@
 		},
 		"node_modules/ansi-styles": {
 			"version": "3.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-3.2.1.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-3.2.1.tgz",
 			"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^1.9.0"
 			},
@@ -10312,16 +9512,15 @@
 		},
 		"node_modules/aproba": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aproba/-/aproba-2.0.0.tgz",
+			"resolved": "http://localhost:4873/aproba/-/aproba-2.0.0.tgz",
 			"integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/arch": {
 			"version": "2.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/arch/-/arch-2.2.0.tgz",
 			"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
-			"devOptional": true,
+			"dev": true,
 			"funding": [
 				{
 					"type": "github",
@@ -10340,10 +9539,9 @@
 		},
 		"node_modules/are-we-there-yet": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
+			"resolved": "http://localhost:4873/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
 			"integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"delegates": "^1.0.0",
 				"readable-stream": "^3.6.0"
@@ -10409,16 +9607,13 @@
 		},
 		"node_modules/array-flatten": {
 			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-flatten/-/array-flatten-2.1.2.tgz",
-			"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/array-flatten/-/array-flatten-2.1.2.tgz",
+			"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
 		},
 		"node_modules/array-union": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-union/-/array-union-2.1.0.tgz",
+			"resolved": "http://localhost:4873/array-union/-/array-union-2.1.0.tgz",
 			"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
-			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
@@ -10435,10 +9630,9 @@
 		},
 		"node_modules/asn1": {
 			"version": "0.2.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/asn1/-/asn1-0.2.6.tgz",
+			"resolved": "http://localhost:4873/asn1/-/asn1-0.2.6.tgz",
 			"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"safer-buffer": "~2.1.0"
 			}
@@ -10476,10 +9670,9 @@
 		},
 		"node_modules/assert-plus": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/assert-plus/-/assert-plus-1.0.0.tgz",
+			"resolved": "http://localhost:4873/assert-plus/-/assert-plus-1.0.0.tgz",
 			"integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"engines": {
 				"node": ">=0.8"
 			}
@@ -10515,7 +9708,7 @@
 			"version": "2.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/astral-regex/-/astral-regex-2.0.0.tgz",
 			"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
@@ -10551,7 +9744,7 @@
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/at-least-node/-/at-least-node-1.0.0.tgz",
 			"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "ISC",
 			"engines": {
 				"node": ">= 4.0.0"
@@ -10561,6 +9754,7 @@
 			"version": "2.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/atob/-/atob-2.1.2.tgz",
 			"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+			"dev": true,
 			"license": "(MIT OR Apache-2.0)",
 			"bin": {
 				"atob": "bin/atob.js"
@@ -10570,9 +9764,9 @@
 			}
 		},
 		"node_modules/autoprefixer": {
-			"version": "10.4.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/autoprefixer/-/autoprefixer-10.4.13.tgz",
-			"integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==",
+			"version": "10.4.14",
+			"resolved": "http://localhost:4873/autoprefixer/-/autoprefixer-10.4.14.tgz",
+			"integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
 			"funding": [
 				{
 					"type": "opencollective",
@@ -10583,10 +9777,9 @@
 					"url": "https://tidelift.com/funding/github/npm/autoprefixer"
 				}
 			],
-			"license": "MIT",
 			"dependencies": {
-				"browserslist": "^4.21.4",
-				"caniuse-lite": "^1.0.30001426",
+				"browserslist": "^4.21.5",
+				"caniuse-lite": "^1.0.30001464",
 				"fraction.js": "^4.2.0",
 				"normalize-range": "^0.1.2",
 				"picocolors": "^1.0.0",
@@ -10617,20 +9810,18 @@
 		},
 		"node_modules/aws-sign2": {
 			"version": "0.7.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aws-sign2/-/aws-sign2-0.7.0.tgz",
+			"resolved": "http://localhost:4873/aws-sign2/-/aws-sign2-0.7.0.tgz",
 			"integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+			"dev": true,
 			"engines": {
 				"node": "*"
 			}
 		},
 		"node_modules/aws4": {
 			"version": "1.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aws4/-/aws4-1.12.0.tgz",
+			"resolved": "http://localhost:4873/aws4/-/aws4-1.12.0.tgz",
 			"integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/axios": {
 			"version": "1.3.5",
@@ -10674,21 +9865,20 @@
 			}
 		},
 		"node_modules/babel-jest": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-jest/-/babel-jest-28.1.3.tgz",
-			"integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/babel-jest/-/babel-jest-29.7.0.tgz",
+			"integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==",
 			"dependencies": {
-				"@jest/transform": "^28.1.3",
+				"@jest/transform": "^29.7.0",
 				"@types/babel__core": "^7.1.14",
 				"babel-plugin-istanbul": "^6.1.1",
-				"babel-preset-jest": "^28.1.3",
+				"babel-preset-jest": "^29.6.3",
 				"chalk": "^4.0.0",
 				"graceful-fs": "^4.2.9",
 				"slash": "^3.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"@babel/core": "^7.8.0"
@@ -10696,9 +9886,8 @@
 		},
 		"node_modules/babel-jest/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -10711,9 +9900,8 @@
 		},
 		"node_modules/babel-jest/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -10727,9 +9915,8 @@
 		},
 		"node_modules/babel-jest/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -10739,24 +9926,21 @@
 		},
 		"node_modules/babel-jest/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/babel-jest/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/babel-jest/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -10765,12 +9949,11 @@
 			}
 		},
 		"node_modules/babel-loader": {
-			"version": "9.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-loader/-/babel-loader-9.1.2.tgz",
-			"integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==",
-			"license": "MIT",
+			"version": "9.1.3",
+			"resolved": "http://localhost:4873/babel-loader/-/babel-loader-9.1.3.tgz",
+			"integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==",
 			"dependencies": {
-				"find-cache-dir": "^3.3.2",
+				"find-cache-dir": "^4.0.0",
 				"schema-utils": "^4.0.0"
 			},
 			"engines": {
@@ -10781,6 +9964,111 @@
 				"webpack": ">=5"
 			}
 		},
+		"node_modules/babel-loader/node_modules/find-cache-dir": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/find-cache-dir/-/find-cache-dir-4.0.0.tgz",
+			"integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==",
+			"dependencies": {
+				"common-path-prefix": "^3.0.0",
+				"pkg-dir": "^7.0.0"
+			},
+			"engines": {
+				"node": ">=14.16"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/babel-loader/node_modules/find-up": {
+			"version": "6.3.0",
+			"resolved": "http://localhost:4873/find-up/-/find-up-6.3.0.tgz",
+			"integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
+			"dependencies": {
+				"locate-path": "^7.1.0",
+				"path-exists": "^5.0.0"
+			},
+			"engines": {
+				"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/babel-loader/node_modules/locate-path": {
+			"version": "7.2.0",
+			"resolved": "http://localhost:4873/locate-path/-/locate-path-7.2.0.tgz",
+			"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
+			"dependencies": {
+				"p-locate": "^6.0.0"
+			},
+			"engines": {
+				"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/babel-loader/node_modules/p-limit": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/p-limit/-/p-limit-4.0.0.tgz",
+			"integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
+			"dependencies": {
+				"yocto-queue": "^1.0.0"
+			},
+			"engines": {
+				"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/babel-loader/node_modules/p-locate": {
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/p-locate/-/p-locate-6.0.0.tgz",
+			"integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
+			"dependencies": {
+				"p-limit": "^4.0.0"
+			},
+			"engines": {
+				"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/babel-loader/node_modules/path-exists": {
+			"version": "5.0.0",
+			"resolved": "http://localhost:4873/path-exists/-/path-exists-5.0.0.tgz",
+			"integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==",
+			"engines": {
+				"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+			}
+		},
+		"node_modules/babel-loader/node_modules/pkg-dir": {
+			"version": "7.0.0",
+			"resolved": "http://localhost:4873/pkg-dir/-/pkg-dir-7.0.0.tgz",
+			"integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==",
+			"dependencies": {
+				"find-up": "^6.3.0"
+			},
+			"engines": {
+				"node": ">=14.16"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
+		"node_modules/babel-loader/node_modules/yocto-queue": {
+			"version": "1.0.0",
+			"resolved": "http://localhost:4873/yocto-queue/-/yocto-queue-1.0.0.tgz",
+			"integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==",
+			"engines": {
+				"node": ">=12.20"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
 		"node_modules/babel-plugin-add-module-exports": {
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz",
@@ -10790,9 +10078,8 @@
 		},
 		"node_modules/babel-plugin-const-enum": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz",
+			"resolved": "http://localhost:4873/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz",
 			"integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.0.0",
 				"@babel/plugin-syntax-typescript": "^7.3.3",
@@ -10819,10 +10106,9 @@
 			}
 		},
 		"node_modules/babel-plugin-jest-hoist": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz",
-			"integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz",
+			"integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==",
 			"dependencies": {
 				"@babel/template": "^7.3.3",
 				"@babel/types": "^7.3.3",
@@ -10830,14 +10116,13 @@
 				"@types/babel__traverse": "^7.0.6"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/babel-plugin-macros": {
 			"version": "2.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
+			"resolved": "http://localhost:4873/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
 			"integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/runtime": "^7.7.2",
 				"cosmiconfig": "^6.0.0",
@@ -10845,67 +10130,61 @@
 			}
 		},
 		"node_modules/babel-plugin-polyfill-corejs2": {
-			"version": "0.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
-			"integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
-			"license": "MIT",
+			"version": "0.4.6",
+			"resolved": "http://localhost:4873/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz",
+			"integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==",
 			"dependencies": {
-				"@babel/compat-data": "^7.17.7",
-				"@babel/helper-define-polyfill-provider": "^0.3.3",
-				"semver": "^6.1.1"
+				"@babel/compat-data": "^7.22.6",
+				"@babel/helper-define-polyfill-provider": "^0.4.3",
+				"semver": "^6.3.1"
 			},
 			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
+				"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
 			}
 		},
 		"node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
+			"version": "6.3.1",
+			"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+			"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 			"bin": {
 				"semver": "bin/semver.js"
 			}
 		},
 		"node_modules/babel-plugin-polyfill-corejs3": {
-			"version": "0.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
-			"integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
-			"license": "MIT",
+			"version": "0.8.6",
+			"resolved": "http://localhost:4873/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz",
+			"integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==",
 			"dependencies": {
-				"@babel/helper-define-polyfill-provider": "^0.3.3",
-				"core-js-compat": "^3.25.1"
+				"@babel/helper-define-polyfill-provider": "^0.4.3",
+				"core-js-compat": "^3.33.1"
 			},
 			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
+				"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
 			}
 		},
 		"node_modules/babel-plugin-polyfill-regenerator": {
-			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
-			"integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
-			"license": "MIT",
+			"version": "0.5.3",
+			"resolved": "http://localhost:4873/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz",
+			"integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==",
 			"dependencies": {
-				"@babel/helper-define-polyfill-provider": "^0.3.3"
+				"@babel/helper-define-polyfill-provider": "^0.4.3"
 			},
 			"peerDependencies": {
-				"@babel/core": "^7.0.0-0"
+				"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
 			}
 		},
 		"node_modules/babel-plugin-transform-typescript-metadata": {
 			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz",
+			"resolved": "http://localhost:4873/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz",
 			"integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/helper-plugin-utils": "^7.0.0"
 			}
 		},
 		"node_modules/babel-preset-current-node-syntax": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
+			"resolved": "http://localhost:4873/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
 			"integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/plugin-syntax-async-generators": "^7.8.4",
 				"@babel/plugin-syntax-bigint": "^7.8.3",
@@ -10925,16 +10204,15 @@
 			}
 		},
 		"node_modules/babel-preset-jest": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz",
-			"integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
+			"integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
 			"dependencies": {
-				"babel-plugin-jest-hoist": "^28.1.3",
+				"babel-plugin-jest-hoist": "^29.6.3",
 				"babel-preset-current-node-syntax": "^1.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"@babel/core": "^7.0.0"
@@ -10998,36 +10276,16 @@
 			],
 			"license": "MIT"
 		},
-		"node_modules/basic-auth": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/basic-auth/-/basic-auth-2.0.1.tgz",
-			"integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
-			"license": "MIT",
-			"dependencies": {
-				"safe-buffer": "5.1.2"
-			},
-			"engines": {
-				"node": ">= 0.8"
-			}
-		},
-		"node_modules/basic-auth/node_modules/safe-buffer": {
-			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safe-buffer/-/safe-buffer-5.1.2.tgz",
-			"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
-			"license": "MIT"
-		},
 		"node_modules/batch": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/batch/-/batch-0.6.1.tgz",
-			"integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/batch/-/batch-0.6.1.tgz",
+			"integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="
 		},
 		"node_modules/bcrypt-pbkdf": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+			"resolved": "http://localhost:4873/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
 			"integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
-			"devOptional": true,
-			"license": "BSD-3-Clause",
+			"dev": true,
 			"dependencies": {
 				"tweetnacl": "^0.14.3"
 			}
@@ -11076,7 +10334,7 @@
 			"version": "2.0.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/blob-util/-/blob-util-2.0.2.tgz",
 			"integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "Apache-2.0"
 		},
 		"node_modules/bluebird": {
@@ -11095,9 +10353,8 @@
 		},
 		"node_modules/body-parser": {
 			"version": "1.20.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/body-parser/-/body-parser-1.20.1.tgz",
+			"resolved": "http://localhost:4873/body-parser/-/body-parser-1.20.1.tgz",
 			"integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
-			"license": "MIT",
 			"dependencies": {
 				"bytes": "3.1.2",
 				"content-type": "~1.0.4",
@@ -11119,33 +10376,29 @@
 		},
 		"node_modules/body-parser/node_modules/bytes": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bytes/-/bytes-3.1.2.tgz",
+			"resolved": "http://localhost:4873/bytes/-/bytes-3.1.2.tgz",
 			"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
 		},
 		"node_modules/body-parser/node_modules/debug": {
 			"version": "2.6.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+			"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 			"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-			"license": "MIT",
 			"dependencies": {
 				"ms": "2.0.0"
 			}
 		},
 		"node_modules/body-parser/node_modules/ms": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+			"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 		},
 		"node_modules/body-parser/node_modules/qs": {
 			"version": "6.11.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/qs/-/qs-6.11.0.tgz",
+			"resolved": "http://localhost:4873/qs/-/qs-6.11.0.tgz",
 			"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
-			"license": "BSD-3-Clause",
 			"dependencies": {
 				"side-channel": "^1.0.4"
 			},
@@ -11158,9 +10411,8 @@
 		},
 		"node_modules/bonjour-service": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bonjour-service/-/bonjour-service-1.1.1.tgz",
+			"resolved": "http://localhost:4873/bonjour-service/-/bonjour-service-1.1.1.tgz",
 			"integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==",
-			"license": "MIT",
 			"dependencies": {
 				"array-flatten": "^2.1.2",
 				"dns-equal": "^1.0.0",
@@ -11170,9 +10422,8 @@
 		},
 		"node_modules/boolbase": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/boolbase/-/boolbase-1.0.0.tgz",
-			"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/boolbase/-/boolbase-1.0.0.tgz",
+			"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
 		},
 		"node_modules/brace-expansion": {
 			"version": "1.1.11",
@@ -11205,18 +10456,9 @@
 		},
 		"node_modules/browser-process-hrtime": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+			"resolved": "http://localhost:4873/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
 			"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
-			"dev": true,
-			"license": "BSD-2-Clause"
-		},
-		"node_modules/browser-stdout": {
-			"version": "1.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browser-stdout/-/browser-stdout-1.3.1.tgz",
-			"integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
-			"dev": true,
-			"license": "ISC",
-			"peer": true
+			"dev": true
 		},
 		"node_modules/browserify-aes": {
 			"version": "1.2.0",
@@ -11298,9 +10540,9 @@
 			}
 		},
 		"node_modules/browserslist": {
-			"version": "4.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browserslist/-/browserslist-4.21.4.tgz",
-			"integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==",
+			"version": "4.22.1",
+			"resolved": "http://localhost:4873/browserslist/-/browserslist-4.22.1.tgz",
+			"integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==",
 			"funding": [
 				{
 					"type": "opencollective",
@@ -11309,14 +10551,17 @@
 				{
 					"type": "tidelift",
 					"url": "https://tidelift.com/funding/github/npm/browserslist"
+				},
+				{
+					"type": "github",
+					"url": "https://github.com/sponsors/ai"
 				}
 			],
-			"license": "MIT",
 			"dependencies": {
-				"caniuse-lite": "^1.0.30001400",
-				"electron-to-chromium": "^1.4.251",
-				"node-releases": "^2.0.6",
-				"update-browserslist-db": "^1.0.9"
+				"caniuse-lite": "^1.0.30001541",
+				"electron-to-chromium": "^1.4.535",
+				"node-releases": "^2.0.13",
+				"update-browserslist-db": "^1.0.13"
 			},
 			"bin": {
 				"browserslist": "cli.js"
@@ -11327,10 +10572,9 @@
 		},
 		"node_modules/bs-logger": {
 			"version": "0.2.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bs-logger/-/bs-logger-0.2.6.tgz",
+			"resolved": "http://localhost:4873/bs-logger/-/bs-logger-0.2.6.tgz",
 			"integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"fast-json-stable-stringify": "2.x"
 			},
@@ -11340,9 +10584,8 @@
 		},
 		"node_modules/bser": {
 			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bser/-/bser-2.1.1.tgz",
+			"resolved": "http://localhost:4873/bser/-/bser-2.1.1.tgz",
 			"integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"node-int64": "^0.4.0"
 			}
@@ -11388,7 +10631,7 @@
 			"version": "0.2.13",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
 			"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": "*"
@@ -11418,7 +10661,6 @@
 			"version": "5.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/builtins/-/builtins-5.0.1.tgz",
 			"integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
-			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"semver": "^7.0.0"
@@ -11426,30 +10668,27 @@
 		},
 		"node_modules/bytes": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bytes/-/bytes-3.0.0.tgz",
+			"resolved": "http://localhost:4873/bytes/-/bytes-3.0.0.tgz",
 			"integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
 		},
 		"node_modules/cacache": {
-			"version": "17.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cacache/-/cacache-17.0.4.tgz",
-			"integrity": "sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==",
+			"version": "17.1.4",
+			"resolved": "http://localhost:4873/cacache/-/cacache-17.1.4.tgz",
+			"integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"@npmcli/fs": "^3.1.0",
 				"fs-minipass": "^3.0.0",
-				"glob": "^8.0.1",
+				"glob": "^10.2.2",
 				"lru-cache": "^7.7.1",
-				"minipass": "^4.0.0",
+				"minipass": "^7.0.3",
 				"minipass-collect": "^1.0.2",
 				"minipass-flush": "^1.0.5",
 				"minipass-pipeline": "^1.2.4",
 				"p-map": "^4.0.0",
-				"promise-inflight": "^1.0.1",
 				"ssri": "^10.0.0",
 				"tar": "^6.1.11",
 				"unique-filename": "^3.0.0"
@@ -11460,14 +10699,22 @@
 		},
 		"node_modules/cacache/node_modules/lru-cache": {
 			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 			"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": ">=12"
 			}
 		},
+		"node_modules/cacache/node_modules/minipass": {
+			"version": "7.0.4",
+			"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+			"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+			"dev": true,
+			"engines": {
+				"node": ">=16 || 14 >=14.17"
+			}
+		},
 		"node_modules/cache-base": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cache-base/-/cache-base-1.0.1.tgz",
@@ -11493,7 +10740,7 @@
 			"version": "2.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cachedir/-/cachedir-2.3.0.tgz",
 			"integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=6"
@@ -11514,9 +10761,8 @@
 		},
 		"node_modules/callsites": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/callsites/-/callsites-3.1.0.tgz",
+			"resolved": "http://localhost:4873/callsites/-/callsites-3.1.0.tgz",
 			"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			}
@@ -11532,9 +10778,8 @@
 		},
 		"node_modules/caniuse-api": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/caniuse-api/-/caniuse-api-3.0.0.tgz",
+			"resolved": "http://localhost:4873/caniuse-api/-/caniuse-api-3.0.0.tgz",
 			"integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
-			"license": "MIT",
 			"dependencies": {
 				"browserslist": "^4.0.0",
 				"caniuse-lite": "^1.0.0",
@@ -11543,9 +10788,9 @@
 			}
 		},
 		"node_modules/caniuse-lite": {
-			"version": "1.0.30001539",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/caniuse-lite/-/caniuse-lite-1.0.30001539.tgz",
-			"integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA==",
+			"version": "1.0.30001554",
+			"resolved": "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001554.tgz",
+			"integrity": "sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ==",
 			"funding": [
 				{
 					"type": "opencollective",
@@ -11559,21 +10804,18 @@
 					"type": "github",
 					"url": "https://github.com/sponsors/ai"
 				}
-			],
-			"license": "CC-BY-4.0"
+			]
 		},
 		"node_modules/caseless": {
 			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/caseless/-/caseless-0.12.0.tgz",
+			"resolved": "http://localhost:4873/caseless/-/caseless-0.12.0.tgz",
 			"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
-			"devOptional": true,
-			"license": "Apache-2.0"
+			"dev": true
 		},
 		"node_modules/chalk": {
 			"version": "2.4.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-2.4.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-2.4.2.tgz",
 			"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^3.2.1",
 				"escape-string-regexp": "^1.0.5",
@@ -11585,9 +10827,8 @@
 		},
 		"node_modules/char-regex": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/char-regex/-/char-regex-1.0.2.tgz",
+			"resolved": "http://localhost:4873/char-regex/-/char-regex-1.0.2.tgz",
 			"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			}
@@ -11603,7 +10844,7 @@
 			"version": "2.24.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/check-more-types/-/check-more-types-2.24.0.tgz",
 			"integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8.0"
@@ -11638,10 +10879,9 @@
 		},
 		"node_modules/chownr": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chownr/-/chownr-2.0.0.tgz",
+			"resolved": "http://localhost:4873/chownr/-/chownr-2.0.0.tgz",
 			"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": ">=10"
 			}
@@ -11682,10 +10922,9 @@
 			}
 		},
 		"node_modules/cjs-module-lexer": {
-			"version": "1.2.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
-			"integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==",
-			"license": "MIT"
+			"version": "1.2.3",
+			"resolved": "http://localhost:4873/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
+			"integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ=="
 		},
 		"node_modules/class-utils": {
 			"version": "0.3.6",
@@ -11797,7 +11036,7 @@
 			"version": "2.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/clean-stack/-/clean-stack-2.2.0.tgz",
 			"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=6"
@@ -11831,7 +11070,7 @@
 			"version": "0.6.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cli-table3/-/cli-table3-0.6.3.tgz",
 			"integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"string-width": "^4.2.0"
@@ -11847,7 +11086,7 @@
 			"version": "2.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cli-truncate/-/cli-truncate-2.1.0.tgz",
 			"integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"slice-ansi": "^3.0.0",
@@ -11870,17 +11109,6 @@
 				"node": ">= 10"
 			}
 		},
-		"node_modules/cliui": {
-			"version": "7.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cliui/-/cliui-7.0.4.tgz",
-			"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
-			"license": "ISC",
-			"dependencies": {
-				"string-width": "^4.2.0",
-				"strip-ansi": "^6.0.0",
-				"wrap-ansi": "^7.0.0"
-			}
-		},
 		"node_modules/clone": {
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/clone/-/clone-1.0.4.tgz",
@@ -11892,9 +11120,8 @@
 		},
 		"node_modules/clone-deep": {
 			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/clone-deep/-/clone-deep-4.0.1.tgz",
+			"resolved": "http://localhost:4873/clone-deep/-/clone-deep-4.0.1.tgz",
 			"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
-			"license": "MIT",
 			"dependencies": {
 				"is-plain-object": "^2.0.4",
 				"kind-of": "^6.0.2",
@@ -11906,9 +11133,8 @@
 		},
 		"node_modules/co": {
 			"version": "4.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/co/-/co-4.6.0.tgz",
+			"resolved": "http://localhost:4873/co/-/co-4.6.0.tgz",
 			"integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
-			"license": "MIT",
 			"engines": {
 				"iojs": ">= 1.0.0",
 				"node": ">= 0.12.0"
@@ -11970,10 +11196,9 @@
 			}
 		},
 		"node_modules/collect-v8-coverage": {
-			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
-			"integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
-			"license": "MIT"
+			"version": "1.0.2",
+			"resolved": "http://localhost:4873/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
+			"integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
 		},
 		"node_modules/collection-visit": {
 			"version": "1.0.0",
@@ -11991,18 +11216,16 @@
 		},
 		"node_modules/color-convert": {
 			"version": "1.9.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-1.9.3.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-1.9.3.tgz",
 			"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "1.1.3"
 			}
 		},
 		"node_modules/color-name": {
 			"version": "1.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.3.tgz",
-			"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.3.tgz",
+			"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
 		},
 		"node_modules/color-support": {
 			"version": "1.1.3",
@@ -12016,9 +11239,8 @@
 		},
 		"node_modules/colord": {
 			"version": "2.9.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/colord/-/colord-2.9.3.tgz",
-			"integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/colord/-/colord-2.9.3.tgz",
+			"integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="
 		},
 		"node_modules/colorette": {
 			"version": "2.0.19",
@@ -12026,6 +11248,18 @@
 			"integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==",
 			"license": "MIT"
 		},
+		"node_modules/columnify": {
+			"version": "1.6.0",
+			"resolved": "http://localhost:4873/columnify/-/columnify-1.6.0.tgz",
+			"integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==",
+			"dependencies": {
+				"strip-ansi": "^6.0.1",
+				"wcwidth": "^1.0.0"
+			},
+			"engines": {
+				"node": ">=8.0.0"
+			}
+		},
 		"node_modules/combined-stream": {
 			"version": "1.0.8",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/combined-stream/-/combined-stream-1.0.8.tgz",
@@ -12042,17 +11276,22 @@
 			"version": "6.2.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-6.2.1.tgz",
 			"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">= 6"
 			}
 		},
+		"node_modules/common-path-prefix": {
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
+			"integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="
+		},
 		"node_modules/common-tags": {
 			"version": "1.8.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/common-tags/-/common-tags-1.8.2.tgz",
 			"integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=4.0.0"
@@ -12073,9 +11312,8 @@
 		},
 		"node_modules/compressible": {
 			"version": "2.0.18",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/compressible/-/compressible-2.0.18.tgz",
+			"resolved": "http://localhost:4873/compressible/-/compressible-2.0.18.tgz",
 			"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
-			"license": "MIT",
 			"dependencies": {
 				"mime-db": ">= 1.43.0 < 2"
 			},
@@ -12085,9 +11323,8 @@
 		},
 		"node_modules/compression": {
 			"version": "1.7.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/compression/-/compression-1.7.4.tgz",
+			"resolved": "http://localhost:4873/compression/-/compression-1.7.4.tgz",
 			"integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
-			"license": "MIT",
 			"dependencies": {
 				"accepts": "~1.3.5",
 				"bytes": "3.0.0",
@@ -12103,24 +11340,21 @@
 		},
 		"node_modules/compression/node_modules/debug": {
 			"version": "2.6.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+			"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 			"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-			"license": "MIT",
 			"dependencies": {
 				"ms": "2.0.0"
 			}
 		},
 		"node_modules/compression/node_modules/ms": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+			"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 		},
 		"node_modules/compression/node_modules/safe-buffer": {
 			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safe-buffer/-/safe-buffer-5.1.2.tgz",
-			"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/safe-buffer/-/safe-buffer-5.1.2.tgz",
+			"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
 		},
 		"node_modules/concat-map": {
 			"version": "0.0.1",
@@ -12186,16 +11420,14 @@
 		},
 		"node_modules/confusing-browser-globals": {
 			"version": "1.0.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
+			"resolved": "http://localhost:4873/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
 			"integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/connect-history-api-fallback": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
+			"resolved": "http://localhost:4873/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
 			"integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=0.8"
 			}
@@ -12208,10 +11440,9 @@
 		},
 		"node_modules/console-control-strings": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/console-control-strings/-/console-control-strings-1.1.0.tgz",
+			"resolved": "http://localhost:4873/console-control-strings/-/console-control-strings-1.1.0.tgz",
 			"integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/constants-browserify": {
 			"version": "1.0.0",
@@ -12222,9 +11453,8 @@
 		},
 		"node_modules/content-disposition": {
 			"version": "0.5.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/content-disposition/-/content-disposition-0.5.4.tgz",
+			"resolved": "http://localhost:4873/content-disposition/-/content-disposition-0.5.4.tgz",
 			"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
-			"license": "MIT",
 			"dependencies": {
 				"safe-buffer": "5.2.1"
 			},
@@ -12234,9 +11464,8 @@
 		},
 		"node_modules/content-type": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/content-type/-/content-type-1.0.5.tgz",
+			"resolved": "http://localhost:4873/content-type/-/content-type-1.0.5.tgz",
 			"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
@@ -12245,22 +11474,21 @@
 			"version": "1.9.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/convert-source-map/-/convert-source-map-1.9.0.tgz",
 			"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/cookie": {
 			"version": "0.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cookie/-/cookie-0.5.0.tgz",
+			"resolved": "http://localhost:4873/cookie/-/cookie-0.5.0.tgz",
 			"integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/cookie-signature": {
 			"version": "1.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cookie-signature/-/cookie-signature-1.0.6.tgz",
-			"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/cookie-signature/-/cookie-signature-1.0.6.tgz",
+			"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
 		},
 		"node_modules/copy-anything": {
 			"version": "2.0.6",
@@ -12391,36 +11619,6 @@
 				"webpack": "^5.1.0"
 			}
 		},
-		"node_modules/copy-webpack-plugin/node_modules/fast-glob": {
-			"version": "3.2.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.12.tgz",
-			"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
-			"dev": true,
-			"license": "MIT",
-			"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.4"
-			},
-			"engines": {
-				"node": ">=8.6.0"
-			}
-		},
-		"node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": {
-			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-5.1.2.tgz",
-			"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"is-glob": "^4.0.1"
-			},
-			"engines": {
-				"node": ">= 6"
-			}
-		},
 		"node_modules/copy-webpack-plugin/node_modules/glob-parent": {
 			"version": "6.0.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-6.0.2.tgz",
@@ -12468,66 +11666,27 @@
 			}
 		},
 		"node_modules/core-js-compat": {
-			"version": "3.30.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/core-js-compat/-/core-js-compat-3.30.0.tgz",
-			"integrity": "sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==",
-			"license": "MIT",
+			"version": "3.33.1",
+			"resolved": "http://localhost:4873/core-js-compat/-/core-js-compat-3.33.1.tgz",
+			"integrity": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==",
 			"dependencies": {
-				"browserslist": "^4.21.5"
+				"browserslist": "^4.22.1"
 			},
 			"funding": {
 				"type": "opencollective",
 				"url": "https://opencollective.com/core-js"
 			}
 		},
-		"node_modules/core-js-compat/node_modules/browserslist": {
-			"version": "4.21.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browserslist/-/browserslist-4.21.5.tgz",
-			"integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
-			"funding": [
-				{
-					"type": "opencollective",
-					"url": "https://opencollective.com/browserslist"
-				},
-				{
-					"type": "tidelift",
-					"url": "https://tidelift.com/funding/github/npm/browserslist"
-				}
-			],
-			"license": "MIT",
-			"dependencies": {
-				"caniuse-lite": "^1.0.30001449",
-				"electron-to-chromium": "^1.4.284",
-				"node-releases": "^2.0.8",
-				"update-browserslist-db": "^1.0.10"
-			},
-			"bin": {
-				"browserslist": "cli.js"
-			},
-			"engines": {
-				"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
-			}
-		},
 		"node_modules/core-util-is": {
 			"version": "1.0.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/core-util-is/-/core-util-is-1.0.2.tgz",
 			"integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==",
 			"license": "MIT"
 		},
-		"node_modules/corser": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/corser/-/corser-2.0.1.tgz",
-			"integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">= 0.4.0"
-			}
-		},
 		"node_modules/cosmiconfig": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+			"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
 			"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
-			"license": "MIT",
 			"dependencies": {
 				"@types/parse-json": "^4.0.0",
 				"import-fresh": "^3.1.0",
@@ -12586,6 +11745,97 @@
 				"sha.js": "^2.4.8"
 			}
 		},
+		"node_modules/create-jest": {
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/create-jest/-/create-jest-29.7.0.tgz",
+			"integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
+			"dev": true,
+			"dependencies": {
+				"@jest/types": "^29.6.3",
+				"chalk": "^4.0.0",
+				"exit": "^0.1.2",
+				"graceful-fs": "^4.2.9",
+				"jest-config": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"prompts": "^2.0.1"
+			},
+			"bin": {
+				"create-jest": "bin/create-jest.js"
+			},
+			"engines": {
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+			}
+		},
+		"node_modules/create-jest/node_modules/ansi-styles": {
+			"version": "4.3.0",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+			"dev": true,
+			"dependencies": {
+				"color-convert": "^2.0.1"
+			},
+			"engines": {
+				"node": ">=8"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
+			}
+		},
+		"node_modules/create-jest/node_modules/chalk": {
+			"version": "4.1.2",
+			"resolved": "http://localhost:4873/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/create-jest/node_modules/color-convert": {
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
+			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+			"dev": true,
+			"dependencies": {
+				"color-name": "~1.1.4"
+			},
+			"engines": {
+				"node": ">=7.0.0"
+			}
+		},
+		"node_modules/create-jest/node_modules/color-name": {
+			"version": "1.1.4",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+			"dev": true
+		},
+		"node_modules/create-jest/node_modules/has-flag": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
+			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+			"dev": true,
+			"engines": {
+				"node": ">=8"
+			}
+		},
+		"node_modules/create-jest/node_modules/supports-color": {
+			"version": "7.2.0",
+			"resolved": "http://localhost:4873/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/create-require": {
 			"version": "1.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/create-require/-/create-require-1.1.1.tgz",
@@ -12593,26 +11843,25 @@
 			"license": "MIT"
 		},
 		"node_modules/critters": {
-			"version": "0.0.16",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/critters/-/critters-0.0.16.tgz",
-			"integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==",
+			"version": "0.0.20",
+			"resolved": "http://localhost:4873/critters/-/critters-0.0.20.tgz",
+			"integrity": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==",
 			"dev": true,
-			"license": "Apache-2.0",
 			"dependencies": {
 				"chalk": "^4.1.0",
-				"css-select": "^4.2.0",
-				"parse5": "^6.0.1",
-				"parse5-htmlparser2-tree-adapter": "^6.0.1",
-				"postcss": "^8.3.7",
+				"css-select": "^5.1.0",
+				"dom-serializer": "^2.0.0",
+				"domhandler": "^5.0.2",
+				"htmlparser2": "^8.0.2",
+				"postcss": "^8.4.23",
 				"pretty-bytes": "^5.3.0"
 			}
 		},
 		"node_modules/critters/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -12625,10 +11874,9 @@
 		},
 		"node_modules/critters/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -12642,10 +11890,9 @@
 		},
 		"node_modules/critters/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -12655,34 +11902,24 @@
 		},
 		"node_modules/critters/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/critters/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/critters/node_modules/parse5": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-			"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-			"dev": true,
-			"license": "MIT"
-		},
 		"node_modules/critters/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -12731,6 +11968,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css/-/css-3.0.0.tgz",
 			"integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"inherits": "^2.0.4",
@@ -12739,10 +11977,9 @@
 			}
 		},
 		"node_modules/css-declaration-sorter": {
-			"version": "6.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz",
-			"integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==",
-			"license": "ISC",
+			"version": "6.4.1",
+			"resolved": "http://localhost:4873/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
+			"integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==",
 			"engines": {
 				"node": "^10 || ^12 || >=14"
 			},
@@ -12751,15 +11988,14 @@
 			}
 		},
 		"node_modules/css-loader": {
-			"version": "6.7.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-loader/-/css-loader-6.7.3.tgz",
-			"integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==",
-			"license": "MIT",
+			"version": "6.8.1",
+			"resolved": "http://localhost:4873/css-loader/-/css-loader-6.8.1.tgz",
+			"integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==",
 			"dependencies": {
 				"icss-utils": "^5.1.0",
-				"postcss": "^8.4.19",
+				"postcss": "^8.4.21",
 				"postcss-modules-extract-imports": "^3.0.0",
-				"postcss-modules-local-by-default": "^4.0.0",
+				"postcss-modules-local-by-default": "^4.0.3",
 				"postcss-modules-scope": "^3.0.0",
 				"postcss-modules-values": "^4.0.0",
 				"postcss-value-parser": "^4.2.0",
@@ -12777,20 +12013,19 @@
 			}
 		},
 		"node_modules/css-minimizer-webpack-plugin": {
-			"version": "3.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz",
-			"integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==",
-			"license": "MIT",
+			"version": "5.0.1",
+			"resolved": "http://localhost:4873/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz",
+			"integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==",
 			"dependencies": {
-				"cssnano": "^5.0.6",
-				"jest-worker": "^27.0.2",
-				"postcss": "^8.3.5",
-				"schema-utils": "^4.0.0",
-				"serialize-javascript": "^6.0.0",
-				"source-map": "^0.6.1"
+				"@jridgewell/trace-mapping": "^0.3.18",
+				"cssnano": "^6.0.1",
+				"jest-worker": "^29.4.3",
+				"postcss": "^8.4.24",
+				"schema-utils": "^4.0.1",
+				"serialize-javascript": "^6.0.1"
 			},
 			"engines": {
-				"node": ">= 12.13.0"
+				"node": ">= 14.15.0"
 			},
 			"funding": {
 				"type": "opencollective",
@@ -12803,6 +12038,9 @@
 				"@parcel/css": {
 					"optional": true
 				},
+				"@swc/css": {
+					"optional": true
+				},
 				"clean-css": {
 					"optional": true
 				},
@@ -12811,66 +12049,39 @@
 				},
 				"esbuild": {
 					"optional": true
+				},
+				"lightningcss": {
+					"optional": true
 				}
 			}
 		},
-		"node_modules/css-minimizer-webpack-plugin/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/css-minimizer-webpack-plugin/node_modules/jest-worker": {
-			"version": "27.5.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-worker/-/jest-worker-27.5.1.tgz",
-			"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
-			"license": "MIT",
-			"dependencies": {
-				"@types/node": "*",
-				"merge-stream": "^2.0.0",
-				"supports-color": "^8.0.0"
-			},
-			"engines": {
-				"node": ">= 10.13.0"
-			}
-		},
-		"node_modules/css-minimizer-webpack-plugin/node_modules/source-map": {
-			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-			"license": "BSD-3-Clause",
-			"engines": {
-				"node": ">=0.10.0"
-			}
-		},
-		"node_modules/css-minimizer-webpack-plugin/node_modules/supports-color": {
-			"version": "8.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
-			"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-			"license": "MIT",
+		"node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": {
+			"version": "4.2.0",
+			"resolved": "http://localhost:4873/schema-utils/-/schema-utils-4.2.0.tgz",
+			"integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
 			"dependencies": {
-				"has-flag": "^4.0.0"
+				"@types/json-schema": "^7.0.9",
+				"ajv": "^8.9.0",
+				"ajv-formats": "^2.1.1",
+				"ajv-keywords": "^5.1.0"
 			},
 			"engines": {
-				"node": ">=10"
+				"node": ">= 12.13.0"
 			},
 			"funding": {
-				"url": "https://github.com/chalk/supports-color?sponsor=1"
+				"type": "opencollective",
+				"url": "https://opencollective.com/webpack"
 			}
 		},
 		"node_modules/css-select": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-select/-/css-select-4.3.0.tgz",
-			"integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
-			"license": "BSD-2-Clause",
+			"version": "5.1.0",
+			"resolved": "http://localhost:4873/css-select/-/css-select-5.1.0.tgz",
+			"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
 			"dependencies": {
 				"boolbase": "^1.0.0",
-				"css-what": "^6.0.1",
-				"domhandler": "^4.3.1",
-				"domutils": "^2.8.0",
+				"css-what": "^6.1.0",
+				"domhandler": "^5.0.2",
+				"domutils": "^3.0.1",
 				"nth-check": "^2.0.1"
 			},
 			"funding": {
@@ -12878,32 +12089,21 @@
 			}
 		},
 		"node_modules/css-tree": {
-			"version": "1.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-tree/-/css-tree-1.1.3.tgz",
-			"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
-			"license": "MIT",
+			"version": "2.3.1",
+			"resolved": "http://localhost:4873/css-tree/-/css-tree-2.3.1.tgz",
+			"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
 			"dependencies": {
-				"mdn-data": "2.0.14",
-				"source-map": "^0.6.1"
+				"mdn-data": "2.0.30",
+				"source-map-js": "^1.0.1"
 			},
 			"engines": {
-				"node": ">=8.0.0"
-			}
-		},
-		"node_modules/css-tree/node_modules/source-map": {
-			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-			"license": "BSD-3-Clause",
-			"engines": {
-				"node": ">=0.10.0"
+				"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
 			}
 		},
 		"node_modules/css-what": {
 			"version": "6.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-what/-/css-what-6.1.0.tgz",
+			"resolved": "http://localhost:4873/css-what/-/css-what-6.1.0.tgz",
 			"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
-			"license": "BSD-2-Clause",
 			"engines": {
 				"node": ">= 6"
 			},
@@ -12922,6 +12122,7 @@
 			"version": "0.6.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
 			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+			"dev": true,
 			"license": "BSD-3-Clause",
 			"engines": {
 				"node": ">=0.10.0"
@@ -12929,9 +12130,8 @@
 		},
 		"node_modules/cssesc": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssesc/-/cssesc-3.0.0.tgz",
+			"resolved": "http://localhost:4873/cssesc/-/cssesc-3.0.0.tgz",
 			"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
-			"license": "MIT",
 			"bin": {
 				"cssesc": "bin/cssesc"
 			},
@@ -12940,17 +12140,15 @@
 			}
 		},
 		"node_modules/cssnano": {
-			"version": "5.1.15",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssnano/-/cssnano-5.1.15.tgz",
-			"integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==",
-			"license": "MIT",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/cssnano/-/cssnano-6.0.1.tgz",
+			"integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==",
 			"dependencies": {
-				"cssnano-preset-default": "^5.2.14",
-				"lilconfig": "^2.0.3",
-				"yaml": "^1.10.2"
+				"cssnano-preset-default": "^6.0.1",
+				"lilconfig": "^2.1.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"funding": {
 				"type": "opencollective",
@@ -12961,85 +12159,99 @@
 			}
 		},
 		"node_modules/cssnano-preset-default": {
-			"version": "5.2.14",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz",
-			"integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==",
-			"license": "MIT",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz",
+			"integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==",
 			"dependencies": {
 				"css-declaration-sorter": "^6.3.1",
-				"cssnano-utils": "^3.1.0",
-				"postcss-calc": "^8.2.3",
-				"postcss-colormin": "^5.3.1",
-				"postcss-convert-values": "^5.1.3",
-				"postcss-discard-comments": "^5.1.2",
-				"postcss-discard-duplicates": "^5.1.0",
-				"postcss-discard-empty": "^5.1.1",
-				"postcss-discard-overridden": "^5.1.0",
-				"postcss-merge-longhand": "^5.1.7",
-				"postcss-merge-rules": "^5.1.4",
-				"postcss-minify-font-values": "^5.1.0",
-				"postcss-minify-gradients": "^5.1.1",
-				"postcss-minify-params": "^5.1.4",
-				"postcss-minify-selectors": "^5.2.1",
-				"postcss-normalize-charset": "^5.1.0",
-				"postcss-normalize-display-values": "^5.1.0",
-				"postcss-normalize-positions": "^5.1.1",
-				"postcss-normalize-repeat-style": "^5.1.1",
-				"postcss-normalize-string": "^5.1.0",
-				"postcss-normalize-timing-functions": "^5.1.0",
-				"postcss-normalize-unicode": "^5.1.1",
-				"postcss-normalize-url": "^5.1.0",
-				"postcss-normalize-whitespace": "^5.1.1",
-				"postcss-ordered-values": "^5.1.3",
-				"postcss-reduce-initial": "^5.1.2",
-				"postcss-reduce-transforms": "^5.1.0",
-				"postcss-svgo": "^5.1.0",
-				"postcss-unique-selectors": "^5.1.1"
-			},
-			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"cssnano-utils": "^4.0.0",
+				"postcss-calc": "^9.0.0",
+				"postcss-colormin": "^6.0.0",
+				"postcss-convert-values": "^6.0.0",
+				"postcss-discard-comments": "^6.0.0",
+				"postcss-discard-duplicates": "^6.0.0",
+				"postcss-discard-empty": "^6.0.0",
+				"postcss-discard-overridden": "^6.0.0",
+				"postcss-merge-longhand": "^6.0.0",
+				"postcss-merge-rules": "^6.0.1",
+				"postcss-minify-font-values": "^6.0.0",
+				"postcss-minify-gradients": "^6.0.0",
+				"postcss-minify-params": "^6.0.0",
+				"postcss-minify-selectors": "^6.0.0",
+				"postcss-normalize-charset": "^6.0.0",
+				"postcss-normalize-display-values": "^6.0.0",
+				"postcss-normalize-positions": "^6.0.0",
+				"postcss-normalize-repeat-style": "^6.0.0",
+				"postcss-normalize-string": "^6.0.0",
+				"postcss-normalize-timing-functions": "^6.0.0",
+				"postcss-normalize-unicode": "^6.0.0",
+				"postcss-normalize-url": "^6.0.0",
+				"postcss-normalize-whitespace": "^6.0.0",
+				"postcss-ordered-values": "^6.0.0",
+				"postcss-reduce-initial": "^6.0.0",
+				"postcss-reduce-transforms": "^6.0.0",
+				"postcss-svgo": "^6.0.0",
+				"postcss-unique-selectors": "^6.0.0"
+			},
+			"engines": {
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/cssnano-utils": {
-			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssnano-utils/-/cssnano-utils-3.1.0.tgz",
-			"integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==",
-			"license": "MIT",
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/cssnano-utils/-/cssnano-utils-4.0.0.tgz",
+			"integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==",
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/csso": {
-			"version": "4.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/csso/-/csso-4.2.0.tgz",
-			"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
-			"license": "MIT",
+			"version": "5.0.5",
+			"resolved": "http://localhost:4873/csso/-/csso-5.0.5.tgz",
+			"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
 			"dependencies": {
-				"css-tree": "^1.1.2"
+				"css-tree": "~2.2.0"
 			},
 			"engines": {
-				"node": ">=8.0.0"
+				"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
+				"npm": ">=7.0.0"
 			}
 		},
+		"node_modules/csso/node_modules/css-tree": {
+			"version": "2.2.1",
+			"resolved": "http://localhost:4873/css-tree/-/css-tree-2.2.1.tgz",
+			"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
+			"dependencies": {
+				"mdn-data": "2.0.28",
+				"source-map-js": "^1.0.1"
+			},
+			"engines": {
+				"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
+				"npm": ">=7.0.0"
+			}
+		},
+		"node_modules/csso/node_modules/mdn-data": {
+			"version": "2.0.28",
+			"resolved": "http://localhost:4873/mdn-data/-/mdn-data-2.0.28.tgz",
+			"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="
+		},
 		"node_modules/cssom": {
-			"version": "0.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssom/-/cssom-0.5.0.tgz",
-			"integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==",
-			"dev": true,
-			"license": "MIT"
+			"version": "0.4.4",
+			"resolved": "http://localhost:4873/cssom/-/cssom-0.4.4.tgz",
+			"integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
+			"dev": true
 		},
 		"node_modules/cssstyle": {
 			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssstyle/-/cssstyle-2.3.0.tgz",
+			"resolved": "http://localhost:4873/cssstyle/-/cssstyle-2.3.0.tgz",
 			"integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"cssom": "~0.3.6"
 			},
@@ -13049,10 +12261,9 @@
 		},
 		"node_modules/cssstyle/node_modules/cssom": {
 			"version": "0.3.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssom/-/cssom-0.3.8.tgz",
+			"resolved": "http://localhost:4873/cssom/-/cssom-0.3.8.tgz",
 			"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/cyclist": {
 			"version": "1.0.1",
@@ -13062,16 +12273,15 @@
 			"license": "MIT"
 		},
 		"node_modules/cypress": {
-			"version": "12.17.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cypress/-/cypress-12.17.4.tgz",
-			"integrity": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==",
-			"devOptional": true,
+			"version": "13.3.3",
+			"resolved": "http://localhost:4873/cypress/-/cypress-13.3.3.tgz",
+			"integrity": "sha512-mbdkojHhKB1xbrj7CrKWHi22uFx9P9vQFiR0sYDZZoK99OMp9/ZYN55TO5pjbXmV7xvCJ4JwBoADXjOJK8aCJw==",
+			"dev": true,
 			"hasInstallScript": true,
-			"license": "MIT",
 			"dependencies": {
-				"@cypress/request": "2.88.12",
+				"@cypress/request": "^3.0.0",
 				"@cypress/xvfb": "^1.2.4",
-				"@types/node": "^16.18.39",
+				"@types/node": "^18.17.5",
 				"@types/sinonjs__fake-timers": "8.1.1",
 				"@types/sizzle": "^2.3.2",
 				"arch": "^2.2.0",
@@ -13117,7 +12327,7 @@
 				"cypress": "bin/cypress"
 			},
 			"engines": {
-				"node": "^14.0.0 || ^16.0.0 || >=18.0.0"
+				"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
 			}
 		},
 		"node_modules/cypress-file-upload": {
@@ -13204,11 +12414,20 @@
 				"format-duration": "^2.0.0"
 			}
 		},
+		"node_modules/cypress/node_modules/@types/node": {
+			"version": "18.18.7",
+			"resolved": "http://localhost:4873/@types/node/-/node-18.18.7.tgz",
+			"integrity": "sha512-bw+lEsxis6eqJYW8Ql6+yTqkE6RuFtsQPSe5JxXbqYRFQEER5aJA9a5UH9igqDWm3X4iLHIKOHlnAXLM4mi7uQ==",
+			"dev": true,
+			"dependencies": {
+				"undici-types": "~5.26.4"
+			}
+		},
 		"node_modules/cypress/node_modules/ansi-styles": {
 			"version": "4.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
@@ -13224,14 +12443,14 @@
 			"version": "3.7.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bluebird/-/bluebird-3.7.2.tgz",
 			"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/cypress/node_modules/chalk": {
 			"version": "4.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
@@ -13248,7 +12467,7 @@
 			"version": "7.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
@@ -13261,7 +12480,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
@@ -13274,14 +12493,14 @@
 			"version": "1.1.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/cypress/node_modules/fs-extra": {
 			"version": "9.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-extra/-/fs-extra-9.1.0.tgz",
 			"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"at-least-node": "^1.0.0",
@@ -13297,46 +12516,17 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/cypress/node_modules/lru-cache": {
-			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
-			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-			"devOptional": true,
-			"license": "ISC",
-			"dependencies": {
-				"yallist": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
-		"node_modules/cypress/node_modules/semver": {
-			"version": "7.5.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.5.4.tgz",
-			"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
-			"devOptional": true,
-			"license": "ISC",
-			"dependencies": {
-				"lru-cache": "^6.0.0"
-			},
-			"bin": {
-				"semver": "bin/semver.js"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
 		"node_modules/cypress/node_modules/supports-color": {
 			"version": "8.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
 			"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
@@ -13348,19 +12538,11 @@
 				"url": "https://github.com/chalk/supports-color?sponsor=1"
 			}
 		},
-		"node_modules/cypress/node_modules/yallist": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"devOptional": true,
-			"license": "ISC"
-		},
 		"node_modules/dashdash": {
 			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dashdash/-/dashdash-1.14.1.tgz",
+			"resolved": "http://localhost:4873/dashdash/-/dashdash-1.14.1.tgz",
 			"integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"assert-plus": "^1.0.0"
 			},
@@ -13369,32 +12551,17 @@
 			}
 		},
 		"node_modules/data-urls": {
-			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/data-urls/-/data-urls-3.0.2.tgz",
-			"integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"abab": "^2.0.6",
-				"whatwg-mimetype": "^3.0.0",
-				"whatwg-url": "^11.0.0"
-			},
-			"engines": {
-				"node": ">=12"
-			}
-		},
-		"node_modules/data-urls/node_modules/whatwg-url": {
-			"version": "11.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-url/-/whatwg-url-11.0.0.tgz",
-			"integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/data-urls/-/data-urls-2.0.0.tgz",
+			"integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"tr46": "^3.0.0",
-				"webidl-conversions": "^7.0.0"
+				"abab": "^2.0.3",
+				"whatwg-mimetype": "^2.3.0",
+				"whatwg-url": "^8.0.0"
 			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=10"
 			}
 		},
 		"node_modules/date-fns": {
@@ -13424,7 +12591,7 @@
 			"version": "1.11.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dayjs/-/dayjs-1.11.7.tgz",
 			"integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/debug": {
@@ -13444,41 +12611,34 @@
 				}
 			}
 		},
-		"node_modules/decamelize": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/decamelize/-/decamelize-4.0.0.tgz",
-			"integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
 		"node_modules/decimal.js": {
 			"version": "10.4.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/decimal.js/-/decimal.js-10.4.3.tgz",
+			"resolved": "http://localhost:4873/decimal.js/-/decimal.js-10.4.3.tgz",
 			"integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/decode-uri-component": {
 			"version": "0.2.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
 			"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=0.10"
 			}
 		},
 		"node_modules/dedent": {
-			"version": "0.7.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dedent/-/dedent-0.7.0.tgz",
-			"integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==",
-			"license": "MIT"
+			"version": "1.5.1",
+			"resolved": "http://localhost:4873/dedent/-/dedent-1.5.1.tgz",
+			"integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==",
+			"peerDependencies": {
+				"babel-plugin-macros": "^3.1.0"
+			},
+			"peerDependenciesMeta": {
+				"babel-plugin-macros": {
+					"optional": true
+				}
+			}
 		},
 		"node_modules/deep-equal": {
 			"version": "2.2.0",
@@ -13511,10 +12671,9 @@
 		},
 		"node_modules/deep-is": {
 			"version": "0.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/deep-is/-/deep-is-0.1.4.tgz",
+			"resolved": "http://localhost:4873/deep-is/-/deep-is-0.1.4.tgz",
 			"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/deepmerge": {
 			"version": "4.2.2",
@@ -13527,9 +12686,8 @@
 		},
 		"node_modules/default-gateway": {
 			"version": "6.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/default-gateway/-/default-gateway-6.0.3.tgz",
+			"resolved": "http://localhost:4873/default-gateway/-/default-gateway-6.0.3.tgz",
 			"integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==",
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"execa": "^5.0.0"
 			},
@@ -13539,9 +12697,8 @@
 		},
 		"node_modules/default-gateway/node_modules/execa": {
 			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-5.1.1.tgz",
+			"resolved": "http://localhost:4873/execa/-/execa-5.1.1.tgz",
 			"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
-			"license": "MIT",
 			"dependencies": {
 				"cross-spawn": "^7.0.3",
 				"get-stream": "^6.0.0",
@@ -13562,9 +12719,8 @@
 		},
 		"node_modules/default-gateway/node_modules/get-stream": {
 			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-6.0.1.tgz",
+			"resolved": "http://localhost:4873/get-stream/-/get-stream-6.0.1.tgz",
 			"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			},
@@ -13574,9 +12730,8 @@
 		},
 		"node_modules/default-gateway/node_modules/human-signals": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-2.1.0.tgz",
+			"resolved": "http://localhost:4873/human-signals/-/human-signals-2.1.0.tgz",
 			"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
-			"license": "Apache-2.0",
 			"engines": {
 				"node": ">=10.17.0"
 			}
@@ -13644,10 +12799,9 @@
 		},
 		"node_modules/delegates": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/delegates/-/delegates-1.0.0.tgz",
+			"resolved": "http://localhost:4873/delegates/-/delegates-1.0.0.tgz",
 			"integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/denque": {
 			"version": "2.1.0",
@@ -13668,16 +12822,6 @@
 				"node": ">= 0.8"
 			}
 		},
-		"node_modules/dependency-graph": {
-			"version": "0.11.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dependency-graph/-/dependency-graph-0.11.0.tgz",
-			"integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==",
-			"dev": true,
-			"license": "MIT",
-			"engines": {
-				"node": ">= 0.6.0"
-			}
-		},
 		"node_modules/des.js": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/des.js/-/des.js-1.0.1.tgz",
@@ -13691,9 +12835,8 @@
 		},
 		"node_modules/destroy": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/destroy/-/destroy-1.2.0.tgz",
+			"resolved": "http://localhost:4873/destroy/-/destroy-1.2.0.tgz",
 			"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8",
 				"npm": "1.2.8000 || >= 1.4.16"
@@ -13701,18 +12844,29 @@
 		},
 		"node_modules/detect-newline": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/detect-newline/-/detect-newline-3.1.0.tgz",
+			"resolved": "http://localhost:4873/detect-newline/-/detect-newline-3.1.0.tgz",
 			"integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/detect-node": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/detect-node/-/detect-node-2.1.0.tgz",
-			"integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/detect-node/-/detect-node-2.1.0.tgz",
+			"integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="
+		},
+		"node_modules/detect-port": {
+			"version": "1.5.1",
+			"resolved": "http://localhost:4873/detect-port/-/detect-port-1.5.1.tgz",
+			"integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==",
+			"dependencies": {
+				"address": "^1.0.1",
+				"debug": "4"
+			},
+			"bin": {
+				"detect": "bin/detect-port.js",
+				"detect-port": "bin/detect-port.js"
+			}
 		},
 		"node_modules/diff": {
 			"version": "5.0.0",
@@ -13725,12 +12879,11 @@
 			}
 		},
 		"node_modules/diff-sequences": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/diff-sequences/-/diff-sequences-28.1.1.tgz",
-			"integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/diff-sequences/-/diff-sequences-29.6.3.tgz",
+			"integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/diffie-hellman": {
@@ -13766,15 +12919,13 @@
 		},
 		"node_modules/dns-equal": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dns-equal/-/dns-equal-1.0.0.tgz",
-			"integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/dns-equal/-/dns-equal-1.0.0.tgz",
+			"integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg=="
 		},
 		"node_modules/dns-packet": {
-			"version": "5.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dns-packet/-/dns-packet-5.5.0.tgz",
-			"integrity": "sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==",
-			"license": "MIT",
+			"version": "5.6.1",
+			"resolved": "http://localhost:4873/dns-packet/-/dns-packet-5.6.1.tgz",
+			"integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
 			"dependencies": {
 				"@leichtgewicht/ip-codec": "^2.0.1"
 			},
@@ -13786,7 +12937,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/doctrine/-/doctrine-3.0.0.tgz",
 			"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
-			"devOptional": true,
+			"dev": true,
 			"license": "Apache-2.0",
 			"dependencies": {
 				"esutils": "^2.0.2"
@@ -13803,14 +12954,13 @@
 			"license": "MIT"
 		},
 		"node_modules/dom-serializer": {
-			"version": "1.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dom-serializer/-/dom-serializer-1.4.1.tgz",
-			"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
-			"license": "MIT",
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/dom-serializer/-/dom-serializer-2.0.0.tgz",
+			"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
 			"dependencies": {
-				"domelementtype": "^2.0.1",
-				"domhandler": "^4.2.0",
-				"entities": "^2.0.0"
+				"domelementtype": "^2.3.0",
+				"domhandler": "^5.0.2",
+				"entities": "^4.2.0"
 			},
 			"funding": {
 				"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
@@ -13829,36 +12979,42 @@
 		},
 		"node_modules/domelementtype": {
 			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domelementtype/-/domelementtype-2.3.0.tgz",
+			"resolved": "http://localhost:4873/domelementtype/-/domelementtype-2.3.0.tgz",
 			"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
 			"funding": [
 				{
 					"type": "github",
 					"url": "https://github.com/sponsors/fb55"
 				}
-			],
-			"license": "BSD-2-Clause"
+			]
 		},
 		"node_modules/domexception": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domexception/-/domexception-4.0.0.tgz",
-			"integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==",
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/domexception/-/domexception-2.0.1.tgz",
+			"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"webidl-conversions": "^7.0.0"
+				"webidl-conversions": "^5.0.0"
 			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=8"
+			}
+		},
+		"node_modules/domexception/node_modules/webidl-conversions": {
+			"version": "5.0.0",
+			"resolved": "http://localhost:4873/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
+			"integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
+			"dev": true,
+			"engines": {
+				"node": ">=8"
 			}
 		},
 		"node_modules/domhandler": {
-			"version": "4.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domhandler/-/domhandler-4.3.1.tgz",
-			"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
-			"license": "BSD-2-Clause",
+			"version": "5.0.3",
+			"resolved": "http://localhost:4873/domhandler/-/domhandler-5.0.3.tgz",
+			"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
 			"dependencies": {
-				"domelementtype": "^2.2.0"
+				"domelementtype": "^2.3.0"
 			},
 			"engines": {
 				"node": ">= 4"
@@ -13868,26 +13024,35 @@
 			}
 		},
 		"node_modules/domutils": {
-			"version": "2.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domutils/-/domutils-2.8.0.tgz",
-			"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
-			"license": "BSD-2-Clause",
+			"version": "3.1.0",
+			"resolved": "http://localhost:4873/domutils/-/domutils-3.1.0.tgz",
+			"integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
 			"dependencies": {
-				"dom-serializer": "^1.0.1",
-				"domelementtype": "^2.2.0",
-				"domhandler": "^4.2.0"
+				"dom-serializer": "^2.0.0",
+				"domelementtype": "^2.3.0",
+				"domhandler": "^5.0.3"
 			},
 			"funding": {
 				"url": "https://github.com/fb55/domutils?sponsor=1"
 			}
 		},
 		"node_modules/dotenv": {
+			"version": "16.3.1",
+			"resolved": "http://localhost:4873/dotenv/-/dotenv-16.3.1.tgz",
+			"integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==",
+			"engines": {
+				"node": ">=12"
+			},
+			"funding": {
+				"url": "https://github.com/motdotla/dotenv?sponsor=1"
+			}
+		},
+		"node_modules/dotenv-expand": {
 			"version": "10.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dotenv/-/dotenv-10.0.0.tgz",
-			"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==",
-			"license": "BSD-2-Clause",
+			"resolved": "http://localhost:4873/dotenv-expand/-/dotenv-expand-10.0.0.tgz",
+			"integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==",
 			"engines": {
-				"node": ">=10"
+				"node": ">=12"
 			}
 		},
 		"node_modules/duplexer": {
@@ -13949,12 +13114,17 @@
 				"safe-buffer": "~5.1.0"
 			}
 		},
+		"node_modules/eastasianwidth": {
+			"version": "0.2.0",
+			"resolved": "http://localhost:4873/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+			"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+			"dev": true
+		},
 		"node_modules/ecc-jsbn": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+			"resolved": "http://localhost:4873/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
 			"integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"jsbn": "~0.1.0",
 				"safer-buffer": "^2.1.0"
@@ -13962,15 +13132,13 @@
 		},
 		"node_modules/ee-first": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ee-first/-/ee-first-1.1.1.tgz",
-			"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ee-first/-/ee-first-1.1.1.tgz",
+			"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
 		},
 		"node_modules/ejs": {
 			"version": "3.1.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ejs/-/ejs-3.1.9.tgz",
+			"resolved": "http://localhost:4873/ejs/-/ejs-3.1.9.tgz",
 			"integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"jake": "^10.8.5"
 			},
@@ -13982,10 +13150,9 @@
 			}
 		},
 		"node_modules/electron-to-chromium": {
-			"version": "1.4.353",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/electron-to-chromium/-/electron-to-chromium-1.4.353.tgz",
-			"integrity": "sha512-IdJVpMHJoBT/nn0GQ02wPfbhogDVpd1ud95lP//FTf5l35wzxKJwibB4HBdY7Q+xKPA1nkZ0UDLOMyRj5U5IAQ==",
-			"license": "ISC"
+			"version": "1.4.567",
+			"resolved": "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.4.567.tgz",
+			"integrity": "sha512-8KR114CAYQ4/r5EIEsOmOMqQ9j0MRbJZR3aXD/KFA8RuKzyoUB4XrUCg+l8RUGqTVQgKNIgTpjaG8YHRPAbX2w=="
 		},
 		"node_modules/elliptic": {
 			"version": "6.5.4",
@@ -14011,10 +13178,9 @@
 			"license": "MIT"
 		},
 		"node_modules/emittery": {
-			"version": "0.10.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/emittery/-/emittery-0.10.2.tgz",
-			"integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==",
-			"license": "MIT",
+			"version": "0.13.1",
+			"resolved": "http://localhost:4873/emittery/-/emittery-0.13.1.tgz",
+			"integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
 			"engines": {
 				"node": ">=12"
 			},
@@ -14039,19 +13205,17 @@
 		},
 		"node_modules/encodeurl": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/encodeurl/-/encodeurl-1.0.2.tgz",
+			"resolved": "http://localhost:4873/encodeurl/-/encodeurl-1.0.2.tgz",
 			"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
 		},
 		"node_modules/encoding": {
 			"version": "0.1.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/encoding/-/encoding-0.1.13.tgz",
+			"resolved": "http://localhost:4873/encoding/-/encoding-0.1.13.tgz",
 			"integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"dependencies": {
 				"iconv-lite": "^0.6.2"
@@ -14059,10 +13223,9 @@
 		},
 		"node_modules/encoding/node_modules/iconv-lite": {
 			"version": "0.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/iconv-lite/-/iconv-lite-0.6.3.tgz",
+			"resolved": "http://localhost:4873/iconv-lite/-/iconv-lite-0.6.3.tgz",
 			"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
 			"dev": true,
-			"license": "MIT",
 			"optional": true,
 			"dependencies": {
 				"safer-buffer": ">= 2.1.2 < 3.0.0"
@@ -14117,30 +13280,30 @@
 			}
 		},
 		"node_modules/entities": {
-			"version": "2.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/entities/-/entities-2.2.0.tgz",
-			"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
-			"license": "BSD-2-Clause",
+			"version": "4.5.0",
+			"resolved": "http://localhost:4873/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/env-paths": {
 			"version": "2.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/env-paths/-/env-paths-2.2.1.tgz",
+			"resolved": "http://localhost:4873/env-paths/-/env-paths-2.2.1.tgz",
 			"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			}
 		},
 		"node_modules/err-code": {
 			"version": "2.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/err-code/-/err-code-2.0.3.tgz",
+			"resolved": "http://localhost:4873/err-code/-/err-code-2.0.3.tgz",
 			"integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/errno": {
 			"version": "0.1.8",
@@ -14157,9 +13320,8 @@
 		},
 		"node_modules/error-ex": {
 			"version": "1.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/error-ex/-/error-ex-1.3.2.tgz",
+			"resolved": "http://localhost:4873/error-ex/-/error-ex-1.3.2.tgz",
 			"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
-			"license": "MIT",
 			"dependencies": {
 				"is-arrayish": "^0.2.1"
 			}
@@ -14186,19 +13348,16 @@
 			}
 		},
 		"node_modules/es-module-lexer": {
-			"version": "0.9.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
-			"integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
-			"license": "MIT"
+			"version": "1.3.1",
+			"resolved": "http://localhost:4873/es-module-lexer/-/es-module-lexer-1.3.1.tgz",
+			"integrity": "sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q=="
 		},
 		"node_modules/esbuild": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/esbuild/-/esbuild-0.16.17.tgz",
-			"integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/esbuild/-/esbuild-0.18.17.tgz",
+			"integrity": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==",
 			"dev": true,
 			"hasInstallScript": true,
-			"license": "MIT",
-			"optional": true,
 			"bin": {
 				"esbuild": "bin/esbuild"
 			},
@@ -14206,36 +13365,35 @@
 				"node": ">=12"
 			},
 			"optionalDependencies": {
-				"@esbuild/android-arm": "0.16.17",
-				"@esbuild/android-arm64": "0.16.17",
-				"@esbuild/android-x64": "0.16.17",
-				"@esbuild/darwin-arm64": "0.16.17",
-				"@esbuild/darwin-x64": "0.16.17",
-				"@esbuild/freebsd-arm64": "0.16.17",
-				"@esbuild/freebsd-x64": "0.16.17",
-				"@esbuild/linux-arm": "0.16.17",
-				"@esbuild/linux-arm64": "0.16.17",
-				"@esbuild/linux-ia32": "0.16.17",
-				"@esbuild/linux-loong64": "0.16.17",
-				"@esbuild/linux-mips64el": "0.16.17",
-				"@esbuild/linux-ppc64": "0.16.17",
-				"@esbuild/linux-riscv64": "0.16.17",
-				"@esbuild/linux-s390x": "0.16.17",
-				"@esbuild/linux-x64": "0.16.17",
-				"@esbuild/netbsd-x64": "0.16.17",
-				"@esbuild/openbsd-x64": "0.16.17",
-				"@esbuild/sunos-x64": "0.16.17",
-				"@esbuild/win32-arm64": "0.16.17",
-				"@esbuild/win32-ia32": "0.16.17",
-				"@esbuild/win32-x64": "0.16.17"
+				"@esbuild/android-arm": "0.18.17",
+				"@esbuild/android-arm64": "0.18.17",
+				"@esbuild/android-x64": "0.18.17",
+				"@esbuild/darwin-arm64": "0.18.17",
+				"@esbuild/darwin-x64": "0.18.17",
+				"@esbuild/freebsd-arm64": "0.18.17",
+				"@esbuild/freebsd-x64": "0.18.17",
+				"@esbuild/linux-arm": "0.18.17",
+				"@esbuild/linux-arm64": "0.18.17",
+				"@esbuild/linux-ia32": "0.18.17",
+				"@esbuild/linux-loong64": "0.18.17",
+				"@esbuild/linux-mips64el": "0.18.17",
+				"@esbuild/linux-ppc64": "0.18.17",
+				"@esbuild/linux-riscv64": "0.18.17",
+				"@esbuild/linux-s390x": "0.18.17",
+				"@esbuild/linux-x64": "0.18.17",
+				"@esbuild/netbsd-x64": "0.18.17",
+				"@esbuild/openbsd-x64": "0.18.17",
+				"@esbuild/sunos-x64": "0.18.17",
+				"@esbuild/win32-arm64": "0.18.17",
+				"@esbuild/win32-ia32": "0.18.17",
+				"@esbuild/win32-x64": "0.18.17"
 			}
 		},
 		"node_modules/esbuild-wasm": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/esbuild-wasm/-/esbuild-wasm-0.16.17.tgz",
-			"integrity": "sha512-Tn7NuMqRcM+T/qCOxbQRq0qrwWl1sUWp6ARfJRakE8Bepew6zata4qrKgH2YqovNC5e/2fcTa7o+VL/FAOZC1Q==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/esbuild-wasm/-/esbuild-wasm-0.18.17.tgz",
+			"integrity": "sha512-9OHGcuRzy+I8ziF9FzjfKLWAPbvi0e/metACVg9k6bK+SI4FFxeV6PcZsz8RIVaMD4YNehw+qj6UMR3+qj/EuQ==",
 			"dev": true,
-			"license": "MIT",
 			"bin": {
 				"esbuild": "bin/esbuild"
 			},
@@ -14268,16 +13426,14 @@
 			}
 		},
 		"node_modules/escodegen": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escodegen/-/escodegen-2.0.0.tgz",
-			"integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
+			"version": "2.1.0",
+			"resolved": "http://localhost:4873/escodegen/-/escodegen-2.1.0.tgz",
+			"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"esprima": "^4.0.1",
 				"estraverse": "^5.2.0",
-				"esutils": "^2.0.2",
-				"optionator": "^0.8.1"
+				"esutils": "^2.0.2"
 			},
 			"bin": {
 				"escodegen": "bin/escodegen.js",
@@ -14290,113 +13446,59 @@
 				"source-map": "~0.6.1"
 			}
 		},
-		"node_modules/escodegen/node_modules/levn": {
-			"version": "0.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/levn/-/levn-0.3.0.tgz",
-			"integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"prelude-ls": "~1.1.2",
-				"type-check": "~0.3.2"
-			},
-			"engines": {
-				"node": ">= 0.8.0"
-			}
-		},
-		"node_modules/escodegen/node_modules/optionator": {
-			"version": "0.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/optionator/-/optionator-0.8.3.tgz",
-			"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"deep-is": "~0.1.3",
-				"fast-levenshtein": "~2.0.6",
-				"levn": "~0.3.0",
-				"prelude-ls": "~1.1.2",
-				"type-check": "~0.3.2",
-				"word-wrap": "~1.2.3"
-			},
-			"engines": {
-				"node": ">= 0.8.0"
-			}
-		},
-		"node_modules/escodegen/node_modules/prelude-ls": {
-			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prelude-ls/-/prelude-ls-1.1.2.tgz",
-			"integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
-			"dev": true,
-			"engines": {
-				"node": ">= 0.8.0"
-			}
-		},
 		"node_modules/escodegen/node_modules/source-map": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+			"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 			"dev": true,
-			"license": "BSD-3-Clause",
 			"optional": true,
 			"engines": {
 				"node": ">=0.10.0"
 			}
 		},
-		"node_modules/escodegen/node_modules/type-check": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-check/-/type-check-0.3.2.tgz",
-			"integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"prelude-ls": "~1.1.2"
-			},
-			"engines": {
-				"node": ">= 0.8.0"
-			}
-		},
 		"node_modules/eslint": {
-			"version": "8.15.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint/-/eslint-8.15.0.tgz",
-			"integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==",
-			"devOptional": true,
-			"license": "MIT",
-			"dependencies": {
-				"@eslint/eslintrc": "^1.2.3",
-				"@humanwhocodes/config-array": "^0.9.2",
-				"ajv": "^6.10.0",
+			"version": "8.46.0",
+			"resolved": "http://localhost:4873/eslint/-/eslint-8.46.0.tgz",
+			"integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==",
+			"dev": true,
+			"dependencies": {
+				"@eslint-community/eslint-utils": "^4.2.0",
+				"@eslint-community/regexpp": "^4.6.1",
+				"@eslint/eslintrc": "^2.1.1",
+				"@eslint/js": "^8.46.0",
+				"@humanwhocodes/config-array": "^0.11.10",
+				"@humanwhocodes/module-importer": "^1.0.1",
+				"@nodelib/fs.walk": "^1.2.8",
+				"ajv": "^6.12.4",
 				"chalk": "^4.0.0",
 				"cross-spawn": "^7.0.2",
 				"debug": "^4.3.2",
 				"doctrine": "^3.0.0",
 				"escape-string-regexp": "^4.0.0",
-				"eslint-scope": "^7.1.1",
-				"eslint-utils": "^3.0.0",
-				"eslint-visitor-keys": "^3.3.0",
-				"espree": "^9.3.2",
-				"esquery": "^1.4.0",
+				"eslint-scope": "^7.2.2",
+				"eslint-visitor-keys": "^3.4.2",
+				"espree": "^9.6.1",
+				"esquery": "^1.4.2",
 				"esutils": "^2.0.2",
 				"fast-deep-equal": "^3.1.3",
 				"file-entry-cache": "^6.0.1",
-				"functional-red-black-tree": "^1.0.1",
-				"glob-parent": "^6.0.1",
-				"globals": "^13.6.0",
+				"find-up": "^5.0.0",
+				"glob-parent": "^6.0.2",
+				"globals": "^13.19.0",
+				"graphemer": "^1.4.0",
 				"ignore": "^5.2.0",
-				"import-fresh": "^3.0.0",
 				"imurmurhash": "^0.1.4",
 				"is-glob": "^4.0.0",
+				"is-path-inside": "^3.0.3",
 				"js-yaml": "^4.1.0",
 				"json-stable-stringify-without-jsonify": "^1.0.1",
 				"levn": "^0.4.1",
 				"lodash.merge": "^4.6.2",
 				"minimatch": "^3.1.2",
 				"natural-compare": "^1.4.0",
-				"optionator": "^0.9.1",
-				"regexpp": "^3.2.0",
+				"optionator": "^0.9.3",
 				"strip-ansi": "^6.0.1",
-				"strip-json-comments": "^3.1.0",
-				"text-table": "^0.2.0",
-				"v8-compile-cache": "^2.0.3"
+				"text-table": "^0.2.0"
 			},
 			"bin": {
 				"eslint": "bin/eslint.js"
@@ -14422,67 +13524,62 @@
 			}
 		},
 		"node_modules/eslint-plugin-cypress": {
-			"version": "2.11.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-plugin-cypress/-/eslint-plugin-cypress-2.11.3.tgz",
-			"integrity": "sha512-hOoAid+XNFtpvOzZSNWP5LDrQBEJwbZwjib4XJ1KcRYKjeVj0mAmPmucG4Egli4j/aruv+Ow/acacoloWWCl9Q==",
+			"version": "2.15.1",
+			"resolved": "http://localhost:4873/eslint-plugin-cypress/-/eslint-plugin-cypress-2.15.1.tgz",
+			"integrity": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"globals": "^11.12.0"
+				"globals": "^13.20.0"
 			},
 			"peerDependencies": {
 				"eslint": ">= 3.2.1"
 			}
 		},
-		"node_modules/eslint-scope": {
-			"version": "7.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-7.1.1.tgz",
-			"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
-			"devOptional": true,
-			"license": "BSD-2-Clause",
+		"node_modules/eslint-plugin-cypress/node_modules/globals": {
+			"version": "13.23.0",
+			"resolved": "http://localhost:4873/globals/-/globals-13.23.0.tgz",
+			"integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==",
+			"dev": true,
 			"dependencies": {
-				"esrecurse": "^4.3.0",
-				"estraverse": "^5.2.0"
+				"type-fest": "^0.20.2"
 			},
 			"engines": {
-				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+				"node": ">=8"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
-		"node_modules/eslint-utils": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-utils/-/eslint-utils-3.0.0.tgz",
-			"integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
-			"devOptional": true,
-			"license": "MIT",
-			"dependencies": {
-				"eslint-visitor-keys": "^2.0.0"
-			},
+		"node_modules/eslint-plugin-cypress/node_modules/type-fest": {
+			"version": "0.20.2",
+			"resolved": "http://localhost:4873/type-fest/-/type-fest-0.20.2.tgz",
+			"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+			"dev": true,
 			"engines": {
-				"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
+				"node": ">=10"
 			},
 			"funding": {
-				"url": "https://github.com/sponsors/mysticatea"
-			},
-			"peerDependencies": {
-				"eslint": ">=5"
+				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
-		"node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
-			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
-			"integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+		"node_modules/eslint-scope": {
+			"version": "7.1.1",
+			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-7.1.1.tgz",
+			"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
+			"dev": true,
+			"license": "BSD-2-Clause",
+			"dependencies": {
+				"esrecurse": "^4.3.0",
+				"estraverse": "^5.2.0"
+			},
 			"engines": {
-				"node": ">=10"
+				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 			}
 		},
 		"node_modules/eslint-visitor-keys": {
-			"version": "3.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz",
-			"integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+			"version": "3.4.3",
+			"resolved": "http://localhost:4873/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+			"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 			},
@@ -14494,7 +13591,7 @@
 			"version": "6.12.6",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
 			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"fast-deep-equal": "^3.1.1",
@@ -14511,7 +13608,7 @@
 			"version": "4.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
@@ -14527,14 +13624,14 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/argparse/-/argparse-2.0.1.tgz",
 			"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-			"devOptional": true,
+			"dev": true,
 			"license": "Python-2.0"
 		},
 		"node_modules/eslint/node_modules/chalk": {
 			"version": "4.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
@@ -14551,7 +13648,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
@@ -14564,14 +13661,14 @@
 			"version": "1.1.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/eslint/node_modules/escape-string-regexp": {
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
 			"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=10"
@@ -14580,11 +13677,43 @@
 				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
+		"node_modules/eslint/node_modules/eslint-scope": {
+			"version": "7.2.2",
+			"resolved": "http://localhost:4873/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/eslint/node_modules/find-up": {
+			"version": "5.0.0",
+			"resolved": "http://localhost:4873/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/eslint/node_modules/glob-parent": {
 			"version": "6.0.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-6.0.2.tgz",
 			"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
-			"devOptional": true,
+			"dev": true,
 			"license": "ISC",
 			"dependencies": {
 				"is-glob": "^4.0.3"
@@ -14597,7 +13726,7 @@
 			"version": "13.20.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globals/-/globals-13.20.0.tgz",
 			"integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"type-fest": "^0.20.2"
@@ -14613,7 +13742,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
@@ -14623,7 +13752,7 @@
 			"version": "4.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-yaml/-/js-yaml-4.1.0.tgz",
 			"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"argparse": "^2.0.1"
@@ -14636,14 +13765,29 @@
 			"version": "0.4.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
+		"node_modules/eslint/node_modules/locate-path": {
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/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/eslint/node_modules/minimatch": {
 			"version": "3.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
@@ -14652,11 +13796,26 @@
 				"node": "*"
 			}
 		},
+		"node_modules/eslint/node_modules/p-locate": {
+			"version": "5.0.0",
+			"resolved": "http://localhost:4873/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/eslint/node_modules/supports-color": {
 			"version": "7.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
@@ -14669,7 +13828,7 @@
 			"version": "0.20.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-fest/-/type-fest-0.20.2.tgz",
 			"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "(MIT OR CC0-1.0)",
 			"engines": {
 				"node": ">=10"
@@ -14679,15 +13838,14 @@
 			}
 		},
 		"node_modules/espree": {
-			"version": "9.5.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/espree/-/espree-9.5.1.tgz",
-			"integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==",
-			"devOptional": true,
-			"license": "BSD-2-Clause",
+			"version": "9.6.1",
+			"resolved": "http://localhost:4873/espree/-/espree-9.6.1.tgz",
+			"integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
+			"dev": true,
 			"dependencies": {
-				"acorn": "^8.8.0",
+				"acorn": "^8.9.0",
 				"acorn-jsx": "^5.3.2",
-				"eslint-visitor-keys": "^3.4.0"
+				"eslint-visitor-keys": "^3.4.1"
 			},
 			"engines": {
 				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -14753,32 +13911,29 @@
 		},
 		"node_modules/etag": {
 			"version": "1.8.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/etag/-/etag-1.8.1.tgz",
+			"resolved": "http://localhost:4873/etag/-/etag-1.8.1.tgz",
 			"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/eventemitter-asyncresource": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz",
+			"resolved": "http://localhost:4873/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz",
 			"integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/eventemitter2": {
 			"version": "6.4.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eventemitter2/-/eventemitter2-6.4.7.tgz",
 			"integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/eventemitter3": {
 			"version": "4.0.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eventemitter3/-/eventemitter3-4.0.7.tgz",
-			"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/eventemitter3/-/eventemitter3-4.0.7.tgz",
+			"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
 		},
 		"node_modules/events": {
 			"version": "3.3.0",
@@ -14804,7 +13959,7 @@
 			"version": "4.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-4.1.0.tgz",
 			"integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"cross-spawn": "^7.0.0",
@@ -14828,7 +13983,7 @@
 			"version": "4.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/executable/-/executable-4.1.1.tgz",
 			"integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"pify": "^2.2.0"
@@ -14839,7 +13994,7 @@
 		},
 		"node_modules/exit": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/exit/-/exit-0.1.2.tgz",
+			"resolved": "http://localhost:4873/exit/-/exit-0.1.2.tgz",
 			"integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
 			"engines": {
 				"node": ">= 0.8.0"
@@ -14995,113 +14150,30 @@
 			"license": "MIT"
 		},
 		"node_modules/expect": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/expect/-/expect-28.1.3.tgz",
-			"integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/expect-utils": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"jest-matcher-utils": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/expect/node_modules/ansi-styles": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
-			"dependencies": {
-				"color-convert": "^2.0.1"
-			},
-			"engines": {
-				"node": ">=8"
-			},
-			"funding": {
-				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
-			}
-		},
-		"node_modules/expect/node_modules/chalk": {
-			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
-			"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/expect/node_modules/color-convert": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/expect/-/expect-29.7.0.tgz",
+			"integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==",
 			"dependencies": {
-				"color-name": "~1.1.4"
+				"@jest/expect-utils": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"jest-matcher-utils": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0"
 			},
 			"engines": {
-				"node": ">=7.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
-		"node_modules/expect/node_modules/color-name": {
-			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/expect/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/expect/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/expect/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
-			"dependencies": {
-				"has-flag": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=8"
-			}
+		"node_modules/exponential-backoff": {
+			"version": "3.1.1",
+			"resolved": "http://localhost:4873/exponential-backoff/-/exponential-backoff-3.1.1.tgz",
+			"integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==",
+			"dev": true
 		},
 		"node_modules/express": {
 			"version": "4.18.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/express/-/express-4.18.2.tgz",
+			"resolved": "http://localhost:4873/express/-/express-4.18.2.tgz",
 			"integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
-			"license": "MIT",
 			"dependencies": {
 				"accepts": "~1.3.8",
 				"array-flatten": "1.1.1",
@@ -15141,30 +14213,26 @@
 		},
 		"node_modules/express/node_modules/array-flatten": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-flatten/-/array-flatten-1.1.1.tgz",
-			"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/array-flatten/-/array-flatten-1.1.1.tgz",
+			"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
 		},
 		"node_modules/express/node_modules/debug": {
 			"version": "2.6.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+			"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 			"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-			"license": "MIT",
 			"dependencies": {
 				"ms": "2.0.0"
 			}
 		},
 		"node_modules/express/node_modules/ms": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+			"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 		},
 		"node_modules/express/node_modules/qs": {
 			"version": "6.11.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/qs/-/qs-6.11.0.tgz",
+			"resolved": "http://localhost:4873/qs/-/qs-6.11.0.tgz",
 			"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
-			"license": "BSD-3-Clause",
 			"dependencies": {
 				"side-channel": "^1.0.4"
 			},
@@ -15177,10 +14245,9 @@
 		},
 		"node_modules/extend": {
 			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/extend/-/extend-3.0.2.tgz",
+			"resolved": "http://localhost:4873/extend/-/extend-3.0.2.tgz",
 			"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/extend-shallow": {
 			"version": "3.0.2",
@@ -15284,7 +14351,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/extract-zip/-/extract-zip-2.0.1.tgz",
 			"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "BSD-2-Clause",
 			"dependencies": {
 				"debug": "^4.1.1",
@@ -15303,13 +14370,12 @@
 		},
 		"node_modules/extsprintf": {
 			"version": "1.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/extsprintf/-/extsprintf-1.3.0.tgz",
+			"resolved": "http://localhost:4873/extsprintf/-/extsprintf-1.3.0.tgz",
 			"integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
-			"devOptional": true,
+			"dev": true,
 			"engines": [
 				"node >=0.6.0"
-			],
-			"license": "MIT"
+			]
 		},
 		"node_modules/fancy-log": {
 			"version": "2.0.0",
@@ -15331,10 +14397,9 @@
 			"license": "MIT"
 		},
 		"node_modules/fast-glob": {
-			"version": "3.2.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.7.tgz",
-			"integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
-			"license": "MIT",
+			"version": "3.3.1",
+			"resolved": "http://localhost:4873/fast-glob/-/fast-glob-3.3.1.tgz",
+			"integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
 			"dependencies": {
 				"@nodelib/fs.stat": "^2.0.2",
 				"@nodelib/fs.walk": "^1.2.3",
@@ -15343,7 +14408,7 @@
 				"micromatch": "^4.0.4"
 			},
 			"engines": {
-				"node": ">=8"
+				"node": ">=8.6.0"
 			}
 		},
 		"node_modules/fast-json-stable-stringify": {
@@ -15354,10 +14419,9 @@
 		},
 		"node_modules/fast-levenshtein": {
 			"version": "2.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+			"resolved": "http://localhost:4873/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
 			"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/fastq": {
 			"version": "1.15.0",
@@ -15370,9 +14434,8 @@
 		},
 		"node_modules/faye-websocket": {
 			"version": "0.11.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/faye-websocket/-/faye-websocket-0.11.4.tgz",
+			"resolved": "http://localhost:4873/faye-websocket/-/faye-websocket-0.11.4.tgz",
 			"integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"websocket-driver": ">=0.5.1"
 			},
@@ -15382,9 +14445,8 @@
 		},
 		"node_modules/fb-watchman": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fb-watchman/-/fb-watchman-2.0.2.tgz",
+			"resolved": "http://localhost:4873/fb-watchman/-/fb-watchman-2.0.2.tgz",
 			"integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"bser": "2.1.1"
 			}
@@ -15393,7 +14455,7 @@
 			"version": "1.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fd-slicer/-/fd-slicer-1.1.0.tgz",
 			"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"pend": "~1.2.0"
@@ -15425,7 +14487,7 @@
 			"version": "6.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
 			"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"flat-cache": "^3.0.4"
@@ -15434,89 +14496,6 @@
 				"node": "^10.12.0 || >=12.0.0"
 			}
 		},
-		"node_modules/file-loader": {
-			"version": "6.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/file-loader/-/file-loader-6.2.0.tgz",
-			"integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
-			"license": "MIT",
-			"dependencies": {
-				"loader-utils": "^2.0.0",
-				"schema-utils": "^3.0.0"
-			},
-			"engines": {
-				"node": ">= 10.13.0"
-			},
-			"funding": {
-				"type": "opencollective",
-				"url": "https://opencollective.com/webpack"
-			},
-			"peerDependencies": {
-				"webpack": "^4.0.0 || ^5.0.0"
-			}
-		},
-		"node_modules/file-loader/node_modules/ajv": {
-			"version": "6.12.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
-			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"license": "MIT",
-			"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/file-loader/node_modules/ajv-keywords": {
-			"version": "3.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-			"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-			"license": "MIT",
-			"peerDependencies": {
-				"ajv": "^6.9.1"
-			}
-		},
-		"node_modules/file-loader/node_modules/json-schema-traverse": {
-			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"license": "MIT"
-		},
-		"node_modules/file-loader/node_modules/loader-utils": {
-			"version": "2.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/loader-utils/-/loader-utils-2.0.4.tgz",
-			"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
-			"license": "MIT",
-			"dependencies": {
-				"big.js": "^5.2.2",
-				"emojis-list": "^3.0.0",
-				"json5": "^2.1.2"
-			},
-			"engines": {
-				"node": ">=8.9.0"
-			}
-		},
-		"node_modules/file-loader/node_modules/schema-utils": {
-			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-			"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-			"license": "MIT",
-			"dependencies": {
-				"@types/json-schema": "^7.0.8",
-				"ajv": "^6.12.5",
-				"ajv-keywords": "^3.5.2"
-			},
-			"engines": {
-				"node": ">= 10.13.0"
-			},
-			"funding": {
-				"type": "opencollective",
-				"url": "https://opencollective.com/webpack"
-			}
-		},
 		"node_modules/file-saver": {
 			"version": "2.0.5",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/file-saver/-/file-saver-2.0.5.tgz",
@@ -15533,27 +14512,24 @@
 		},
 		"node_modules/filelist": {
 			"version": "1.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/filelist/-/filelist-1.0.4.tgz",
+			"resolved": "http://localhost:4873/filelist/-/filelist-1.0.4.tgz",
 			"integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"minimatch": "^5.0.1"
 			}
 		},
 		"node_modules/filelist/node_modules/brace-expansion": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
+			"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
 			"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
-			"license": "MIT",
 			"dependencies": {
 				"balanced-match": "^1.0.0"
 			}
 		},
 		"node_modules/filelist/node_modules/minimatch": {
 			"version": "5.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-5.1.6.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-5.1.6.tgz",
 			"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^2.0.1"
 			},
@@ -15575,9 +14551,8 @@
 		},
 		"node_modules/finalhandler": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/finalhandler/-/finalhandler-1.2.0.tgz",
+			"resolved": "http://localhost:4873/finalhandler/-/finalhandler-1.2.0.tgz",
 			"integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
-			"license": "MIT",
 			"dependencies": {
 				"debug": "2.6.9",
 				"encodeurl": "~1.0.2",
@@ -15593,18 +14568,16 @@
 		},
 		"node_modules/finalhandler/node_modules/debug": {
 			"version": "2.6.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+			"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 			"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-			"license": "MIT",
 			"dependencies": {
 				"ms": "2.0.0"
 			}
 		},
 		"node_modules/finalhandler/node_modules/ms": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+			"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 		},
 		"node_modules/find-cache-dir": {
 			"version": "3.3.2",
@@ -15649,7 +14622,7 @@
 			"version": "3.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/flat-cache/-/flat-cache-3.0.4.tgz",
 			"integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"flatted": "^3.1.0",
@@ -15663,7 +14636,7 @@
 			"version": "3.2.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/flatted/-/flatted-3.2.7.tgz",
 			"integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "ISC"
 		},
 		"node_modules/flush-write-stream": {
@@ -15757,21 +14730,47 @@
 				"node": ">=0.10.0"
 			}
 		},
+		"node_modules/foreground-child": {
+			"version": "3.1.1",
+			"resolved": "http://localhost:4873/foreground-child/-/foreground-child-3.1.1.tgz",
+			"integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
+			"dev": true,
+			"dependencies": {
+				"cross-spawn": "^7.0.0",
+				"signal-exit": "^4.0.1"
+			},
+			"engines": {
+				"node": ">=14"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/isaacs"
+			}
+		},
+		"node_modules/foreground-child/node_modules/signal-exit": {
+			"version": "4.1.0",
+			"resolved": "http://localhost:4873/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/forever-agent": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/forever-agent/-/forever-agent-0.6.1.tgz",
+			"resolved": "http://localhost:4873/forever-agent/-/forever-agent-0.6.1.tgz",
 			"integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+			"dev": true,
 			"engines": {
 				"node": "*"
 			}
 		},
 		"node_modules/fork-ts-checker-webpack-plugin": {
 			"version": "7.2.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz",
+			"resolved": "http://localhost:4873/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz",
 			"integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/code-frame": "^7.16.7",
 				"chalk": "^4.1.2",
@@ -15803,9 +14802,8 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": {
 			"version": "6.12.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+			"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"license": "MIT",
 			"dependencies": {
 				"fast-deep-equal": "^3.1.1",
 				"fast-json-stable-stringify": "^2.0.0",
@@ -15819,18 +14817,16 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": {
 			"version": "3.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+			"resolved": "http://localhost:4873/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
 			"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-			"license": "MIT",
 			"peerDependencies": {
 				"ajv": "^6.9.1"
 			}
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -15843,9 +14839,8 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -15859,9 +14854,8 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -15871,15 +14865,13 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
 			"version": "7.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+			"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
 			"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
-			"license": "MIT",
 			"dependencies": {
 				"@types/parse-json": "^4.0.0",
 				"import-fresh": "^3.2.1",
@@ -15893,9 +14885,8 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": {
 			"version": "10.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-extra/-/fs-extra-10.1.0.tgz",
+			"resolved": "http://localhost:4873/fs-extra/-/fs-extra-10.1.0.tgz",
 			"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
-			"license": "MIT",
 			"dependencies": {
 				"graceful-fs": "^4.2.0",
 				"jsonfile": "^6.0.1",
@@ -15907,24 +14898,21 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
-			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-			"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-			"license": "MIT",
+			"version": "3.3.0",
+			"resolved": "http://localhost:4873/schema-utils/-/schema-utils-3.3.0.tgz",
+			"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
 			"dependencies": {
 				"@types/json-schema": "^7.0.8",
 				"ajv": "^6.12.5",
@@ -15940,9 +14928,8 @@
 		},
 		"node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -15952,10 +14939,9 @@
 		},
 		"node_modules/form-data": {
 			"version": "2.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/form-data/-/form-data-2.3.3.tgz",
+			"resolved": "http://localhost:4873/form-data/-/form-data-2.3.3.tgz",
 			"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"asynckit": "^0.4.0",
 				"combined-stream": "^1.0.6",
@@ -15974,24 +14960,22 @@
 		},
 		"node_modules/forwarded": {
 			"version": "0.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/forwarded/-/forwarded-0.2.0.tgz",
+			"resolved": "http://localhost:4873/forwarded/-/forwarded-0.2.0.tgz",
 			"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/fraction.js": {
-			"version": "4.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fraction.js/-/fraction.js-4.2.0.tgz",
-			"integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
-			"license": "MIT",
+			"version": "4.3.7",
+			"resolved": "http://localhost:4873/fraction.js/-/fraction.js-4.3.7.tgz",
+			"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
 			"engines": {
 				"node": "*"
 			},
 			"funding": {
 				"type": "patreon",
-				"url": "https://www.patreon.com/infusion"
+				"url": "https://github.com/sponsors/rawify"
 			}
 		},
 		"node_modules/fragment-cache": {
@@ -16009,9 +14993,8 @@
 		},
 		"node_modules/fresh": {
 			"version": "0.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fresh/-/fresh-0.5.2.tgz",
+			"resolved": "http://localhost:4873/fresh/-/fresh-0.5.2.tgz",
 			"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
@@ -16088,23 +15071,30 @@
 			}
 		},
 		"node_modules/fs-minipass": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-minipass/-/fs-minipass-3.0.1.tgz",
-			"integrity": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==",
+			"version": "3.0.3",
+			"resolved": "http://localhost:4873/fs-minipass/-/fs-minipass-3.0.3.tgz",
+			"integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
-				"minipass": "^4.0.0"
+				"minipass": "^7.0.3"
 			},
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
+		"node_modules/fs-minipass/node_modules/minipass": {
+			"version": "7.0.4",
+			"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+			"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+			"dev": true,
+			"engines": {
+				"node": ">=16 || 14 >=14.17"
+			}
+		},
 		"node_modules/fs-monkey": {
-			"version": "1.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-monkey/-/fs-monkey-1.0.3.tgz",
-			"integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==",
-			"license": "Unlicense"
+			"version": "1.0.5",
+			"resolved": "http://localhost:4873/fs-monkey/-/fs-monkey-1.0.5.tgz",
+			"integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew=="
 		},
 		"node_modules/fs-write-stream-atomic": {
 			"version": "1.0.10",
@@ -16192,13 +15182,6 @@
 			"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
 			"license": "MIT"
 		},
-		"node_modules/functional-red-black-tree": {
-			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
-			"integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==",
-			"devOptional": true,
-			"license": "MIT"
-		},
 		"node_modules/functions-have-names": {
 			"version": "1.2.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/functions-have-names/-/functions-have-names-1.2.3.tgz",
@@ -16211,10 +15194,9 @@
 		},
 		"node_modules/gauge": {
 			"version": "4.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/gauge/-/gauge-4.0.4.tgz",
+			"resolved": "http://localhost:4873/gauge/-/gauge-4.0.4.tgz",
 			"integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"aproba": "^1.0.3 || ^2.0.0",
 				"color-support": "^1.1.3",
@@ -16274,7 +15256,7 @@
 			"version": "5.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-5.2.0.tgz",
 			"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"pump": "^3.0.0"
@@ -16300,7 +15282,7 @@
 			"version": "3.2.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/getos/-/getos-3.2.1.tgz",
 			"integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"async": "^3.2.0"
@@ -16308,29 +15290,30 @@
 		},
 		"node_modules/getpass": {
 			"version": "0.1.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/getpass/-/getpass-0.1.7.tgz",
+			"resolved": "http://localhost:4873/getpass/-/getpass-0.1.7.tgz",
 			"integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"assert-plus": "^1.0.0"
 			}
 		},
 		"node_modules/glob": {
-			"version": "8.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-8.0.3.tgz",
-			"integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==",
+			"version": "10.3.10",
+			"resolved": "http://localhost:4873/glob/-/glob-10.3.10.tgz",
+			"integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
-				"fs.realpath": "^1.0.0",
-				"inflight": "^1.0.4",
-				"inherits": "2",
-				"minimatch": "^5.0.1",
-				"once": "^1.3.0"
+				"foreground-child": "^3.1.0",
+				"jackspeak": "^2.3.5",
+				"minimatch": "^9.0.1",
+				"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
+				"path-scurry": "^1.10.1"
+			},
+			"bin": {
+				"glob": "dist/esm/bin.mjs"
 			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=16 || 14 >=14.17"
 			},
 			"funding": {
 				"url": "https://github.com/sponsors/isaacs"
@@ -16350,38 +15333,38 @@
 		},
 		"node_modules/glob-to-regexp": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
-			"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
-			"license": "BSD-2-Clause"
+			"resolved": "http://localhost:4873/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+			"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
 		},
 		"node_modules/glob/node_modules/brace-expansion": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
+			"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
 			"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"balanced-match": "^1.0.0"
 			}
 		},
 		"node_modules/glob/node_modules/minimatch": {
-			"version": "5.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-5.1.6.tgz",
-			"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+			"version": "9.0.3",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-9.0.3.tgz",
+			"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^2.0.1"
 			},
 			"engines": {
-				"node": ">=10"
+				"node": ">=16 || 14 >=14.17"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/isaacs"
 			}
 		},
 		"node_modules/global-dirs": {
 			"version": "3.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/global-dirs/-/global-dirs-3.0.1.tgz",
 			"integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ini": "2.0.0"
@@ -16397,7 +15380,7 @@
 			"version": "2.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ini/-/ini-2.0.0.tgz",
 			"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "ISC",
 			"engines": {
 				"node": ">=10"
@@ -16414,10 +15397,8 @@
 		},
 		"node_modules/globby": {
 			"version": "11.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globby/-/globby-11.1.0.tgz",
+			"resolved": "http://localhost:4873/globby/-/globby-11.1.0.tgz",
 			"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
-			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"array-union": "^2.1.0",
 				"dir-glob": "^3.0.1",
@@ -16433,23 +15414,6 @@
 				"url": "https://github.com/sponsors/sindresorhus"
 			}
 		},
-		"node_modules/globby/node_modules/fast-glob": {
-			"version": "3.2.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.12.tgz",
-			"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
-			"dev": true,
-			"license": "MIT",
-			"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.4"
-			},
-			"engines": {
-				"node": ">=8.6.0"
-			}
-		},
 		"node_modules/gopd": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/gopd/-/gopd-1.0.1.tgz",
@@ -16469,17 +15433,33 @@
 			"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
 			"license": "ISC"
 		},
+		"node_modules/graphemer": {
+			"version": "1.4.0",
+			"resolved": "http://localhost:4873/graphemer/-/graphemer-1.4.0.tgz",
+			"integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
+			"dev": true
+		},
+		"node_modules/guess-parser": {
+			"version": "0.4.22",
+			"resolved": "http://localhost:4873/guess-parser/-/guess-parser-0.4.22.tgz",
+			"integrity": "sha512-KcUWZ5ACGaBM69SbqwVIuWGoSAgD+9iJnchR9j/IarVI1jHVeXv+bUXBIMeqVMSKt3zrn0Dgf9UpcOEpPBLbSg==",
+			"dev": true,
+			"dependencies": {
+				"@wessberg/ts-evaluator": "0.0.27"
+			},
+			"peerDependencies": {
+				"typescript": ">=3.7.5"
+			}
+		},
 		"node_modules/handle-thing": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/handle-thing/-/handle-thing-2.0.1.tgz",
-			"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/handle-thing/-/handle-thing-2.0.1.tgz",
+			"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="
 		},
 		"node_modules/harmony-reflect": {
 			"version": "1.6.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
-			"integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==",
-			"license": "(Apache-2.0 OR MPL-1.1)"
+			"resolved": "http://localhost:4873/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
+			"integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g=="
 		},
 		"node_modules/has": {
 			"version": "1.0.3",
@@ -16505,9 +15485,8 @@
 		},
 		"node_modules/has-flag": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-3.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-3.0.0.tgz",
 			"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=4"
 			}
@@ -16555,10 +15534,9 @@
 		},
 		"node_modules/has-unicode": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-unicode/-/has-unicode-2.0.1.tgz",
+			"resolved": "http://localhost:4873/has-unicode/-/has-unicode-2.0.1.tgz",
 			"integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/has-value": {
 			"version": "1.0.0",
@@ -16656,10 +15634,9 @@
 		},
 		"node_modules/hdr-histogram-js": {
 			"version": "2.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz",
+			"resolved": "http://localhost:4873/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz",
 			"integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==",
 			"dev": true,
-			"license": "BSD",
 			"dependencies": {
 				"@assemblyscript/loader": "^0.10.1",
 				"base64-js": "^1.2.0",
@@ -16668,19 +15645,9 @@
 		},
 		"node_modules/hdr-histogram-percentiles-obj": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz",
+			"resolved": "http://localhost:4873/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz",
 			"integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==",
-			"dev": true,
-			"license": "MIT"
-		},
-		"node_modules/he": {
-			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/he/-/he-1.2.0.tgz",
-			"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
-			"license": "MIT",
-			"bin": {
-				"he": "bin/he"
-			}
+			"dev": true
 		},
 		"node_modules/hmac-drbg": {
 			"version": "1.0.1",
@@ -16696,10 +15663,9 @@
 		},
 		"node_modules/hosted-git-info": {
 			"version": "6.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
+			"resolved": "http://localhost:4873/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
 			"integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"lru-cache": "^7.5.1"
 			},
@@ -16709,19 +15675,17 @@
 		},
 		"node_modules/hosted-git-info/node_modules/lru-cache": {
 			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 			"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": ">=12"
 			}
 		},
 		"node_modules/hpack.js": {
 			"version": "2.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hpack.js/-/hpack.js-2.1.6.tgz",
+			"resolved": "http://localhost:4873/hpack.js/-/hpack.js-2.1.6.tgz",
 			"integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==",
-			"license": "MIT",
 			"dependencies": {
 				"inherits": "^2.0.1",
 				"obuf": "^1.0.0",
@@ -16731,15 +15695,13 @@
 		},
 		"node_modules/hpack.js/node_modules/isarray": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/isarray/-/isarray-1.0.0.tgz",
-			"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/isarray/-/isarray-1.0.0.tgz",
+			"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
 		},
 		"node_modules/hpack.js/node_modules/readable-stream": {
 			"version": "2.3.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/readable-stream/-/readable-stream-2.3.8.tgz",
+			"resolved": "http://localhost:4873/readable-stream/-/readable-stream-2.3.8.tgz",
 			"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
-			"license": "MIT",
 			"dependencies": {
 				"core-util-is": "~1.0.0",
 				"inherits": "~2.0.3",
@@ -16752,61 +15714,83 @@
 		},
 		"node_modules/hpack.js/node_modules/safe-buffer": {
 			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safe-buffer/-/safe-buffer-5.1.2.tgz",
-			"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/safe-buffer/-/safe-buffer-5.1.2.tgz",
+			"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
 		},
 		"node_modules/hpack.js/node_modules/string_decoder": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/string_decoder/-/string_decoder-1.1.1.tgz",
+			"resolved": "http://localhost:4873/string_decoder/-/string_decoder-1.1.1.tgz",
 			"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
-			"license": "MIT",
 			"dependencies": {
 				"safe-buffer": "~5.1.0"
 			}
 		},
 		"node_modules/html-encoding-sniffer": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz",
-			"integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==",
-			"license": "MIT",
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
+			"integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
+			"dev": true,
 			"dependencies": {
-				"whatwg-encoding": "^2.0.0"
+				"whatwg-encoding": "^1.0.5"
 			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=10"
 			}
 		},
 		"node_modules/html-entities": {
-			"version": "2.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/html-entities/-/html-entities-2.3.3.tgz",
-			"integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==",
-			"license": "MIT"
+			"version": "2.4.0",
+			"resolved": "http://localhost:4873/html-entities/-/html-entities-2.4.0.tgz",
+			"integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==",
+			"funding": [
+				{
+					"type": "github",
+					"url": "https://github.com/sponsors/mdevils"
+				},
+				{
+					"type": "patreon",
+					"url": "https://patreon.com/mdevils"
+				}
+			]
 		},
 		"node_modules/html-escaper": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/html-escaper/-/html-escaper-2.0.2.tgz",
-			"integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/html-escaper/-/html-escaper-2.0.2.tgz",
+			"integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="
+		},
+		"node_modules/htmlparser2": {
+			"version": "8.0.2",
+			"resolved": "http://localhost:4873/htmlparser2/-/htmlparser2-8.0.2.tgz",
+			"integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==",
+			"dev": true,
+			"funding": [
+				"https://github.com/fb55/htmlparser2?sponsor=1",
+				{
+					"type": "github",
+					"url": "https://github.com/sponsors/fb55"
+				}
+			],
+			"dependencies": {
+				"domelementtype": "^2.3.0",
+				"domhandler": "^5.0.3",
+				"domutils": "^3.0.1",
+				"entities": "^4.4.0"
+			}
 		},
 		"node_modules/http-cache-semantics": {
 			"version": "4.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
+			"resolved": "http://localhost:4873/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
 			"integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==",
-			"dev": true,
-			"license": "BSD-2-Clause"
+			"dev": true
 		},
 		"node_modules/http-deceiver": {
 			"version": "1.2.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-deceiver/-/http-deceiver-1.2.7.tgz",
-			"integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/http-deceiver/-/http-deceiver-1.2.7.tgz",
+			"integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw=="
 		},
 		"node_modules/http-errors": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-errors/-/http-errors-2.0.0.tgz",
+			"resolved": "http://localhost:4873/http-errors/-/http-errors-2.0.0.tgz",
 			"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
-			"license": "MIT",
 			"dependencies": {
 				"depd": "2.0.0",
 				"inherits": "2.0.4",
@@ -16820,15 +15804,13 @@
 		},
 		"node_modules/http-parser-js": {
 			"version": "0.5.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-parser-js/-/http-parser-js-0.5.8.tgz",
-			"integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/http-parser-js/-/http-parser-js-0.5.8.tgz",
+			"integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q=="
 		},
 		"node_modules/http-proxy": {
 			"version": "1.18.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-proxy/-/http-proxy-1.18.1.tgz",
+			"resolved": "http://localhost:4873/http-proxy/-/http-proxy-1.18.1.tgz",
 			"integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
-			"license": "MIT",
 			"dependencies": {
 				"eventemitter3": "^4.0.0",
 				"follow-redirects": "^1.0.0",
@@ -16855,9 +15837,8 @@
 		},
 		"node_modules/http-proxy-middleware": {
 			"version": "2.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz",
+			"resolved": "http://localhost:4873/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz",
 			"integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==",
-			"license": "MIT",
 			"dependencies": {
 				"@types/http-proxy": "^1.17.8",
 				"http-proxy": "^1.18.1",
@@ -16877,109 +15858,11 @@
 				}
 			}
 		},
-		"node_modules/http-server": {
-			"version": "14.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-server/-/http-server-14.1.1.tgz",
-			"integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==",
-			"license": "MIT",
-			"dependencies": {
-				"basic-auth": "^2.0.1",
-				"chalk": "^4.1.2",
-				"corser": "^2.0.1",
-				"he": "^1.2.0",
-				"html-encoding-sniffer": "^3.0.0",
-				"http-proxy": "^1.18.1",
-				"mime": "^1.6.0",
-				"minimist": "^1.2.6",
-				"opener": "^1.5.1",
-				"portfinder": "^1.0.28",
-				"secure-compare": "3.0.1",
-				"union": "~0.5.0",
-				"url-join": "^4.0.1"
-			},
-			"bin": {
-				"http-server": "bin/http-server"
-			},
-			"engines": {
-				"node": ">=12"
-			}
-		},
-		"node_modules/http-server/node_modules/ansi-styles": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
-			"dependencies": {
-				"color-convert": "^2.0.1"
-			},
-			"engines": {
-				"node": ">=8"
-			},
-			"funding": {
-				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
-			}
-		},
-		"node_modules/http-server/node_modules/chalk": {
-			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
-			"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/http-server/node_modules/color-convert": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
-			"dependencies": {
-				"color-name": "~1.1.4"
-			},
-			"engines": {
-				"node": ">=7.0.0"
-			}
-		},
-		"node_modules/http-server/node_modules/color-name": {
-			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/http-server/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/http-server/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
-			"dependencies": {
-				"has-flag": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=8"
-			}
-		},
 		"node_modules/http-signature": {
 			"version": "1.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-signature/-/http-signature-1.3.6.tgz",
+			"resolved": "http://localhost:4873/http-signature/-/http-signature-1.3.6.tgz",
 			"integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"assert-plus": "^1.0.0",
 				"jsprim": "^2.0.2",
@@ -17014,7 +15897,7 @@
 			"version": "1.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-1.1.1.tgz",
 			"integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "Apache-2.0",
 			"engines": {
 				"node": ">=8.12.0"
@@ -17022,10 +15905,9 @@
 		},
 		"node_modules/humanize-ms": {
 			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/humanize-ms/-/humanize-ms-1.2.1.tgz",
+			"resolved": "http://localhost:4873/humanize-ms/-/humanize-ms-1.2.1.tgz",
 			"integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"ms": "^2.0.0"
 			}
@@ -17044,9 +15926,8 @@
 		},
 		"node_modules/icss-utils": {
 			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/icss-utils/-/icss-utils-5.1.0.tgz",
+			"resolved": "http://localhost:4873/icss-utils/-/icss-utils-5.1.0.tgz",
 			"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
-			"license": "ISC",
 			"engines": {
 				"node": "^10 || ^12 || >= 14"
 			},
@@ -17056,9 +15937,8 @@
 		},
 		"node_modules/identity-obj-proxy": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
+			"resolved": "http://localhost:4873/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
 			"integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==",
-			"license": "MIT",
 			"dependencies": {
 				"harmony-reflect": "^1.4.6"
 			},
@@ -17103,13 +15983,12 @@
 			}
 		},
 		"node_modules/ignore-walk": {
-			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ignore-walk/-/ignore-walk-6.0.2.tgz",
-			"integrity": "sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==",
+			"version": "6.0.3",
+			"resolved": "http://localhost:4873/ignore-walk/-/ignore-walk-6.0.3.tgz",
+			"integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
-				"minimatch": "^7.4.2"
+				"minimatch": "^9.0.0"
 			},
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
@@ -17117,25 +15996,23 @@
 		},
 		"node_modules/ignore-walk/node_modules/brace-expansion": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
+			"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
 			"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"balanced-match": "^1.0.0"
 			}
 		},
 		"node_modules/ignore-walk/node_modules/minimatch": {
-			"version": "7.4.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-7.4.5.tgz",
-			"integrity": "sha512-OzOamaOmNBJZUv2qqY1OSWa+++4YPpOkLgkc0w30Oov5ufKlWWXnFUl0l4dgmSv5Shq/zRVkEOXAe2NaqO4l5Q==",
+			"version": "9.0.3",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-9.0.3.tgz",
+			"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^2.0.1"
 			},
 			"engines": {
-				"node": ">=10"
+				"node": ">=16 || 14 >=14.17"
 			},
 			"funding": {
 				"url": "https://github.com/sponsors/isaacs"
@@ -17155,16 +16032,14 @@
 			}
 		},
 		"node_modules/immutable": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/immutable/-/immutable-4.3.0.tgz",
-			"integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==",
-			"license": "MIT"
+			"version": "4.3.4",
+			"resolved": "http://localhost:4873/immutable/-/immutable-4.3.4.tgz",
+			"integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA=="
 		},
 		"node_modules/import-fresh": {
 			"version": "3.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/import-fresh/-/import-fresh-3.3.0.tgz",
+			"resolved": "http://localhost:4873/import-fresh/-/import-fresh-3.3.0.tgz",
 			"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
-			"license": "MIT",
 			"dependencies": {
 				"parent-module": "^1.0.0",
 				"resolve-from": "^4.0.0"
@@ -17178,19 +16053,17 @@
 		},
 		"node_modules/import-fresh/node_modules/resolve-from": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve-from/-/resolve-from-4.0.0.tgz",
+			"resolved": "http://localhost:4873/resolve-from/-/resolve-from-4.0.0.tgz",
 			"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=4"
 			}
 		},
 		"node_modules/import-local": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/import-local/-/import-local-3.1.0.tgz",
+			"resolved": "http://localhost:4873/import-local/-/import-local-3.1.0.tgz",
 			"integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"pkg-dir": "^4.2.0",
 				"resolve-cwd": "^3.0.0"
@@ -17224,7 +16097,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/indent-string/-/indent-string-4.0.0.tgz",
 			"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
@@ -17254,13 +16127,12 @@
 			"license": "ISC"
 		},
 		"node_modules/ini": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ini/-/ini-3.0.1.tgz",
-			"integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==",
+			"version": "4.1.1",
+			"resolved": "http://localhost:4873/ini/-/ini-4.1.1.tgz",
+			"integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
 		"node_modules/inquirer": {
@@ -17389,10 +16261,9 @@
 			"license": "MIT"
 		},
 		"node_modules/ipaddr.js": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ipaddr.js/-/ipaddr.js-2.0.1.tgz",
-			"integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==",
-			"license": "MIT",
+			"version": "2.1.0",
+			"resolved": "http://localhost:4873/ipaddr.js/-/ipaddr.js-2.1.0.tgz",
+			"integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==",
 			"engines": {
 				"node": ">= 10"
 			}
@@ -17444,9 +16315,8 @@
 		},
 		"node_modules/is-arrayish": {
 			"version": "0.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-arrayish/-/is-arrayish-0.2.1.tgz",
-			"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/is-arrayish/-/is-arrayish-0.2.1.tgz",
+			"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
 		},
 		"node_modules/is-bigint": {
 			"version": "1.0.4",
@@ -17514,7 +16384,7 @@
 			"version": "3.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-ci/-/is-ci-3.0.1.tgz",
 			"integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ci-info": "^3.2.0"
@@ -17627,9 +16497,8 @@
 		},
 		"node_modules/is-generator-fn": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
+			"resolved": "http://localhost:4873/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
 			"integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			}
@@ -17650,7 +16519,7 @@
 			"version": "0.4.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
 			"integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"global-dirs": "^3.0.0",
@@ -17674,10 +16543,9 @@
 		},
 		"node_modules/is-lambda": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-lambda/-/is-lambda-1.0.1.tgz",
+			"resolved": "http://localhost:4873/is-lambda/-/is-lambda-1.0.1.tgz",
 			"integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/is-map": {
 			"version": "2.0.2",
@@ -17718,7 +16586,7 @@
 			"version": "3.0.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-path-inside/-/is-path-inside-3.0.3.tgz",
 			"integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
@@ -17726,9 +16594,8 @@
 		},
 		"node_modules/is-plain-obj": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
+			"resolved": "http://localhost:4873/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
 			"integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			},
@@ -17750,10 +16617,9 @@
 		},
 		"node_modules/is-potential-custom-element-name": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+			"resolved": "http://localhost:4873/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
 			"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/is-regex": {
 			"version": "1.1.4",
@@ -17861,10 +16727,9 @@
 		},
 		"node_modules/is-typedarray": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-typedarray/-/is-typedarray-1.0.0.tgz",
+			"resolved": "http://localhost:4873/is-typedarray/-/is-typedarray-1.0.0.tgz",
 			"integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/is-unicode-supported": {
 			"version": "0.1.0",
@@ -17954,10 +16819,9 @@
 		},
 		"node_modules/isstream": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/isstream/-/isstream-0.1.2.tgz",
+			"resolved": "http://localhost:4873/isstream/-/isstream-0.1.2.tgz",
 			"integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/istanbul-lib-coverage": {
 			"version": "3.2.0",
@@ -17994,33 +16858,44 @@
 			}
 		},
 		"node_modules/istanbul-lib-report": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
-			"integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
-			"license": "BSD-3-Clause",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
+			"integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
 			"dependencies": {
 				"istanbul-lib-coverage": "^3.0.0",
-				"make-dir": "^3.0.0",
+				"make-dir": "^4.0.0",
 				"supports-color": "^7.1.0"
 			},
 			"engines": {
-				"node": ">=8"
+				"node": ">=10"
 			}
 		},
 		"node_modules/istanbul-lib-report/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
+		"node_modules/istanbul-lib-report/node_modules/make-dir": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/make-dir/-/make-dir-4.0.0.tgz",
+			"integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
+			"dependencies": {
+				"semver": "^7.5.3"
+			},
+			"engines": {
+				"node": ">=10"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/sindresorhus"
+			}
+		},
 		"node_modules/istanbul-lib-report/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -18030,9 +16905,8 @@
 		},
 		"node_modules/istanbul-lib-source-maps": {
 			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+			"resolved": "http://localhost:4873/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
 			"integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
-			"license": "BSD-3-Clause",
 			"dependencies": {
 				"debug": "^4.1.1",
 				"istanbul-lib-coverage": "^3.0.0",
@@ -18044,18 +16918,16 @@
 		},
 		"node_modules/istanbul-lib-source-maps/node_modules/source-map": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+			"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-			"license": "BSD-3-Clause",
 			"engines": {
 				"node": ">=0.10.0"
 			}
 		},
 		"node_modules/istanbul-reports": {
-			"version": "3.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/istanbul-reports/-/istanbul-reports-3.1.5.tgz",
-			"integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==",
-			"license": "BSD-3-Clause",
+			"version": "3.1.6",
+			"resolved": "http://localhost:4873/istanbul-reports/-/istanbul-reports-3.1.6.tgz",
+			"integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==",
 			"dependencies": {
 				"html-escaper": "^2.0.0",
 				"istanbul-lib-report": "^3.0.0"
@@ -18064,16 +16936,33 @@
 				"node": ">=8"
 			}
 		},
+		"node_modules/jackspeak": {
+			"version": "2.3.6",
+			"resolved": "http://localhost:4873/jackspeak/-/jackspeak-2.3.6.tgz",
+			"integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
+			"dev": true,
+			"dependencies": {
+				"@isaacs/cliui": "^8.0.2"
+			},
+			"engines": {
+				"node": ">=14"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/isaacs"
+			},
+			"optionalDependencies": {
+				"@pkgjs/parseargs": "^0.11.0"
+			}
+		},
 		"node_modules/jake": {
-			"version": "10.8.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jake/-/jake-10.8.5.tgz",
-			"integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==",
-			"license": "Apache-2.0",
+			"version": "10.8.7",
+			"resolved": "http://localhost:4873/jake/-/jake-10.8.7.tgz",
+			"integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==",
 			"dependencies": {
 				"async": "^3.2.3",
 				"chalk": "^4.0.2",
-				"filelist": "^1.0.1",
-				"minimatch": "^3.0.4"
+				"filelist": "^1.0.4",
+				"minimatch": "^3.1.2"
 			},
 			"bin": {
 				"jake": "bin/cli.js"
@@ -18084,9 +16973,8 @@
 		},
 		"node_modules/jake/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -18099,9 +16987,8 @@
 		},
 		"node_modules/jake/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -18115,9 +17002,8 @@
 		},
 		"node_modules/jake/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -18127,24 +17013,32 @@
 		},
 		"node_modules/jake/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jake/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
+		"node_modules/jake/node_modules/minimatch": {
+			"version": "3.1.2",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
+			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+			"dependencies": {
+				"brace-expansion": "^1.1.7"
+			},
+			"engines": {
+				"node": "*"
+			}
+		},
 		"node_modules/jake/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -18166,22 +17060,21 @@
 			}
 		},
 		"node_modules/jest": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest/-/jest-28.1.3.tgz",
-			"integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==",
+			"version": "29.4.3",
+			"resolved": "http://localhost:4873/jest/-/jest-29.4.3.tgz",
+			"integrity": "sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@jest/core": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/core": "^29.4.3",
+				"@jest/types": "^29.4.3",
 				"import-local": "^3.0.2",
-				"jest-cli": "^28.1.3"
+				"jest-cli": "^29.4.3"
 			},
 			"bin": {
 				"jest": "bin/jest.js"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
@@ -18193,25 +17086,24 @@
 			}
 		},
 		"node_modules/jest-changed-files": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-changed-files/-/jest-changed-files-28.1.3.tgz",
-			"integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
+			"integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"execa": "^5.0.0",
+				"jest-util": "^29.7.0",
 				"p-limit": "^3.1.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-changed-files/node_modules/execa": {
 			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-5.1.1.tgz",
+			"resolved": "http://localhost:4873/execa/-/execa-5.1.1.tgz",
 			"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"cross-spawn": "^7.0.3",
 				"get-stream": "^6.0.0",
@@ -18232,10 +17124,9 @@
 		},
 		"node_modules/jest-changed-files/node_modules/get-stream": {
 			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-6.0.1.tgz",
+			"resolved": "http://localhost:4873/get-stream/-/get-stream-6.0.1.tgz",
 			"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			},
@@ -18245,64 +17136,47 @@
 		},
 		"node_modules/jest-changed-files/node_modules/human-signals": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-2.1.0.tgz",
+			"resolved": "http://localhost:4873/human-signals/-/human-signals-2.1.0.tgz",
 			"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
 			"dev": true,
-			"license": "Apache-2.0",
 			"engines": {
 				"node": ">=10.17.0"
 			}
 		},
 		"node_modules/jest-circus": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-circus/-/jest-circus-28.1.3.tgz",
-			"integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/environment": "^28.1.3",
-				"@jest/expect": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/types": "^28.1.3",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-circus/-/jest-circus-29.7.0.tgz",
+			"integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
+			"dependencies": {
+				"@jest/environment": "^29.7.0",
+				"@jest/expect": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"co": "^4.6.0",
-				"dedent": "^0.7.0",
+				"dedent": "^1.0.0",
 				"is-generator-fn": "^2.0.0",
-				"jest-each": "^28.1.3",
-				"jest-matcher-utils": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-runtime": "^28.1.3",
-				"jest-snapshot": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-each": "^29.7.0",
+				"jest-matcher-utils": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-runtime": "^29.7.0",
+				"jest-snapshot": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"p-limit": "^3.1.0",
-				"pretty-format": "^28.1.3",
+				"pretty-format": "^29.7.0",
+				"pure-rand": "^6.0.0",
 				"slash": "^3.0.0",
 				"stack-utils": "^2.0.3"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-circus/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-circus/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -18315,9 +17189,8 @@
 		},
 		"node_modules/jest-circus/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -18331,9 +17204,8 @@
 		},
 		"node_modules/jest-circus/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -18343,41 +17215,21 @@
 		},
 		"node_modules/jest-circus/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-circus/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-circus/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/jest-circus/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -18386,30 +17238,28 @@
 			}
 		},
 		"node_modules/jest-cli": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-cli/-/jest-cli-28.1.3.tgz",
-			"integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-cli/-/jest-cli-29.7.0.tgz",
+			"integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@jest/core": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/core": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"chalk": "^4.0.0",
+				"create-jest": "^29.7.0",
 				"exit": "^0.1.2",
-				"graceful-fs": "^4.2.9",
 				"import-local": "^3.0.2",
-				"jest-config": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"prompts": "^2.0.1",
+				"jest-config": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
 				"yargs": "^17.3.1"
 			},
 			"bin": {
 				"jest": "bin/jest.js"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
@@ -18420,28 +17270,11 @@
 				}
 			}
 		},
-		"node_modules/jest-cli/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/jest-cli/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -18454,10 +17287,9 @@
 		},
 		"node_modules/jest-cli/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -18471,10 +17303,9 @@
 		},
 		"node_modules/jest-cli/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -18484,146 +17315,24 @@
 		},
 		"node_modules/jest-cli/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"dev": true,
-			"license": "MIT"
-		},
-		"node_modules/jest-cli/node_modules/glob": {
-			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
-			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"fs.realpath": "^1.0.0",
-				"inflight": "^1.0.4",
-				"inherits": "2",
-				"minimatch": "^3.1.1",
-				"once": "^1.3.0",
-				"path-is-absolute": "^1.0.0"
-			},
-			"engines": {
-				"node": "*"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/isaacs"
-			}
+			"dev": true
 		},
 		"node_modules/jest-cli/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-cli/node_modules/jest-config": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-config/-/jest-config-28.1.3.tgz",
-			"integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@babel/core": "^7.11.6",
-				"@jest/test-sequencer": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"babel-jest": "^28.1.3",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"deepmerge": "^4.2.2",
-				"glob": "^7.1.3",
-				"graceful-fs": "^4.2.9",
-				"jest-circus": "^28.1.3",
-				"jest-environment-node": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.3",
-				"jest-runner": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"micromatch": "^4.0.4",
-				"parse-json": "^5.2.0",
-				"pretty-format": "^28.1.3",
-				"slash": "^3.0.0",
-				"strip-json-comments": "^3.1.1"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			},
-			"peerDependencies": {
-				"@types/node": "*",
-				"ts-node": ">=9.0.0"
-			},
-			"peerDependenciesMeta": {
-				"@types/node": {
-					"optional": true
-				},
-				"ts-node": {
-					"optional": true
-				}
-			}
-		},
-		"node_modules/jest-cli/node_modules/jest-resolve": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-			"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"chalk": "^4.0.0",
-				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-pnp-resolver": "^1.2.2",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"resolve": "^1.20.0",
-				"resolve.exports": "^1.1.0",
-				"slash": "^3.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-cli/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-cli/node_modules/minimatch": {
-			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
-			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"brace-expansion": "^1.1.7"
-			},
-			"engines": {
-				"node": "*"
-			}
-		},
 		"node_modules/jest-cli/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -18632,36 +17341,35 @@
 			}
 		},
 		"node_modules/jest-config": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-config/-/jest-config-28.1.1.tgz",
-			"integrity": "sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-config/-/jest-config-29.7.0.tgz",
+			"integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
 			"dependencies": {
 				"@babel/core": "^7.11.6",
-				"@jest/test-sequencer": "^28.1.1",
-				"@jest/types": "^28.1.1",
-				"babel-jest": "^28.1.1",
+				"@jest/test-sequencer": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"babel-jest": "^29.7.0",
 				"chalk": "^4.0.0",
 				"ci-info": "^3.2.0",
 				"deepmerge": "^4.2.2",
 				"glob": "^7.1.3",
 				"graceful-fs": "^4.2.9",
-				"jest-circus": "^28.1.1",
-				"jest-environment-node": "^28.1.1",
-				"jest-get-type": "^28.0.2",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.1",
-				"jest-runner": "^28.1.1",
-				"jest-util": "^28.1.1",
-				"jest-validate": "^28.1.1",
+				"jest-circus": "^29.7.0",
+				"jest-environment-node": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"jest-regex-util": "^29.6.3",
+				"jest-resolve": "^29.7.0",
+				"jest-runner": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
 				"micromatch": "^4.0.4",
 				"parse-json": "^5.2.0",
-				"pretty-format": "^28.1.1",
+				"pretty-format": "^29.7.0",
 				"slash": "^3.0.0",
 				"strip-json-comments": "^3.1.1"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"@types/node": "*",
@@ -18678,9 +17386,8 @@
 		},
 		"node_modules/jest-config/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -18693,9 +17400,8 @@
 		},
 		"node_modules/jest-config/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -18709,9 +17415,8 @@
 		},
 		"node_modules/jest-config/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -18721,15 +17426,13 @@
 		},
 		"node_modules/jest-config/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-config/node_modules/glob": {
 			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+			"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-			"license": "ISC",
 			"dependencies": {
 				"fs.realpath": "^1.0.0",
 				"inflight": "^1.0.4",
@@ -18747,18 +17450,16 @@
 		},
 		"node_modules/jest-config/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-config/node_modules/minimatch": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
 			},
@@ -18768,9 +17469,8 @@
 		},
 		"node_modules/jest-config/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -18789,25 +17489,23 @@
 			}
 		},
 		"node_modules/jest-diff": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-diff/-/jest-diff-28.1.3.tgz",
-			"integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-diff/-/jest-diff-29.7.0.tgz",
+			"integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
 			"dependencies": {
 				"chalk": "^4.0.0",
-				"diff-sequences": "^28.1.1",
-				"jest-get-type": "^28.0.2",
-				"pretty-format": "^28.1.3"
+				"diff-sequences": "^29.6.3",
+				"jest-get-type": "^29.6.3",
+				"pretty-format": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-diff/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -18820,9 +17518,8 @@
 		},
 		"node_modules/jest-diff/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -18836,9 +17533,8 @@
 		},
 		"node_modules/jest-diff/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -18848,24 +17544,21 @@
 		},
 		"node_modules/jest-diff/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-diff/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-diff/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -18874,38 +17567,35 @@
 			}
 		},
 		"node_modules/jest-docblock": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-docblock/-/jest-docblock-28.1.1.tgz",
-			"integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-docblock/-/jest-docblock-29.7.0.tgz",
+			"integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
 			"dependencies": {
 				"detect-newline": "^3.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-each": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-each/-/jest-each-28.1.3.tgz",
-			"integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-each/-/jest-each-29.7.0.tgz",
+			"integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"chalk": "^4.0.0",
-				"jest-get-type": "^28.0.2",
-				"jest-util": "^28.1.3",
-				"pretty-format": "^28.1.3"
+				"jest-get-type": "^29.6.3",
+				"jest-util": "^29.7.0",
+				"pretty-format": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-each/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -18918,9 +17608,8 @@
 		},
 		"node_modules/jest-each/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -18934,9 +17623,8 @@
 		},
 		"node_modules/jest-each/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -18946,291 +17634,323 @@
 		},
 		"node_modules/jest-each/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-each/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-each/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
+		"node_modules/jest-each/node_modules/supports-color": {
+			"version": "7.2.0",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
+			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
+				"has-flag": "^4.0.0"
+			},
+			"engines": {
+				"node": ">=8"
+			}
+		},
+		"node_modules/jest-environment-jsdom": {
+			"version": "29.4.3",
+			"resolved": "http://localhost:4873/jest-environment-jsdom/-/jest-environment-jsdom-29.4.3.tgz",
+			"integrity": "sha512-rFjf8JXrw3OjUzzmSE5l0XjMj0/MSVEUMCSXBGPDkfwb1T03HZI7iJSL0cGctZApPSyJxbjyKDVxkZuyhHkuTw==",
+			"dev": true,
+			"dependencies": {
+				"@jest/environment": "^29.4.3",
+				"@jest/fake-timers": "^29.4.3",
+				"@jest/types": "^29.4.3",
+				"@types/jsdom": "^20.0.0",
 				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
+				"jest-mock": "^29.4.3",
+				"jest-util": "^29.4.3",
+				"jsdom": "^20.0.0"
+			},
+			"engines": {
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+			},
+			"peerDependencies": {
+				"canvas": "^2.5.0"
+			},
+			"peerDependenciesMeta": {
+				"canvas": {
+					"optional": true
+				}
+			}
+		},
+		"node_modules/jest-environment-jsdom/node_modules/acorn-globals": {
+			"version": "7.0.1",
+			"resolved": "http://localhost:4873/acorn-globals/-/acorn-globals-7.0.1.tgz",
+			"integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==",
+			"dev": true,
+			"dependencies": {
+				"acorn": "^8.1.0",
+				"acorn-walk": "^8.0.2"
+			}
+		},
+		"node_modules/jest-environment-jsdom/node_modules/acorn-walk": {
+			"version": "8.2.0",
+			"resolved": "http://localhost:4873/acorn-walk/-/acorn-walk-8.2.0.tgz",
+			"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
+			"dev": true,
+			"engines": {
+				"node": ">=0.4.0"
+			}
+		},
+		"node_modules/jest-environment-jsdom/node_modules/cssom": {
+			"version": "0.5.0",
+			"resolved": "http://localhost:4873/cssom/-/cssom-0.5.0.tgz",
+			"integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==",
+			"dev": true
+		},
+		"node_modules/jest-environment-jsdom/node_modules/data-urls": {
+			"version": "3.0.2",
+			"resolved": "http://localhost:4873/data-urls/-/data-urls-3.0.2.tgz",
+			"integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==",
+			"dev": true,
+			"dependencies": {
+				"abab": "^2.0.6",
+				"whatwg-mimetype": "^3.0.0",
+				"whatwg-url": "^11.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-each/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/domexception": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/domexception/-/domexception-4.0.0.tgz",
+			"integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==",
+			"dev": true,
 			"dependencies": {
-				"has-flag": "^4.0.0"
+				"webidl-conversions": "^7.0.0"
 			},
 			"engines": {
-				"node": ">=8"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-environment-jsdom": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-environment-jsdom/-/jest-environment-jsdom-28.1.1.tgz",
-			"integrity": "sha512-41ZvgSoPNcKG5q3LuuOcAczdBxRq9DbZkPe24okN6ZCmiZdAfFtPg3z+lOtsT1fM6OAERApKT+3m0MRDQH2zIA==",
+		"node_modules/jest-environment-jsdom/node_modules/form-data": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/form-data/-/form-data-4.0.0.tgz",
+			"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@jest/environment": "^28.1.1",
-				"@jest/fake-timers": "^28.1.1",
-				"@jest/types": "^28.1.1",
-				"@types/jsdom": "^16.2.4",
-				"@types/node": "*",
-				"jest-mock": "^28.1.1",
-				"jest-util": "^28.1.1",
-				"jsdom": "^19.0.0"
+				"asynckit": "^0.4.0",
+				"combined-stream": "^1.0.8",
+				"mime-types": "^2.1.12"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": ">= 6"
 			}
 		},
-		"node_modules/jest-environment-node": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-environment-node/-/jest-environment-node-28.1.3.tgz",
-			"integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/html-encoding-sniffer": {
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz",
+			"integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==",
+			"dev": true,
 			"dependencies": {
-				"@jest/environment": "^28.1.3",
-				"@jest/fake-timers": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"jest-mock": "^28.1.3",
-				"jest-util": "^28.1.3"
+				"whatwg-encoding": "^2.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-environment-node/node_modules/ansi-styles": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/iconv-lite": {
+			"version": "0.6.3",
+			"resolved": "http://localhost:4873/iconv-lite/-/iconv-lite-0.6.3.tgz",
+			"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+			"dev": true,
 			"dependencies": {
-				"color-convert": "^2.0.1"
+				"safer-buffer": ">= 2.1.2 < 3.0.0"
 			},
 			"engines": {
-				"node": ">=8"
-			},
-			"funding": {
-				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
+				"node": ">=0.10.0"
 			}
 		},
-		"node_modules/jest-environment-node/node_modules/chalk": {
-			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/jsdom": {
+			"version": "20.0.3",
+			"resolved": "http://localhost:4873/jsdom/-/jsdom-20.0.3.tgz",
+			"integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==",
+			"dev": true,
 			"dependencies": {
-				"ansi-styles": "^4.1.0",
-				"supports-color": "^7.1.0"
+				"abab": "^2.0.6",
+				"acorn": "^8.8.1",
+				"acorn-globals": "^7.0.0",
+				"cssom": "^0.5.0",
+				"cssstyle": "^2.3.0",
+				"data-urls": "^3.0.2",
+				"decimal.js": "^10.4.2",
+				"domexception": "^4.0.0",
+				"escodegen": "^2.0.0",
+				"form-data": "^4.0.0",
+				"html-encoding-sniffer": "^3.0.0",
+				"http-proxy-agent": "^5.0.0",
+				"https-proxy-agent": "^5.0.1",
+				"is-potential-custom-element-name": "^1.0.1",
+				"nwsapi": "^2.2.2",
+				"parse5": "^7.1.1",
+				"saxes": "^6.0.0",
+				"symbol-tree": "^3.2.4",
+				"tough-cookie": "^4.1.2",
+				"w3c-xmlserializer": "^4.0.0",
+				"webidl-conversions": "^7.0.0",
+				"whatwg-encoding": "^2.0.0",
+				"whatwg-mimetype": "^3.0.0",
+				"whatwg-url": "^11.0.0",
+				"ws": "^8.11.0",
+				"xml-name-validator": "^4.0.0"
 			},
 			"engines": {
-				"node": ">=10"
+				"node": ">=14"
 			},
-			"funding": {
-				"url": "https://github.com/chalk/chalk?sponsor=1"
+			"peerDependencies": {
+				"canvas": "^2.5.0"
+			},
+			"peerDependenciesMeta": {
+				"canvas": {
+					"optional": true
+				}
 			}
 		},
-		"node_modules/jest-environment-node/node_modules/color-convert": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/saxes": {
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/saxes/-/saxes-6.0.0.tgz",
+			"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
+			"dev": true,
 			"dependencies": {
-				"color-name": "~1.1.4"
+				"xmlchars": "^2.2.0"
 			},
 			"engines": {
-				"node": ">=7.0.0"
+				"node": ">=v12.22.7"
 			}
 		},
-		"node_modules/jest-environment-node/node_modules/color-name": {
-			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/jest-environment-node/node_modules/has-flag": {
+		"node_modules/jest-environment-jsdom/node_modules/w3c-xmlserializer": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/jest-environment-node/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
+			"resolved": "http://localhost:4873/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz",
+			"integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==",
+			"dev": true,
 			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
+				"xml-name-validator": "^4.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": ">=14"
 			}
 		},
-		"node_modules/jest-environment-node/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/whatwg-encoding": {
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz",
+			"integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
+			"dev": true,
 			"dependencies": {
-				"has-flag": "^4.0.0"
+				"iconv-lite": "0.6.3"
 			},
 			"engines": {
-				"node": ">=8"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-get-type": {
-			"version": "28.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-get-type/-/jest-get-type-28.0.2.tgz",
-			"integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/whatwg-mimetype": {
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",
+			"integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==",
+			"dev": true,
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-haste-map": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-haste-map/-/jest-haste-map-28.1.3.tgz",
-			"integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==",
-			"license": "MIT",
+		"node_modules/jest-environment-jsdom/node_modules/whatwg-url": {
+			"version": "11.0.0",
+			"resolved": "http://localhost:4873/whatwg-url/-/whatwg-url-11.0.0.tgz",
+			"integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
+			"dev": true,
 			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/graceful-fs": "^4.1.3",
-				"@types/node": "*",
-				"anymatch": "^3.0.3",
-				"fb-watchman": "^2.0.0",
-				"graceful-fs": "^4.2.9",
-				"jest-regex-util": "^28.0.2",
-				"jest-util": "^28.1.3",
-				"jest-worker": "^28.1.3",
-				"micromatch": "^4.0.4",
-				"walker": "^1.0.8"
+				"tr46": "^3.0.0",
+				"webidl-conversions": "^7.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			},
-			"optionalDependencies": {
-				"fsevents": "^2.3.2"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-haste-map/node_modules/ansi-styles": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
-			"dependencies": {
-				"color-convert": "^2.0.1"
-			},
+		"node_modules/jest-environment-jsdom/node_modules/ws": {
+			"version": "8.14.2",
+			"resolved": "http://localhost:4873/ws/-/ws-8.14.2.tgz",
+			"integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==",
+			"dev": true,
 			"engines": {
-				"node": ">=8"
+				"node": ">=10.0.0"
 			},
-			"funding": {
-				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
+			"peerDependencies": {
+				"bufferutil": "^4.0.1",
+				"utf-8-validate": ">=5.0.2"
+			},
+			"peerDependenciesMeta": {
+				"bufferutil": {
+					"optional": true
+				},
+				"utf-8-validate": {
+					"optional": true
+				}
 			}
 		},
-		"node_modules/jest-haste-map/node_modules/chalk": {
-			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
-			"dependencies": {
-				"ansi-styles": "^4.1.0",
-				"supports-color": "^7.1.0"
-			},
+		"node_modules/jest-environment-jsdom/node_modules/xml-name-validator": {
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
+			"integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
+			"dev": true,
 			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/chalk/chalk?sponsor=1"
+				"node": ">=12"
 			}
 		},
-		"node_modules/jest-haste-map/node_modules/color-convert": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
+		"node_modules/jest-environment-node": {
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-environment-node/-/jest-environment-node-29.7.0.tgz",
+			"integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
 			"dependencies": {
-				"color-name": "~1.1.4"
+				"@jest/environment": "^29.7.0",
+				"@jest/fake-timers": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"@types/node": "*",
+				"jest-mock": "^29.7.0",
+				"jest-util": "^29.7.0"
 			},
 			"engines": {
-				"node": ">=7.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
-		"node_modules/jest-haste-map/node_modules/color-name": {
-			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/jest-haste-map/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
+		"node_modules/jest-get-type": {
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/jest-get-type/-/jest-get-type-29.6.3.tgz",
+			"integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
 			"engines": {
-				"node": ">=8"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
-		"node_modules/jest-haste-map/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
+		"node_modules/jest-haste-map": {
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
+			"integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
+				"@types/graceful-fs": "^4.1.3",
 				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
+				"anymatch": "^3.0.3",
+				"fb-watchman": "^2.0.0",
 				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
+				"jest-regex-util": "^29.6.3",
+				"jest-util": "^29.7.0",
+				"jest-worker": "^29.7.0",
+				"micromatch": "^4.0.4",
+				"walker": "^1.0.8"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-haste-map/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
-			"dependencies": {
-				"has-flag": "^4.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
-			"engines": {
-				"node": ">=8"
+			"optionalDependencies": {
+				"fsevents": "^2.3.2"
 			}
 		},
 		"node_modules/jest-junit": {
@@ -19250,16 +17970,15 @@
 			}
 		},
 		"node_modules/jest-leak-detector": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz",
-			"integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
+			"integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
 			"dependencies": {
-				"jest-get-type": "^28.0.2",
-				"pretty-format": "^28.1.3"
+				"jest-get-type": "^29.6.3",
+				"pretty-format": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-marbles": {
@@ -19276,25 +17995,23 @@
 			}
 		},
 		"node_modules/jest-matcher-utils": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz",
-			"integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz",
+			"integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==",
 			"dependencies": {
 				"chalk": "^4.0.0",
-				"jest-diff": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"pretty-format": "^28.1.3"
+				"jest-diff": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"pretty-format": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-matcher-utils/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -19307,9 +18024,8 @@
 		},
 		"node_modules/jest-matcher-utils/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -19323,9 +18039,8 @@
 		},
 		"node_modules/jest-matcher-utils/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -19335,24 +18050,21 @@
 		},
 		"node_modules/jest-matcher-utils/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-matcher-utils/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-matcher-utils/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -19361,30 +18073,28 @@
 			}
 		},
 		"node_modules/jest-message-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-message-util/-/jest-message-util-28.1.3.tgz",
-			"integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-message-util/-/jest-message-util-29.7.0.tgz",
+			"integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
 			"dependencies": {
 				"@babel/code-frame": "^7.12.13",
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"@types/stack-utils": "^2.0.0",
 				"chalk": "^4.0.0",
 				"graceful-fs": "^4.2.9",
 				"micromatch": "^4.0.4",
-				"pretty-format": "^28.1.3",
+				"pretty-format": "^29.7.0",
 				"slash": "^3.0.0",
 				"stack-utils": "^2.0.3"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-message-util/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -19397,9 +18107,8 @@
 		},
 		"node_modules/jest-message-util/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -19413,9 +18122,8 @@
 		},
 		"node_modules/jest-message-util/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -19425,24 +18133,21 @@
 		},
 		"node_modules/jest-message-util/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-message-util/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-message-util/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -19451,23 +18156,22 @@
 			}
 		},
 		"node_modules/jest-mock": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-mock/-/jest-mock-28.1.3.tgz",
-			"integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-mock/-/jest-mock-29.7.0.tgz",
+			"integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*"
+				"@jest/types": "^29.6.3",
+				"@types/node": "*",
+				"jest-util": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-pnp-resolver": {
 			"version": "1.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
+			"resolved": "http://localhost:4873/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
 			"integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			},
@@ -19481,17 +18185,17 @@
 			}
 		},
 		"node_modules/jest-preset-angular": {
-			"version": "12.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-preset-angular/-/jest-preset-angular-12.2.3.tgz",
-			"integrity": "sha512-9vgawXuki/lg4IRPtl5k83krWLKADTal7BBm06xNAWOK09AbHK1foXqZdVOMObsWbaMDeQ1cjba60vS/aEVY4Q==",
+			"version": "13.1.2",
+			"resolved": "http://localhost:4873/jest-preset-angular/-/jest-preset-angular-13.1.2.tgz",
+			"integrity": "sha512-kuzuIch/YYTMaMnuGDaiZEu++Bjc5WskOAmMwqWO0Grpcd0SulqTOV70Gz6Q/ZOQuMye+LS4KPyIVfqnJr2e3g==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"bs-logger": "^0.2.6",
 				"esbuild-wasm": ">=0.13.8",
-				"jest-environment-jsdom": "^28.0.0",
-				"pretty-format": "^28.0.0",
-				"ts-jest": "^28.0.0"
+				"jest-environment-jsdom": "^29.0.0",
+				"jest-util": "^29.0.0",
+				"pretty-format": "^29.0.0",
+				"ts-jest": "^29.0.0"
 			},
 			"engines": {
 				"node": "^14.15.0 || >=16.10.0"
@@ -19500,62 +18204,58 @@
 				"esbuild": ">=0.13.8"
 			},
 			"peerDependencies": {
-				"@angular-devkit/build-angular": ">=12.2.18 <16.0.0",
-				"@angular/compiler-cli": ">=12.2.16 <16.0.0",
-				"@angular/core": ">=12.2.16 <16.0.0",
-				"@angular/platform-browser-dynamic": ">=12.2.16 <16.0.0",
-				"jest": "^28.0.0",
+				"@angular-devkit/build-angular": ">=13.0.0 <17.0.0",
+				"@angular/compiler-cli": ">=13.0.0 <17.0.0",
+				"@angular/core": ">=13.0.0 <17.0.0",
+				"@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0",
+				"jest": "^29.0.0",
 				"typescript": ">=4.4"
 			}
 		},
 		"node_modules/jest-regex-util": {
-			"version": "28.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-regex-util/-/jest-regex-util-28.0.2.tgz",
-			"integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==",
-			"license": "MIT",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/jest-regex-util/-/jest-regex-util-29.6.3.tgz",
+			"integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==",
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-resolve": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.1.tgz",
-			"integrity": "sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-resolve/-/jest-resolve-29.7.0.tgz",
+			"integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
 			"dependencies": {
 				"chalk": "^4.0.0",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.1",
+				"jest-haste-map": "^29.7.0",
 				"jest-pnp-resolver": "^1.2.2",
-				"jest-util": "^28.1.1",
-				"jest-validate": "^28.1.1",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
 				"resolve": "^1.20.0",
-				"resolve.exports": "^1.1.0",
+				"resolve.exports": "^2.0.0",
 				"slash": "^3.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-resolve-dependencies": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz",
-			"integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
+			"integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"jest-regex-util": "^28.0.2",
-				"jest-snapshot": "^28.1.3"
+				"jest-regex-util": "^29.6.3",
+				"jest-snapshot": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-resolve/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -19568,9 +18268,8 @@
 		},
 		"node_modules/jest-resolve/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -19584,9 +18283,8 @@
 		},
 		"node_modules/jest-resolve/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -19596,24 +18294,29 @@
 		},
 		"node_modules/jest-resolve/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-resolve/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
+		"node_modules/jest-resolve/node_modules/resolve.exports": {
+			"version": "2.0.2",
+			"resolved": "http://localhost:4873/resolve.exports/-/resolve.exports-2.0.2.tgz",
+			"integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==",
+			"engines": {
+				"node": ">=10"
+			}
+		},
 		"node_modules/jest-resolve/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -19622,57 +18325,40 @@
 			}
 		},
 		"node_modules/jest-runner": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-runner/-/jest-runner-28.1.3.tgz",
-			"integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/environment": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-runner/-/jest-runner-29.7.0.tgz",
+			"integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
+			"dependencies": {
+				"@jest/console": "^29.7.0",
+				"@jest/environment": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
-				"emittery": "^0.10.2",
+				"emittery": "^0.13.1",
 				"graceful-fs": "^4.2.9",
-				"jest-docblock": "^28.1.1",
-				"jest-environment-node": "^28.1.3",
-				"jest-haste-map": "^28.1.3",
-				"jest-leak-detector": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-resolve": "^28.1.3",
-				"jest-runtime": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-watcher": "^28.1.3",
-				"jest-worker": "^28.1.3",
+				"jest-docblock": "^29.7.0",
+				"jest-environment-node": "^29.7.0",
+				"jest-haste-map": "^29.7.0",
+				"jest-leak-detector": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-resolve": "^29.7.0",
+				"jest-runtime": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-watcher": "^29.7.0",
+				"jest-worker": "^29.7.0",
 				"p-limit": "^3.1.0",
 				"source-map-support": "0.5.13"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-runner/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-runner/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -19685,9 +18371,8 @@
 		},
 		"node_modules/jest-runner/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -19701,9 +18386,8 @@
 		},
 		"node_modules/jest-runner/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -19713,70 +18397,29 @@
 		},
 		"node_modules/jest-runner/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-runner/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-runner/node_modules/jest-resolve": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-			"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-			"license": "MIT",
-			"dependencies": {
-				"chalk": "^4.0.0",
-				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-pnp-resolver": "^1.2.2",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"resolve": "^1.20.0",
-				"resolve.exports": "^1.1.0",
-				"slash": "^3.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-runner/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/jest-runner/node_modules/source-map": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+			"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 			"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-			"license": "BSD-3-Clause",
 			"engines": {
 				"node": ">=0.10.0"
 			}
 		},
 		"node_modules/jest-runner/node_modules/source-map-support": {
 			"version": "0.5.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-support/-/source-map-support-0.5.13.tgz",
+			"resolved": "http://localhost:4873/source-map-support/-/source-map-support-0.5.13.tgz",
 			"integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
-			"license": "MIT",
 			"dependencies": {
 				"buffer-from": "^1.0.0",
 				"source-map": "^0.6.0"
@@ -19784,9 +18427,8 @@
 		},
 		"node_modules/jest-runner/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -19795,58 +18437,41 @@
 			}
 		},
 		"node_modules/jest-runtime": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-runtime/-/jest-runtime-28.1.3.tgz",
-			"integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/environment": "^28.1.3",
-				"@jest/fake-timers": "^28.1.3",
-				"@jest/globals": "^28.1.3",
-				"@jest/source-map": "^28.1.2",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-runtime/-/jest-runtime-29.7.0.tgz",
+			"integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
+			"dependencies": {
+				"@jest/environment": "^29.7.0",
+				"@jest/fake-timers": "^29.7.0",
+				"@jest/globals": "^29.7.0",
+				"@jest/source-map": "^29.6.3",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"cjs-module-lexer": "^1.0.0",
 				"collect-v8-coverage": "^1.0.0",
-				"execa": "^5.0.0",
 				"glob": "^7.1.3",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-mock": "^28.1.3",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.3",
-				"jest-snapshot": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-haste-map": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-mock": "^29.7.0",
+				"jest-regex-util": "^29.6.3",
+				"jest-resolve": "^29.7.0",
+				"jest-snapshot": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"slash": "^3.0.0",
 				"strip-bom": "^4.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-runtime/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-runtime/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -19859,9 +18484,8 @@
 		},
 		"node_modules/jest-runtime/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -19875,9 +18499,8 @@
 		},
 		"node_modules/jest-runtime/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -19887,50 +18510,13 @@
 		},
 		"node_modules/jest-runtime/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
-		},
-		"node_modules/jest-runtime/node_modules/execa": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-5.1.1.tgz",
-			"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
-			"license": "MIT",
-			"dependencies": {
-				"cross-spawn": "^7.0.3",
-				"get-stream": "^6.0.0",
-				"human-signals": "^2.1.0",
-				"is-stream": "^2.0.0",
-				"merge-stream": "^2.0.0",
-				"npm-run-path": "^4.0.1",
-				"onetime": "^5.1.2",
-				"signal-exit": "^3.0.3",
-				"strip-final-newline": "^2.0.0"
-			},
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sindresorhus/execa?sponsor=1"
-			}
-		},
-		"node_modules/jest-runtime/node_modules/get-stream": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-6.0.1.tgz",
-			"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-runtime/node_modules/glob": {
 			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+			"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-			"license": "ISC",
 			"dependencies": {
 				"fs.realpath": "^1.0.0",
 				"inflight": "^1.0.4",
@@ -19948,64 +18534,16 @@
 		},
 		"node_modules/jest-runtime/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-runtime/node_modules/human-signals": {
-			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-2.1.0.tgz",
-			"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
-			"license": "Apache-2.0",
-			"engines": {
-				"node": ">=10.17.0"
-			}
-		},
-		"node_modules/jest-runtime/node_modules/jest-resolve": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-			"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-			"license": "MIT",
-			"dependencies": {
-				"chalk": "^4.0.0",
-				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-pnp-resolver": "^1.2.2",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"resolve": "^1.20.0",
-				"resolve.exports": "^1.1.0",
-				"slash": "^3.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-runtime/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/jest-runtime/node_modules/minimatch": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
 			},
@@ -20015,9 +18553,8 @@
 		},
 		"node_modules/jest-runtime/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -20026,44 +18563,39 @@
 			}
 		},
 		"node_modules/jest-snapshot": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-snapshot/-/jest-snapshot-28.1.3.tgz",
-			"integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
+			"integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
 			"dependencies": {
 				"@babel/core": "^7.11.6",
 				"@babel/generator": "^7.7.2",
+				"@babel/plugin-syntax-jsx": "^7.7.2",
 				"@babel/plugin-syntax-typescript": "^7.7.2",
-				"@babel/traverse": "^7.7.2",
 				"@babel/types": "^7.3.3",
-				"@jest/expect-utils": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/babel__traverse": "^7.0.6",
-				"@types/prettier": "^2.1.5",
+				"@jest/expect-utils": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"babel-preset-current-node-syntax": "^1.0.0",
 				"chalk": "^4.0.0",
-				"expect": "^28.1.3",
+				"expect": "^29.7.0",
 				"graceful-fs": "^4.2.9",
-				"jest-diff": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"jest-haste-map": "^28.1.3",
-				"jest-matcher-utils": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-diff": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"jest-matcher-utils": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"natural-compare": "^1.4.0",
-				"pretty-format": "^28.1.3",
-				"semver": "^7.3.5"
+				"pretty-format": "^29.7.0",
+				"semver": "^7.5.3"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-snapshot/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -20076,9 +18608,8 @@
 		},
 		"node_modules/jest-snapshot/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -20092,9 +18623,8 @@
 		},
 		"node_modules/jest-snapshot/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -20104,41 +18634,21 @@
 		},
 		"node_modules/jest-snapshot/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-snapshot/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-snapshot/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/jest-snapshot/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -20160,12 +18670,11 @@
 			}
 		},
 		"node_modules/jest-util": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.1.tgz",
-			"integrity": "sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-util/-/jest-util-29.7.0.tgz",
+			"integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
 			"dependencies": {
-				"@jest/types": "^28.1.1",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"ci-info": "^3.2.0",
@@ -20173,14 +18682,13 @@
 				"picomatch": "^2.2.3"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-util/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -20193,9 +18701,8 @@
 		},
 		"node_modules/jest-util/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -20209,9 +18716,8 @@
 		},
 		"node_modules/jest-util/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -20221,24 +18727,21 @@
 		},
 		"node_modules/jest-util/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-util/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-util/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -20247,27 +18750,25 @@
 			}
 		},
 		"node_modules/jest-validate": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-validate/-/jest-validate-28.1.3.tgz",
-			"integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-validate/-/jest-validate-29.7.0.tgz",
+			"integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==",
 			"dependencies": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"camelcase": "^6.2.0",
 				"chalk": "^4.0.0",
-				"jest-get-type": "^28.0.2",
+				"jest-get-type": "^29.6.3",
 				"leven": "^3.1.0",
-				"pretty-format": "^28.1.3"
+				"pretty-format": "^29.7.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-validate/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -20280,9 +18781,8 @@
 		},
 		"node_modules/jest-validate/node_modules/camelcase": {
 			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/camelcase/-/camelcase-6.3.0.tgz",
+			"resolved": "http://localhost:4873/camelcase/-/camelcase-6.3.0.tgz",
 			"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			},
@@ -20292,9 +18792,8 @@
 		},
 		"node_modules/jest-validate/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -20308,9 +18807,8 @@
 		},
 		"node_modules/jest-validate/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -20320,24 +18818,21 @@
 		},
 		"node_modules/jest-validate/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-validate/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-validate/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -20346,44 +18841,27 @@
 			}
 		},
 		"node_modules/jest-watcher": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-watcher/-/jest-watcher-28.1.3.tgz",
-			"integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-watcher/-/jest-watcher-29.7.0.tgz",
+			"integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
 			"dependencies": {
-				"@jest/test-result": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/test-result": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"ansi-escapes": "^4.2.1",
 				"chalk": "^4.0.0",
-				"emittery": "^0.10.2",
-				"jest-util": "^28.1.3",
+				"emittery": "^0.13.1",
+				"jest-util": "^29.7.0",
 				"string-length": "^4.0.1"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
-		"node_modules/jest-watcher/node_modules/@jest/test-result": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-			"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/console": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/istanbul-lib-coverage": "^2.0.0",
-				"collect-v8-coverage": "^1.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-watcher/node_modules/ansi-styles": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
 			},
@@ -20396,9 +18874,8 @@
 		},
 		"node_modules/jest-watcher/node_modules/chalk": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
 				"supports-color": "^7.1.0"
@@ -20412,9 +18889,8 @@
 		},
 		"node_modules/jest-watcher/node_modules/color-convert": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
 			},
@@ -20424,41 +18900,21 @@
 		},
 		"node_modules/jest-watcher/node_modules/color-name": {
 			"version": "1.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 		},
 		"node_modules/jest-watcher/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
-		"node_modules/jest-watcher/node_modules/jest-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-			"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-			"license": "MIT",
-			"dependencies": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"chalk": "^4.0.0",
-				"ci-info": "^3.2.0",
-				"graceful-fs": "^4.2.9",
-				"picomatch": "^2.2.3"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
-			}
-		},
 		"node_modules/jest-watcher/node_modules/supports-color": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -20467,33 +18923,31 @@
 			}
 		},
 		"node_modules/jest-worker": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-worker/-/jest-worker-28.1.3.tgz",
-			"integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-worker/-/jest-worker-29.7.0.tgz",
+			"integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
 			"dependencies": {
 				"@types/node": "*",
+				"jest-util": "^29.7.0",
 				"merge-stream": "^2.0.0",
 				"supports-color": "^8.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/jest-worker/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/jest-worker/node_modules/supports-color": {
 			"version": "8.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-8.1.1.tgz",
 			"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -20504,6 +18958,15 @@
 				"url": "https://github.com/chalk/supports-color?sponsor=1"
 			}
 		},
+		"node_modules/jiti": {
+			"version": "1.20.0",
+			"resolved": "http://localhost:4873/jiti/-/jiti-1.20.0.tgz",
+			"integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==",
+			"dev": true,
+			"bin": {
+				"jiti": "bin/jiti.js"
+			}
+		},
 		"node_modules/js-base64": {
 			"version": "3.7.5",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-base64/-/js-base64-3.7.5.tgz",
@@ -20531,30 +18994,28 @@
 		},
 		"node_modules/jsbn": {
 			"version": "0.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsbn/-/jsbn-0.1.1.tgz",
+			"resolved": "http://localhost:4873/jsbn/-/jsbn-0.1.1.tgz",
 			"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/jsdom": {
-			"version": "19.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsdom/-/jsdom-19.0.0.tgz",
-			"integrity": "sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==",
+			"version": "16.7.0",
+			"resolved": "http://localhost:4873/jsdom/-/jsdom-16.7.0.tgz",
+			"integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"abab": "^2.0.5",
-				"acorn": "^8.5.0",
+				"acorn": "^8.2.4",
 				"acorn-globals": "^6.0.0",
-				"cssom": "^0.5.0",
+				"cssom": "^0.4.4",
 				"cssstyle": "^2.3.0",
-				"data-urls": "^3.0.1",
-				"decimal.js": "^10.3.1",
-				"domexception": "^4.0.0",
+				"data-urls": "^2.0.0",
+				"decimal.js": "^10.2.1",
+				"domexception": "^2.0.1",
 				"escodegen": "^2.0.0",
-				"form-data": "^4.0.0",
-				"html-encoding-sniffer": "^3.0.0",
-				"http-proxy-agent": "^5.0.0",
+				"form-data": "^3.0.0",
+				"html-encoding-sniffer": "^2.0.1",
+				"http-proxy-agent": "^4.0.1",
 				"https-proxy-agent": "^5.0.0",
 				"is-potential-custom-element-name": "^1.0.1",
 				"nwsapi": "^2.2.0",
@@ -20563,16 +19024,16 @@
 				"symbol-tree": "^3.2.4",
 				"tough-cookie": "^4.0.0",
 				"w3c-hr-time": "^1.0.2",
-				"w3c-xmlserializer": "^3.0.0",
-				"webidl-conversions": "^7.0.0",
-				"whatwg-encoding": "^2.0.0",
-				"whatwg-mimetype": "^3.0.0",
-				"whatwg-url": "^10.0.0",
-				"ws": "^8.2.3",
-				"xml-name-validator": "^4.0.0"
+				"w3c-xmlserializer": "^2.0.0",
+				"webidl-conversions": "^6.1.0",
+				"whatwg-encoding": "^1.0.5",
+				"whatwg-mimetype": "^2.3.0",
+				"whatwg-url": "^8.5.0",
+				"ws": "^7.4.6",
+				"xml-name-validator": "^3.0.0"
 			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=10"
 			},
 			"peerDependencies": {
 				"canvas": "^2.5.0"
@@ -20583,12 +19044,20 @@
 				}
 			}
 		},
+		"node_modules/jsdom/node_modules/@tootallnate/once": {
+			"version": "1.1.2",
+			"resolved": "http://localhost:4873/@tootallnate/once/-/once-1.1.2.tgz",
+			"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+			"dev": true,
+			"engines": {
+				"node": ">= 6"
+			}
+		},
 		"node_modules/jsdom/node_modules/form-data": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/form-data/-/form-data-4.0.0.tgz",
-			"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/form-data/-/form-data-3.0.1.tgz",
+			"integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"asynckit": "^0.4.0",
 				"combined-stream": "^1.0.8",
@@ -20598,12 +19067,34 @@
 				"node": ">= 6"
 			}
 		},
+		"node_modules/jsdom/node_modules/http-proxy-agent": {
+			"version": "4.0.1",
+			"resolved": "http://localhost:4873/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+			"integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+			"dev": true,
+			"dependencies": {
+				"@tootallnate/once": "1",
+				"agent-base": "6",
+				"debug": "4"
+			},
+			"engines": {
+				"node": ">= 6"
+			}
+		},
 		"node_modules/jsdom/node_modules/parse5": {
 			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
+			"resolved": "http://localhost:4873/parse5/-/parse5-6.0.1.tgz",
 			"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
+			"dev": true
+		},
+		"node_modules/jsdom/node_modules/webidl-conversions": {
+			"version": "6.1.0",
+			"resolved": "http://localhost:4873/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+			"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
 			"dev": true,
-			"license": "MIT"
+			"engines": {
+				"node": ">=10.4"
+			}
 		},
 		"node_modules/jsesc": {
 			"version": "2.5.2",
@@ -20626,16 +19117,14 @@
 		},
 		"node_modules/json-parse-even-better-errors": {
 			"version": "2.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
-			"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+			"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
 		},
 		"node_modules/json-schema": {
 			"version": "0.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema/-/json-schema-0.4.0.tgz",
+			"resolved": "http://localhost:4873/json-schema/-/json-schema-0.4.0.tgz",
 			"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
-			"devOptional": true,
-			"license": "(AFL-2.1 OR BSD-3-Clause)"
+			"dev": true
 		},
 		"node_modules/json-schema-traverse": {
 			"version": "1.0.0",
@@ -20647,14 +19136,14 @@
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
 			"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/json-stringify-safe": {
 			"version": "5.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
 			"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "ISC"
 		},
 		"node_modules/json5": {
@@ -20669,6 +19158,24 @@
 				"node": ">=6"
 			}
 		},
+		"node_modules/jsonc-eslint-parser": {
+			"version": "2.4.0",
+			"resolved": "http://localhost:4873/jsonc-eslint-parser/-/jsonc-eslint-parser-2.4.0.tgz",
+			"integrity": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==",
+			"dev": true,
+			"dependencies": {
+				"acorn": "^8.5.0",
+				"eslint-visitor-keys": "^3.0.0",
+				"espree": "^9.0.0",
+				"semver": "^7.3.5"
+			},
+			"engines": {
+				"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/ota-meshi"
+			}
+		},
 		"node_modules/jsonc-parser": {
 			"version": "3.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsonc-parser/-/jsonc-parser-3.2.0.tgz",
@@ -20689,23 +19196,21 @@
 		},
 		"node_modules/jsonparse": {
 			"version": "1.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsonparse/-/jsonparse-1.3.1.tgz",
+			"resolved": "http://localhost:4873/jsonparse/-/jsonparse-1.3.1.tgz",
 			"integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
 			"dev": true,
 			"engines": [
 				"node >= 0.2.0"
-			],
-			"license": "MIT"
+			]
 		},
 		"node_modules/jsprim": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsprim/-/jsprim-2.0.2.tgz",
+			"resolved": "http://localhost:4873/jsprim/-/jsprim-2.0.2.tgz",
 			"integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==",
-			"devOptional": true,
+			"dev": true,
 			"engines": [
 				"node >=0.6.0"
 			],
-			"license": "MIT",
 			"dependencies": {
 				"assert-plus": "1.0.0",
 				"extsprintf": "1.3.0",
@@ -20743,10 +19248,9 @@
 		},
 		"node_modules/kleur": {
 			"version": "3.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/kleur/-/kleur-3.0.3.tgz",
+			"resolved": "http://localhost:4873/kleur/-/kleur-3.0.3.tgz",
 			"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			}
@@ -20760,11 +19264,20 @@
 				"node": ">= 8"
 			}
 		},
+		"node_modules/launch-editor": {
+			"version": "2.6.1",
+			"resolved": "http://localhost:4873/launch-editor/-/launch-editor-2.6.1.tgz",
+			"integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==",
+			"dependencies": {
+				"picocolors": "^1.0.0",
+				"shell-quote": "^1.8.1"
+			}
+		},
 		"node_modules/lazy-ass": {
 			"version": "1.6.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lazy-ass/-/lazy-ass-1.6.0.tgz",
 			"integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": "> 0.8"
@@ -20862,19 +19375,17 @@
 		},
 		"node_modules/leven": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/leven/-/leven-3.1.0.tgz",
+			"resolved": "http://localhost:4873/leven/-/leven-3.1.0.tgz",
 			"integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			}
 		},
 		"node_modules/levn": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/levn/-/levn-0.4.1.tgz",
+			"resolved": "http://localhost:4873/levn/-/levn-0.4.1.tgz",
 			"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"prelude-ls": "^1.2.1",
 				"type-check": "~0.4.0"
@@ -20902,9 +19413,8 @@
 		},
 		"node_modules/lilconfig": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lilconfig/-/lilconfig-2.1.0.tgz",
+			"resolved": "http://localhost:4873/lilconfig/-/lilconfig-2.1.0.tgz",
 			"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			}
@@ -20922,7 +19432,7 @@
 			"version": "3.14.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/listr2/-/listr2-3.14.0.tgz",
 			"integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"cli-truncate": "^2.1.0",
@@ -20948,9 +19458,8 @@
 		},
 		"node_modules/loader-runner": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/loader-runner/-/loader-runner-4.3.0.tgz",
+			"resolved": "http://localhost:4873/loader-runner/-/loader-runner-4.3.0.tgz",
 			"integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6.11.5"
 			}
@@ -20981,6 +19490,7 @@
 			"version": "4.17.21",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash/-/lodash-4.17.21.tgz",
 			"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/lodash-es": {
@@ -20991,9 +19501,8 @@
 		},
 		"node_modules/lodash.debounce": {
 			"version": "4.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
-			"integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+			"integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
 		},
 		"node_modules/lodash.isempty": {
 			"version": "4.4.0",
@@ -21025,29 +19534,27 @@
 		},
 		"node_modules/lodash.memoize": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
-			"integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+			"integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="
 		},
 		"node_modules/lodash.merge": {
 			"version": "4.6.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.merge/-/lodash.merge-4.6.2.tgz",
 			"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/lodash.once": {
 			"version": "4.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.once/-/lodash.once-4.1.1.tgz",
 			"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/lodash.uniq": {
 			"version": "4.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
-			"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+			"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
 		},
 		"node_modules/log-symbols": {
 			"version": "4.1.0",
@@ -21139,7 +19646,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/log-update/-/log-update-4.0.0.tgz",
 			"integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-escapes": "^4.3.0",
@@ -21158,7 +19665,7 @@
 			"version": "4.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
@@ -21174,7 +19681,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
@@ -21187,14 +19694,14 @@
 			"version": "1.1.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/log-update/node_modules/slice-ansi": {
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slice-ansi/-/slice-ansi-4.0.0.tgz",
 			"integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.0.0",
@@ -21212,7 +19719,7 @@
 			"version": "6.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
 			"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.0.0",
@@ -21245,18 +19752,6 @@
 				"yallist": "^3.0.2"
 			}
 		},
-		"node_modules/magic-string": {
-			"version": "0.27.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.27.0.tgz",
-			"integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
-			"license": "MIT",
-			"dependencies": {
-				"@jridgewell/sourcemap-codec": "^1.4.13"
-			},
-			"engines": {
-				"node": ">=12"
-			}
-		},
 		"node_modules/make-dir": {
 			"version": "3.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-dir/-/make-dir-3.1.0.tgz",
@@ -21288,164 +19783,44 @@
 			"license": "ISC"
 		},
 		"node_modules/make-fetch-happen": {
-			"version": "10.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz",
-			"integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==",
+			"version": "11.1.1",
+			"resolved": "http://localhost:4873/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz",
+			"integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"agentkeepalive": "^4.2.1",
-				"cacache": "^16.1.0",
-				"http-cache-semantics": "^4.1.0",
+				"cacache": "^17.0.0",
+				"http-cache-semantics": "^4.1.1",
 				"http-proxy-agent": "^5.0.0",
 				"https-proxy-agent": "^5.0.0",
 				"is-lambda": "^1.0.1",
 				"lru-cache": "^7.7.1",
-				"minipass": "^3.1.6",
-				"minipass-collect": "^1.0.2",
-				"minipass-fetch": "^2.0.3",
+				"minipass": "^5.0.0",
+				"minipass-fetch": "^3.0.0",
 				"minipass-flush": "^1.0.5",
 				"minipass-pipeline": "^1.2.4",
 				"negotiator": "^0.6.3",
 				"promise-retry": "^2.0.1",
 				"socks-proxy-agent": "^7.0.0",
-				"ssri": "^9.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/@npmcli/fs": {
-			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/fs/-/fs-2.1.2.tgz",
-			"integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"@gar/promisify": "^1.1.3",
-				"semver": "^7.3.5"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/cacache": {
-			"version": "16.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cacache/-/cacache-16.1.3.tgz",
-			"integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"@npmcli/fs": "^2.1.0",
-				"@npmcli/move-file": "^2.0.0",
-				"chownr": "^2.0.0",
-				"fs-minipass": "^2.1.0",
-				"glob": "^8.0.1",
-				"infer-owner": "^1.0.4",
-				"lru-cache": "^7.7.1",
-				"minipass": "^3.1.6",
-				"minipass-collect": "^1.0.2",
-				"minipass-flush": "^1.0.5",
-				"minipass-pipeline": "^1.2.4",
-				"mkdirp": "^1.0.4",
-				"p-map": "^4.0.0",
-				"promise-inflight": "^1.0.1",
-				"rimraf": "^3.0.2",
-				"ssri": "^9.0.0",
-				"tar": "^6.1.11",
-				"unique-filename": "^2.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/fs-minipass": {
-			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-minipass/-/fs-minipass-2.1.0.tgz",
-			"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"minipass": "^3.0.0"
+				"ssri": "^10.0.0"
 			},
 			"engines": {
-				"node": ">= 8"
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
 		"node_modules/make-fetch-happen/node_modules/lru-cache": {
 			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 			"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": ">=12"
 			}
 		},
-		"node_modules/make-fetch-happen/node_modules/minipass": {
-			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
-			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"yallist": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/ssri": {
-			"version": "9.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ssri/-/ssri-9.0.1.tgz",
-			"integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"minipass": "^3.1.1"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/unique-filename": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-filename/-/unique-filename-2.0.1.tgz",
-			"integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"unique-slug": "^3.0.0"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/unique-slug": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-slug/-/unique-slug-3.0.0.tgz",
-			"integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"imurmurhash": "^0.1.4"
-			},
-			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
-			}
-		},
-		"node_modules/make-fetch-happen/node_modules/yallist": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
-		},
 		"node_modules/makeerror": {
 			"version": "1.0.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/makeerror/-/makeerror-1.0.12.tgz",
+			"resolved": "http://localhost:4873/makeerror/-/makeerror-1.0.12.tgz",
 			"integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
-			"license": "BSD-3-Clause",
 			"dependencies": {
 				"tmpl": "1.0.5"
 			}
@@ -21486,27 +19861,24 @@
 			}
 		},
 		"node_modules/mdn-data": {
-			"version": "2.0.14",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mdn-data/-/mdn-data-2.0.14.tgz",
-			"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
-			"license": "CC0-1.0"
+			"version": "2.0.30",
+			"resolved": "http://localhost:4873/mdn-data/-/mdn-data-2.0.30.tgz",
+			"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
 		},
 		"node_modules/media-typer": {
 			"version": "0.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/media-typer/-/media-typer-0.3.0.tgz",
+			"resolved": "http://localhost:4873/media-typer/-/media-typer-0.3.0.tgz",
 			"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/memfs": {
-			"version": "3.4.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/memfs/-/memfs-3.4.13.tgz",
-			"integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==",
-			"license": "Unlicense",
+			"version": "3.5.3",
+			"resolved": "http://localhost:4873/memfs/-/memfs-3.5.3.tgz",
+			"integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
 			"dependencies": {
-				"fs-monkey": "^1.0.3"
+				"fs-monkey": "^1.0.4"
 			},
 			"engines": {
 				"node": ">= 4.0.0"
@@ -21576,9 +19948,8 @@
 		},
 		"node_modules/merge-descriptors": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
-			"integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+			"integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
 		},
 		"node_modules/merge-stream": {
 			"version": "2.0.0",
@@ -21597,9 +19968,8 @@
 		},
 		"node_modules/methods": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/methods/-/methods-1.1.2.tgz",
+			"resolved": "http://localhost:4873/methods/-/methods-1.1.2.tgz",
 			"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
@@ -21691,11 +20061,10 @@
 			}
 		},
 		"node_modules/mini-css-extract-plugin": {
-			"version": "2.7.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz",
-			"integrity": "sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==",
+			"version": "2.7.6",
+			"resolved": "http://localhost:4873/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz",
+			"integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"schema-utils": "^4.0.0"
 			},
@@ -21745,21 +20114,19 @@
 			}
 		},
 		"node_modules/minipass": {
-			"version": "4.2.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-4.2.5.tgz",
-			"integrity": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==",
+			"version": "5.0.0",
+			"resolved": "http://localhost:4873/minipass/-/minipass-5.0.0.tgz",
+			"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/minipass-collect": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-collect/-/minipass-collect-1.0.2.tgz",
+			"resolved": "http://localhost:4873/minipass-collect/-/minipass-collect-1.0.2.tgz",
 			"integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"minipass": "^3.0.0"
 			},
@@ -21769,10 +20136,9 @@
 		},
 		"node_modules/minipass-collect/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -21782,55 +20148,41 @@
 		},
 		"node_modules/minipass-collect/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/minipass-fetch": {
-			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-fetch/-/minipass-fetch-2.1.2.tgz",
-			"integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==",
+			"version": "3.0.4",
+			"resolved": "http://localhost:4873/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
+			"integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"minipass": "^3.1.6",
+				"minipass": "^7.0.3",
 				"minipass-sized": "^1.0.3",
 				"minizlib": "^2.1.2"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			},
 			"optionalDependencies": {
 				"encoding": "^0.1.13"
 			}
 		},
 		"node_modules/minipass-fetch/node_modules/minipass": {
-			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
-			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+			"version": "7.0.4",
+			"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+			"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
 			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"yallist": "^4.0.0"
-			},
 			"engines": {
-				"node": ">=8"
+				"node": ">=16 || 14 >=14.17"
 			}
 		},
-		"node_modules/minipass-fetch/node_modules/yallist": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
-		},
 		"node_modules/minipass-flush": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-flush/-/minipass-flush-1.0.5.tgz",
+			"resolved": "http://localhost:4873/minipass-flush/-/minipass-flush-1.0.5.tgz",
 			"integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"minipass": "^3.0.0"
 			},
@@ -21840,10 +20192,9 @@
 		},
 		"node_modules/minipass-flush/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -21853,17 +20204,15 @@
 		},
 		"node_modules/minipass-flush/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/minipass-json-stream": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
+			"resolved": "http://localhost:4873/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
 			"integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"jsonparse": "^1.3.1",
 				"minipass": "^3.0.0"
@@ -21871,10 +20220,9 @@
 		},
 		"node_modules/minipass-json-stream/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -21884,17 +20232,15 @@
 		},
 		"node_modules/minipass-json-stream/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/minipass-pipeline": {
 			"version": "1.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+			"resolved": "http://localhost:4873/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
 			"integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"minipass": "^3.0.0"
 			},
@@ -21904,10 +20250,9 @@
 		},
 		"node_modules/minipass-pipeline/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -21917,17 +20262,15 @@
 		},
 		"node_modules/minipass-pipeline/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/minipass-sized": {
 			"version": "1.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-sized/-/minipass-sized-1.0.3.tgz",
+			"resolved": "http://localhost:4873/minipass-sized/-/minipass-sized-1.0.3.tgz",
 			"integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"minipass": "^3.0.0"
 			},
@@ -21937,10 +20280,9 @@
 		},
 		"node_modules/minipass-sized/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -21950,17 +20292,15 @@
 		},
 		"node_modules/minipass-sized/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/minizlib": {
 			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minizlib/-/minizlib-2.1.2.tgz",
+			"resolved": "http://localhost:4873/minizlib/-/minizlib-2.1.2.tgz",
 			"integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"minipass": "^3.0.0",
 				"yallist": "^4.0.0"
@@ -21971,10 +20311,9 @@
 		},
 		"node_modules/minizlib/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -21984,10 +20323,9 @@
 		},
 		"node_modules/minizlib/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/mississippi": {
 			"version": "3.0.0",
@@ -22029,294 +20367,15 @@
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mkdirp/-/mkdirp-1.0.4.tgz",
 			"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-			"license": "MIT",
-			"bin": {
-				"mkdirp": "bin/cmd.js"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
-		"node_modules/mocha": {
-			"version": "10.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mocha/-/mocha-10.2.0.tgz",
-			"integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"ansi-colors": "4.1.1",
-				"browser-stdout": "1.3.1",
-				"chokidar": "3.5.3",
-				"debug": "4.3.4",
-				"diff": "5.0.0",
-				"escape-string-regexp": "4.0.0",
-				"find-up": "5.0.0",
-				"glob": "7.2.0",
-				"he": "1.2.0",
-				"js-yaml": "4.1.0",
-				"log-symbols": "4.1.0",
-				"minimatch": "5.0.1",
-				"ms": "2.1.3",
-				"nanoid": "3.3.3",
-				"serialize-javascript": "6.0.0",
-				"strip-json-comments": "3.1.1",
-				"supports-color": "8.1.1",
-				"workerpool": "6.2.1",
-				"yargs": "16.2.0",
-				"yargs-parser": "20.2.4",
-				"yargs-unparser": "2.0.0"
-			},
-			"bin": {
-				"_mocha": "bin/_mocha",
-				"mocha": "bin/mocha.js"
-			},
-			"engines": {
-				"node": ">= 14.0.0"
-			},
-			"funding": {
-				"type": "opencollective",
-				"url": "https://opencollective.com/mochajs"
-			}
-		},
-		"node_modules/mocha/node_modules/ansi-colors": {
-			"version": "4.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-colors/-/ansi-colors-4.1.1.tgz",
-			"integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"engines": {
-				"node": ">=6"
-			}
-		},
-		"node_modules/mocha/node_modules/argparse": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/argparse/-/argparse-2.0.1.tgz",
-			"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-			"dev": true,
-			"license": "Python-2.0",
-			"peer": true
-		},
-		"node_modules/mocha/node_modules/escape-string-regexp": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
-			"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
-		"node_modules/mocha/node_modules/find-up": {
-			"version": "5.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/find-up/-/find-up-5.0.0.tgz",
-			"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"locate-path": "^6.0.0",
-				"path-exists": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
-		"node_modules/mocha/node_modules/glob": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.0.tgz",
-			"integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
-			"dev": true,
-			"license": "ISC",
-			"peer": true,
-			"dependencies": {
-				"fs.realpath": "^1.0.0",
-				"inflight": "^1.0.4",
-				"inherits": "2",
-				"minimatch": "^3.0.4",
-				"once": "^1.3.0",
-				"path-is-absolute": "^1.0.0"
-			},
-			"engines": {
-				"node": "*"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/isaacs"
-			}
-		},
-		"node_modules/mocha/node_modules/glob/node_modules/minimatch": {
-			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
-			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"dev": true,
-			"license": "ISC",
-			"peer": true,
-			"dependencies": {
-				"brace-expansion": "^1.1.7"
-			},
-			"engines": {
-				"node": "*"
-			}
-		},
-		"node_modules/mocha/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/mocha/node_modules/js-yaml": {
-			"version": "4.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-yaml/-/js-yaml-4.1.0.tgz",
-			"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
 			"dev": true,
 			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"argparse": "^2.0.1"
-			},
 			"bin": {
-				"js-yaml": "bin/js-yaml.js"
-			}
-		},
-		"node_modules/mocha/node_modules/locate-path": {
-			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/locate-path/-/locate-path-6.0.0.tgz",
-			"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"p-locate": "^5.0.0"
-			},
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
-		"node_modules/mocha/node_modules/minimatch": {
-			"version": "5.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-5.0.1.tgz",
-			"integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==",
-			"dev": true,
-			"license": "ISC",
-			"peer": true,
-			"dependencies": {
-				"brace-expansion": "^2.0.1"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
-		"node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
-			"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"balanced-match": "^1.0.0"
-			}
-		},
-		"node_modules/mocha/node_modules/ms": {
-			"version": "2.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.1.3.tgz",
-			"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true
-		},
-		"node_modules/mocha/node_modules/p-locate": {
-			"version": "5.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/p-locate/-/p-locate-5.0.0.tgz",
-			"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"p-limit": "^3.0.2"
-			},
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
-		"node_modules/mocha/node_modules/serialize-javascript": {
-			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
-			"integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
-			"dev": true,
-			"license": "BSD-3-Clause",
-			"peer": true,
-			"dependencies": {
-				"randombytes": "^2.1.0"
-			}
-		},
-		"node_modules/mocha/node_modules/supports-color": {
-			"version": "8.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
-			"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"has-flag": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/chalk/supports-color?sponsor=1"
-			}
-		},
-		"node_modules/mocha/node_modules/yargs": {
-			"version": "16.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs/-/yargs-16.2.0.tgz",
-			"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"cliui": "^7.0.2",
-				"escalade": "^3.1.1",
-				"get-caller-file": "^2.0.5",
-				"require-directory": "^2.1.1",
-				"string-width": "^4.2.0",
-				"y18n": "^5.0.5",
-				"yargs-parser": "^20.2.2"
+				"mkdirp": "bin/cmd.js"
 			},
 			"engines": {
 				"node": ">=10"
 			}
 		},
-		"node_modules/mocha/node_modules/yargs-parser": {
-			"version": "20.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs-parser/-/yargs-parser-20.2.4.tgz",
-			"integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
-			"dev": true,
-			"license": "ISC",
-			"peer": true,
-			"engines": {
-				"node": ">=10"
-			}
-		},
 		"node_modules/mochawesome": {
 			"version": "7.1.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mochawesome/-/mochawesome-7.1.3.tgz",
@@ -22860,6 +20919,15 @@
 				"rimraf": "bin.js"
 			}
 		},
+		"node_modules/mrmime": {
+			"version": "1.0.1",
+			"resolved": "http://localhost:4873/mrmime/-/mrmime-1.0.1.tgz",
+			"integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==",
+			"dev": true,
+			"engines": {
+				"node": ">=10"
+			}
+		},
 		"node_modules/ms": {
 			"version": "2.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.1.2.tgz",
@@ -22868,9 +20936,8 @@
 		},
 		"node_modules/multicast-dns": {
 			"version": "7.2.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/multicast-dns/-/multicast-dns-7.2.5.tgz",
+			"resolved": "http://localhost:4873/multicast-dns/-/multicast-dns-7.2.5.tgz",
 			"integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==",
-			"license": "MIT",
 			"dependencies": {
 				"dns-packet": "^5.2.2",
 				"thunky": "^1.0.2"
@@ -22894,20 +20961,6 @@
 			"license": "MIT",
 			"optional": true
 		},
-		"node_modules/nanoid": {
-			"version": "3.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nanoid/-/nanoid-3.3.3.tgz",
-			"integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"bin": {
-				"nanoid": "bin/nanoid.cjs"
-			},
-			"engines": {
-				"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
-			}
-		},
 		"node_modules/nanomatch": {
 			"version": "1.2.13",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nanomatch/-/nanomatch-1.2.13.tgz",
@@ -22931,13 +20984,6 @@
 				"node": ">=0.10.0"
 			}
 		},
-		"node_modules/native-request": {
-			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/native-request/-/native-request-1.1.0.tgz",
-			"integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==",
-			"license": "MIT",
-			"optional": true
-		},
 		"node_modules/natural-compare": {
 			"version": "1.4.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/natural-compare/-/natural-compare-1.4.0.tgz",
@@ -23025,11 +21071,10 @@
 		},
 		"node_modules/nice-napi": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nice-napi/-/nice-napi-1.0.2.tgz",
+			"resolved": "http://localhost:4873/nice-napi/-/nice-napi-1.0.2.tgz",
 			"integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==",
 			"dev": true,
 			"hasInstallScript": true,
-			"license": "MIT",
 			"optional": true,
 			"os": [
 				"!win32"
@@ -23041,9 +21086,8 @@
 		},
 		"node_modules/node-abort-controller": {
 			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
-			"integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
+			"integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ=="
 		},
 		"node_modules/node-addon-api": {
 			"version": "3.2.1",
@@ -23066,24 +21110,23 @@
 		},
 		"node_modules/node-forge": {
 			"version": "1.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-forge/-/node-forge-1.3.1.tgz",
+			"resolved": "http://localhost:4873/node-forge/-/node-forge-1.3.1.tgz",
 			"integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==",
-			"license": "(BSD-3-Clause OR GPL-2.0)",
 			"engines": {
 				"node": ">= 6.13.0"
 			}
 		},
 		"node_modules/node-gyp": {
-			"version": "9.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-gyp/-/node-gyp-9.3.1.tgz",
-			"integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==",
+			"version": "9.4.0",
+			"resolved": "http://localhost:4873/node-gyp/-/node-gyp-9.4.0.tgz",
+			"integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"env-paths": "^2.2.0",
+				"exponential-backoff": "^3.1.1",
 				"glob": "^7.1.4",
 				"graceful-fs": "^4.2.6",
-				"make-fetch-happen": "^10.0.3",
+				"make-fetch-happen": "^11.0.3",
 				"nopt": "^6.0.0",
 				"npmlog": "^6.0.0",
 				"rimraf": "^3.0.2",
@@ -23111,10 +21154,9 @@
 		},
 		"node_modules/node-gyp/node_modules/glob": {
 			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+			"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"fs.realpath": "^1.0.0",
 				"inflight": "^1.0.4",
@@ -23132,10 +21174,9 @@
 		},
 		"node_modules/node-gyp/node_modules/minimatch": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
 			},
@@ -23145,9 +21186,8 @@
 		},
 		"node_modules/node-int64": {
 			"version": "0.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-int64/-/node-int64-0.4.0.tgz",
-			"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/node-int64/-/node-int64-0.4.0.tgz",
+			"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
 		},
 		"node_modules/node-libs-browser": {
 			"version": "2.2.1",
@@ -23240,18 +21280,21 @@
 				"safe-buffer": "~5.1.0"
 			}
 		},
+		"node_modules/node-machine-id": {
+			"version": "1.1.12",
+			"resolved": "http://localhost:4873/node-machine-id/-/node-machine-id-1.1.12.tgz",
+			"integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ=="
+		},
 		"node_modules/node-releases": {
-			"version": "2.0.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-releases/-/node-releases-2.0.10.tgz",
-			"integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==",
-			"license": "MIT"
+			"version": "2.0.13",
+			"resolved": "http://localhost:4873/node-releases/-/node-releases-2.0.13.tgz",
+			"integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="
 		},
 		"node_modules/nopt": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nopt/-/nopt-6.0.0.tgz",
+			"resolved": "http://localhost:4873/nopt/-/nopt-6.0.0.tgz",
 			"integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"abbrev": "^1.0.0"
 			},
@@ -23264,10 +21307,9 @@
 		},
 		"node_modules/normalize-package-data": {
 			"version": "5.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
+			"resolved": "http://localhost:4873/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
 			"integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"hosted-git-info": "^6.0.0",
 				"is-core-module": "^2.8.1",
@@ -23289,31 +21331,17 @@
 		},
 		"node_modules/normalize-range": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/normalize-range/-/normalize-range-0.1.2.tgz",
+			"resolved": "http://localhost:4873/normalize-range/-/normalize-range-0.1.2.tgz",
 			"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=0.10.0"
 			}
 		},
-		"node_modules/normalize-url": {
-			"version": "6.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/normalize-url/-/normalize-url-6.1.0.tgz",
-			"integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
 		"node_modules/npm-bundled": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-bundled/-/npm-bundled-3.0.0.tgz",
+			"resolved": "http://localhost:4873/npm-bundled/-/npm-bundled-3.0.0.tgz",
 			"integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"npm-normalize-package-bin": "^3.0.0"
 			},
@@ -23322,11 +21350,10 @@
 			}
 		},
 		"node_modules/npm-install-checks": {
-			"version": "6.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-install-checks/-/npm-install-checks-6.1.0.tgz",
-			"integrity": "sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==",
+			"version": "6.3.0",
+			"resolved": "http://localhost:4873/npm-install-checks/-/npm-install-checks-6.3.0.tgz",
+			"integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==",
 			"dev": true,
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"semver": "^7.1.1"
 			},
@@ -23335,21 +21362,19 @@
 			}
 		},
 		"node_modules/npm-normalize-package-bin": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz",
-			"integrity": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
+			"integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
 		"node_modules/npm-package-arg": {
 			"version": "10.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
+			"resolved": "http://localhost:4873/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
 			"integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"hosted-git-info": "^6.0.0",
 				"proc-log": "^3.0.0",
@@ -23362,10 +21387,9 @@
 		},
 		"node_modules/npm-packlist": {
 			"version": "7.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-packlist/-/npm-packlist-7.0.4.tgz",
+			"resolved": "http://localhost:4873/npm-packlist/-/npm-packlist-7.0.4.tgz",
 			"integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"ignore-walk": "^6.0.0"
 			},
@@ -23375,10 +21399,9 @@
 		},
 		"node_modules/npm-pick-manifest": {
 			"version": "8.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz",
+			"resolved": "http://localhost:4873/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz",
 			"integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"npm-install-checks": "^6.0.0",
 				"npm-normalize-package-bin": "^3.0.0",
@@ -23390,14 +21413,13 @@
 			}
 		},
 		"node_modules/npm-registry-fetch": {
-			"version": "14.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-registry-fetch/-/npm-registry-fetch-14.0.3.tgz",
-			"integrity": "sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==",
+			"version": "14.0.5",
+			"resolved": "http://localhost:4873/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz",
+			"integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"make-fetch-happen": "^11.0.0",
-				"minipass": "^4.0.0",
+				"minipass": "^5.0.0",
 				"minipass-fetch": "^3.0.0",
 				"minipass-json-stream": "^1.0.1",
 				"minizlib": "^2.1.2",
@@ -23408,61 +21430,6 @@
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/npm-registry-fetch/node_modules/lru-cache": {
-			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
-			"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
-			"dev": true,
-			"license": "ISC",
-			"engines": {
-				"node": ">=12"
-			}
-		},
-		"node_modules/npm-registry-fetch/node_modules/make-fetch-happen": {
-			"version": "11.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz",
-			"integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"agentkeepalive": "^4.2.1",
-				"cacache": "^17.0.0",
-				"http-cache-semantics": "^4.1.1",
-				"http-proxy-agent": "^5.0.0",
-				"https-proxy-agent": "^5.0.0",
-				"is-lambda": "^1.0.1",
-				"lru-cache": "^7.7.1",
-				"minipass": "^4.0.0",
-				"minipass-fetch": "^3.0.0",
-				"minipass-flush": "^1.0.5",
-				"minipass-pipeline": "^1.2.4",
-				"negotiator": "^0.6.3",
-				"promise-retry": "^2.0.1",
-				"socks-proxy-agent": "^7.0.0",
-				"ssri": "^10.0.0"
-			},
-			"engines": {
-				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
-			}
-		},
-		"node_modules/npm-registry-fetch/node_modules/minipass-fetch": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-fetch/-/minipass-fetch-3.0.1.tgz",
-			"integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"minipass": "^4.0.0",
-				"minipass-sized": "^1.0.3",
-				"minizlib": "^2.1.2"
-			},
-			"engines": {
-				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
-			},
-			"optionalDependencies": {
-				"encoding": "^0.1.13"
-			}
-		},
 		"node_modules/npm-run-path": {
 			"version": "4.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-run-path/-/npm-run-path-4.0.1.tgz",
@@ -23477,10 +21444,9 @@
 		},
 		"node_modules/npmlog": {
 			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npmlog/-/npmlog-6.0.2.tgz",
+			"resolved": "http://localhost:4873/npmlog/-/npmlog-6.0.2.tgz",
 			"integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"are-we-there-yet": "^3.0.0",
 				"console-control-strings": "^1.1.0",
@@ -23493,9 +21459,8 @@
 		},
 		"node_modules/nth-check": {
 			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nth-check/-/nth-check-2.1.1.tgz",
+			"resolved": "http://localhost:4873/nth-check/-/nth-check-2.1.1.tgz",
 			"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"boolbase": "^1.0.0"
 			},
@@ -23504,45 +21469,44 @@
 			}
 		},
 		"node_modules/nwsapi": {
-			"version": "2.2.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nwsapi/-/nwsapi-2.2.2.tgz",
-			"integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==",
-			"dev": true,
-			"license": "MIT"
+			"version": "2.2.7",
+			"resolved": "http://localhost:4873/nwsapi/-/nwsapi-2.2.7.tgz",
+			"integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==",
+			"dev": true
 		},
 		"node_modules/nx": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nx/-/nx-15.6.3.tgz",
-			"integrity": "sha512-3t0A0GPLNen1yPAyE+VGZ3nkAzZYb5nfXtAcx8SHBlKq4u42yBY3khBmP1y4Og3jhIwFIj7J7Npeh8ZKrthmYQ==",
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/nx/-/nx-16.10.0.tgz",
+			"integrity": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==",
 			"hasInstallScript": true,
-			"license": "MIT",
 			"dependencies": {
-				"@nrwl/cli": "15.6.3",
-				"@nrwl/tao": "15.6.3",
+				"@nrwl/tao": "16.10.0",
 				"@parcel/watcher": "2.0.4",
 				"@yarnpkg/lockfile": "^1.1.0",
-				"@yarnpkg/parsers": "^3.0.0-rc.18",
+				"@yarnpkg/parsers": "3.0.0-rc.46",
 				"@zkochan/js-yaml": "0.0.6",
 				"axios": "^1.0.0",
 				"chalk": "^4.1.0",
 				"cli-cursor": "3.1.0",
 				"cli-spinners": "2.6.1",
-				"cliui": "^7.0.2",
-				"dotenv": "~10.0.0",
+				"cliui": "^8.0.1",
+				"dotenv": "~16.3.1",
+				"dotenv-expand": "~10.0.0",
 				"enquirer": "~2.3.6",
-				"fast-glob": "3.2.7",
 				"figures": "3.2.0",
 				"flat": "^5.0.2",
 				"fs-extra": "^11.1.0",
 				"glob": "7.1.4",
 				"ignore": "^5.0.4",
+				"jest-diff": "^29.4.1",
 				"js-yaml": "4.1.0",
 				"jsonc-parser": "3.2.0",
 				"lines-and-columns": "~2.0.3",
 				"minimatch": "3.0.5",
+				"node-machine-id": "1.1.12",
 				"npm-run-path": "^4.0.1",
 				"open": "^8.4.0",
-				"semver": "7.3.4",
+				"semver": "7.5.3",
 				"string-width": "^4.2.3",
 				"strong-log-transformer": "^2.1.0",
 				"tar-stream": "~2.2.0",
@@ -23556,9 +21520,21 @@
 			"bin": {
 				"nx": "bin/nx.js"
 			},
+			"optionalDependencies": {
+				"@nx/nx-darwin-arm64": "16.10.0",
+				"@nx/nx-darwin-x64": "16.10.0",
+				"@nx/nx-freebsd-x64": "16.10.0",
+				"@nx/nx-linux-arm-gnueabihf": "16.10.0",
+				"@nx/nx-linux-arm64-gnu": "16.10.0",
+				"@nx/nx-linux-arm64-musl": "16.10.0",
+				"@nx/nx-linux-x64-gnu": "16.10.0",
+				"@nx/nx-linux-x64-musl": "16.10.0",
+				"@nx/nx-win32-arm64-msvc": "16.10.0",
+				"@nx/nx-win32-x64-msvc": "16.10.0"
+			},
 			"peerDependencies": {
-				"@swc-node/register": "^1.4.2",
-				"@swc/core": "^1.2.173"
+				"@swc-node/register": "^1.6.7",
+				"@swc/core": "^1.3.85"
 			},
 			"peerDependenciesMeta": {
 				"@swc-node/register": {
@@ -23606,6 +21582,19 @@
 				"url": "https://github.com/chalk/chalk?sponsor=1"
 			}
 		},
+		"node_modules/nx/node_modules/cliui": {
+			"version": "8.0.1",
+			"resolved": "http://localhost:4873/cliui/-/cliui-8.0.1.tgz",
+			"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+			"dependencies": {
+				"string-width": "^4.2.0",
+				"strip-ansi": "^6.0.1",
+				"wrap-ansi": "^7.0.0"
+			},
+			"engines": {
+				"node": ">=12"
+			}
+		},
 		"node_modules/nx/node_modules/color-convert": {
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
@@ -23664,9 +21653,8 @@
 		},
 		"node_modules/nx/node_modules/lru-cache": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 			"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -23675,10 +21663,9 @@
 			}
 		},
 		"node_modules/nx/node_modules/semver": {
-			"version": "7.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-			"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-			"license": "ISC",
+			"version": "7.5.3",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+			"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 			"dependencies": {
 				"lru-cache": "^6.0.0"
 			},
@@ -23703,9 +21690,8 @@
 		},
 		"node_modules/nx/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
+			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 		},
 		"node_modules/object-assign": {
 			"version": "4.1.1",
@@ -23845,6 +21831,15 @@
 				"node": ">= 0.4"
 			}
 		},
+		"node_modules/object-path": {
+			"version": "0.11.8",
+			"resolved": "http://localhost:4873/object-path/-/object-path-0.11.8.tgz",
+			"integrity": "sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==",
+			"dev": true,
+			"engines": {
+				"node": ">= 10.12.0"
+			}
+		},
 		"node_modules/object-visit": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/object-visit/-/object-visit-1.0.1.tgz",
@@ -23892,15 +21887,13 @@
 		},
 		"node_modules/obuf": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/obuf/-/obuf-1.1.2.tgz",
-			"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/obuf/-/obuf-1.1.2.tgz",
+			"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="
 		},
 		"node_modules/on-finished": {
 			"version": "2.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/on-finished/-/on-finished-2.4.1.tgz",
+			"resolved": "http://localhost:4873/on-finished/-/on-finished-2.4.1.tgz",
 			"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
-			"license": "MIT",
 			"dependencies": {
 				"ee-first": "1.1.1"
 			},
@@ -23910,9 +21903,8 @@
 		},
 		"node_modules/on-headers": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/on-headers/-/on-headers-1.0.2.tgz",
+			"resolved": "http://localhost:4873/on-headers/-/on-headers-1.0.2.tgz",
 			"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
@@ -23942,10 +21934,9 @@
 			}
 		},
 		"node_modules/open": {
-			"version": "8.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/open/-/open-8.4.0.tgz",
-			"integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
-			"license": "MIT",
+			"version": "8.4.2",
+			"resolved": "http://localhost:4873/open/-/open-8.4.2.tgz",
+			"integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
 			"dependencies": {
 				"define-lazy-prop": "^2.0.0",
 				"is-docker": "^2.1.1",
@@ -23962,24 +21953,24 @@
 			"version": "1.5.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/opener/-/opener-1.5.2.tgz",
 			"integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==",
+			"dev": true,
 			"license": "(WTFPL OR MIT)",
 			"bin": {
 				"opener": "bin/opener-bin.js"
 			}
 		},
 		"node_modules/optionator": {
-			"version": "0.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/optionator/-/optionator-0.9.1.tgz",
-			"integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
-			"devOptional": true,
-			"license": "MIT",
+			"version": "0.9.3",
+			"resolved": "http://localhost:4873/optionator/-/optionator-0.9.3.tgz",
+			"integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
+			"dev": true,
 			"dependencies": {
+				"@aashutoshrathi/word-wrap": "^1.2.3",
 				"deep-is": "^0.1.3",
 				"fast-levenshtein": "^2.0.6",
 				"levn": "^0.4.1",
 				"prelude-ls": "^1.2.1",
-				"type-check": "^0.4.0",
-				"word-wrap": "^1.2.3"
+				"type-check": "^0.4.0"
 			},
 			"engines": {
 				"node": ">= 0.8.0"
@@ -23989,6 +21980,7 @@
 			"version": "5.4.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ora/-/ora-5.4.1.tgz",
 			"integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"bl": "^4.1.0",
@@ -24012,6 +22004,7 @@
 			"version": "4.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
@@ -24027,6 +22020,7 @@
 			"version": "4.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
 			"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.1.0",
@@ -24043,6 +22037,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
@@ -24055,12 +22050,14 @@
 			"version": "1.1.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/ora/node_modules/has-flag": {
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
@@ -24070,6 +22067,7 @@
 			"version": "7.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
 			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
@@ -24099,7 +22097,7 @@
 			"version": "1.2.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ospath/-/ospath-1.2.2.tgz",
 			"integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/p-limit": {
@@ -24148,7 +22146,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/p-map/-/p-map-4.0.0.tgz",
 			"integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"aggregate-error": "^3.0.0"
@@ -24162,9 +22160,8 @@
 		},
 		"node_modules/p-retry": {
 			"version": "4.6.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/p-retry/-/p-retry-4.6.2.tgz",
+			"resolved": "http://localhost:4873/p-retry/-/p-retry-4.6.2.tgz",
 			"integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
-			"license": "MIT",
 			"dependencies": {
 				"@types/retry": "0.12.0",
 				"retry": "^0.13.1"
@@ -24175,9 +22172,8 @@
 		},
 		"node_modules/p-retry/node_modules/retry": {
 			"version": "0.13.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/retry/-/retry-0.13.1.tgz",
+			"resolved": "http://localhost:4873/retry/-/retry-0.13.1.tgz",
 			"integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 4"
 			}
@@ -24192,11 +22188,10 @@
 			}
 		},
 		"node_modules/pacote": {
-			"version": "15.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pacote/-/pacote-15.0.8.tgz",
-			"integrity": "sha512-UlcumB/XS6xyyIMwg/WwMAyUmga+RivB5KgkRwA1hZNtrx+0Bt41KxHCvg1kr0pZ/ZeD8qjhW4fph6VaYRCbLw==",
+			"version": "15.2.0",
+			"resolved": "http://localhost:4873/pacote/-/pacote-15.2.0.tgz",
+			"integrity": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"@npmcli/git": "^4.0.0",
 				"@npmcli/installed-package-contents": "^2.0.1",
@@ -24204,7 +22199,7 @@
 				"@npmcli/run-script": "^6.0.0",
 				"cacache": "^17.0.0",
 				"fs-minipass": "^3.0.0",
-				"minipass": "^4.0.0",
+				"minipass": "^5.0.0",
 				"npm-package-arg": "^10.0.0",
 				"npm-packlist": "^7.0.0",
 				"npm-pick-manifest": "^8.0.0",
@@ -24213,6 +22208,7 @@
 				"promise-retry": "^2.0.1",
 				"read-package-json": "^6.0.0",
 				"read-package-json-fast": "^3.0.0",
+				"sigstore": "^1.3.0",
 				"ssri": "^10.0.0",
 				"tar": "^6.1.11"
 			},
@@ -24284,9 +22280,8 @@
 		},
 		"node_modules/parent-module": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parent-module/-/parent-module-1.0.1.tgz",
+			"resolved": "http://localhost:4873/parent-module/-/parent-module-1.0.1.tgz",
 			"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
-			"license": "MIT",
 			"dependencies": {
 				"callsites": "^3.0.0"
 			},
@@ -24310,9 +22305,8 @@
 		},
 		"node_modules/parse-json": {
 			"version": "5.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse-json/-/parse-json-5.2.0.tgz",
+			"resolved": "http://localhost:4873/parse-json/-/parse-json-5.2.0.tgz",
 			"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
-			"license": "MIT",
 			"dependencies": {
 				"@babel/code-frame": "^7.0.0",
 				"error-ex": "^1.3.1",
@@ -24328,9 +22322,8 @@
 		},
 		"node_modules/parse-json/node_modules/lines-and-columns": {
 			"version": "1.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
-			"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+			"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
 		},
 		"node_modules/parse-node-version": {
 			"version": "1.0.1",
@@ -24345,8 +22338,8 @@
 			"version": "7.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-7.1.2.tgz",
 			"integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==",
+			"devOptional": true,
 			"license": "MIT",
-			"optional": true,
 			"dependencies": {
 				"entities": "^4.4.0"
 			},
@@ -24355,71 +22348,35 @@
 			}
 		},
 		"node_modules/parse5-html-rewriting-stream": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz",
-			"integrity": "sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==",
-			"license": "MIT",
-			"dependencies": {
-				"parse5": "^6.0.1",
-				"parse5-sax-parser": "^6.0.1"
-			}
-		},
-		"node_modules/parse5-html-rewriting-stream/node_modules/parse5": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-			"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-			"license": "MIT"
-		},
-		"node_modules/parse5-htmlparser2-tree-adapter": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
-			"integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
+			"version": "7.0.0",
+			"resolved": "http://localhost:4873/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz",
+			"integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"parse5": "^6.0.1"
+				"entities": "^4.3.0",
+				"parse5": "^7.0.0",
+				"parse5-sax-parser": "^7.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/inikulin/parse5?sponsor=1"
 			}
 		},
-		"node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-			"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-			"dev": true,
-			"license": "MIT"
-		},
 		"node_modules/parse5-sax-parser": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz",
-			"integrity": "sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==",
-			"license": "MIT",
+			"version": "7.0.0",
+			"resolved": "http://localhost:4873/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz",
+			"integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==",
+			"dev": true,
 			"dependencies": {
-				"parse5": "^6.0.1"
-			}
-		},
-		"node_modules/parse5-sax-parser/node_modules/parse5": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-			"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-			"license": "MIT"
-		},
-		"node_modules/parse5/node_modules/entities": {
-			"version": "4.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/entities/-/entities-4.4.0.tgz",
-			"integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==",
-			"license": "BSD-2-Clause",
-			"optional": true,
-			"engines": {
-				"node": ">=0.12"
+				"parse5": "^7.0.0"
 			},
 			"funding": {
-				"url": "https://github.com/fb55/entities?sponsor=1"
+				"url": "https://github.com/inikulin/parse5?sponsor=1"
 			}
 		},
 		"node_modules/parseurl": {
 			"version": "1.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parseurl/-/parseurl-1.3.3.tgz",
+			"resolved": "http://localhost:4873/parseurl/-/parseurl-1.3.3.tgz",
 			"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
@@ -24483,14 +22440,13 @@
 			"license": "MIT"
 		},
 		"node_modules/path-scurry": {
-			"version": "1.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/path-scurry/-/path-scurry-1.6.3.tgz",
-			"integrity": "sha512-RAmB+n30SlN+HnNx6EbcpoDy9nwdpcGPnEKrJnu6GZoDWBdIjo1UQMVtW2ybtC7LC2oKLcMq8y5g8WnKLiod9g==",
+			"version": "1.10.1",
+			"resolved": "http://localhost:4873/path-scurry/-/path-scurry-1.10.1.tgz",
+			"integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
 			"dev": true,
-			"license": "BlueOak-1.0.0",
 			"dependencies": {
-				"lru-cache": "^7.14.1",
-				"minipass": "^4.0.2"
+				"lru-cache": "^9.1.1 || ^10.0.0",
+				"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
 			},
 			"engines": {
 				"node": ">=16 || 14 >=14.17"
@@ -24500,20 +22456,18 @@
 			}
 		},
 		"node_modules/path-scurry/node_modules/lru-cache": {
-			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
-			"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
+			"version": "10.0.1",
+			"resolved": "http://localhost:4873/lru-cache/-/lru-cache-10.0.1.tgz",
+			"integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
 			"dev": true,
-			"license": "ISC",
 			"engines": {
-				"node": ">=12"
+				"node": "14 || >=16.14"
 			}
 		},
 		"node_modules/path-to-regexp": {
 			"version": "0.1.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
-			"integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+			"integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
 		},
 		"node_modules/path-type": {
 			"version": "4.0.0",
@@ -24545,15 +22499,14 @@
 			"version": "1.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pend/-/pend-1.2.0.tgz",
 			"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/performance-now": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/performance-now/-/performance-now-2.1.0.tgz",
+			"resolved": "http://localhost:4873/performance-now/-/performance-now-2.1.0.tgz",
 			"integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==",
-			"devOptional": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/picocolors": {
 			"version": "1.0.0",
@@ -24583,20 +22536,18 @@
 			}
 		},
 		"node_modules/pirates": {
-			"version": "4.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pirates/-/pirates-4.0.5.tgz",
-			"integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==",
-			"license": "MIT",
+			"version": "4.0.6",
+			"resolved": "http://localhost:4873/pirates/-/pirates-4.0.6.tgz",
+			"integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
 			"engines": {
 				"node": ">= 6"
 			}
 		},
 		"node_modules/piscina": {
-			"version": "3.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/piscina/-/piscina-3.2.0.tgz",
-			"integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==",
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/piscina/-/piscina-4.0.0.tgz",
+			"integrity": "sha512-641nAmJS4k4iqpNUqfggqUBUMmlw0ZoM5VZKdQkV2e970Inn3Tk9kroCc1wpsYLD07vCwpys5iY0d3xI/9WkTg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"eventemitter-asyncresource": "^1.0.0",
 				"hdr-histogram-js": "^2.0.1",
@@ -24631,50 +22582,6 @@
 				"node": ">=6"
 			}
 		},
-		"node_modules/portfinder": {
-			"version": "1.0.32",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/portfinder/-/portfinder-1.0.32.tgz",
-			"integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==",
-			"license": "MIT",
-			"dependencies": {
-				"async": "^2.6.4",
-				"debug": "^3.2.7",
-				"mkdirp": "^0.5.6"
-			},
-			"engines": {
-				"node": ">= 0.12.0"
-			}
-		},
-		"node_modules/portfinder/node_modules/async": {
-			"version": "2.6.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/async/-/async-2.6.4.tgz",
-			"integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
-			"license": "MIT",
-			"dependencies": {
-				"lodash": "^4.17.14"
-			}
-		},
-		"node_modules/portfinder/node_modules/debug": {
-			"version": "3.2.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-3.2.7.tgz",
-			"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
-			"license": "MIT",
-			"dependencies": {
-				"ms": "^2.1.1"
-			}
-		},
-		"node_modules/portfinder/node_modules/mkdirp": {
-			"version": "0.5.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mkdirp/-/mkdirp-0.5.6.tgz",
-			"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
-			"license": "MIT",
-			"dependencies": {
-				"minimist": "^1.2.6"
-			},
-			"bin": {
-				"mkdirp": "bin/cmd.js"
-			}
-		},
 		"node_modules/posix-character-classes": {
 			"version": "0.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
@@ -24686,9 +22593,9 @@
 			}
 		},
 		"node_modules/postcss": {
-			"version": "8.4.21",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss/-/postcss-8.4.21.tgz",
-			"integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==",
+			"version": "8.4.31",
+			"resolved": "http://localhost:4873/postcss/-/postcss-8.4.31.tgz",
+			"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
 			"funding": [
 				{
 					"type": "opencollective",
@@ -24697,11 +22604,14 @@
 				{
 					"type": "tidelift",
 					"url": "https://tidelift.com/funding/github/npm/postcss"
+				},
+				{
+					"type": "github",
+					"url": "https://github.com/sponsors/ai"
 				}
 			],
-			"license": "MIT",
 			"dependencies": {
-				"nanoid": "^3.3.4",
+				"nanoid": "^3.3.6",
 				"picocolors": "^1.0.0",
 				"source-map-js": "^1.0.2"
 			},
@@ -24710,23 +22620,24 @@
 			}
 		},
 		"node_modules/postcss-calc": {
-			"version": "8.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-calc/-/postcss-calc-8.2.4.tgz",
-			"integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
-			"license": "MIT",
+			"version": "9.0.1",
+			"resolved": "http://localhost:4873/postcss-calc/-/postcss-calc-9.0.1.tgz",
+			"integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==",
 			"dependencies": {
-				"postcss-selector-parser": "^6.0.9",
+				"postcss-selector-parser": "^6.0.11",
 				"postcss-value-parser": "^4.2.0"
 			},
+			"engines": {
+				"node": "^14 || ^16 || >=18.0"
+			},
 			"peerDependencies": {
 				"postcss": "^8.2.2"
 			}
 		},
 		"node_modules/postcss-colormin": {
-			"version": "5.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-colormin/-/postcss-colormin-5.3.1.tgz",
-			"integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-colormin/-/postcss-colormin-6.0.0.tgz",
+			"integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
 				"caniuse-api": "^3.0.0",
@@ -24734,71 +22645,66 @@
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-convert-values": {
-			"version": "5.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz",
-			"integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz",
+			"integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-discard-comments": {
-			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz",
-			"integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz",
+			"integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==",
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-discard-duplicates": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz",
-			"integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz",
+			"integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==",
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-discard-empty": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz",
-			"integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz",
+			"integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==",
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-discard-overridden": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz",
-			"integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz",
+			"integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==",
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
@@ -24806,9 +22712,8 @@
 		},
 		"node_modules/postcss-import": {
 			"version": "14.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-import/-/postcss-import-14.1.0.tgz",
+			"resolved": "http://localhost:4873/postcss-import/-/postcss-import-14.1.0.tgz",
 			"integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==",
-			"license": "MIT",
 			"dependencies": {
 				"postcss-value-parser": "^4.0.0",
 				"read-cache": "^1.0.0",
@@ -24822,14 +22727,13 @@
 			}
 		},
 		"node_modules/postcss-loader": {
-			"version": "7.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-loader/-/postcss-loader-7.0.2.tgz",
-			"integrity": "sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==",
+			"version": "7.3.3",
+			"resolved": "http://localhost:4873/postcss-loader/-/postcss-loader-7.3.3.tgz",
+			"integrity": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"cosmiconfig": "^7.0.0",
-				"klona": "^2.0.5",
+				"cosmiconfig": "^8.2.0",
+				"jiti": "^1.18.2",
 				"semver": "^7.3.8"
 			},
 			"engines": {
@@ -24844,116 +22748,137 @@
 				"webpack": "^5.0.0"
 			}
 		},
+		"node_modules/postcss-loader/node_modules/argparse": {
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/argparse/-/argparse-2.0.1.tgz",
+			"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+			"dev": true
+		},
 		"node_modules/postcss-loader/node_modules/cosmiconfig": {
-			"version": "7.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
-			"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+			"version": "8.3.6",
+			"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
+			"integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"@types/parse-json": "^4.0.0",
-				"import-fresh": "^3.2.1",
-				"parse-json": "^5.0.0",
-				"path-type": "^4.0.0",
-				"yaml": "^1.10.0"
+				"import-fresh": "^3.3.0",
+				"js-yaml": "^4.1.0",
+				"parse-json": "^5.2.0",
+				"path-type": "^4.0.0"
 			},
 			"engines": {
-				"node": ">=10"
+				"node": ">=14"
+			},
+			"funding": {
+				"url": "https://github.com/sponsors/d-fischer"
+			},
+			"peerDependencies": {
+				"typescript": ">=4.9.5"
+			},
+			"peerDependenciesMeta": {
+				"typescript": {
+					"optional": true
+				}
+			}
+		},
+		"node_modules/postcss-loader/node_modules/js-yaml": {
+			"version": "4.1.0",
+			"resolved": "http://localhost:4873/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/postcss-merge-longhand": {
-			"version": "5.1.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz",
-			"integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz",
+			"integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0",
-				"stylehacks": "^5.1.1"
+				"stylehacks": "^6.0.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-merge-rules": {
-			"version": "5.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz",
-			"integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==",
-			"license": "MIT",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz",
+			"integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
 				"caniuse-api": "^3.0.0",
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-selector-parser": "^6.0.5"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-minify-font-values": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz",
-			"integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz",
+			"integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-minify-gradients": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz",
-			"integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz",
+			"integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==",
 			"dependencies": {
 				"colord": "^2.9.1",
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-minify-params": {
-			"version": "5.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz",
-			"integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz",
+			"integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-minify-selectors": {
-			"version": "5.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz",
-			"integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz",
+			"integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==",
 			"dependencies": {
 				"postcss-selector-parser": "^6.0.5"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
@@ -24961,9 +22886,8 @@
 		},
 		"node_modules/postcss-modules-extract-imports": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
+			"resolved": "http://localhost:4873/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
 			"integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==",
-			"license": "ISC",
 			"engines": {
 				"node": "^10 || ^12 || >= 14"
 			},
@@ -24972,10 +22896,9 @@
 			}
 		},
 		"node_modules/postcss-modules-local-by-default": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz",
-			"integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==",
-			"license": "MIT",
+			"version": "4.0.3",
+			"resolved": "http://localhost:4873/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz",
+			"integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==",
 			"dependencies": {
 				"icss-utils": "^5.0.0",
 				"postcss-selector-parser": "^6.0.2",
@@ -24990,9 +22913,8 @@
 		},
 		"node_modules/postcss-modules-scope": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
+			"resolved": "http://localhost:4873/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
 			"integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
-			"license": "ISC",
 			"dependencies": {
 				"postcss-selector-parser": "^6.0.4"
 			},
@@ -25005,9 +22927,8 @@
 		},
 		"node_modules/postcss-modules-values": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
+			"resolved": "http://localhost:4873/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
 			"integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
-			"license": "ISC",
 			"dependencies": {
 				"icss-utils": "^5.0.0"
 			},
@@ -25019,191 +22940,177 @@
 			}
 		},
 		"node_modules/postcss-normalize-charset": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz",
-			"integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz",
+			"integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==",
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-display-values": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz",
-			"integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz",
+			"integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-positions": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz",
-			"integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz",
+			"integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-repeat-style": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz",
-			"integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz",
+			"integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-string": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz",
-			"integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz",
+			"integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-timing-functions": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz",
-			"integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz",
+			"integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-unicode": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz",
-			"integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz",
+			"integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-url": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz",
-			"integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz",
+			"integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==",
 			"dependencies": {
-				"normalize-url": "^6.0.1",
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-normalize-whitespace": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz",
-			"integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz",
+			"integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-ordered-values": {
-			"version": "5.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz",
-			"integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz",
+			"integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==",
 			"dependencies": {
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-reduce-initial": {
-			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz",
-			"integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz",
+			"integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
 				"caniuse-api": "^3.0.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-reduce-transforms": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz",
-			"integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz",
+			"integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-selector-parser": {
-			"version": "6.0.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz",
-			"integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==",
-			"license": "MIT",
+			"version": "6.0.13",
+			"resolved": "http://localhost:4873/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz",
+			"integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==",
 			"dependencies": {
 				"cssesc": "^3.0.0",
 				"util-deprecate": "^1.0.2"
@@ -25213,31 +23120,29 @@
 			}
 		},
 		"node_modules/postcss-svgo": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-svgo/-/postcss-svgo-5.1.0.tgz",
-			"integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-svgo/-/postcss-svgo-6.0.0.tgz",
+			"integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==",
 			"dependencies": {
 				"postcss-value-parser": "^4.2.0",
-				"svgo": "^2.7.0"
+				"svgo": "^3.0.2"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >= 18"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/postcss-unique-selectors": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz",
-			"integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz",
+			"integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==",
 			"dependencies": {
 				"postcss-selector-parser": "^6.0.5"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
@@ -25245,9 +23150,8 @@
 		},
 		"node_modules/postcss-value-parser": {
 			"version": "4.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
-			"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+			"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
 		},
 		"node_modules/postcss/node_modules/nanoid": {
 			"version": "3.3.6",
@@ -25269,10 +23173,9 @@
 		},
 		"node_modules/prelude-ls": {
 			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prelude-ls/-/prelude-ls-1.2.1.tgz",
+			"resolved": "http://localhost:4873/prelude-ls/-/prelude-ls-1.2.1.tgz",
 			"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"engines": {
 				"node": ">= 0.8.0"
 			}
@@ -25281,7 +23184,7 @@
 			"version": "2.7.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prettier/-/prettier-2.7.1.tgz",
 			"integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"bin": {
 				"prettier": "bin-prettier.js"
@@ -25297,7 +23200,7 @@
 			"version": "5.6.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
 			"integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=6"
@@ -25307,25 +23210,22 @@
 			}
 		},
 		"node_modules/pretty-format": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pretty-format/-/pretty-format-28.1.3.tgz",
-			"integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==",
-			"license": "MIT",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/pretty-format/-/pretty-format-29.7.0.tgz",
+			"integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
 			"dependencies": {
-				"@jest/schemas": "^28.1.3",
-				"ansi-regex": "^5.0.1",
+				"@jest/schemas": "^29.6.3",
 				"ansi-styles": "^5.0.0",
 				"react-is": "^18.0.0"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			}
 		},
 		"node_modules/pretty-format/node_modules/ansi-styles": {
 			"version": "5.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-5.2.0.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-5.2.0.tgz",
 			"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			},
@@ -25337,7 +23237,6 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/proc-log/-/proc-log-3.0.0.tgz",
 			"integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==",
-			"dev": true,
 			"license": "ISC",
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
@@ -25347,7 +23246,7 @@
 			"version": "0.11.10",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/process/-/process-0.11.10.tgz",
 			"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6.0"
@@ -25378,10 +23277,9 @@
 		},
 		"node_modules/promise-retry": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/promise-retry/-/promise-retry-2.0.1.tgz",
+			"resolved": "http://localhost:4873/promise-retry/-/promise-retry-2.0.1.tgz",
 			"integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"err-code": "^2.0.2",
 				"retry": "^0.12.0"
@@ -25392,10 +23290,9 @@
 		},
 		"node_modules/prompts": {
 			"version": "2.4.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prompts/-/prompts-2.4.2.tgz",
+			"resolved": "http://localhost:4873/prompts/-/prompts-2.4.2.tgz",
 			"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"kleur": "^3.0.3",
 				"sisteransi": "^1.0.5"
@@ -25425,9 +23322,8 @@
 		},
 		"node_modules/proxy-addr": {
 			"version": "2.0.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/proxy-addr/-/proxy-addr-2.0.7.tgz",
+			"resolved": "http://localhost:4873/proxy-addr/-/proxy-addr-2.0.7.tgz",
 			"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
-			"license": "MIT",
 			"dependencies": {
 				"forwarded": "0.2.0",
 				"ipaddr.js": "1.9.1"
@@ -25438,9 +23334,8 @@
 		},
 		"node_modules/proxy-addr/node_modules/ipaddr.js": {
 			"version": "1.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+			"resolved": "http://localhost:4873/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
 			"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.10"
 			}
@@ -25449,7 +23344,7 @@
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/proxy-from-env/-/proxy-from-env-1.0.0.tgz",
 			"integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/prr": {
@@ -25463,7 +23358,7 @@
 			"version": "1.9.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/psl/-/psl-1.9.0.tgz",
 			"integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/public-encrypt": {
@@ -25492,7 +23387,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pump/-/pump-3.0.0.tgz",
 			"integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"end-of-stream": "^1.1.0",
@@ -25531,11 +23426,26 @@
 				"node": ">=6"
 			}
 		},
+		"node_modules/pure-rand": {
+			"version": "6.0.4",
+			"resolved": "http://localhost:4873/pure-rand/-/pure-rand-6.0.4.tgz",
+			"integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==",
+			"funding": [
+				{
+					"type": "individual",
+					"url": "https://github.com/sponsors/dubzzz"
+				},
+				{
+					"type": "opencollective",
+					"url": "https://opencollective.com/fast-check"
+				}
+			]
+		},
 		"node_modules/qs": {
 			"version": "6.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/qs/-/qs-6.10.4.tgz",
+			"resolved": "http://localhost:4873/qs/-/qs-6.10.4.tgz",
 			"integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==",
-			"license": "BSD-3-Clause",
+			"dev": true,
 			"dependencies": {
 				"side-channel": "^1.0.4"
 			},
@@ -25569,7 +23479,7 @@
 			"version": "2.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/querystringify/-/querystringify-2.2.0.tgz",
 			"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/queue-microtask": {
@@ -25614,18 +23524,16 @@
 		},
 		"node_modules/range-parser": {
 			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/range-parser/-/range-parser-1.2.1.tgz",
+			"resolved": "http://localhost:4873/range-parser/-/range-parser-1.2.1.tgz",
 			"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/raw-body": {
 			"version": "2.5.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/raw-body/-/raw-body-2.5.1.tgz",
+			"resolved": "http://localhost:4873/raw-body/-/raw-body-2.5.1.tgz",
 			"integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
-			"license": "MIT",
 			"dependencies": {
 				"bytes": "3.1.2",
 				"http-errors": "2.0.0",
@@ -25638,36 +23546,32 @@
 		},
 		"node_modules/raw-body/node_modules/bytes": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bytes/-/bytes-3.1.2.tgz",
+			"resolved": "http://localhost:4873/bytes/-/bytes-3.1.2.tgz",
 			"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
 		},
 		"node_modules/react-is": {
 			"version": "18.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/react-is/-/react-is-18.2.0.tgz",
-			"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/react-is/-/react-is-18.2.0.tgz",
+			"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
 		},
 		"node_modules/read-cache": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/read-cache/-/read-cache-1.0.0.tgz",
+			"resolved": "http://localhost:4873/read-cache/-/read-cache-1.0.0.tgz",
 			"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
-			"license": "MIT",
 			"dependencies": {
 				"pify": "^2.3.0"
 			}
 		},
 		"node_modules/read-package-json": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/read-package-json/-/read-package-json-6.0.1.tgz",
-			"integrity": "sha512-AaHqXxfAVa+fNL07x8iAghfKOds/XXsu7zoouIVsbm7PEbQ3nMWXlvjcbrNLjElnUHWQtAo4QEa0RXuvD4XlpA==",
+			"version": "6.0.4",
+			"resolved": "http://localhost:4873/read-package-json/-/read-package-json-6.0.4.tgz",
+			"integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
-				"glob": "^9.3.0",
+				"glob": "^10.2.2",
 				"json-parse-even-better-errors": "^3.0.0",
 				"normalize-package-data": "^5.0.0",
 				"npm-normalize-package-bin": "^3.0.0"
@@ -25678,10 +23582,9 @@
 		},
 		"node_modules/read-package-json-fast": {
 			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz",
+			"resolved": "http://localhost:4873/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz",
 			"integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"json-parse-even-better-errors": "^3.0.0",
 				"npm-normalize-package-bin": "^3.0.0"
@@ -25692,69 +23595,22 @@
 		},
 		"node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
+			"resolved": "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
 			"integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/read-package-json/node_modules/brace-expansion": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
-			"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
-			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"balanced-match": "^1.0.0"
-			}
-		},
-		"node_modules/read-package-json/node_modules/glob": {
-			"version": "9.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-9.3.4.tgz",
-			"integrity": "sha512-qaSc49hojMOv1EPM4EuyITjDSgSKI0rthoHnvE81tcOi1SCVndHko7auqxdQ14eiQG2NDBJBE86+2xIrbIvrbA==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"fs.realpath": "^1.0.0",
-				"minimatch": "^8.0.2",
-				"minipass": "^4.2.4",
-				"path-scurry": "^1.6.1"
-			},
-			"engines": {
-				"node": ">=16 || 14 >=14.17"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/isaacs"
-			}
-		},
 		"node_modules/read-package-json/node_modules/json-parse-even-better-errors": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
+			"resolved": "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
 			"integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/read-package-json/node_modules/minimatch": {
-			"version": "8.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-8.0.3.tgz",
-			"integrity": "sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==",
-			"dev": true,
-			"license": "ISC",
-			"dependencies": {
-				"brace-expansion": "^2.0.1"
-			},
-			"engines": {
-				"node": ">=16 || 14 >=14.17"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/isaacs"
-			}
-		},
 		"node_modules/readable-stream": {
 			"version": "3.6.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/readable-stream/-/readable-stream-3.6.2.tgz",
@@ -25827,10 +23683,9 @@
 			"license": "MIT"
 		},
 		"node_modules/regenerator-transform": {
-			"version": "0.15.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
-			"integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
-			"license": "MIT",
+			"version": "0.15.2",
+			"resolved": "http://localhost:4873/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
+			"integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
 			"dependencies": {
 				"@babel/runtime": "^7.8.4"
 			}
@@ -25874,19 +23729,6 @@
 				"url": "https://github.com/sponsors/ljharb"
 			}
 		},
-		"node_modules/regexpp": {
-			"version": "3.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/regexpp/-/regexpp-3.2.0.tgz",
-			"integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
-			"devOptional": true,
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/mysticatea"
-			}
-		},
 		"node_modules/regexpu-core": {
 			"version": "5.3.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/regexpu-core/-/regexpu-core-5.3.2.tgz",
@@ -25956,7 +23798,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/request-progress/-/request-progress-3.0.0.tgz",
 			"integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"throttleit": "^1.0.0"
@@ -25994,12 +23836,11 @@
 			"license": "MIT"
 		},
 		"node_modules/resolve": {
-			"version": "1.22.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve/-/resolve-1.22.1.tgz",
-			"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
-			"license": "MIT",
+			"version": "1.22.2",
+			"resolved": "http://localhost:4873/resolve/-/resolve-1.22.2.tgz",
+			"integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
 			"dependencies": {
-				"is-core-module": "^2.9.0",
+				"is-core-module": "^2.11.0",
 				"path-parse": "^1.0.7",
 				"supports-preserve-symlinks-flag": "^1.0.0"
 			},
@@ -26012,10 +23853,9 @@
 		},
 		"node_modules/resolve-cwd": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+			"resolved": "http://localhost:4873/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
 			"integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"resolve-from": "^5.0.0"
 			},
@@ -26084,9 +23924,8 @@
 		},
 		"node_modules/resolve.exports": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve.exports/-/resolve.exports-1.1.0.tgz",
+			"resolved": "http://localhost:4873/resolve.exports/-/resolve.exports-1.1.0.tgz",
 			"integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=10"
 			}
@@ -26116,10 +23955,9 @@
 		},
 		"node_modules/retry": {
 			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/retry/-/retry-0.12.0.tgz",
-			"integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
+			"resolved": "http://localhost:4873/retry/-/retry-0.12.0.tgz",
+			"integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
 			"dev": true,
-			"license": "MIT",
 			"engines": {
 				"node": ">= 4"
 			}
@@ -26138,7 +23976,7 @@
 			"version": "1.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rfdc/-/rfdc-1.3.0.tgz",
 			"integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/rimraf": {
@@ -26199,6 +24037,22 @@
 				"inherits": "^2.0.1"
 			}
 		},
+		"node_modules/rollup": {
+			"version": "3.29.4",
+			"resolved": "http://localhost:4873/rollup/-/rollup-3.29.4.tgz",
+			"integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
+			"dev": true,
+			"bin": {
+				"rollup": "dist/bin/rollup"
+			},
+			"engines": {
+				"node": ">=14.18.0",
+				"npm": ">=8.0.0"
+			},
+			"optionalDependencies": {
+				"fsevents": "~2.3.2"
+			}
+		},
 		"node_modules/run-async": {
 			"version": "2.4.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/run-async/-/run-async-2.4.1.tgz",
@@ -26296,9 +24150,8 @@
 		},
 		"node_modules/safevalues": {
 			"version": "0.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safevalues/-/safevalues-0.3.4.tgz",
-			"integrity": "sha512-LRneZZRXNgjzwG4bDQdOTSbze3fHm1EAKN/8bePxnlEZiBmkYEDggaHbuvHI9/hoqHbGfsEA7tWS9GhYHZBBsw==",
-			"license": "Apache-2.0"
+			"resolved": "http://localhost:4873/safevalues/-/safevalues-0.3.4.tgz",
+			"integrity": "sha512-LRneZZRXNgjzwG4bDQdOTSbze3fHm1EAKN/8bePxnlEZiBmkYEDggaHbuvHI9/hoqHbGfsEA7tWS9GhYHZBBsw=="
 		},
 		"node_modules/sanitize-filename-ts": {
 			"version": "1.0.2",
@@ -26324,10 +24177,9 @@
 			}
 		},
 		"node_modules/sass": {
-			"version": "1.57.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sass/-/sass-1.57.1.tgz",
-			"integrity": "sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==",
-			"license": "MIT",
+			"version": "1.64.1",
+			"resolved": "http://localhost:4873/sass/-/sass-1.64.1.tgz",
+			"integrity": "sha512-16rRACSOFEE8VN7SCgBu1MpYCyN7urj9At898tyzdXFhC+a+yOX5dXwAR7L8/IdPJ1NB8OYoXmD55DM30B2kEQ==",
 			"dependencies": {
 				"chokidar": ">=3.0.0 <4.0.0",
 				"immutable": "^4.0.0",
@@ -26337,17 +24189,15 @@
 				"sass": "sass.js"
 			},
 			"engines": {
-				"node": ">=12.0.0"
+				"node": ">=14.0.0"
 			}
 		},
 		"node_modules/sass-loader": {
-			"version": "13.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sass-loader/-/sass-loader-13.2.0.tgz",
-			"integrity": "sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==",
+			"version": "13.3.2",
+			"resolved": "http://localhost:4873/sass-loader/-/sass-loader-13.3.2.tgz",
+			"integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"klona": "^2.0.4",
 				"neo-async": "^2.6.2"
 			},
 			"engines": {
@@ -26359,7 +24209,7 @@
 			},
 			"peerDependencies": {
 				"fibers": ">= 3.1.0",
-				"node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
+				"node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
 				"sass": "^1.3.0",
 				"sass-embedded": "*",
 				"webpack": "^5.0.0"
@@ -26387,10 +24237,9 @@
 		},
 		"node_modules/saxes": {
 			"version": "5.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/saxes/-/saxes-5.0.1.tgz",
+			"resolved": "http://localhost:4873/saxes/-/saxes-5.0.1.tgz",
 			"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"xmlchars": "^2.2.0"
 			},
@@ -26417,23 +24266,15 @@
 				"url": "https://opencollective.com/webpack"
 			}
 		},
-		"node_modules/secure-compare": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/secure-compare/-/secure-compare-3.0.1.tgz",
-			"integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==",
-			"license": "MIT"
-		},
 		"node_modules/select-hose": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/select-hose/-/select-hose-2.0.0.tgz",
-			"integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/select-hose/-/select-hose-2.0.0.tgz",
+			"integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg=="
 		},
 		"node_modules/selfsigned": {
 			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/selfsigned/-/selfsigned-2.1.1.tgz",
+			"resolved": "http://localhost:4873/selfsigned/-/selfsigned-2.1.1.tgz",
 			"integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==",
-			"license": "MIT",
 			"dependencies": {
 				"node-forge": "^1"
 			},
@@ -26442,10 +24283,9 @@
 			}
 		},
 		"node_modules/semver": {
-			"version": "7.3.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.8.tgz",
-			"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
-			"license": "ISC",
+			"version": "7.5.4",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.4.tgz",
+			"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
 			"dependencies": {
 				"lru-cache": "^6.0.0"
 			},
@@ -26476,9 +24316,8 @@
 		},
 		"node_modules/send": {
 			"version": "0.18.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/send/-/send-0.18.0.tgz",
+			"resolved": "http://localhost:4873/send/-/send-0.18.0.tgz",
 			"integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
-			"license": "MIT",
 			"dependencies": {
 				"debug": "2.6.9",
 				"depd": "2.0.0",
@@ -26500,24 +24339,21 @@
 		},
 		"node_modules/send/node_modules/debug": {
 			"version": "2.6.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+			"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 			"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-			"license": "MIT",
 			"dependencies": {
 				"ms": "2.0.0"
 			}
 		},
 		"node_modules/send/node_modules/debug/node_modules/ms": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+			"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 		},
 		"node_modules/send/node_modules/ms": {
 			"version": "2.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.1.3.tgz",
-			"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.1.3.tgz",
+			"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
 		},
 		"node_modules/serialize-javascript": {
 			"version": "6.0.1",
@@ -26530,9 +24366,8 @@
 		},
 		"node_modules/serve-index": {
 			"version": "1.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/serve-index/-/serve-index-1.9.1.tgz",
+			"resolved": "http://localhost:4873/serve-index/-/serve-index-1.9.1.tgz",
 			"integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==",
-			"license": "MIT",
 			"dependencies": {
 				"accepts": "~1.3.4",
 				"batch": "0.6.1",
@@ -26548,27 +24383,24 @@
 		},
 		"node_modules/serve-index/node_modules/debug": {
 			"version": "2.6.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+			"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 			"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-			"license": "MIT",
 			"dependencies": {
 				"ms": "2.0.0"
 			}
 		},
 		"node_modules/serve-index/node_modules/depd": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/depd/-/depd-1.1.2.tgz",
+			"resolved": "http://localhost:4873/depd/-/depd-1.1.2.tgz",
 			"integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/serve-index/node_modules/http-errors": {
 			"version": "1.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-errors/-/http-errors-1.6.3.tgz",
+			"resolved": "http://localhost:4873/http-errors/-/http-errors-1.6.3.tgz",
 			"integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==",
-			"license": "MIT",
 			"dependencies": {
 				"depd": "~1.1.2",
 				"inherits": "2.0.3",
@@ -26581,36 +24413,31 @@
 		},
 		"node_modules/serve-index/node_modules/inherits": {
 			"version": "2.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/inherits/-/inherits-2.0.3.tgz",
-			"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/inherits/-/inherits-2.0.3.tgz",
+			"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
 		},
 		"node_modules/serve-index/node_modules/ms": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+			"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 		},
 		"node_modules/serve-index/node_modules/setprototypeof": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/setprototypeof/-/setprototypeof-1.1.0.tgz",
-			"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/setprototypeof/-/setprototypeof-1.1.0.tgz",
+			"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
 		},
 		"node_modules/serve-index/node_modules/statuses": {
 			"version": "1.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/statuses/-/statuses-1.5.0.tgz",
+			"resolved": "http://localhost:4873/statuses/-/statuses-1.5.0.tgz",
 			"integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.6"
 			}
 		},
 		"node_modules/serve-static": {
 			"version": "1.15.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/serve-static/-/serve-static-1.15.0.tgz",
+			"resolved": "http://localhost:4873/serve-static/-/serve-static-1.15.0.tgz",
 			"integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
-			"license": "MIT",
 			"dependencies": {
 				"encodeurl": "~1.0.2",
 				"escape-html": "~1.0.3",
@@ -26676,9 +24503,8 @@
 		},
 		"node_modules/setprototypeof": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/setprototypeof/-/setprototypeof-1.2.0.tgz",
-			"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
-			"license": "ISC"
+			"resolved": "http://localhost:4873/setprototypeof/-/setprototypeof-1.2.0.tgz",
+			"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
 		},
 		"node_modules/sha.js": {
 			"version": "2.4.11",
@@ -26696,9 +24522,8 @@
 		},
 		"node_modules/shallow-clone": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/shallow-clone/-/shallow-clone-3.0.1.tgz",
+			"resolved": "http://localhost:4873/shallow-clone/-/shallow-clone-3.0.1.tgz",
 			"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
-			"license": "MIT",
 			"dependencies": {
 				"kind-of": "^6.0.2"
 			},
@@ -26727,6 +24552,14 @@
 				"node": ">=8"
 			}
 		},
+		"node_modules/shell-quote": {
+			"version": "1.8.1",
+			"resolved": "http://localhost:4873/shell-quote/-/shell-quote-1.8.1.tgz",
+			"integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==",
+			"funding": {
+				"url": "https://github.com/sponsors/ljharb"
+			}
+		},
 		"node_modules/side-channel": {
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/side-channel/-/side-channel-1.0.4.tgz",
@@ -26747,18 +24580,35 @@
 			"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
 			"license": "ISC"
 		},
+		"node_modules/sigstore": {
+			"version": "1.9.0",
+			"resolved": "http://localhost:4873/sigstore/-/sigstore-1.9.0.tgz",
+			"integrity": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==",
+			"dev": true,
+			"dependencies": {
+				"@sigstore/bundle": "^1.1.0",
+				"@sigstore/protobuf-specs": "^0.2.0",
+				"@sigstore/sign": "^1.0.0",
+				"@sigstore/tuf": "^1.0.3",
+				"make-fetch-happen": "^11.0.1"
+			},
+			"bin": {
+				"sigstore": "bin/sigstore.js"
+			},
+			"engines": {
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+			}
+		},
 		"node_modules/sisteransi": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sisteransi/-/sisteransi-1.0.5.tgz",
+			"resolved": "http://localhost:4873/sisteransi/-/sisteransi-1.0.5.tgz",
 			"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/slash": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slash/-/slash-3.0.0.tgz",
+			"resolved": "http://localhost:4873/slash/-/slash-3.0.0.tgz",
 			"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
@@ -26767,7 +24617,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slice-ansi/-/slice-ansi-3.0.0.tgz",
 			"integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"ansi-styles": "^4.0.0",
@@ -26782,7 +24632,7 @@
 			"version": "4.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-convert": "^2.0.1"
@@ -26798,7 +24648,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"color-name": "~1.1.4"
@@ -26811,7 +24661,7 @@
 			"version": "1.1.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/slugify": {
@@ -27066,9 +24916,8 @@
 		},
 		"node_modules/sockjs": {
 			"version": "0.3.24",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sockjs/-/sockjs-0.3.24.tgz",
+			"resolved": "http://localhost:4873/sockjs/-/sockjs-0.3.24.tgz",
 			"integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==",
-			"license": "MIT",
 			"dependencies": {
 				"faye-websocket": "^0.11.3",
 				"uuid": "^8.3.2",
@@ -27092,10 +24941,9 @@
 		},
 		"node_modules/socks-proxy-agent": {
 			"version": "7.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
+			"resolved": "http://localhost:4873/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
 			"integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"agent-base": "^6.0.2",
 				"debug": "^4.3.3",
@@ -27235,6 +25083,7 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-resolve/-/source-map-resolve-0.6.0.tgz",
 			"integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==",
 			"deprecated": "See https://github.com/lydell/source-map-resolve#deprecated",
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"atob": "^2.1.2",
@@ -27268,13 +25117,6 @@
 			"dev": true,
 			"license": "MIT"
 		},
-		"node_modules/sourcemap-codec": {
-			"version": "1.4.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
-			"integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
-			"deprecated": "Please use @jridgewell/sourcemap-codec instead",
-			"license": "MIT"
-		},
 		"node_modules/sparse-bitfield": {
 			"version": "3.0.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
@@ -27288,10 +25130,9 @@
 		},
 		"node_modules/spdx-correct": {
 			"version": "3.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-correct/-/spdx-correct-3.2.0.tgz",
+			"resolved": "http://localhost:4873/spdx-correct/-/spdx-correct-3.2.0.tgz",
 			"integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
 			"dev": true,
-			"license": "Apache-2.0",
 			"dependencies": {
 				"spdx-expression-parse": "^3.0.0",
 				"spdx-license-ids": "^3.0.0"
@@ -27299,34 +25140,30 @@
 		},
 		"node_modules/spdx-exceptions": {
 			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+			"resolved": "http://localhost:4873/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
 			"integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
-			"dev": true,
-			"license": "CC-BY-3.0"
+			"dev": true
 		},
 		"node_modules/spdx-expression-parse": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+			"resolved": "http://localhost:4873/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
 			"integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"spdx-exceptions": "^2.1.0",
 				"spdx-license-ids": "^3.0.0"
 			}
 		},
 		"node_modules/spdx-license-ids": {
-			"version": "3.0.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz",
-			"integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==",
-			"dev": true,
-			"license": "CC0-1.0"
+			"version": "3.0.16",
+			"resolved": "http://localhost:4873/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz",
+			"integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==",
+			"dev": true
 		},
 		"node_modules/spdy": {
 			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdy/-/spdy-4.0.2.tgz",
+			"resolved": "http://localhost:4873/spdy/-/spdy-4.0.2.tgz",
 			"integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
-			"license": "MIT",
 			"dependencies": {
 				"debug": "^4.1.0",
 				"handle-thing": "^2.0.0",
@@ -27340,9 +25177,8 @@
 		},
 		"node_modules/spdy-transport": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdy-transport/-/spdy-transport-3.0.0.tgz",
+			"resolved": "http://localhost:4873/spdy-transport/-/spdy-transport-3.0.0.tgz",
 			"integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
-			"license": "MIT",
 			"dependencies": {
 				"debug": "^4.1.0",
 				"detect-node": "^2.0.4",
@@ -27372,11 +25208,10 @@
 			"license": "BSD-3-Clause"
 		},
 		"node_modules/sshpk": {
-			"version": "1.17.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sshpk/-/sshpk-1.17.0.tgz",
-			"integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==",
-			"devOptional": true,
-			"license": "MIT",
+			"version": "1.18.0",
+			"resolved": "http://localhost:4873/sshpk/-/sshpk-1.18.0.tgz",
+			"integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
+			"dev": true,
 			"dependencies": {
 				"asn1": "~0.2.3",
 				"assert-plus": "^1.0.0",
@@ -27398,30 +25233,30 @@
 			}
 		},
 		"node_modules/ssri": {
-			"version": "10.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ssri/-/ssri-10.0.2.tgz",
-			"integrity": "sha512-LWMXUSh7fEfCXNBq4UnRzC4Qc5Y1PPg5ogmb+6HX837i2cKzjB133aYmQ4lgO0shVTcTQHquKp3v5bn898q3Sw==",
+			"version": "10.0.5",
+			"resolved": "http://localhost:4873/ssri/-/ssri-10.0.5.tgz",
+			"integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
-				"minipass": "^4.0.0"
+				"minipass": "^7.0.3"
 			},
 			"engines": {
 				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
 			}
 		},
-		"node_modules/stable": {
-			"version": "0.1.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stable/-/stable-0.1.8.tgz",
-			"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
-			"deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility",
-			"license": "MIT"
+		"node_modules/ssri/node_modules/minipass": {
+			"version": "7.0.4",
+			"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+			"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+			"dev": true,
+			"engines": {
+				"node": ">=16 || 14 >=14.17"
+			}
 		},
 		"node_modules/stack-utils": {
 			"version": "2.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stack-utils/-/stack-utils-2.0.6.tgz",
+			"resolved": "http://localhost:4873/stack-utils/-/stack-utils-2.0.6.tgz",
 			"integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
-			"license": "MIT",
 			"dependencies": {
 				"escape-string-regexp": "^2.0.0"
 			},
@@ -27431,9 +25266,8 @@
 		},
 		"node_modules/stack-utils/node_modules/escape-string-regexp": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+			"resolved": "http://localhost:4873/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
 			"integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
@@ -27544,9 +25378,8 @@
 		},
 		"node_modules/statuses": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/statuses/-/statuses-2.0.1.tgz",
+			"resolved": "http://localhost:4873/statuses/-/statuses-2.0.1.tgz",
 			"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
@@ -27698,9 +25531,8 @@
 		},
 		"node_modules/string-length": {
 			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/string-length/-/string-length-4.0.2.tgz",
+			"resolved": "http://localhost:4873/string-length/-/string-length-4.0.2.tgz",
 			"integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
-			"license": "MIT",
 			"dependencies": {
 				"char-regex": "^1.0.2",
 				"strip-ansi": "^6.0.0"
@@ -27723,6 +25555,21 @@
 				"node": ">=8"
 			}
 		},
+		"node_modules/string-width-cjs": {
+			"name": "string-width",
+			"version": "4.2.3",
+			"resolved": "http://localhost:4873/string-width/-/string-width-4.2.3.tgz",
+			"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+			"dev": true,
+			"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": "http://nexus.ozg-sh.de/repository/npm-proxy/strip-ansi/-/strip-ansi-6.0.1.tgz",
@@ -27735,11 +25582,23 @@
 				"node": ">=8"
 			}
 		},
+		"node_modules/strip-ansi-cjs": {
+			"name": "strip-ansi",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/strip-ansi/-/strip-ansi-6.0.1.tgz",
+			"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+			"dev": true,
+			"dependencies": {
+				"ansi-regex": "^5.0.1"
+			},
+			"engines": {
+				"node": ">=8"
+			}
+		},
 		"node_modules/strip-bom": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/strip-bom/-/strip-bom-4.0.0.tgz",
+			"resolved": "http://localhost:4873/strip-bom/-/strip-bom-4.0.0.tgz",
 			"integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
@@ -27796,10 +25655,9 @@
 			}
 		},
 		"node_modules/style-loader": {
-			"version": "3.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/style-loader/-/style-loader-3.3.2.tgz",
-			"integrity": "sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==",
-			"license": "MIT",
+			"version": "3.3.3",
+			"resolved": "http://localhost:4873/style-loader/-/style-loader-3.3.3.tgz",
+			"integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==",
 			"engines": {
 				"node": ">= 12.13.0"
 			},
@@ -27812,34 +25670,29 @@
 			}
 		},
 		"node_modules/stylehacks": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stylehacks/-/stylehacks-5.1.1.tgz",
-			"integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==",
-			"license": "MIT",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/stylehacks/-/stylehacks-6.0.0.tgz",
+			"integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==",
 			"dependencies": {
 				"browserslist": "^4.21.4",
 				"postcss-selector-parser": "^6.0.4"
 			},
 			"engines": {
-				"node": "^10 || ^12 || >=14.0"
+				"node": "^14 || ^16 || >=18.0"
 			},
 			"peerDependencies": {
 				"postcss": "^8.2.15"
 			}
 		},
 		"node_modules/stylus": {
-			"version": "0.55.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stylus/-/stylus-0.55.0.tgz",
-			"integrity": "sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==",
-			"license": "MIT",
+			"version": "0.59.0",
+			"resolved": "http://localhost:4873/stylus/-/stylus-0.59.0.tgz",
+			"integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==",
 			"dependencies": {
-				"css": "^3.0.0",
-				"debug": "~3.1.0",
+				"@adobe/css-tools": "^4.0.1",
+				"debug": "^4.3.2",
 				"glob": "^7.1.6",
-				"mkdirp": "~1.0.4",
-				"safer-buffer": "^2.1.2",
 				"sax": "~1.2.4",
-				"semver": "^6.3.0",
 				"source-map": "^0.7.3"
 			},
 			"bin": {
@@ -27847,16 +25700,17 @@
 			},
 			"engines": {
 				"node": "*"
+			},
+			"funding": {
+				"url": "https://opencollective.com/stylus"
 			}
 		},
 		"node_modules/stylus-loader": {
-			"version": "7.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stylus-loader/-/stylus-loader-7.1.0.tgz",
-			"integrity": "sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==",
-			"license": "MIT",
+			"version": "7.1.3",
+			"resolved": "http://localhost:4873/stylus-loader/-/stylus-loader-7.1.3.tgz",
+			"integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==",
 			"dependencies": {
 				"fast-glob": "^3.2.12",
-				"klona": "^2.0.5",
 				"normalize-path": "^3.0.0"
 			},
 			"engines": {
@@ -27871,36 +25725,10 @@
 				"webpack": "^5.0.0"
 			}
 		},
-		"node_modules/stylus-loader/node_modules/fast-glob": {
-			"version": "3.2.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.12.tgz",
-			"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
-			"license": "MIT",
-			"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.4"
-			},
-			"engines": {
-				"node": ">=8.6.0"
-			}
-		},
-		"node_modules/stylus/node_modules/debug": {
-			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-3.1.0.tgz",
-			"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
-			"license": "MIT",
-			"dependencies": {
-				"ms": "2.0.0"
-			}
-		},
 		"node_modules/stylus/node_modules/glob": {
 			"version": "7.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+			"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 			"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-			"license": "ISC",
 			"dependencies": {
 				"fs.realpath": "^1.0.0",
 				"inflight": "^1.0.4",
@@ -27918,9 +25746,8 @@
 		},
 		"node_modules/stylus/node_modules/minimatch": {
 			"version": "3.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+			"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 			"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-			"license": "ISC",
 			"dependencies": {
 				"brace-expansion": "^1.1.7"
 			},
@@ -27928,26 +25755,10 @@
 				"node": "*"
 			}
 		},
-		"node_modules/stylus/node_modules/ms": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-			"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-			"license": "MIT"
-		},
-		"node_modules/stylus/node_modules/semver": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-			"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-			"license": "ISC",
-			"bin": {
-				"semver": "bin/semver.js"
-			}
-		},
 		"node_modules/supports-color": {
 			"version": "5.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-5.5.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-5.5.0.tgz",
 			"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^3.0.0"
 			},
@@ -27955,40 +25766,6 @@
 				"node": ">=4"
 			}
 		},
-		"node_modules/supports-hyperlinks": {
-			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
-			"integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
-			"license": "MIT",
-			"dependencies": {
-				"has-flag": "^4.0.0",
-				"supports-color": "^7.0.0"
-			},
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/supports-hyperlinks/node_modules/has-flag": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
-			"engines": {
-				"node": ">=8"
-			}
-		},
-		"node_modules/supports-hyperlinks/node_modules/supports-color": {
-			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-			"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-			"license": "MIT",
-			"dependencies": {
-				"has-flag": "^4.0.0"
-			},
-			"engines": {
-				"node": ">=8"
-			}
-		},
 		"node_modules/supports-preserve-symlinks-flag": {
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
@@ -28002,31 +25779,32 @@
 			}
 		},
 		"node_modules/svgo": {
-			"version": "2.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/svgo/-/svgo-2.8.0.tgz",
-			"integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
-			"license": "MIT",
+			"version": "3.0.2",
+			"resolved": "http://localhost:4873/svgo/-/svgo-3.0.2.tgz",
+			"integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==",
 			"dependencies": {
 				"@trysound/sax": "0.2.0",
 				"commander": "^7.2.0",
-				"css-select": "^4.1.3",
-				"css-tree": "^1.1.3",
-				"csso": "^4.2.0",
-				"picocolors": "^1.0.0",
-				"stable": "^0.1.8"
+				"css-select": "^5.1.0",
+				"css-tree": "^2.2.1",
+				"csso": "^5.0.5",
+				"picocolors": "^1.0.0"
 			},
 			"bin": {
 				"svgo": "bin/svgo"
 			},
 			"engines": {
-				"node": ">=10.13.0"
+				"node": ">=14.0.0"
+			},
+			"funding": {
+				"type": "opencollective",
+				"url": "https://opencollective.com/svgo"
 			}
 		},
 		"node_modules/svgo/node_modules/commander": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-7.2.0.tgz",
+			"resolved": "http://localhost:4873/commander/-/commander-7.2.0.tgz",
 			"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 10"
 			}
@@ -28043,10 +25821,9 @@
 		},
 		"node_modules/symbol-tree": {
 			"version": "3.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/symbol-tree/-/symbol-tree-3.2.4.tgz",
+			"resolved": "http://localhost:4873/symbol-tree/-/symbol-tree-3.2.4.tgz",
 			"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/tapable": {
 			"version": "2.2.1",
@@ -28058,15 +25835,14 @@
 			}
 		},
 		"node_modules/tar": {
-			"version": "6.1.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tar/-/tar-6.1.13.tgz",
-			"integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==",
+			"version": "6.2.0",
+			"resolved": "http://localhost:4873/tar/-/tar-6.2.0.tgz",
+			"integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"chownr": "^2.0.0",
 				"fs-minipass": "^2.0.0",
-				"minipass": "^4.0.0",
+				"minipass": "^5.0.0",
 				"minizlib": "^2.1.1",
 				"mkdirp": "^1.0.3",
 				"yallist": "^4.0.0"
@@ -28093,10 +25869,9 @@
 		},
 		"node_modules/tar/node_modules/fs-minipass": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-minipass/-/fs-minipass-2.1.0.tgz",
+			"resolved": "http://localhost:4873/fs-minipass/-/fs-minipass-2.1.0.tgz",
 			"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"minipass": "^3.0.0"
 			},
@@ -28106,10 +25881,9 @@
 		},
 		"node_modules/tar/node_modules/fs-minipass/node_modules/minipass": {
 			"version": "3.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+			"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 			"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"yallist": "^4.0.0"
 			},
@@ -28119,10 +25893,9 @@
 		},
 		"node_modules/tar/node_modules/yallist": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+			"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 			"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-			"dev": true,
-			"license": "ISC"
+			"dev": true
 		},
 		"node_modules/tcomb": {
 			"version": "3.2.29",
@@ -28141,31 +25914,13 @@
 				"tcomb": "^3.0.0"
 			}
 		},
-		"node_modules/terminal-link": {
-			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terminal-link/-/terminal-link-2.1.1.tgz",
-			"integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
-			"license": "MIT",
-			"dependencies": {
-				"ansi-escapes": "^4.2.1",
-				"supports-hyperlinks": "^2.0.0"
-			},
-			"engines": {
-				"node": ">=8"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
 		"node_modules/terser": {
-			"version": "5.16.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terser/-/terser-5.16.1.tgz",
-			"integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
-			"dev": true,
-			"license": "BSD-2-Clause",
+			"version": "5.19.2",
+			"resolved": "http://localhost:4873/terser/-/terser-5.19.2.tgz",
+			"integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==",
 			"dependencies": {
-				"@jridgewell/source-map": "^0.3.2",
-				"acorn": "^8.5.0",
+				"@jridgewell/source-map": "^0.3.3",
+				"acorn": "^8.8.2",
 				"commander": "^2.20.0",
 				"source-map-support": "~0.5.20"
 			},
@@ -28177,16 +25932,15 @@
 			}
 		},
 		"node_modules/terser-webpack-plugin": {
-			"version": "5.3.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz",
-			"integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==",
-			"license": "MIT",
+			"version": "5.3.9",
+			"resolved": "http://localhost:4873/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz",
+			"integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==",
 			"dependencies": {
 				"@jridgewell/trace-mapping": "^0.3.17",
 				"jest-worker": "^27.4.5",
 				"schema-utils": "^3.1.1",
 				"serialize-javascript": "^6.0.1",
-				"terser": "^5.16.5"
+				"terser": "^5.16.8"
 			},
 			"engines": {
 				"node": ">= 10.13.0"
@@ -28212,9 +25966,8 @@
 		},
 		"node_modules/terser-webpack-plugin/node_modules/ajv": {
 			"version": "6.12.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+			"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"license": "MIT",
 			"dependencies": {
 				"fast-deep-equal": "^3.1.1",
 				"fast-json-stable-stringify": "^2.0.0",
@@ -28228,33 +25981,24 @@
 		},
 		"node_modules/terser-webpack-plugin/node_modules/ajv-keywords": {
 			"version": "3.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+			"resolved": "http://localhost:4873/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
 			"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-			"license": "MIT",
 			"peerDependencies": {
 				"ajv": "^6.9.1"
 			}
 		},
-		"node_modules/terser-webpack-plugin/node_modules/commander": {
-			"version": "2.20.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-2.20.3.tgz",
-			"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
-			"license": "MIT"
-		},
 		"node_modules/terser-webpack-plugin/node_modules/has-flag": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 			"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=8"
 			}
 		},
 		"node_modules/terser-webpack-plugin/node_modules/jest-worker": {
 			"version": "27.5.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-worker/-/jest-worker-27.5.1.tgz",
+			"resolved": "http://localhost:4873/jest-worker/-/jest-worker-27.5.1.tgz",
 			"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
-			"license": "MIT",
 			"dependencies": {
 				"@types/node": "*",
 				"merge-stream": "^2.0.0",
@@ -28266,15 +26010,13 @@
 		},
 		"node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
 		},
 		"node_modules/terser-webpack-plugin/node_modules/schema-utils": {
-			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-			"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-			"license": "MIT",
+			"version": "3.3.0",
+			"resolved": "http://localhost:4873/schema-utils/-/schema-utils-3.3.0.tgz",
+			"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
 			"dependencies": {
 				"@types/json-schema": "^7.0.8",
 				"ajv": "^6.12.5",
@@ -28290,9 +26032,8 @@
 		},
 		"node_modules/terser-webpack-plugin/node_modules/supports-color": {
 			"version": "8.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-8.1.1.tgz",
 			"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-			"license": "MIT",
 			"dependencies": {
 				"has-flag": "^4.0.0"
 			},
@@ -28303,30 +26044,10 @@
 				"url": "https://github.com/chalk/supports-color?sponsor=1"
 			}
 		},
-		"node_modules/terser-webpack-plugin/node_modules/terser": {
-			"version": "5.16.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terser/-/terser-5.16.8.tgz",
-			"integrity": "sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==",
-			"license": "BSD-2-Clause",
-			"dependencies": {
-				"@jridgewell/source-map": "^0.3.2",
-				"acorn": "^8.5.0",
-				"commander": "^2.20.0",
-				"source-map-support": "~0.5.20"
-			},
-			"bin": {
-				"terser": "bin/terser"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
 		"node_modules/terser/node_modules/commander": {
 			"version": "2.20.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-2.20.3.tgz",
-			"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
-			"dev": true,
-			"license": "MIT"
+			"resolved": "http://localhost:4873/commander/-/commander-2.20.3.tgz",
+			"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
 		},
 		"node_modules/test-exclude": {
 			"version": "6.0.0",
@@ -28378,14 +26099,14 @@
 			"version": "0.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/text-table/-/text-table-0.2.0.tgz",
 			"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/throttleit": {
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/throttleit/-/throttleit-1.0.0.tgz",
 			"integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT"
 		},
 		"node_modules/through": {
@@ -28447,9 +26168,8 @@
 		},
 		"node_modules/thunky": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/thunky/-/thunky-1.1.0.tgz",
-			"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/thunky/-/thunky-1.1.0.tgz",
+			"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="
 		},
 		"node_modules/timers-browserify": {
 			"version": "2.0.12",
@@ -28478,9 +26198,8 @@
 		},
 		"node_modules/tmpl": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tmpl/-/tmpl-1.0.5.tgz",
-			"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
-			"license": "BSD-3-Clause"
+			"resolved": "http://localhost:4873/tmpl/-/tmpl-1.0.5.tgz",
+			"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
 		},
 		"node_modules/to-arraybuffer": {
 			"version": "1.0.1",
@@ -28554,9 +26273,8 @@
 		},
 		"node_modules/toidentifier": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/toidentifier/-/toidentifier-1.0.1.tgz",
+			"resolved": "http://localhost:4873/toidentifier/-/toidentifier-1.0.1.tgz",
 			"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=0.6"
 			}
@@ -28565,7 +26283,7 @@
 			"version": "4.1.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tough-cookie/-/tough-cookie-4.1.3.tgz",
 			"integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "BSD-3-Clause",
 			"dependencies": {
 				"psl": "^1.1.33",
@@ -28581,7 +26299,7 @@
 			"version": "0.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/universalify/-/universalify-0.2.0.tgz",
 			"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">= 4.0.0"
@@ -28604,6 +26322,7 @@
 			"version": "1.2.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tree-kill/-/tree-kill-1.2.2.tgz",
 			"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
+			"dev": true,
 			"license": "MIT",
 			"bin": {
 				"tree-kill": "cli.js"
@@ -28619,33 +26338,32 @@
 			}
 		},
 		"node_modules/ts-jest": {
-			"version": "28.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ts-jest/-/ts-jest-28.0.8.tgz",
-			"integrity": "sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==",
+			"version": "29.1.1",
+			"resolved": "http://localhost:4873/ts-jest/-/ts-jest-29.1.1.tgz",
+			"integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"bs-logger": "0.x",
 				"fast-json-stable-stringify": "2.x",
-				"jest-util": "^28.0.0",
-				"json5": "^2.2.1",
+				"jest-util": "^29.0.0",
+				"json5": "^2.2.3",
 				"lodash.memoize": "4.x",
 				"make-error": "1.x",
-				"semver": "7.x",
+				"semver": "^7.5.3",
 				"yargs-parser": "^21.0.1"
 			},
 			"bin": {
 				"ts-jest": "cli.js"
 			},
 			"engines": {
-				"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
+				"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
 			},
 			"peerDependencies": {
 				"@babel/core": ">=7.0.0-beta.0 <8",
-				"@jest/types": "^28.0.0",
-				"babel-jest": "^28.0.0",
-				"jest": "^28.0.0",
-				"typescript": ">=4.3"
+				"@jest/types": "^29.0.0",
+				"babel-jest": "^29.0.0",
+				"jest": "^29.0.0",
+				"typescript": ">=4.3 <6"
 			},
 			"peerDependenciesMeta": {
 				"@babel/core": {
@@ -29046,16 +26764,14 @@
 			}
 		},
 		"node_modules/tslib": {
-			"version": "2.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-2.5.0.tgz",
-			"integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
-			"license": "0BSD"
+			"version": "2.6.1",
+			"resolved": "http://localhost:4873/tslib/-/tslib-2.6.1.tgz",
+			"integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig=="
 		},
 		"node_modules/tsutils": {
 			"version": "3.21.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tsutils/-/tsutils-3.21.0.tgz",
 			"integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
-			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"tslib": "^1.8.1"
@@ -29071,7 +26787,6 @@
 			"version": "1.14.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
 			"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-			"dev": true,
 			"license": "0BSD"
 		},
 		"node_modules/tty-browserify": {
@@ -29081,12 +26796,25 @@
 			"dev": true,
 			"license": "MIT"
 		},
+		"node_modules/tuf-js": {
+			"version": "1.1.7",
+			"resolved": "http://localhost:4873/tuf-js/-/tuf-js-1.1.7.tgz",
+			"integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==",
+			"dev": true,
+			"dependencies": {
+				"@tufjs/models": "1.0.4",
+				"debug": "^4.3.4",
+				"make-fetch-happen": "^11.1.1"
+			},
+			"engines": {
+				"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+			}
+		},
 		"node_modules/tunnel-agent": {
 			"version": "0.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+			"resolved": "http://localhost:4873/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
 			"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
-			"devOptional": true,
-			"license": "Apache-2.0",
+			"dev": true,
 			"dependencies": {
 				"safe-buffer": "^5.0.1"
 			},
@@ -29096,17 +26824,15 @@
 		},
 		"node_modules/tweetnacl": {
 			"version": "0.14.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tweetnacl/-/tweetnacl-0.14.5.tgz",
+			"resolved": "http://localhost:4873/tweetnacl/-/tweetnacl-0.14.5.tgz",
 			"integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
-			"devOptional": true,
-			"license": "Unlicense"
+			"dev": true
 		},
 		"node_modules/type-check": {
 			"version": "0.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-check/-/type-check-0.4.0.tgz",
+			"resolved": "http://localhost:4873/type-check/-/type-check-0.4.0.tgz",
 			"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
-			"devOptional": true,
-			"license": "MIT",
+			"dev": true,
 			"dependencies": {
 				"prelude-ls": "^1.2.1"
 			},
@@ -29116,9 +26842,8 @@
 		},
 		"node_modules/type-detect": {
 			"version": "4.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-detect/-/type-detect-4.0.8.tgz",
+			"resolved": "http://localhost:4873/type-detect/-/type-detect-4.0.8.tgz",
 			"integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=4"
 			}
@@ -29137,9 +26862,8 @@
 		},
 		"node_modules/type-is": {
 			"version": "1.6.18",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-is/-/type-is-1.6.18.tgz",
+			"resolved": "http://localhost:4873/type-is/-/type-is-1.6.18.tgz",
 			"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
-			"license": "MIT",
 			"dependencies": {
 				"media-typer": "0.3.0",
 				"mime-types": "~2.1.24"
@@ -29168,18 +26892,23 @@
 			"license": "MIT"
 		},
 		"node_modules/typescript": {
-			"version": "4.8.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/typescript/-/typescript-4.8.4.tgz",
-			"integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==",
-			"license": "Apache-2.0",
+			"version": "5.1.6",
+			"resolved": "http://localhost:4873/typescript/-/typescript-5.1.6.tgz",
+			"integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==",
 			"bin": {
 				"tsc": "bin/tsc",
 				"tsserver": "bin/tsserver"
 			},
 			"engines": {
-				"node": ">=4.2.0"
+				"node": ">=14.17"
 			}
 		},
+		"node_modules/undici-types": {
+			"version": "5.26.5",
+			"resolved": "http://localhost:4873/undici-types/-/undici-types-5.26.5.tgz",
+			"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
+			"dev": true
+		},
 		"node_modules/unicode-canonical-property-names-ecmascript": {
 			"version": "2.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
@@ -29220,17 +26949,6 @@
 				"node": ">=4"
 			}
 		},
-		"node_modules/union": {
-			"version": "0.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/union/-/union-0.5.0.tgz",
-			"integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==",
-			"dependencies": {
-				"qs": "^6.4.0"
-			},
-			"engines": {
-				"node": ">= 0.8.0"
-			}
-		},
 		"node_modules/union-value": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/union-value/-/union-value-1.0.1.tgz",
@@ -29259,10 +26977,9 @@
 		},
 		"node_modules/unique-filename": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-filename/-/unique-filename-3.0.0.tgz",
+			"resolved": "http://localhost:4873/unique-filename/-/unique-filename-3.0.0.tgz",
 			"integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"unique-slug": "^4.0.0"
 			},
@@ -29272,10 +26989,9 @@
 		},
 		"node_modules/unique-slug": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-slug/-/unique-slug-4.0.0.tgz",
+			"resolved": "http://localhost:4873/unique-slug/-/unique-slug-4.0.0.tgz",
 			"integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"imurmurhash": "^0.1.4"
 			},
@@ -29294,9 +27010,8 @@
 		},
 		"node_modules/unpipe": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unpipe/-/unpipe-1.0.0.tgz",
+			"resolved": "http://localhost:4873/unpipe/-/unpipe-1.0.0.tgz",
 			"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
@@ -29364,7 +27079,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/untildify/-/untildify-4.0.0.tgz",
 			"integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"engines": {
 				"node": ">=8"
@@ -29383,9 +27098,9 @@
 			}
 		},
 		"node_modules/update-browserslist-db": {
-			"version": "1.0.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
-			"integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
+			"version": "1.0.13",
+			"resolved": "http://localhost:4873/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
+			"integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
 			"funding": [
 				{
 					"type": "opencollective",
@@ -29394,15 +27109,18 @@
 				{
 					"type": "tidelift",
 					"url": "https://tidelift.com/funding/github/npm/browserslist"
+				},
+				{
+					"type": "github",
+					"url": "https://github.com/sponsors/ai"
 				}
 			],
-			"license": "MIT",
 			"dependencies": {
 				"escalade": "^3.1.1",
 				"picocolors": "^1.0.0"
 			},
 			"bin": {
-				"browserslist-lint": "cli.js"
+				"update-browserslist-db": "cli.js"
 			},
 			"peerDependencies": {
 				"browserslist": ">= 4.21.0"
@@ -29436,17 +27154,11 @@
 				"querystring": "0.2.0"
 			}
 		},
-		"node_modules/url-join": {
-			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/url-join/-/url-join-4.0.1.tgz",
-			"integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==",
-			"license": "MIT"
-		},
 		"node_modules/url-parse": {
 			"version": "1.5.10",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/url-parse/-/url-parse-1.5.10.tgz",
 			"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"querystringify": "^2.1.1",
@@ -29501,9 +27213,8 @@
 		},
 		"node_modules/utils-merge": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/utils-merge/-/utils-merge-1.0.1.tgz",
+			"resolved": "http://localhost:4873/utils-merge/-/utils-merge-1.0.1.tgz",
 			"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.4.0"
 			}
@@ -29530,25 +27241,28 @@
 			"license": "MIT"
 		},
 		"node_modules/v8-to-istanbul": {
-			"version": "9.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz",
-			"integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==",
-			"license": "ISC",
+			"version": "9.1.3",
+			"resolved": "http://localhost:4873/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz",
+			"integrity": "sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==",
 			"dependencies": {
 				"@jridgewell/trace-mapping": "^0.3.12",
 				"@types/istanbul-lib-coverage": "^2.0.1",
-				"convert-source-map": "^1.6.0"
+				"convert-source-map": "^2.0.0"
 			},
 			"engines": {
 				"node": ">=10.12.0"
 			}
 		},
+		"node_modules/v8-to-istanbul/node_modules/convert-source-map": {
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/convert-source-map/-/convert-source-map-2.0.0.tgz",
+			"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+		},
 		"node_modules/validate-npm-package-license": {
 			"version": "3.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+			"resolved": "http://localhost:4873/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
 			"integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
 			"dev": true,
-			"license": "Apache-2.0",
 			"dependencies": {
 				"spdx-correct": "^3.0.0",
 				"spdx-expression-parse": "^3.0.0"
@@ -29558,7 +27272,6 @@
 			"version": "5.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
 			"integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
-			"dev": true,
 			"license": "ISC",
 			"dependencies": {
 				"builtins": "^5.0.0"
@@ -29579,28 +27292,81 @@
 		},
 		"node_modules/vary": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/vary/-/vary-1.1.2.tgz",
+			"resolved": "http://localhost:4873/vary/-/vary-1.1.2.tgz",
 			"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
-			"license": "MIT",
 			"engines": {
 				"node": ">= 0.8"
 			}
 		},
 		"node_modules/verror": {
 			"version": "1.10.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/verror/-/verror-1.10.0.tgz",
+			"resolved": "http://localhost:4873/verror/-/verror-1.10.0.tgz",
 			"integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
-			"devOptional": true,
+			"dev": true,
 			"engines": [
 				"node >=0.6.0"
 			],
-			"license": "MIT",
 			"dependencies": {
 				"assert-plus": "^1.0.0",
 				"core-util-is": "1.0.2",
 				"extsprintf": "^1.2.0"
 			}
 		},
+		"node_modules/vite": {
+			"version": "4.4.7",
+			"resolved": "http://localhost:4873/vite/-/vite-4.4.7.tgz",
+			"integrity": "sha512-6pYf9QJ1mHylfVh39HpuSfMPojPSKVxZvnclX1K1FyZ1PXDOcLBibdq5t1qxJSnL63ca8Wf4zts6mD8u8oc9Fw==",
+			"dev": true,
+			"dependencies": {
+				"esbuild": "^0.18.10",
+				"postcss": "^8.4.26",
+				"rollup": "^3.25.2"
+			},
+			"bin": {
+				"vite": "bin/vite.js"
+			},
+			"engines": {
+				"node": "^14.18.0 || >=16.0.0"
+			},
+			"funding": {
+				"url": "https://github.com/vitejs/vite?sponsor=1"
+			},
+			"optionalDependencies": {
+				"fsevents": "~2.3.2"
+			},
+			"peerDependencies": {
+				"@types/node": ">= 14",
+				"less": "*",
+				"lightningcss": "^1.21.0",
+				"sass": "*",
+				"stylus": "*",
+				"sugarss": "*",
+				"terser": "^5.4.0"
+			},
+			"peerDependenciesMeta": {
+				"@types/node": {
+					"optional": true
+				},
+				"less": {
+					"optional": true
+				},
+				"lightningcss": {
+					"optional": true
+				},
+				"sass": {
+					"optional": true
+				},
+				"stylus": {
+					"optional": true
+				},
+				"sugarss": {
+					"optional": true
+				},
+				"terser": {
+					"optional": true
+				}
+			}
+		},
 		"node_modules/vm-browserify": {
 			"version": "1.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/vm-browserify/-/vm-browserify-1.1.2.tgz",
@@ -29610,42 +27376,37 @@
 		},
 		"node_modules/w3c-hr-time": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+			"resolved": "http://localhost:4873/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
 			"integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
-			"deprecated": "Use your platform's native performance.now() and performance.timeOrigin.",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"browser-process-hrtime": "^1.0.0"
 			}
 		},
 		"node_modules/w3c-xmlserializer": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz",
-			"integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==",
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
+			"integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
-				"xml-name-validator": "^4.0.0"
+				"xml-name-validator": "^3.0.0"
 			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=10"
 			}
 		},
 		"node_modules/walker": {
 			"version": "1.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/walker/-/walker-1.0.8.tgz",
+			"resolved": "http://localhost:4873/walker/-/walker-1.0.8.tgz",
 			"integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"makeerror": "1.0.12"
 			}
 		},
 		"node_modules/watchpack": {
 			"version": "2.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/watchpack/-/watchpack-2.4.0.tgz",
+			"resolved": "http://localhost:4873/watchpack/-/watchpack-2.4.0.tgz",
 			"integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
-			"license": "MIT",
 			"dependencies": {
 				"glob-to-regexp": "^0.4.1",
 				"graceful-fs": "^4.1.2"
@@ -29997,9 +27758,8 @@
 		},
 		"node_modules/wbuf": {
 			"version": "1.7.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wbuf/-/wbuf-1.7.3.tgz",
+			"resolved": "http://localhost:4873/wbuf/-/wbuf-1.7.3.tgz",
 			"integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
-			"license": "MIT",
 			"dependencies": {
 				"minimalistic-assert": "^1.0.0"
 			}
@@ -30024,22 +27784,21 @@
 			}
 		},
 		"node_modules/webpack": {
-			"version": "5.78.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack/-/webpack-5.78.0.tgz",
-			"integrity": "sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==",
-			"license": "MIT",
+			"version": "5.88.2",
+			"resolved": "http://localhost:4873/webpack/-/webpack-5.88.2.tgz",
+			"integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==",
 			"dependencies": {
 				"@types/eslint-scope": "^3.7.3",
-				"@types/estree": "^0.0.51",
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/wasm-edit": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1",
+				"@types/estree": "^1.0.0",
+				"@webassemblyjs/ast": "^1.11.5",
+				"@webassemblyjs/wasm-edit": "^1.11.5",
+				"@webassemblyjs/wasm-parser": "^1.11.5",
 				"acorn": "^8.7.1",
-				"acorn-import-assertions": "^1.7.6",
+				"acorn-import-assertions": "^1.9.0",
 				"browserslist": "^4.14.5",
 				"chrome-trace-event": "^1.0.2",
-				"enhanced-resolve": "^5.10.0",
-				"es-module-lexer": "^0.9.0",
+				"enhanced-resolve": "^5.15.0",
+				"es-module-lexer": "^1.2.1",
 				"eslint-scope": "5.1.1",
 				"events": "^3.2.0",
 				"glob-to-regexp": "^0.4.1",
@@ -30048,9 +27807,9 @@
 				"loader-runner": "^4.2.0",
 				"mime-types": "^2.1.27",
 				"neo-async": "^2.6.2",
-				"schema-utils": "^3.1.0",
+				"schema-utils": "^3.2.0",
 				"tapable": "^2.1.1",
-				"terser-webpack-plugin": "^5.1.3",
+				"terser-webpack-plugin": "^5.3.7",
 				"watchpack": "^2.4.0",
 				"webpack-sources": "^3.2.3"
 			},
@@ -30071,11 +27830,10 @@
 			}
 		},
 		"node_modules/webpack-dev-middleware": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-dev-middleware/-/webpack-dev-middleware-6.0.1.tgz",
-			"integrity": "sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==",
+			"version": "6.1.1",
+			"resolved": "http://localhost:4873/webpack-dev-middleware/-/webpack-dev-middleware-6.1.1.tgz",
+			"integrity": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==",
 			"dev": true,
-			"license": "MIT",
 			"dependencies": {
 				"colorette": "^2.0.10",
 				"memfs": "^3.4.12",
@@ -30092,13 +27850,17 @@
 			},
 			"peerDependencies": {
 				"webpack": "^5.0.0"
+			},
+			"peerDependenciesMeta": {
+				"webpack": {
+					"optional": true
+				}
 			}
 		},
 		"node_modules/webpack-dev-server": {
-			"version": "4.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz",
-			"integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==",
-			"license": "MIT",
+			"version": "4.15.1",
+			"resolved": "http://localhost:4873/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz",
+			"integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==",
 			"dependencies": {
 				"@types/bonjour": "^3.5.9",
 				"@types/connect-history-api-fallback": "^1.3.5",
@@ -30106,7 +27868,7 @@
 				"@types/serve-index": "^1.9.1",
 				"@types/serve-static": "^1.13.10",
 				"@types/sockjs": "^0.3.33",
-				"@types/ws": "^8.5.1",
+				"@types/ws": "^8.5.5",
 				"ansi-html-community": "^0.0.8",
 				"bonjour-service": "^1.0.11",
 				"chokidar": "^3.5.3",
@@ -30119,6 +27881,7 @@
 				"html-entities": "^2.3.2",
 				"http-proxy-middleware": "^2.0.3",
 				"ipaddr.js": "^2.0.1",
+				"launch-editor": "^2.6.0",
 				"open": "^8.0.9",
 				"p-retry": "^4.5.0",
 				"rimraf": "^3.0.2",
@@ -30128,7 +27891,7 @@
 				"sockjs": "^0.3.24",
 				"spdy": "^4.0.2",
 				"webpack-dev-middleware": "^5.3.1",
-				"ws": "^8.4.2"
+				"ws": "^8.13.0"
 			},
 			"bin": {
 				"webpack-dev-server": "bin/webpack-dev-server.js"
@@ -30144,6 +27907,9 @@
 				"webpack": "^4.37.0 || ^5.0.0"
 			},
 			"peerDependenciesMeta": {
+				"webpack": {
+					"optional": true
+				},
 				"webpack-cli": {
 					"optional": true
 				}
@@ -30151,9 +27917,8 @@
 		},
 		"node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": {
 			"version": "5.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz",
+			"resolved": "http://localhost:4873/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz",
 			"integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==",
-			"license": "MIT",
 			"dependencies": {
 				"colorette": "^2.0.10",
 				"memfs": "^3.4.3",
@@ -30172,11 +27937,30 @@
 				"webpack": "^4.0.0 || ^5.0.0"
 			}
 		},
+		"node_modules/webpack-dev-server/node_modules/ws": {
+			"version": "8.14.2",
+			"resolved": "http://localhost:4873/ws/-/ws-8.14.2.tgz",
+			"integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==",
+			"engines": {
+				"node": ">=10.0.0"
+			},
+			"peerDependencies": {
+				"bufferutil": "^4.0.1",
+				"utf-8-validate": ">=5.0.2"
+			},
+			"peerDependenciesMeta": {
+				"bufferutil": {
+					"optional": true
+				},
+				"utf-8-validate": {
+					"optional": true
+				}
+			}
+		},
 		"node_modules/webpack-merge": {
-			"version": "5.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-merge/-/webpack-merge-5.8.0.tgz",
-			"integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==",
-			"license": "MIT",
+			"version": "5.9.0",
+			"resolved": "http://localhost:4873/webpack-merge/-/webpack-merge-5.9.0.tgz",
+			"integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==",
 			"dependencies": {
 				"clone-deep": "^4.0.1",
 				"wildcard": "^2.0.0"
@@ -30187,9 +27971,8 @@
 		},
 		"node_modules/webpack-node-externals": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz",
+			"resolved": "http://localhost:4873/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz",
 			"integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==",
-			"license": "MIT",
 			"engines": {
 				"node": ">=6"
 			}
@@ -30226,9 +28009,8 @@
 		},
 		"node_modules/webpack/node_modules/ajv": {
 			"version": "6.12.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+			"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 			"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-			"license": "MIT",
 			"dependencies": {
 				"fast-deep-equal": "^3.1.1",
 				"fast-json-stable-stringify": "^2.0.0",
@@ -30242,18 +28024,16 @@
 		},
 		"node_modules/webpack/node_modules/ajv-keywords": {
 			"version": "3.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+			"resolved": "http://localhost:4873/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
 			"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-			"license": "MIT",
 			"peerDependencies": {
 				"ajv": "^6.9.1"
 			}
 		},
 		"node_modules/webpack/node_modules/enhanced-resolve": {
-			"version": "5.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
-			"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
-			"license": "MIT",
+			"version": "5.15.0",
+			"resolved": "http://localhost:4873/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
+			"integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
 			"dependencies": {
 				"graceful-fs": "^4.2.4",
 				"tapable": "^2.2.0"
@@ -30264,9 +28044,8 @@
 		},
 		"node_modules/webpack/node_modules/eslint-scope": {
 			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
+			"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
 			"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
-			"license": "BSD-2-Clause",
 			"dependencies": {
 				"esrecurse": "^4.3.0",
 				"estraverse": "^4.1.1"
@@ -30277,24 +28056,21 @@
 		},
 		"node_modules/webpack/node_modules/estraverse": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
+			"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
 			"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
-			"license": "BSD-2-Clause",
 			"engines": {
 				"node": ">=4.0"
 			}
 		},
 		"node_modules/webpack/node_modules/json-schema-traverse": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-			"license": "MIT"
+			"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+			"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
 		},
 		"node_modules/webpack/node_modules/schema-utils": {
-			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-			"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-			"license": "MIT",
+			"version": "3.3.0",
+			"resolved": "http://localhost:4873/schema-utils/-/schema-utils-3.3.0.tgz",
+			"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
 			"dependencies": {
 				"@types/json-schema": "^7.0.8",
 				"ajv": "^6.12.5",
@@ -30310,9 +28086,8 @@
 		},
 		"node_modules/websocket-driver": {
 			"version": "0.7.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/websocket-driver/-/websocket-driver-0.7.4.tgz",
+			"resolved": "http://localhost:4873/websocket-driver/-/websocket-driver-0.7.4.tgz",
 			"integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==",
-			"license": "Apache-2.0",
 			"dependencies": {
 				"http-parser-js": ">=0.5.1",
 				"safe-buffer": ">=5.1.0",
@@ -30324,59 +28099,60 @@
 		},
 		"node_modules/websocket-extensions": {
 			"version": "0.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
+			"resolved": "http://localhost:4873/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
 			"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==",
-			"license": "Apache-2.0",
 			"engines": {
 				"node": ">=0.8.0"
 			}
 		},
 		"node_modules/whatwg-encoding": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz",
-			"integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
-			"license": "MIT",
+			"version": "1.0.5",
+			"resolved": "http://localhost:4873/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+			"integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
+			"dev": true,
 			"dependencies": {
-				"iconv-lite": "0.6.3"
-			},
-			"engines": {
-				"node": ">=12"
+				"iconv-lite": "0.4.24"
 			}
 		},
-		"node_modules/whatwg-encoding/node_modules/iconv-lite": {
-			"version": "0.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/iconv-lite/-/iconv-lite-0.6.3.tgz",
-			"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
-			"license": "MIT",
+		"node_modules/whatwg-mimetype": {
+			"version": "2.3.0",
+			"resolved": "http://localhost:4873/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+			"integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
+			"dev": true
+		},
+		"node_modules/whatwg-url": {
+			"version": "8.7.0",
+			"resolved": "http://localhost:4873/whatwg-url/-/whatwg-url-8.7.0.tgz",
+			"integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
+			"dev": true,
 			"dependencies": {
-				"safer-buffer": ">= 2.1.2 < 3.0.0"
+				"lodash": "^4.7.0",
+				"tr46": "^2.1.0",
+				"webidl-conversions": "^6.1.0"
 			},
 			"engines": {
-				"node": ">=0.10.0"
+				"node": ">=10"
 			}
 		},
-		"node_modules/whatwg-mimetype": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",
-			"integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==",
+		"node_modules/whatwg-url/node_modules/tr46": {
+			"version": "2.1.0",
+			"resolved": "http://localhost:4873/tr46/-/tr46-2.1.0.tgz",
+			"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
 			"dev": true,
-			"license": "MIT",
+			"dependencies": {
+				"punycode": "^2.1.1"
+			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=8"
 			}
 		},
-		"node_modules/whatwg-url": {
-			"version": "10.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-url/-/whatwg-url-10.0.0.tgz",
-			"integrity": "sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==",
+		"node_modules/whatwg-url/node_modules/webidl-conversions": {
+			"version": "6.1.0",
+			"resolved": "http://localhost:4873/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+			"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
 			"dev": true,
-			"license": "MIT",
-			"dependencies": {
-				"tr46": "^3.0.0",
-				"webidl-conversions": "^7.0.0"
-			},
 			"engines": {
-				"node": ">=12"
+				"node": ">=10.4"
 			}
 		},
 		"node_modules/which": {
@@ -30457,29 +28233,17 @@
 		},
 		"node_modules/wide-align": {
 			"version": "1.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wide-align/-/wide-align-1.1.5.tgz",
+			"resolved": "http://localhost:4873/wide-align/-/wide-align-1.1.5.tgz",
 			"integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
 			"dev": true,
-			"license": "ISC",
 			"dependencies": {
 				"string-width": "^1.0.2 || 2 || 3 || 4"
 			}
 		},
 		"node_modules/wildcard": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wildcard/-/wildcard-2.0.0.tgz",
-			"integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==",
-			"license": "MIT"
-		},
-		"node_modules/word-wrap": {
-			"version": "1.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/word-wrap/-/word-wrap-1.2.3.tgz",
-			"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
-			"devOptional": true,
-			"license": "MIT",
-			"engines": {
-				"node": ">=0.10.0"
-			}
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/wildcard/-/wildcard-2.0.1.tgz",
+			"integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ=="
 		},
 		"node_modules/worker-farm": {
 			"version": "1.7.0",
@@ -30491,14 +28255,6 @@
 				"errno": "~0.1.7"
 			}
 		},
-		"node_modules/workerpool": {
-			"version": "6.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/workerpool/-/workerpool-6.2.1.tgz",
-			"integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"peer": true
-		},
 		"node_modules/wrap-ansi": {
 			"version": "7.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
@@ -30516,6 +28272,57 @@
 				"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
 			}
 		},
+		"node_modules/wrap-ansi-cjs": {
+			"name": "wrap-ansi",
+			"version": "7.0.0",
+			"resolved": "http://localhost:4873/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+			"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+			"dev": true,
+			"dependencies": {
+				"ansi-styles": "^4.0.0",
+				"string-width": "^4.1.0",
+				"strip-ansi": "^6.0.0"
+			},
+			"engines": {
+				"node": ">=10"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+			}
+		},
+		"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
+			"version": "4.3.0",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
+			"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+			"dev": true,
+			"dependencies": {
+				"color-convert": "^2.0.1"
+			},
+			"engines": {
+				"node": ">=8"
+			},
+			"funding": {
+				"url": "https://github.com/chalk/ansi-styles?sponsor=1"
+			}
+		},
+		"node_modules/wrap-ansi-cjs/node_modules/color-convert": {
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
+			"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+			"dev": true,
+			"dependencies": {
+				"color-name": "~1.1.4"
+			},
+			"engines": {
+				"node": ">=7.0.0"
+			}
+		},
+		"node_modules/wrap-ansi-cjs/node_modules/color-name": {
+			"version": "1.1.4",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+			"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+			"dev": true
+		},
 		"node_modules/wrap-ansi/node_modules/ansi-styles": {
 			"version": "4.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
@@ -30557,9 +28364,8 @@
 		},
 		"node_modules/write-file-atomic": {
 			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
+			"resolved": "http://localhost:4873/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
 			"integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
-			"license": "ISC",
 			"dependencies": {
 				"imurmurhash": "^0.1.4",
 				"signal-exit": "^3.0.7"
@@ -30569,16 +28375,16 @@
 			}
 		},
 		"node_modules/ws": {
-			"version": "8.13.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ws/-/ws-8.13.0.tgz",
-			"integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
-			"license": "MIT",
+			"version": "7.5.9",
+			"resolved": "http://localhost:4873/ws/-/ws-7.5.9.tgz",
+			"integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
+			"dev": true,
 			"engines": {
-				"node": ">=10.0.0"
+				"node": ">=8.3.0"
 			},
 			"peerDependencies": {
 				"bufferutil": "^4.0.1",
-				"utf-8-validate": ">=5.0.2"
+				"utf-8-validate": "^5.0.2"
 			},
 			"peerDependenciesMeta": {
 				"bufferutil": {
@@ -30597,21 +28403,16 @@
 			"license": "MIT"
 		},
 		"node_modules/xml-name-validator": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
-			"integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
-			"dev": true,
-			"license": "Apache-2.0",
-			"engines": {
-				"node": ">=12"
-			}
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+			"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
+			"dev": true
 		},
 		"node_modules/xmlchars": {
 			"version": "2.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/xmlchars/-/xmlchars-2.2.0.tgz",
+			"resolved": "http://localhost:4873/xmlchars/-/xmlchars-2.2.0.tgz",
 			"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
-			"dev": true,
-			"license": "MIT"
+			"dev": true
 		},
 		"node_modules/xtend": {
 			"version": "4.0.2",
@@ -30640,18 +28441,16 @@
 		},
 		"node_modules/yaml": {
 			"version": "1.10.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yaml/-/yaml-1.10.2.tgz",
+			"resolved": "http://localhost:4873/yaml/-/yaml-1.10.2.tgz",
 			"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
-			"license": "ISC",
 			"engines": {
 				"node": ">= 6"
 			}
 		},
 		"node_modules/yargs": {
-			"version": "17.6.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs/-/yargs-17.6.2.tgz",
-			"integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==",
-			"license": "MIT",
+			"version": "17.7.2",
+			"resolved": "http://localhost:4873/yargs/-/yargs-17.7.2.tgz",
+			"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
 			"dependencies": {
 				"cliui": "^8.0.1",
 				"escalade": "^3.1.1",
@@ -30674,48 +28473,6 @@
 				"node": ">=12"
 			}
 		},
-		"node_modules/yargs-unparser": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
-			"integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"dependencies": {
-				"camelcase": "^6.0.0",
-				"decamelize": "^4.0.0",
-				"flat": "^5.0.2",
-				"is-plain-obj": "^2.1.0"
-			},
-			"engines": {
-				"node": ">=10"
-			}
-		},
-		"node_modules/yargs-unparser/node_modules/camelcase": {
-			"version": "6.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/camelcase/-/camelcase-6.3.0.tgz",
-			"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"engines": {
-				"node": ">=10"
-			},
-			"funding": {
-				"url": "https://github.com/sponsors/sindresorhus"
-			}
-		},
-		"node_modules/yargs-unparser/node_modules/is-plain-obj": {
-			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
-			"integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
-			"dev": true,
-			"license": "MIT",
-			"peer": true,
-			"engines": {
-				"node": ">=8"
-			}
-		},
 		"node_modules/yargs/node_modules/cliui": {
 			"version": "8.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cliui/-/cliui-8.0.1.tgz",
@@ -30734,7 +28491,7 @@
 			"version": "2.10.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yauzl/-/yauzl-2.10.0.tgz",
 			"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
-			"devOptional": true,
+			"dev": true,
 			"license": "MIT",
 			"dependencies": {
 				"buffer-crc32": "~0.2.3",
@@ -30763,99 +28520,81 @@
 			}
 		},
 		"node_modules/zone.js": {
-			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/zone.js/-/zone.js-0.12.0.tgz",
-			"integrity": "sha512-XtC+I5dXU14HrzidAKBNMqneIVUykLEAA1x+v4KVrd6AUPWlwYORF8KgsVqvgdHiKZ4BkxxjvYi/ksEixTPR0Q==",
-			"license": "MIT",
+			"version": "0.13.3",
+			"resolved": "http://localhost:4873/zone.js/-/zone.js-0.13.3.tgz",
+			"integrity": "sha512-MKPbmZie6fASC/ps4dkmIhaT5eonHkEt6eAy80K42tAm0G2W+AahLJjbfi6X9NPdciOE9GRFTTM8u2IiF6O3ww==",
 			"dependencies": {
 				"tslib": "^2.3.0"
 			}
 		}
 	},
 	"dependencies": {
+		"@aashutoshrathi/word-wrap": {
+			"version": "1.2.6",
+			"resolved": "http://localhost:4873/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
+			"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
+			"dev": true
+		},
+		"@adobe/css-tools": {
+			"version": "4.3.1",
+			"resolved": "http://localhost:4873/@adobe/css-tools/-/css-tools-4.3.1.tgz",
+			"integrity": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg=="
+		},
 		"@ampproject/remapping": {
-			"version": "2.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ampproject/remapping/-/remapping-2.2.0.tgz",
-			"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
+			"version": "2.2.1",
+			"resolved": "http://localhost:4873/@ampproject/remapping/-/remapping-2.2.1.tgz",
+			"integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
 			"requires": {
-				"@jridgewell/gen-mapping": "^0.1.0",
+				"@jridgewell/gen-mapping": "^0.3.0",
 				"@jridgewell/trace-mapping": "^0.3.9"
 			}
 		},
 		"@angular-devkit/architect": {
-			"version": "0.1501.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/architect/-/architect-0.1501.5.tgz",
-			"integrity": "sha512-T4zJMvJvCqZeeENdeHcFtdrISrZSe8MycQOWZwPYU9zBTGMmdYpa4GQKQmFRZGBwX2PKHFlkQ1HLLe366sySAQ==",
+			"version": "0.1602.8",
+			"resolved": "http://localhost:4873/@angular-devkit/architect/-/architect-0.1602.8.tgz",
+			"integrity": "sha512-bNdu2tF29Y/jOxMXlu9pmNbIlyZs9hRjLmi/tcfcMFay+3AhpNO59DWlUmI4gpvWu8CEXdQHSMuJTDHaNR+Ctg==",
 			"dev": true,
 			"requires": {
-				"@angular-devkit/core": "15.1.5",
-				"rxjs": "6.6.7"
-			},
-			"dependencies": {
-				"@angular-devkit/core": {
-					"version": "15.1.5",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.5.tgz",
-					"integrity": "sha512-SkGQFkruTwVM77WEOIQivfFBtnHW41tttsGrT6MTrti98hs8tvOTlzfYD/sDTyh0WKbZGeAtkRXx0raevb63YQ==",
-					"dev": true,
-					"requires": {
-						"ajv": "8.12.0",
-						"ajv-formats": "2.1.1",
-						"jsonc-parser": "3.2.0",
-						"rxjs": "6.6.7",
-						"source-map": "0.7.4"
-					}
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"dev": true,
-					"requires": {
-						"tslib": "^1.9.0"
-					}
-				},
-				"tslib": {
-					"version": "1.14.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-					"dev": true
-				}
+				"@angular-devkit/core": "16.2.8",
+				"rxjs": "7.8.1"
 			}
 		},
 		"@angular-devkit/build-angular": {
-			"version": "15.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/build-angular/-/build-angular-15.1.5.tgz",
-			"integrity": "sha512-tMWfBdhdl5zLtFHqeI3GVXAL9j7rm51rd5g0RU3KhUsohAvA6AS/bZTRWwr8BYPHQzYovgDDOcdd2Sapxibv7w==",
-			"dev": true,
-			"requires": {
-				"@ampproject/remapping": "2.2.0",
-				"@angular-devkit/architect": "0.1501.5",
-				"@angular-devkit/build-webpack": "0.1501.5",
-				"@angular-devkit/core": "15.1.5",
-				"@babel/core": "7.20.12",
-				"@babel/generator": "7.20.7",
-				"@babel/helper-annotate-as-pure": "7.18.6",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular-devkit/build-angular/-/build-angular-16.2.8.tgz",
+			"integrity": "sha512-PgTaWerhDO3JjHjgJl/VWB1y1awN8eHrm7sqdpIsgKbVpi26oyByjtPS1gKKhinps9Che66lCbnxrkx2X3rWTg==",
+			"dev": true,
+			"requires": {
+				"@ampproject/remapping": "2.2.1",
+				"@angular-devkit/architect": "0.1602.8",
+				"@angular-devkit/build-webpack": "0.1602.8",
+				"@angular-devkit/core": "16.2.8",
+				"@babel/core": "7.22.9",
+				"@babel/generator": "7.22.9",
+				"@babel/helper-annotate-as-pure": "7.22.5",
+				"@babel/helper-split-export-declaration": "7.22.6",
 				"@babel/plugin-proposal-async-generator-functions": "7.20.7",
-				"@babel/plugin-transform-async-to-generator": "7.20.7",
-				"@babel/plugin-transform-runtime": "7.19.6",
-				"@babel/preset-env": "7.20.2",
-				"@babel/runtime": "7.20.7",
-				"@babel/template": "7.20.7",
+				"@babel/plugin-transform-async-to-generator": "7.22.5",
+				"@babel/plugin-transform-runtime": "7.22.9",
+				"@babel/preset-env": "7.22.9",
+				"@babel/runtime": "7.22.6",
+				"@babel/template": "7.22.5",
 				"@discoveryjs/json-ext": "0.5.7",
-				"@ngtools/webpack": "15.1.5",
+				"@ngtools/webpack": "16.2.8",
+				"@vitejs/plugin-basic-ssl": "1.0.1",
 				"ansi-colors": "4.1.3",
-				"autoprefixer": "10.4.13",
-				"babel-loader": "9.1.2",
+				"autoprefixer": "10.4.14",
+				"babel-loader": "9.1.3",
 				"babel-plugin-istanbul": "6.1.1",
-				"browserslist": "4.21.4",
-				"cacache": "17.0.4",
+				"browserslist": "^4.21.5",
 				"chokidar": "3.5.3",
 				"copy-webpack-plugin": "11.0.0",
-				"critters": "0.0.16",
-				"css-loader": "6.7.3",
-				"esbuild": "0.16.17",
-				"esbuild-wasm": "0.16.17",
-				"glob": "8.0.3",
+				"critters": "0.0.20",
+				"css-loader": "6.8.1",
+				"esbuild": "0.18.17",
+				"esbuild-wasm": "0.18.17",
+				"fast-glob": "3.3.1",
+				"guess-parser": "0.4.22",
 				"https-proxy-agent": "5.0.1",
 				"inquirer": "8.2.4",
 				"jsonc-parser": "3.2.0",
@@ -30864,1126 +28603,748 @@
 				"less-loader": "11.1.0",
 				"license-webpack-plugin": "4.0.2",
 				"loader-utils": "3.2.1",
-				"magic-string": "0.27.0",
-				"mini-css-extract-plugin": "2.7.2",
-				"open": "8.4.0",
+				"magic-string": "0.30.1",
+				"mini-css-extract-plugin": "2.7.6",
+				"mrmime": "1.0.1",
+				"open": "8.4.2",
 				"ora": "5.4.1",
-				"parse5-html-rewriting-stream": "6.0.1",
-				"piscina": "3.2.0",
-				"postcss": "8.4.21",
-				"postcss-loader": "7.0.2",
+				"parse5-html-rewriting-stream": "7.0.0",
+				"picomatch": "2.3.1",
+				"piscina": "4.0.0",
+				"postcss": "8.4.31",
+				"postcss-loader": "7.3.3",
 				"resolve-url-loader": "5.0.0",
-				"rxjs": "6.6.7",
-				"sass": "1.57.1",
-				"sass-loader": "13.2.0",
-				"semver": "7.3.8",
+				"rxjs": "7.8.1",
+				"sass": "1.64.1",
+				"sass-loader": "13.3.2",
+				"semver": "7.5.4",
 				"source-map-loader": "4.0.1",
 				"source-map-support": "0.5.21",
-				"terser": "5.16.1",
+				"terser": "5.19.2",
 				"text-table": "0.2.0",
 				"tree-kill": "1.2.2",
-				"tslib": "2.4.1",
-				"webpack": "5.75.0",
-				"webpack-dev-middleware": "6.0.1",
-				"webpack-dev-server": "4.11.1",
-				"webpack-merge": "5.8.0",
+				"tslib": "2.6.1",
+				"vite": "4.4.7",
+				"webpack": "5.88.2",
+				"webpack-dev-middleware": "6.1.1",
+				"webpack-dev-server": "4.15.1",
+				"webpack-merge": "5.9.0",
 				"webpack-subresource-integrity": "5.1.0"
 			},
 			"dependencies": {
-				"@angular-devkit/core": {
-					"version": "15.1.5",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.5.tgz",
-					"integrity": "sha512-SkGQFkruTwVM77WEOIQivfFBtnHW41tttsGrT6MTrti98hs8tvOTlzfYD/sDTyh0WKbZGeAtkRXx0raevb63YQ==",
-					"dev": true,
-					"requires": {
-						"ajv": "8.12.0",
-						"ajv-formats": "2.1.1",
-						"jsonc-parser": "3.2.0",
-						"rxjs": "6.6.7",
-						"source-map": "0.7.4"
-					}
-				},
 				"@babel/core": {
-					"version": "7.20.12",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/core/-/core-7.20.12.tgz",
-					"integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==",
-					"dev": true,
-					"requires": {
-						"@ampproject/remapping": "^2.1.0",
-						"@babel/code-frame": "^7.18.6",
-						"@babel/generator": "^7.20.7",
-						"@babel/helper-compilation-targets": "^7.20.7",
-						"@babel/helper-module-transforms": "^7.20.11",
-						"@babel/helpers": "^7.20.7",
-						"@babel/parser": "^7.20.7",
-						"@babel/template": "^7.20.7",
-						"@babel/traverse": "^7.20.12",
-						"@babel/types": "^7.20.7",
+					"version": "7.22.9",
+					"resolved": "http://localhost:4873/@babel/core/-/core-7.22.9.tgz",
+					"integrity": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==",
+					"dev": true,
+					"requires": {
+						"@ampproject/remapping": "^2.2.0",
+						"@babel/code-frame": "^7.22.5",
+						"@babel/generator": "^7.22.9",
+						"@babel/helper-compilation-targets": "^7.22.9",
+						"@babel/helper-module-transforms": "^7.22.9",
+						"@babel/helpers": "^7.22.6",
+						"@babel/parser": "^7.22.7",
+						"@babel/template": "^7.22.5",
+						"@babel/traverse": "^7.22.8",
+						"@babel/types": "^7.22.5",
 						"convert-source-map": "^1.7.0",
 						"debug": "^4.1.0",
 						"gensync": "^1.0.0-beta.2",
 						"json5": "^2.2.2",
-						"semver": "^6.3.0"
-					},
-					"dependencies": {
-						"semver": {
-							"version": "6.3.0",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-							"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-							"dev": true
-						}
-					}
-				},
-				"@babel/preset-env": {
-					"version": "7.20.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/preset-env/-/preset-env-7.20.2.tgz",
-					"integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==",
-					"dev": true,
-					"requires": {
-						"@babel/compat-data": "^7.20.1",
-						"@babel/helper-compilation-targets": "^7.20.0",
-						"@babel/helper-plugin-utils": "^7.20.2",
-						"@babel/helper-validator-option": "^7.18.6",
-						"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
-						"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
-						"@babel/plugin-proposal-async-generator-functions": "^7.20.1",
-						"@babel/plugin-proposal-class-properties": "^7.18.6",
-						"@babel/plugin-proposal-class-static-block": "^7.18.6",
-						"@babel/plugin-proposal-dynamic-import": "^7.18.6",
-						"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
-						"@babel/plugin-proposal-json-strings": "^7.18.6",
-						"@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
-						"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
-						"@babel/plugin-proposal-numeric-separator": "^7.18.6",
-						"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
-						"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
-						"@babel/plugin-proposal-optional-chaining": "^7.18.9",
-						"@babel/plugin-proposal-private-methods": "^7.18.6",
-						"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
-						"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
-						"@babel/plugin-syntax-async-generators": "^7.8.4",
-						"@babel/plugin-syntax-class-properties": "^7.12.13",
-						"@babel/plugin-syntax-class-static-block": "^7.14.5",
-						"@babel/plugin-syntax-dynamic-import": "^7.8.3",
-						"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-						"@babel/plugin-syntax-import-assertions": "^7.20.0",
-						"@babel/plugin-syntax-json-strings": "^7.8.3",
-						"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
-						"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
-						"@babel/plugin-syntax-numeric-separator": "^7.10.4",
-						"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
-						"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
-						"@babel/plugin-syntax-optional-chaining": "^7.8.3",
-						"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
-						"@babel/plugin-syntax-top-level-await": "^7.14.5",
-						"@babel/plugin-transform-arrow-functions": "^7.18.6",
-						"@babel/plugin-transform-async-to-generator": "^7.18.6",
-						"@babel/plugin-transform-block-scoped-functions": "^7.18.6",
-						"@babel/plugin-transform-block-scoping": "^7.20.2",
-						"@babel/plugin-transform-classes": "^7.20.2",
-						"@babel/plugin-transform-computed-properties": "^7.18.9",
-						"@babel/plugin-transform-destructuring": "^7.20.2",
-						"@babel/plugin-transform-dotall-regex": "^7.18.6",
-						"@babel/plugin-transform-duplicate-keys": "^7.18.9",
-						"@babel/plugin-transform-exponentiation-operator": "^7.18.6",
-						"@babel/plugin-transform-for-of": "^7.18.8",
-						"@babel/plugin-transform-function-name": "^7.18.9",
-						"@babel/plugin-transform-literals": "^7.18.9",
-						"@babel/plugin-transform-member-expression-literals": "^7.18.6",
-						"@babel/plugin-transform-modules-amd": "^7.19.6",
-						"@babel/plugin-transform-modules-commonjs": "^7.19.6",
-						"@babel/plugin-transform-modules-systemjs": "^7.19.6",
-						"@babel/plugin-transform-modules-umd": "^7.18.6",
-						"@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1",
-						"@babel/plugin-transform-new-target": "^7.18.6",
-						"@babel/plugin-transform-object-super": "^7.18.6",
-						"@babel/plugin-transform-parameters": "^7.20.1",
-						"@babel/plugin-transform-property-literals": "^7.18.6",
-						"@babel/plugin-transform-regenerator": "^7.18.6",
-						"@babel/plugin-transform-reserved-words": "^7.18.6",
-						"@babel/plugin-transform-shorthand-properties": "^7.18.6",
-						"@babel/plugin-transform-spread": "^7.19.0",
-						"@babel/plugin-transform-sticky-regex": "^7.18.6",
-						"@babel/plugin-transform-template-literals": "^7.18.9",
-						"@babel/plugin-transform-typeof-symbol": "^7.18.9",
-						"@babel/plugin-transform-unicode-escapes": "^7.18.10",
-						"@babel/plugin-transform-unicode-regex": "^7.18.6",
-						"@babel/preset-modules": "^0.1.5",
-						"@babel/types": "^7.20.2",
-						"babel-plugin-polyfill-corejs2": "^0.3.3",
-						"babel-plugin-polyfill-corejs3": "^0.6.0",
-						"babel-plugin-polyfill-regenerator": "^0.4.1",
-						"core-js-compat": "^3.25.1",
-						"semver": "^6.3.0"
+						"semver": "^6.3.1"
 					},
 					"dependencies": {
 						"semver": {
-							"version": "6.3.0",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-							"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+							"version": "6.3.1",
+							"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+							"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
 							"dev": true
 						}
 					}
 				},
-				"enhanced-resolve": {
-					"version": "5.12.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
-					"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
-					"dev": true,
-					"requires": {
-						"graceful-fs": "^4.2.4",
-						"tapable": "^2.2.0"
-					}
-				},
-				"eslint-scope": {
-					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
-					"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
-					"dev": true,
-					"requires": {
-						"esrecurse": "^4.3.0",
-						"estraverse": "^4.1.1"
-					}
-				},
-				"estraverse": {
-					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
-					"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
-					"dev": true
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
+				"magic-string": {
+					"version": "0.30.1",
+					"resolved": "http://localhost:4873/magic-string/-/magic-string-0.30.1.tgz",
+					"integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==",
 					"dev": true,
 					"requires": {
-						"tslib": "^1.9.0"
-					},
-					"dependencies": {
-						"tslib": {
-							"version": "1.14.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-							"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-							"dev": true
-						}
-					}
-				},
-				"schema-utils": {
-					"version": "3.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-					"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-					"dev": true,
-					"requires": {
-						"@types/json-schema": "^7.0.8",
-						"ajv": "^6.12.5",
-						"ajv-keywords": "^3.5.2"
-					},
-					"dependencies": {
-						"ajv": {
-							"version": "6.12.6",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
-							"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-							"dev": true,
-							"requires": {
-								"fast-deep-equal": "^3.1.1",
-								"fast-json-stable-stringify": "^2.0.0",
-								"json-schema-traverse": "^0.4.1",
-								"uri-js": "^4.2.2"
-							}
-						},
-						"ajv-keywords": {
-							"version": "3.5.2",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-							"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-							"dev": true,
-							"requires": {}
-						},
-						"json-schema-traverse": {
-							"version": "0.4.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-							"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-							"dev": true
-						}
-					}
-				},
-				"tslib": {
-					"version": "2.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-2.4.1.tgz",
-					"integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==",
-					"dev": true
-				},
-				"webpack": {
-					"version": "5.75.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack/-/webpack-5.75.0.tgz",
-					"integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==",
-					"dev": true,
-					"requires": {
-						"@types/eslint-scope": "^3.7.3",
-						"@types/estree": "^0.0.51",
-						"@webassemblyjs/ast": "1.11.1",
-						"@webassemblyjs/wasm-edit": "1.11.1",
-						"@webassemblyjs/wasm-parser": "1.11.1",
-						"acorn": "^8.7.1",
-						"acorn-import-assertions": "^1.7.6",
-						"browserslist": "^4.14.5",
-						"chrome-trace-event": "^1.0.2",
-						"enhanced-resolve": "^5.10.0",
-						"es-module-lexer": "^0.9.0",
-						"eslint-scope": "5.1.1",
-						"events": "^3.2.0",
-						"glob-to-regexp": "^0.4.1",
-						"graceful-fs": "^4.2.9",
-						"json-parse-even-better-errors": "^2.3.1",
-						"loader-runner": "^4.2.0",
-						"mime-types": "^2.1.27",
-						"neo-async": "^2.6.2",
-						"schema-utils": "^3.1.0",
-						"tapable": "^2.1.1",
-						"terser-webpack-plugin": "^5.1.3",
-						"watchpack": "^2.4.0",
-						"webpack-sources": "^3.2.3"
+						"@jridgewell/sourcemap-codec": "^1.4.15"
 					}
 				}
 			}
 		},
 		"@angular-devkit/build-webpack": {
-			"version": "0.1501.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/build-webpack/-/build-webpack-0.1501.5.tgz",
-			"integrity": "sha512-qLDxRBPfiNBRPwgfN8Abs0a+4vBApMnQsL0iWc0FKT729SCy7lgD6h/hP70wZue2shiiih23Qp5RdKT6oCeXwQ==",
+			"version": "0.1602.8",
+			"resolved": "http://localhost:4873/@angular-devkit/build-webpack/-/build-webpack-0.1602.8.tgz",
+			"integrity": "sha512-wGE2R6hnhSVpH7jvqtkZ63IX9oMRd+uh7sC65hGgzajPqThQcNdnGG3+79QGWapgkoHuZHpDlKOBFt0IOMAaMA==",
 			"dev": true,
 			"requires": {
-				"@angular-devkit/architect": "0.1501.5",
-				"rxjs": "6.6.7"
-			},
-			"dependencies": {
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"dev": true,
-					"requires": {
-						"tslib": "^1.9.0"
-					}
-				},
-				"tslib": {
-					"version": "1.14.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-					"dev": true
-				}
+				"@angular-devkit/architect": "0.1602.8",
+				"rxjs": "7.8.1"
 			}
 		},
 		"@angular-devkit/core": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.0.0.tgz",
-			"integrity": "sha512-2Mg1+eyodO7od2Ax0EaArmm3rDzI2O00pBNU2Upz5hTfHcsqXlPzX5aYjWBiL1lBM0xYLY99dZqSdcQBMZy/Qg==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular-devkit/core/-/core-16.2.8.tgz",
+			"integrity": "sha512-PTGozYvh1Bin5lB15PwcXa26Ayd17bWGLS3H8Rs0s+04mUDvfNofmweaX1LgumWWy3nCUTDuwHxX10M3G0wE2g==",
 			"dev": true,
-			"peer": true,
 			"requires": {
-				"ajv": "8.11.0",
+				"ajv": "8.12.0",
 				"ajv-formats": "2.1.1",
 				"jsonc-parser": "3.2.0",
-				"rxjs": "6.6.7",
+				"picomatch": "2.3.1",
+				"rxjs": "7.8.1",
 				"source-map": "0.7.4"
-			},
-			"dependencies": {
-				"ajv": {
-					"version": "8.11.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-8.11.0.tgz",
-					"integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"fast-deep-equal": "^3.1.1",
-						"json-schema-traverse": "^1.0.0",
-						"require-from-string": "^2.0.2",
-						"uri-js": "^4.2.2"
-					}
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"tslib": "^1.9.0"
-					}
-				},
-				"tslib": {
-					"version": "1.14.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-					"dev": true,
-					"peer": true
-				}
 			}
 		},
 		"@angular-devkit/schematics": {
-			"version": "14.2.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-14.2.9.tgz",
-			"integrity": "sha512-E7muTIbDqysjQld5r9AGXiW8vKHadkHaGe+0QONpmr8TMAtTMqBFxBXRG9vajiUzt/GcFL9dbGGEwM/1dc7VPQ==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular-devkit/schematics/-/schematics-16.2.8.tgz",
+			"integrity": "sha512-MBiKZOlR9/YMdflALr7/7w/BGAfo/BGTrlkqsIB6rDWV1dYiCgxI+033HsiNssLS6RQyCFx/e7JA2aBBzu9zEg==",
 			"dev": true,
-			"peer": true,
 			"requires": {
-				"@angular-devkit/core": "14.2.9",
-				"jsonc-parser": "3.1.0",
-				"magic-string": "0.26.2",
+				"@angular-devkit/core": "16.2.8",
+				"jsonc-parser": "3.2.0",
+				"magic-string": "0.30.1",
 				"ora": "5.4.1",
-				"rxjs": "6.6.7"
+				"rxjs": "7.8.1"
 			},
 			"dependencies": {
-				"@angular-devkit/core": {
-					"version": "14.2.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-14.2.9.tgz",
-					"integrity": "sha512-+e2OmzH/0gjNNH96xJDgshbuIM/NPSwE0NQlgU/KRb8TZt+7ooTmZJ1vk25HKV2YS99BEYzUSqvVAaJtxX/6Qw==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"ajv": "8.11.0",
-						"ajv-formats": "2.1.1",
-						"jsonc-parser": "3.1.0",
-						"rxjs": "6.6.7",
-						"source-map": "0.7.4"
-					}
-				},
-				"ajv": {
-					"version": "8.11.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-8.11.0.tgz",
-					"integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"fast-deep-equal": "^3.1.1",
-						"json-schema-traverse": "^1.0.0",
-						"require-from-string": "^2.0.2",
-						"uri-js": "^4.2.2"
-					}
-				},
-				"jsonc-parser": {
-					"version": "3.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsonc-parser/-/jsonc-parser-3.1.0.tgz",
-					"integrity": "sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==",
-					"dev": true,
-					"peer": true
-				},
 				"magic-string": {
-					"version": "0.26.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.26.2.tgz",
-					"integrity": "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"sourcemap-codec": "^1.4.8"
-					}
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
+					"version": "0.30.1",
+					"resolved": "http://localhost:4873/magic-string/-/magic-string-0.30.1.tgz",
+					"integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==",
 					"dev": true,
-					"peer": true,
 					"requires": {
-						"tslib": "^1.9.0"
+						"@jridgewell/sourcemap-codec": "^1.4.15"
 					}
-				},
-				"tslib": {
-					"version": "1.14.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-					"dev": true,
-					"peer": true
 				}
 			}
 		},
 		"@angular-eslint/bundled-angular-compiler": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.0.0.tgz",
-			"integrity": "sha512-IFJFVCc3t+ujD8J6//RzYrtp7N9wUQhZnRUkd7pI7IpUT1XrQx5uNbDca9OLXM5F+HCHOQPIoaCyg3O/XJcc8Q==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz",
+			"integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==",
 			"dev": true
 		},
 		"@angular-eslint/eslint-plugin": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/eslint-plugin/-/eslint-plugin-15.0.0.tgz",
-			"integrity": "sha512-Yj/GeLQ+bBUgrIQDqa//nHrS9UvxZ1KQhavcK0xruuy29AYf+yolVdEGKvFNlpMoGRXkv2eMmWUkODS495DTYQ==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz",
+			"integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==",
 			"dev": true,
 			"requires": {
-				"@angular-eslint/utils": "15.0.0",
-				"@typescript-eslint/utils": "5.43.0"
+				"@angular-eslint/utils": "16.0.3",
+				"@typescript-eslint/utils": "5.59.7"
 			}
 		},
 		"@angular-eslint/eslint-plugin-template": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.0.0.tgz",
-			"integrity": "sha512-9i8BFnqhN1/xR1vZaeRUf48DWxgRnJDOXfJtNONkTUUsImXzShJUgFK++/YC6BeNRsZf0wPN/qpstuScwELJKA==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz",
+			"integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==",
 			"dev": true,
 			"requires": {
-				"@angular-eslint/bundled-angular-compiler": "15.0.0",
-				"@angular-eslint/utils": "15.0.0",
-				"@typescript-eslint/type-utils": "5.43.0",
-				"@typescript-eslint/utils": "5.43.0",
+				"@angular-eslint/bundled-angular-compiler": "16.0.3",
+				"@angular-eslint/utils": "16.0.3",
+				"@typescript-eslint/type-utils": "5.59.7",
+				"@typescript-eslint/utils": "5.59.7",
 				"aria-query": "5.1.3",
 				"axobject-query": "3.1.1"
 			}
 		},
 		"@angular-eslint/template-parser": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/template-parser/-/template-parser-15.0.0.tgz",
-			"integrity": "sha512-tidZOhQ9ygXPyUwxXzXbEVJUiHRNF0oFu1Pf+hSlOwgjvRqCqVwXfDxEe6NjFEwRXsp0CtDgyseu7E9+ml+m6A==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz",
+			"integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==",
 			"dev": true,
 			"requires": {
-				"@angular-eslint/bundled-angular-compiler": "15.0.0",
+				"@angular-eslint/bundled-angular-compiler": "16.0.3",
 				"eslint-scope": "^7.0.0"
 			}
 		},
 		"@angular-eslint/utils": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-eslint/utils/-/utils-15.0.0.tgz",
-			"integrity": "sha512-+eI2vNixlxmwAH+vcF81DNtzZ1CJAe6e1yktT5Xmn/FUVWKe4hHQN95Km0H8G0epF8MovCJwmPdhFYwi/X8u3w==",
+			"version": "16.0.3",
+			"resolved": "http://localhost:4873/@angular-eslint/utils/-/utils-16.0.3.tgz",
+			"integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==",
 			"dev": true,
 			"requires": {
-				"@angular-eslint/bundled-angular-compiler": "15.0.0",
-				"@typescript-eslint/utils": "5.43.0"
+				"@angular-eslint/bundled-angular-compiler": "16.0.3",
+				"@typescript-eslint/utils": "5.59.7"
 			}
 		},
 		"@angular/animations": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/animations/-/animations-15.1.4.tgz",
-			"integrity": "sha512-aNLBjEsxykkG+cVA86IMLQaqVym7TSe3yAVM+KrOX4l76V7rDnByR/Fh29mj5tOfx/V08gm4HgIQ7VMqZAhCWw==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/animations/-/animations-16.2.11.tgz",
+			"integrity": "sha512-xdLYXsGi7OuJawhiVIppl2VkPHhPdxUP/nR6+ETR3TdAscVruCWJs4z9XKval4fbik/brekbFNFuYtlx6csDhQ==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/cdk": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/cdk/-/cdk-15.1.4.tgz",
-			"integrity": "sha512-uCYrquUYakm+ym3l/0GG2HtyEtzJlr3eO3T8Oezvl4HcNB0jlcN80ut5SwQC0KcgiWDuP1BVv8PGinD2vearJg==",
+			"version": "16.2.10",
+			"resolved": "http://localhost:4873/@angular/cdk/-/cdk-16.2.10.tgz",
+			"integrity": "sha512-kOQrPxSMPi66aM9XfwZIjQXhH+q0PkhK4BNMHB9RkvaaQ34ovOrKaGsT7t0+sjlVhiwTiy2mB1Qgz6NlIB0ZZw==",
 			"requires": {
 				"parse5": "^7.1.2",
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/cli": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/cli/-/cli-15.1.6.tgz",
-			"integrity": "sha512-GmC9jZK2ipUWj0dlfTI5oEYia4y1fLfO3AtAKU5CylNYrGyB+DRytKY8Bx6Fs4kaNBY8V8YnyLi7E/78gziMdg==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@angular/cli/-/cli-16.2.8.tgz",
+			"integrity": "sha512-iPrDv+SemRb6ZhayxwLsEdykHpV2TYSgH5Smg8GqSaIR/KUiemuzBrIKEUEaIG4n2dVEOtcsuh2JRHQndF7wmw==",
 			"dev": true,
 			"requires": {
-				"@angular-devkit/architect": "0.1501.6",
-				"@angular-devkit/core": "15.1.6",
-				"@angular-devkit/schematics": "15.1.6",
-				"@schematics/angular": "15.1.6",
+				"@angular-devkit/architect": "0.1602.8",
+				"@angular-devkit/core": "16.2.8",
+				"@angular-devkit/schematics": "16.2.8",
+				"@schematics/angular": "16.2.8",
 				"@yarnpkg/lockfile": "1.1.0",
 				"ansi-colors": "4.1.3",
-				"ini": "3.0.1",
+				"ini": "4.1.1",
 				"inquirer": "8.2.4",
 				"jsonc-parser": "3.2.0",
 				"npm-package-arg": "10.1.0",
 				"npm-pick-manifest": "8.0.1",
-				"open": "8.4.0",
+				"open": "8.4.2",
 				"ora": "5.4.1",
-				"pacote": "15.0.8",
-				"resolve": "1.22.1",
-				"semver": "7.3.8",
+				"pacote": "15.2.0",
+				"resolve": "1.22.2",
+				"semver": "7.5.4",
 				"symbol-observable": "4.0.0",
-				"yargs": "17.6.2"
-			},
-			"dependencies": {
-				"@angular-devkit/architect": {
-					"version": "0.1501.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/architect/-/architect-0.1501.6.tgz",
-					"integrity": "sha512-u07zZFlfrg0Qn4mu5M9Nz0pH2Yd2028XF/73980PsZMxwkSm4diF08v4bHk3UyR7yPT7phwvt4znj6ryZhx1gw==",
-					"dev": true,
-					"requires": {
-						"@angular-devkit/core": "15.1.6",
-						"rxjs": "6.6.7"
-					}
-				},
-				"@angular-devkit/core": {
-					"version": "15.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.6.tgz",
-					"integrity": "sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==",
-					"dev": true,
-					"requires": {
-						"ajv": "8.12.0",
-						"ajv-formats": "2.1.1",
-						"jsonc-parser": "3.2.0",
-						"rxjs": "6.6.7",
-						"source-map": "0.7.4"
-					}
-				},
-				"@angular-devkit/schematics": {
-					"version": "15.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-15.1.6.tgz",
-					"integrity": "sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==",
-					"dev": true,
-					"requires": {
-						"@angular-devkit/core": "15.1.6",
-						"jsonc-parser": "3.2.0",
-						"magic-string": "0.27.0",
-						"ora": "5.4.1",
-						"rxjs": "6.6.7"
-					}
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"dev": true,
-					"requires": {
-						"tslib": "^1.9.0"
-					}
-				},
-				"tslib": {
-					"version": "1.14.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-					"dev": true
-				}
+				"yargs": "17.7.2"
 			}
 		},
 		"@angular/common": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/common/-/common-15.1.4.tgz",
-			"integrity": "sha512-E2klptW9CbXDAYZEL988RQ0XWQPf8obr6p+/+j2zy8kn14VJgsjn/27S9M8sX76nfXOaA6vQSbofZycTU7IiFQ==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/common/-/common-16.2.11.tgz",
+			"integrity": "sha512-h80WUR2OYlqxQy+4XgNtWT2vB+vZ6oCrFX/q8cU5jAvbvGQfJuH0zfcbSlUflStmAhk5/OT25F0mt96cqapEAw==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/compiler": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/compiler/-/compiler-15.1.4.tgz",
-			"integrity": "sha512-b2jH336pl647IKgMYzsmJ/2Qpw6JqlP/OeCsOnAJ55LIQa37w+bnuTpdPh4pk8qV9h735rV9NXNO5t3pQFOo3Q==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/compiler/-/compiler-16.2.11.tgz",
+			"integrity": "sha512-9q/E3uurvoQbdTTWDyWCLpzmfJ4+et7SUca1/EljD/X7Xg2FNU5GpTMutBtWFL7wDyWk1oswivuq9/C4GVW7fA==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/compiler-cli": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/compiler-cli/-/compiler-cli-15.1.4.tgz",
-			"integrity": "sha512-FupMkr69YLZcjvPa7Y79ua6VvbzNroPUTDexEpqYkmnyKK8fNSHwTEOCz4IQbUeOxaZkRP5pHAI87foZigNPCA==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/compiler-cli/-/compiler-cli-16.2.11.tgz",
+			"integrity": "sha512-ZtZCXfkVBH78HUm2Byf+WX3Y6WzQK9EXYXNU/ni1rvSZ1vLNwieLDfWb/xwiO7QojrHZTym1RJ10jTMinTguqw==",
 			"dev": true,
 			"requires": {
-				"@babel/core": "7.19.3",
+				"@babel/core": "7.23.2",
 				"@jridgewell/sourcemap-codec": "^1.4.14",
 				"chokidar": "^3.0.0",
 				"convert-source-map": "^1.5.1",
-				"dependency-graph": "^0.11.0",
-				"magic-string": "^0.27.0",
 				"reflect-metadata": "^0.1.2",
 				"semver": "^7.0.0",
 				"tslib": "^2.3.0",
 				"yargs": "^17.2.1"
-			},
-			"dependencies": {
-				"@babel/core": {
-					"version": "7.19.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/core/-/core-7.19.3.tgz",
-					"integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==",
-					"dev": true,
-					"requires": {
-						"@ampproject/remapping": "^2.1.0",
-						"@babel/code-frame": "^7.18.6",
-						"@babel/generator": "^7.19.3",
-						"@babel/helper-compilation-targets": "^7.19.3",
-						"@babel/helper-module-transforms": "^7.19.0",
-						"@babel/helpers": "^7.19.0",
-						"@babel/parser": "^7.19.3",
-						"@babel/template": "^7.18.10",
-						"@babel/traverse": "^7.19.3",
-						"@babel/types": "^7.19.3",
-						"convert-source-map": "^1.7.0",
-						"debug": "^4.1.0",
-						"gensync": "^1.0.0-beta.2",
-						"json5": "^2.2.1",
-						"semver": "^6.3.0"
-					},
-					"dependencies": {
-						"semver": {
-							"version": "6.3.0",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-							"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-							"dev": true
-						}
-					}
-				}
 			}
 		},
 		"@angular/core": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/core/-/core-15.1.4.tgz",
-			"integrity": "sha512-eWXtL4pe/pG4klehsm1URpgF4gnUjFpCXzHJ0Shp5HwLszoflZMbzdoRTSyOG5iMxDhsk0wwnHTfG+j4NTJN3A==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/core/-/core-16.2.11.tgz",
+			"integrity": "sha512-Jb+7/p1vczQRQ3iC1QxUS5cE4X1hPVAvbrFnyMpSx6Pq5o274v/lK6PvhUZrfKrp9FxFp9pN+WHjUqNFqOuJZg==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/forms": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/forms/-/forms-15.1.4.tgz",
-			"integrity": "sha512-gUBenRZS4gTevA3AJdpCVIuMeWU++OTqj6Rd8bv+x42W/RoOSVVcb3bInVECJFedAhx6P2/TWFGV1sVGwW+3sg==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/forms/-/forms-16.2.11.tgz",
+			"integrity": "sha512-2powweUorehB1opfev6/sUeb3Bdey+Txq4gjI1Qdeo9c9OgtaKu6wK0KXgoism8HXXRFcGHMfS0dUVoDPVrtiQ==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/language-service": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/language-service/-/language-service-15.1.4.tgz",
-			"integrity": "sha512-ulI2Z4f77iA/WYQ8HCEcognoWv8grltVf2JEzGxVtJapEnkGyWsuhBT1XuvytOsfurHI1gKYe6WT0Qi1xE/KVA==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/language-service/-/language-service-16.2.11.tgz",
+			"integrity": "sha512-rzZcqeBvgByu27gZk/f0K1VuwIYbScOG3sJYyWXBdSMmjqnl3ARwEEI/zyQT7I6uU6I9SwmoJhy44pQlrDDD7g==",
 			"dev": true
 		},
 		"@angular/material": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/material/-/material-15.1.4.tgz",
-			"integrity": "sha512-mepKRVzO3v4BxGkzkwO1PZjWTdLDbqkydmmiEYkzPOUk9I3tElzjYlybB0xuY6A5CIdXU9Mdc+AaUZWng2yN/g==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/auto-init": "15.0.0-canary.684e33d25.0",
-				"@material/banner": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/card": "15.0.0-canary.684e33d25.0",
-				"@material/checkbox": "15.0.0-canary.684e33d25.0",
-				"@material/chips": "15.0.0-canary.684e33d25.0",
-				"@material/circular-progress": "15.0.0-canary.684e33d25.0",
-				"@material/data-table": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dialog": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/drawer": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/fab": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/form-field": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/image-list": "15.0.0-canary.684e33d25.0",
-				"@material/layout-grid": "15.0.0-canary.684e33d25.0",
-				"@material/line-ripple": "15.0.0-canary.684e33d25.0",
-				"@material/linear-progress": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu": "15.0.0-canary.684e33d25.0",
-				"@material/menu-surface": "15.0.0-canary.684e33d25.0",
-				"@material/notched-outline": "15.0.0-canary.684e33d25.0",
-				"@material/radio": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/segmented-button": "15.0.0-canary.684e33d25.0",
-				"@material/select": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/slider": "15.0.0-canary.684e33d25.0",
-				"@material/snackbar": "15.0.0-canary.684e33d25.0",
-				"@material/switch": "15.0.0-canary.684e33d25.0",
-				"@material/tab": "15.0.0-canary.684e33d25.0",
-				"@material/tab-bar": "15.0.0-canary.684e33d25.0",
-				"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/tab-scroller": "15.0.0-canary.684e33d25.0",
-				"@material/textfield": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tooltip": "15.0.0-canary.684e33d25.0",
-				"@material/top-app-bar": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "16.2.10",
+			"resolved": "http://localhost:4873/@angular/material/-/material-16.2.10.tgz",
+			"integrity": "sha512-0XhMwbcxpEESL11mVO8ycwxa+Jlh+8egOSRleD30zFUesqBA5EhtRpH8cqtna03f/xxtRq00Q315igMIMNiOSg==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/auto-init": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/banner": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/card": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/chips": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/circular-progress": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/data-table": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dialog": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/drawer": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/fab": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/form-field": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/image-list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/layout-grid": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/linear-progress": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/radio": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/segmented-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/select": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/slider": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/snackbar": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/switch": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-bar": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-scroller": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/textfield": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tooltip": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/top-app-bar": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/material-date-fns-adapter": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/material-date-fns-adapter/-/material-date-fns-adapter-15.1.4.tgz",
-			"integrity": "sha512-60ue6ToOCHKHyTi98B2bKt39YO9UswdS8RgB5FlMT3S/6+9/7HzFqsfMcd9gECkfGxsw3YjvLz0BPzIjQ7xObQ==",
+			"version": "16.2.10",
+			"resolved": "http://localhost:4873/@angular/material-date-fns-adapter/-/material-date-fns-adapter-16.2.10.tgz",
+			"integrity": "sha512-1N6Dd/EePo7ag/+X651CBEwSfGnE/tbUESp063bOoIhmSH30q52DrJtN/q+ahmndxQ6O9MSsisNQlV1FNDaP7g==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/platform-browser": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/platform-browser/-/platform-browser-15.1.4.tgz",
-			"integrity": "sha512-PrRNVbnPY38eh0zVDoNlx2EDHe4AzQ4bhJv3Wsrm+IFgi0e4yet8FQuL6sj1JBjLztKuZsndG2M/fyRWIpYkMQ==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/platform-browser/-/platform-browser-16.2.11.tgz",
+			"integrity": "sha512-gUptbI3lbaRg+L8rcTlxKtFunYmR/M/mm9/l9uRd+5qk2mnFI0+s/tzRoaq7K0XaRGKZiWLNTz6FTkviO1zo2g==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/platform-browser-dynamic": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/platform-browser-dynamic/-/platform-browser-dynamic-15.1.4.tgz",
-			"integrity": "sha512-C1M5xqh57OQpQwFjGthIvqvBozhHBZtTbMFGn8zcbmkedm+oH++PsibRSHAKgsERvIIqQafxEr+9NM4En+CpFA==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.2.11.tgz",
+			"integrity": "sha512-e+A7z6MUJaqC4Fdq7XQfIhAox3ZPM1lczM6G08fUKPbFDEe+c9i7C8YRLL+69BXDuG790btugIeOQcn5lnJcFg==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@angular/router": {
-			"version": "15.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular/router/-/router-15.1.4.tgz",
-			"integrity": "sha512-umHlpz1JQjgMT9VffoKX3NZG/i+Ayb1PtSLmJjo4KRSANUudILRreW9NWLYihFBotO/sX78/m2p1IHZeuyh1jw==",
+			"version": "16.2.11",
+			"resolved": "http://localhost:4873/@angular/router/-/router-16.2.11.tgz",
+			"integrity": "sha512-QTssqJue+xQ8M1gzmfJcIHPIpPOijVwGnXQjt7cnFggNe/CedOckLEzk2j7/6aC1b5aQKuZePPw6XMvk8ciilQ==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
 		},
 		"@assemblyscript/loader": {
 			"version": "0.10.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@assemblyscript/loader/-/loader-0.10.1.tgz",
+			"resolved": "http://localhost:4873/@assemblyscript/loader/-/loader-0.10.1.tgz",
 			"integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==",
 			"dev": true
 		},
 		"@babel/code-frame": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/code-frame/-/code-frame-7.21.4.tgz",
-			"integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+			"version": "7.22.13",
+			"resolved": "http://localhost:4873/@babel/code-frame/-/code-frame-7.22.13.tgz",
+			"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
 			"requires": {
-				"@babel/highlight": "^7.18.6"
+				"@babel/highlight": "^7.22.13",
+				"chalk": "^2.4.2"
 			}
 		},
 		"@babel/compat-data": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/compat-data/-/compat-data-7.21.4.tgz",
-			"integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g=="
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/compat-data/-/compat-data-7.23.2.tgz",
+			"integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ=="
 		},
 		"@babel/core": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/core/-/core-7.21.4.tgz",
-			"integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/core/-/core-7.23.2.tgz",
+			"integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==",
 			"requires": {
 				"@ampproject/remapping": "^2.2.0",
-				"@babel/code-frame": "^7.21.4",
-				"@babel/generator": "^7.21.4",
-				"@babel/helper-compilation-targets": "^7.21.4",
-				"@babel/helper-module-transforms": "^7.21.2",
-				"@babel/helpers": "^7.21.0",
-				"@babel/parser": "^7.21.4",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.21.4",
-				"@babel/types": "^7.21.4",
-				"convert-source-map": "^1.7.0",
+				"@babel/code-frame": "^7.22.13",
+				"@babel/generator": "^7.23.0",
+				"@babel/helper-compilation-targets": "^7.22.15",
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helpers": "^7.23.2",
+				"@babel/parser": "^7.23.0",
+				"@babel/template": "^7.22.15",
+				"@babel/traverse": "^7.23.2",
+				"@babel/types": "^7.23.0",
+				"convert-source-map": "^2.0.0",
 				"debug": "^4.1.0",
 				"gensync": "^1.0.0-beta.2",
-				"json5": "^2.2.2",
-				"semver": "^6.3.0"
+				"json5": "^2.2.3",
+				"semver": "^6.3.1"
 			},
 			"dependencies": {
 				"@babel/generator": {
-					"version": "7.21.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/generator/-/generator-7.21.4.tgz",
-					"integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==",
+					"version": "7.23.0",
+					"resolved": "http://localhost:4873/@babel/generator/-/generator-7.23.0.tgz",
+					"integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
 					"requires": {
-						"@babel/types": "^7.21.4",
+						"@babel/types": "^7.23.0",
 						"@jridgewell/gen-mapping": "^0.3.2",
 						"@jridgewell/trace-mapping": "^0.3.17",
 						"jsesc": "^2.5.1"
 					}
 				},
-				"@jridgewell/gen-mapping": {
-					"version": "0.3.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-					"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
+				"@babel/template": {
+					"version": "7.22.15",
+					"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+					"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
 					"requires": {
-						"@jridgewell/set-array": "^1.0.1",
-						"@jridgewell/sourcemap-codec": "^1.4.10",
-						"@jridgewell/trace-mapping": "^0.3.9"
+						"@babel/code-frame": "^7.22.13",
+						"@babel/parser": "^7.22.15",
+						"@babel/types": "^7.22.15"
 					}
 				},
+				"convert-source-map": {
+					"version": "2.0.0",
+					"resolved": "http://localhost:4873/convert-source-map/-/convert-source-map-2.0.0.tgz",
+					"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+				},
 				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 				}
 			}
 		},
 		"@babel/generator": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/generator/-/generator-7.20.7.tgz",
-			"integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==",
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/generator/-/generator-7.22.9.tgz",
+			"integrity": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==",
 			"requires": {
-				"@babel/types": "^7.20.7",
+				"@babel/types": "^7.22.5",
 				"@jridgewell/gen-mapping": "^0.3.2",
+				"@jridgewell/trace-mapping": "^0.3.17",
 				"jsesc": "^2.5.1"
-			},
-			"dependencies": {
-				"@jridgewell/gen-mapping": {
-					"version": "0.3.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-					"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-					"requires": {
-						"@jridgewell/set-array": "^1.0.1",
-						"@jridgewell/sourcemap-codec": "^1.4.10",
-						"@jridgewell/trace-mapping": "^0.3.9"
-					}
-				}
 			}
 		},
 		"@babel/helper-annotate-as-pure": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
-			"integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz",
+			"integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==",
 			"requires": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/helper-builder-binary-assignment-operator-visitor": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz",
-			"integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz",
+			"integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==",
 			"requires": {
-				"@babel/helper-explode-assignable-expression": "^7.18.6",
-				"@babel/types": "^7.18.9"
+				"@babel/types": "^7.22.15"
 			}
 		},
 		"@babel/helper-compilation-targets": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz",
-			"integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz",
+			"integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==",
 			"requires": {
-				"@babel/compat-data": "^7.21.4",
-				"@babel/helper-validator-option": "^7.21.0",
-				"browserslist": "^4.21.3",
+				"@babel/compat-data": "^7.22.9",
+				"@babel/helper-validator-option": "^7.22.15",
+				"browserslist": "^4.21.9",
 				"lru-cache": "^5.1.1",
-				"semver": "^6.3.0"
+				"semver": "^6.3.1"
 			},
 			"dependencies": {
 				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 				}
 			}
 		},
 		"@babel/helper-create-class-features-plugin": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz",
-			"integrity": "sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz",
+			"integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==",
 			"requires": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-function-name": "^7.21.0",
-				"@babel/helper-member-expression-to-functions": "^7.21.0",
-				"@babel/helper-optimise-call-expression": "^7.18.6",
-				"@babel/helper-replace-supers": "^7.20.7",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
-				"@babel/helper-split-export-declaration": "^7.18.6"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-environment-visitor": "^7.22.5",
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/helper-member-expression-to-functions": "^7.22.15",
+				"@babel/helper-optimise-call-expression": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.9",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"semver": "^6.3.1"
+			},
+			"dependencies": {
+				"semver": {
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
+				}
 			}
 		},
 		"@babel/helper-create-regexp-features-plugin": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz",
-			"integrity": "sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz",
+			"integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==",
 			"requires": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"regexpu-core": "^5.3.1"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"regexpu-core": "^5.3.1",
+				"semver": "^6.3.1"
+			},
+			"dependencies": {
+				"semver": {
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
+				}
 			}
 		},
 		"@babel/helper-define-polyfill-provider": {
-			"version": "0.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
-			"integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
+			"version": "0.4.3",
+			"resolved": "http://localhost:4873/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz",
+			"integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==",
 			"requires": {
-				"@babel/helper-compilation-targets": "^7.17.7",
-				"@babel/helper-plugin-utils": "^7.16.7",
+				"@babel/helper-compilation-targets": "^7.22.6",
+				"@babel/helper-plugin-utils": "^7.22.5",
 				"debug": "^4.1.1",
 				"lodash.debounce": "^4.0.8",
-				"resolve": "^1.14.2",
-				"semver": "^6.1.2"
-			},
-			"dependencies": {
-				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
-				}
+				"resolve": "^1.14.2"
 			}
 		},
 		"@babel/helper-environment-visitor": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
-			"integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
-		},
-		"@babel/helper-explode-assignable-expression": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz",
-			"integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==",
-			"requires": {
-				"@babel/types": "^7.18.6"
-			}
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+			"integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
 		},
 		"@babel/helper-function-name": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
-			"integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+			"integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
 			"requires": {
-				"@babel/template": "^7.20.7",
-				"@babel/types": "^7.21.0"
+				"@babel/template": "^7.22.15",
+				"@babel/types": "^7.23.0"
+			},
+			"dependencies": {
+				"@babel/template": {
+					"version": "7.22.15",
+					"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+					"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
+					"requires": {
+						"@babel/code-frame": "^7.22.13",
+						"@babel/parser": "^7.22.15",
+						"@babel/types": "^7.22.15"
+					}
+				}
 			}
 		},
 		"@babel/helper-hoist-variables": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
-			"integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
+			"integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
 			"requires": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/helper-member-expression-to-functions": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz",
-			"integrity": "sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz",
+			"integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==",
 			"requires": {
-				"@babel/types": "^7.21.0"
+				"@babel/types": "^7.23.0"
 			}
 		},
 		"@babel/helper-module-imports": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
-			"integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
+			"integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
 			"requires": {
-				"@babel/types": "^7.21.4"
+				"@babel/types": "^7.22.15"
 			}
 		},
 		"@babel/helper-module-transforms": {
-			"version": "7.21.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz",
-			"integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz",
+			"integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==",
 			"requires": {
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-module-imports": "^7.18.6",
-				"@babel/helper-simple-access": "^7.20.2",
-				"@babel/helper-split-export-declaration": "^7.18.6",
-				"@babel/helper-validator-identifier": "^7.19.1",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.21.2",
-				"@babel/types": "^7.21.2"
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-module-imports": "^7.22.15",
+				"@babel/helper-simple-access": "^7.22.5",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"@babel/helper-validator-identifier": "^7.22.20"
 			}
 		},
 		"@babel/helper-optimise-call-expression": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
-			"integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz",
+			"integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==",
 			"requires": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/helper-plugin-utils": {
-			"version": "7.20.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz",
-			"integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ=="
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz",
+			"integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
 		},
 		"@babel/helper-remap-async-to-generator": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
-			"integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz",
+			"integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==",
 			"requires": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-wrap-function": "^7.18.9",
-				"@babel/types": "^7.18.9"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-wrap-function": "^7.22.20"
 			}
 		},
 		"@babel/helper-replace-supers": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz",
-			"integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz",
+			"integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==",
 			"requires": {
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-member-expression-to-functions": "^7.20.7",
-				"@babel/helper-optimise-call-expression": "^7.18.6",
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.20.7",
-				"@babel/types": "^7.20.7"
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-member-expression-to-functions": "^7.22.15",
+				"@babel/helper-optimise-call-expression": "^7.22.5"
 			}
 		},
 		"@babel/helper-simple-access": {
-			"version": "7.20.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz",
-			"integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
+			"integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
 			"requires": {
-				"@babel/types": "^7.20.2"
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/helper-skip-transparent-expression-wrappers": {
-			"version": "7.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
-			"integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz",
+			"integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==",
 			"requires": {
-				"@babel/types": "^7.20.0"
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/helper-split-export-declaration": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
-			"integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
+			"version": "7.22.6",
+			"resolved": "http://localhost:4873/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
+			"integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
 			"requires": {
-				"@babel/types": "^7.18.6"
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/helper-string-parser": {
-			"version": "7.19.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
-			"integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
+			"integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="
 		},
 		"@babel/helper-validator-identifier": {
-			"version": "7.19.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
-			"integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+			"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
 		},
 		"@babel/helper-validator-option": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
-			"integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ=="
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz",
+			"integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA=="
 		},
 		"@babel/helper-wrap-function": {
-			"version": "7.20.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
-			"integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz",
+			"integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==",
 			"requires": {
-				"@babel/helper-function-name": "^7.19.0",
-				"@babel/template": "^7.18.10",
-				"@babel/traverse": "^7.20.5",
-				"@babel/types": "^7.20.5"
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/template": "^7.22.15",
+				"@babel/types": "^7.22.19"
+			},
+			"dependencies": {
+				"@babel/template": {
+					"version": "7.22.15",
+					"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+					"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
+					"requires": {
+						"@babel/code-frame": "^7.22.13",
+						"@babel/parser": "^7.22.15",
+						"@babel/types": "^7.22.15"
+					}
+				}
 			}
 		},
 		"@babel/helpers": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/helpers/-/helpers-7.21.0.tgz",
-			"integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/helpers/-/helpers-7.23.2.tgz",
+			"integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==",
 			"requires": {
-				"@babel/template": "^7.20.7",
-				"@babel/traverse": "^7.21.0",
-				"@babel/types": "^7.21.0"
+				"@babel/template": "^7.22.15",
+				"@babel/traverse": "^7.23.2",
+				"@babel/types": "^7.23.0"
+			},
+			"dependencies": {
+				"@babel/template": {
+					"version": "7.22.15",
+					"resolved": "http://localhost:4873/@babel/template/-/template-7.22.15.tgz",
+					"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
+					"requires": {
+						"@babel/code-frame": "^7.22.13",
+						"@babel/parser": "^7.22.15",
+						"@babel/types": "^7.22.15"
+					}
+				}
 			}
 		},
 		"@babel/highlight": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/highlight/-/highlight-7.18.6.tgz",
-			"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
+			"version": "7.22.20",
+			"resolved": "http://localhost:4873/@babel/highlight/-/highlight-7.22.20.tgz",
+			"integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
 			"requires": {
-				"@babel/helper-validator-identifier": "^7.18.6",
-				"chalk": "^2.0.0",
+				"@babel/helper-validator-identifier": "^7.22.20",
+				"chalk": "^2.4.2",
 				"js-tokens": "^4.0.0"
 			}
 		},
 		"@babel/parser": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/parser/-/parser-7.21.4.tgz",
-			"integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw=="
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/parser/-/parser-7.23.0.tgz",
+			"integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw=="
 		},
 		"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
-			"integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz",
+			"integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
-			"integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz",
+			"integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
-				"@babel/plugin-proposal-optional-chaining": "^7.20.7"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+				"@babel/plugin-transform-optional-chaining": "^7.22.15"
 			}
 		},
 		"@babel/plugin-proposal-async-generator-functions": {
 			"version": "7.20.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
 			"integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
+			"dev": true,
 			"requires": {
 				"@babel/helper-environment-visitor": "^7.18.9",
 				"@babel/helper-plugin-utils": "^7.20.2",
@@ -32000,86 +29361,23 @@
 				"@babel/helper-plugin-utils": "^7.18.6"
 			}
 		},
-		"@babel/plugin-proposal-class-static-block": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
-			"integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
-			"requires": {
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-class-static-block": "^7.14.5"
-			}
-		},
 		"@babel/plugin-proposal-decorators": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz",
-			"integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==",
-			"requires": {
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-replace-supers": "^7.20.7",
-				"@babel/helper-split-export-declaration": "^7.18.6",
-				"@babel/plugin-syntax-decorators": "^7.21.0"
-			}
-		},
-		"@babel/plugin-proposal-dynamic-import": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
-			"integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-dynamic-import": "^7.8.3"
-			}
-		},
-		"@babel/plugin-proposal-export-namespace-from": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
-			"integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.9",
-				"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
-			}
-		},
-		"@babel/plugin-proposal-json-strings": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
-			"integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-json-strings": "^7.8.3"
-			}
-		},
-		"@babel/plugin-proposal-logical-assignment-operators": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
-			"integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.2.tgz",
+			"integrity": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
-			}
-		},
-		"@babel/plugin-proposal-nullish-coalescing-operator": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
-			"integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
-			}
-		},
-		"@babel/plugin-proposal-numeric-separator": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
-			"integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-numeric-separator": "^7.10.4"
+				"@babel/helper-create-class-features-plugin": "^7.22.15",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.20",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"@babel/plugin-syntax-decorators": "^7.22.10"
 			}
 		},
 		"@babel/plugin-proposal-object-rest-spread": {
 			"version": "7.20.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
 			"integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
+			"dev": true,
 			"requires": {
 				"@babel/compat-data": "^7.20.5",
 				"@babel/helper-compilation-targets": "^7.20.7",
@@ -32088,44 +29386,10 @@
 				"@babel/plugin-transform-parameters": "^7.20.7"
 			}
 		},
-		"@babel/plugin-proposal-optional-catch-binding": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
-			"integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
-			}
-		},
-		"@babel/plugin-proposal-optional-chaining": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
-			"integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
-			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
-				"@babel/plugin-syntax-optional-chaining": "^7.8.3"
-			}
-		},
-		"@babel/plugin-proposal-private-methods": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
-			"integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
-			"requires": {
-				"@babel/helper-create-class-features-plugin": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
-			}
-		},
 		"@babel/plugin-proposal-private-property-in-object": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
-			"integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
-			"requires": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
-			}
+			"version": "7.21.0-placeholder-for-preset-env.2",
+			"resolved": "http://localhost:4873/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
+			"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="
 		},
 		"@babel/plugin-proposal-unicode-property-regex": {
 			"version": "7.18.6",
@@ -32146,7 +29410,7 @@
 		},
 		"@babel/plugin-syntax-bigint": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
 			"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.0"
@@ -32162,23 +29426,23 @@
 		},
 		"@babel/plugin-syntax-class-static-block": {
 			"version": "7.14.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
 			"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.14.5"
 			}
 		},
 		"@babel/plugin-syntax-decorators": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz",
-			"integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==",
+			"version": "7.22.10",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.10.tgz",
+			"integrity": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-syntax-dynamic-import": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
 			"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.0"
@@ -32186,23 +29450,31 @@
 		},
 		"@babel/plugin-syntax-export-namespace-from": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
 			"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.3"
 			}
 		},
 		"@babel/plugin-syntax-import-assertions": {
-			"version": "7.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
-			"integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz",
+			"integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.19.0"
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-syntax-import-attributes": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz",
+			"integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-syntax-import-meta": {
 			"version": "7.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
 			"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.10.4"
@@ -32210,23 +29482,23 @@
 		},
 		"@babel/plugin-syntax-json-strings": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
 			"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.0"
 			}
 		},
 		"@babel/plugin-syntax-jsx": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
-			"integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz",
+			"integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-syntax-logical-assignment-operators": {
 			"version": "7.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
 			"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.10.4"
@@ -32234,7 +29506,7 @@
 		},
 		"@babel/plugin-syntax-nullish-coalescing-operator": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
 			"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.0"
@@ -32242,7 +29514,7 @@
 		},
 		"@babel/plugin-syntax-numeric-separator": {
 			"version": "7.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
 			"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.10.4"
@@ -32258,7 +29530,7 @@
 		},
 		"@babel/plugin-syntax-optional-catch-binding": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
 			"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.0"
@@ -32266,7 +29538,7 @@
 		},
 		"@babel/plugin-syntax-optional-chaining": {
 			"version": "7.8.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
 			"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.8.0"
@@ -32274,7 +29546,7 @@
 		},
 		"@babel/plugin-syntax-private-property-in-object": {
 			"version": "7.14.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
 			"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.14.5"
@@ -32289,219 +29561,363 @@
 			}
 		},
 		"@babel/plugin-syntax-typescript": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz",
-			"integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz",
+			"integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-syntax-unicode-sets-regex": {
+			"version": "7.18.6",
+			"resolved": "http://localhost:4873/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
+			"integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-create-regexp-features-plugin": "^7.18.6",
+				"@babel/helper-plugin-utils": "^7.18.6"
 			}
 		},
 		"@babel/plugin-transform-arrow-functions": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz",
-			"integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz",
+			"integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-async-generator-functions": {
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz",
+			"integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-remap-async-to-generator": "^7.22.20",
+				"@babel/plugin-syntax-async-generators": "^7.8.4"
 			}
 		},
 		"@babel/plugin-transform-async-to-generator": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
-			"integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz",
+			"integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==",
 			"requires": {
-				"@babel/helper-module-imports": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-remap-async-to-generator": "^7.18.9"
+				"@babel/helper-module-imports": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-remap-async-to-generator": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-block-scoped-functions": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
-			"integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz",
+			"integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-block-scoping": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
-			"integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz",
+			"integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
-		"@babel/plugin-transform-classes": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
-			"integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
+		"@babel/plugin-transform-class-properties": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz",
+			"integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==",
 			"requires": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-compilation-targets": "^7.20.7",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-function-name": "^7.21.0",
-				"@babel/helper-optimise-call-expression": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-replace-supers": "^7.20.7",
-				"@babel/helper-split-export-declaration": "^7.18.6",
+				"@babel/helper-create-class-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-class-static-block": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz",
+			"integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==",
+			"requires": {
+				"@babel/helper-create-class-features-plugin": "^7.22.11",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-class-static-block": "^7.14.5"
+			}
+		},
+		"@babel/plugin-transform-classes": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz",
+			"integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==",
+			"requires": {
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-compilation-targets": "^7.22.15",
+				"@babel/helper-environment-visitor": "^7.22.5",
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/helper-optimise-call-expression": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.9",
+				"@babel/helper-split-export-declaration": "^7.22.6",
 				"globals": "^11.1.0"
 			}
 		},
 		"@babel/plugin-transform-computed-properties": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz",
-			"integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz",
+			"integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/template": "^7.20.7"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/template": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-destructuring": {
-			"version": "7.21.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
-			"integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz",
+			"integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-dotall-regex": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
-			"integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz",
+			"integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==",
 			"requires": {
-				"@babel/helper-create-regexp-features-plugin": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-duplicate-keys": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
-			"integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz",
+			"integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-dynamic-import": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz",
+			"integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-dynamic-import": "^7.8.3"
 			}
 		},
 		"@babel/plugin-transform-exponentiation-operator": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
-			"integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz",
+			"integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==",
 			"requires": {
-				"@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-export-namespace-from": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz",
+			"integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
 			}
 		},
 		"@babel/plugin-transform-for-of": {
-			"version": "7.21.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz",
-			"integrity": "sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz",
+			"integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-function-name": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
-			"integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz",
+			"integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==",
+			"requires": {
+				"@babel/helper-compilation-targets": "^7.22.5",
+				"@babel/helper-function-name": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-json-strings": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz",
+			"integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==",
 			"requires": {
-				"@babel/helper-compilation-targets": "^7.18.9",
-				"@babel/helper-function-name": "^7.18.9",
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-json-strings": "^7.8.3"
 			}
 		},
 		"@babel/plugin-transform-literals": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
-			"integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz",
+			"integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-logical-assignment-operators": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz",
+			"integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
 			}
 		},
 		"@babel/plugin-transform-member-expression-literals": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
-			"integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz",
+			"integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-modules-amd": {
-			"version": "7.20.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
-			"integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz",
+			"integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==",
 			"requires": {
-				"@babel/helper-module-transforms": "^7.20.11",
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-modules-commonjs": {
-			"version": "7.21.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz",
-			"integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz",
+			"integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==",
 			"requires": {
-				"@babel/helper-module-transforms": "^7.21.2",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-simple-access": "^7.20.2"
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-simple-access": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-modules-systemjs": {
-			"version": "7.20.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
-			"integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz",
+			"integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==",
 			"requires": {
-				"@babel/helper-hoist-variables": "^7.18.6",
-				"@babel/helper-module-transforms": "^7.20.11",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-identifier": "^7.19.1"
+				"@babel/helper-hoist-variables": "^7.22.5",
+				"@babel/helper-module-transforms": "^7.23.0",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-validator-identifier": "^7.22.20"
 			}
 		},
 		"@babel/plugin-transform-modules-umd": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
-			"integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz",
+			"integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==",
 			"requires": {
-				"@babel/helper-module-transforms": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-module-transforms": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-named-capturing-groups-regex": {
-			"version": "7.20.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
-			"integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz",
+			"integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==",
 			"requires": {
-				"@babel/helper-create-regexp-features-plugin": "^7.20.5",
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-new-target": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
-			"integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz",
+			"integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-nullish-coalescing-operator": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz",
+			"integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+			}
+		},
+		"@babel/plugin-transform-numeric-separator": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz",
+			"integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-numeric-separator": "^7.10.4"
+			}
+		},
+		"@babel/plugin-transform-object-rest-spread": {
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz",
+			"integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==",
+			"requires": {
+				"@babel/compat-data": "^7.22.9",
+				"@babel/helper-compilation-targets": "^7.22.15",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+				"@babel/plugin-transform-parameters": "^7.22.15"
 			}
 		},
 		"@babel/plugin-transform-object-super": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
-			"integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz",
+			"integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6",
-				"@babel/helper-replace-supers": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-replace-supers": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-optional-catch-binding": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz",
+			"integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+			}
+		},
+		"@babel/plugin-transform-optional-chaining": {
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz",
+			"integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+				"@babel/plugin-syntax-optional-chaining": "^7.8.3"
 			}
 		},
 		"@babel/plugin-transform-parameters": {
-			"version": "7.21.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
-			"integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz",
+			"integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-private-methods": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz",
+			"integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==",
+			"requires": {
+				"@babel/helper-create-class-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-private-property-in-object": {
+			"version": "7.22.11",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz",
+			"integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-create-class-features-plugin": "^7.22.11",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
 			}
 		},
 		"@babel/plugin-transform-property-literals": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
-			"integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz",
+			"integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-react-display-name": {
@@ -32546,143 +29962,149 @@
 			}
 		},
 		"@babel/plugin-transform-regenerator": {
-			"version": "7.20.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz",
-			"integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==",
+			"version": "7.22.10",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz",
+			"integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"regenerator-transform": "^0.15.1"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"regenerator-transform": "^0.15.2"
 			}
 		},
 		"@babel/plugin-transform-reserved-words": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
-			"integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz",
+			"integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-runtime": {
-			"version": "7.19.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz",
-			"integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==",
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz",
+			"integrity": "sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==",
 			"requires": {
-				"@babel/helper-module-imports": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.19.0",
-				"babel-plugin-polyfill-corejs2": "^0.3.3",
-				"babel-plugin-polyfill-corejs3": "^0.6.0",
-				"babel-plugin-polyfill-regenerator": "^0.4.1",
-				"semver": "^6.3.0"
+				"@babel/helper-module-imports": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"babel-plugin-polyfill-corejs2": "^0.4.4",
+				"babel-plugin-polyfill-corejs3": "^0.8.2",
+				"babel-plugin-polyfill-regenerator": "^0.5.1",
+				"semver": "^6.3.1"
 			},
 			"dependencies": {
 				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 				}
 			}
 		},
 		"@babel/plugin-transform-shorthand-properties": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
-			"integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz",
+			"integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-spread": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
-			"integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz",
+			"integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-sticky-regex": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
-			"integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz",
+			"integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-template-literals": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
-			"integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz",
+			"integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-typeof-symbol": {
-			"version": "7.18.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
-			"integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz",
+			"integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-typescript": {
-			"version": "7.21.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz",
-			"integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==",
+			"version": "7.22.15",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz",
+			"integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==",
 			"requires": {
-				"@babel/helper-annotate-as-pure": "^7.18.6",
-				"@babel/helper-create-class-features-plugin": "^7.21.0",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/plugin-syntax-typescript": "^7.20.0"
+				"@babel/helper-annotate-as-pure": "^7.22.5",
+				"@babel/helper-create-class-features-plugin": "^7.22.15",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/plugin-syntax-typescript": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-unicode-escapes": {
-			"version": "7.18.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz",
-			"integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==",
+			"version": "7.22.10",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz",
+			"integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==",
+			"requires": {
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/plugin-transform-unicode-property-regex": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz",
+			"integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.18.9"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
 		"@babel/plugin-transform-unicode-regex": {
-			"version": "7.18.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
-			"integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz",
+			"integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==",
 			"requires": {
-				"@babel/helper-create-regexp-features-plugin": "^7.18.6",
-				"@babel/helper-plugin-utils": "^7.18.6"
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
 			}
 		},
-		"@babel/preset-env": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/preset-env/-/preset-env-7.21.4.tgz",
-			"integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==",
+		"@babel/plugin-transform-unicode-sets-regex": {
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz",
+			"integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==",
 			"requires": {
-				"@babel/compat-data": "^7.21.4",
-				"@babel/helper-compilation-targets": "^7.21.4",
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-option": "^7.21.0",
-				"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
-				"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
-				"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
-				"@babel/plugin-proposal-class-properties": "^7.18.6",
-				"@babel/plugin-proposal-class-static-block": "^7.21.0",
-				"@babel/plugin-proposal-dynamic-import": "^7.18.6",
-				"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
-				"@babel/plugin-proposal-json-strings": "^7.18.6",
-				"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
-				"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
-				"@babel/plugin-proposal-numeric-separator": "^7.18.6",
-				"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
-				"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
-				"@babel/plugin-proposal-optional-chaining": "^7.21.0",
-				"@babel/plugin-proposal-private-methods": "^7.18.6",
-				"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
-				"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
+				"@babel/helper-create-regexp-features-plugin": "^7.22.5",
+				"@babel/helper-plugin-utils": "^7.22.5"
+			}
+		},
+		"@babel/preset-env": {
+			"version": "7.22.9",
+			"resolved": "http://localhost:4873/@babel/preset-env/-/preset-env-7.22.9.tgz",
+			"integrity": "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==",
+			"requires": {
+				"@babel/compat-data": "^7.22.9",
+				"@babel/helper-compilation-targets": "^7.22.9",
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-validator-option": "^7.22.5",
+				"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5",
+				"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5",
+				"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
 				"@babel/plugin-syntax-async-generators": "^7.8.4",
 				"@babel/plugin-syntax-class-properties": "^7.12.13",
 				"@babel/plugin-syntax-class-static-block": "^7.14.5",
 				"@babel/plugin-syntax-dynamic-import": "^7.8.3",
 				"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-				"@babel/plugin-syntax-import-assertions": "^7.20.0",
+				"@babel/plugin-syntax-import-assertions": "^7.22.5",
+				"@babel/plugin-syntax-import-attributes": "^7.22.5",
+				"@babel/plugin-syntax-import-meta": "^7.10.4",
 				"@babel/plugin-syntax-json-strings": "^7.8.3",
 				"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
 				"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
@@ -32692,51 +30114,68 @@
 				"@babel/plugin-syntax-optional-chaining": "^7.8.3",
 				"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
 				"@babel/plugin-syntax-top-level-await": "^7.14.5",
-				"@babel/plugin-transform-arrow-functions": "^7.20.7",
-				"@babel/plugin-transform-async-to-generator": "^7.20.7",
-				"@babel/plugin-transform-block-scoped-functions": "^7.18.6",
-				"@babel/plugin-transform-block-scoping": "^7.21.0",
-				"@babel/plugin-transform-classes": "^7.21.0",
-				"@babel/plugin-transform-computed-properties": "^7.20.7",
-				"@babel/plugin-transform-destructuring": "^7.21.3",
-				"@babel/plugin-transform-dotall-regex": "^7.18.6",
-				"@babel/plugin-transform-duplicate-keys": "^7.18.9",
-				"@babel/plugin-transform-exponentiation-operator": "^7.18.6",
-				"@babel/plugin-transform-for-of": "^7.21.0",
-				"@babel/plugin-transform-function-name": "^7.18.9",
-				"@babel/plugin-transform-literals": "^7.18.9",
-				"@babel/plugin-transform-member-expression-literals": "^7.18.6",
-				"@babel/plugin-transform-modules-amd": "^7.20.11",
-				"@babel/plugin-transform-modules-commonjs": "^7.21.2",
-				"@babel/plugin-transform-modules-systemjs": "^7.20.11",
-				"@babel/plugin-transform-modules-umd": "^7.18.6",
-				"@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
-				"@babel/plugin-transform-new-target": "^7.18.6",
-				"@babel/plugin-transform-object-super": "^7.18.6",
-				"@babel/plugin-transform-parameters": "^7.21.3",
-				"@babel/plugin-transform-property-literals": "^7.18.6",
-				"@babel/plugin-transform-regenerator": "^7.20.5",
-				"@babel/plugin-transform-reserved-words": "^7.18.6",
-				"@babel/plugin-transform-shorthand-properties": "^7.18.6",
-				"@babel/plugin-transform-spread": "^7.20.7",
-				"@babel/plugin-transform-sticky-regex": "^7.18.6",
-				"@babel/plugin-transform-template-literals": "^7.18.9",
-				"@babel/plugin-transform-typeof-symbol": "^7.18.9",
-				"@babel/plugin-transform-unicode-escapes": "^7.18.10",
-				"@babel/plugin-transform-unicode-regex": "^7.18.6",
+				"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+				"@babel/plugin-transform-arrow-functions": "^7.22.5",
+				"@babel/plugin-transform-async-generator-functions": "^7.22.7",
+				"@babel/plugin-transform-async-to-generator": "^7.22.5",
+				"@babel/plugin-transform-block-scoped-functions": "^7.22.5",
+				"@babel/plugin-transform-block-scoping": "^7.22.5",
+				"@babel/plugin-transform-class-properties": "^7.22.5",
+				"@babel/plugin-transform-class-static-block": "^7.22.5",
+				"@babel/plugin-transform-classes": "^7.22.6",
+				"@babel/plugin-transform-computed-properties": "^7.22.5",
+				"@babel/plugin-transform-destructuring": "^7.22.5",
+				"@babel/plugin-transform-dotall-regex": "^7.22.5",
+				"@babel/plugin-transform-duplicate-keys": "^7.22.5",
+				"@babel/plugin-transform-dynamic-import": "^7.22.5",
+				"@babel/plugin-transform-exponentiation-operator": "^7.22.5",
+				"@babel/plugin-transform-export-namespace-from": "^7.22.5",
+				"@babel/plugin-transform-for-of": "^7.22.5",
+				"@babel/plugin-transform-function-name": "^7.22.5",
+				"@babel/plugin-transform-json-strings": "^7.22.5",
+				"@babel/plugin-transform-literals": "^7.22.5",
+				"@babel/plugin-transform-logical-assignment-operators": "^7.22.5",
+				"@babel/plugin-transform-member-expression-literals": "^7.22.5",
+				"@babel/plugin-transform-modules-amd": "^7.22.5",
+				"@babel/plugin-transform-modules-commonjs": "^7.22.5",
+				"@babel/plugin-transform-modules-systemjs": "^7.22.5",
+				"@babel/plugin-transform-modules-umd": "^7.22.5",
+				"@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
+				"@babel/plugin-transform-new-target": "^7.22.5",
+				"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5",
+				"@babel/plugin-transform-numeric-separator": "^7.22.5",
+				"@babel/plugin-transform-object-rest-spread": "^7.22.5",
+				"@babel/plugin-transform-object-super": "^7.22.5",
+				"@babel/plugin-transform-optional-catch-binding": "^7.22.5",
+				"@babel/plugin-transform-optional-chaining": "^7.22.6",
+				"@babel/plugin-transform-parameters": "^7.22.5",
+				"@babel/plugin-transform-private-methods": "^7.22.5",
+				"@babel/plugin-transform-private-property-in-object": "^7.22.5",
+				"@babel/plugin-transform-property-literals": "^7.22.5",
+				"@babel/plugin-transform-regenerator": "^7.22.5",
+				"@babel/plugin-transform-reserved-words": "^7.22.5",
+				"@babel/plugin-transform-shorthand-properties": "^7.22.5",
+				"@babel/plugin-transform-spread": "^7.22.5",
+				"@babel/plugin-transform-sticky-regex": "^7.22.5",
+				"@babel/plugin-transform-template-literals": "^7.22.5",
+				"@babel/plugin-transform-typeof-symbol": "^7.22.5",
+				"@babel/plugin-transform-unicode-escapes": "^7.22.5",
+				"@babel/plugin-transform-unicode-property-regex": "^7.22.5",
+				"@babel/plugin-transform-unicode-regex": "^7.22.5",
+				"@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
 				"@babel/preset-modules": "^0.1.5",
-				"@babel/types": "^7.21.4",
-				"babel-plugin-polyfill-corejs2": "^0.3.3",
-				"babel-plugin-polyfill-corejs3": "^0.6.0",
-				"babel-plugin-polyfill-regenerator": "^0.4.1",
-				"core-js-compat": "^3.25.1",
-				"semver": "^6.3.0"
+				"@babel/types": "^7.22.5",
+				"babel-plugin-polyfill-corejs2": "^0.4.4",
+				"babel-plugin-polyfill-corejs3": "^0.8.2",
+				"babel-plugin-polyfill-regenerator": "^0.5.1",
+				"core-js-compat": "^3.31.0",
+				"semver": "^6.3.1"
 			},
 			"dependencies": {
 				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 				}
 			}
 		},
@@ -32767,15 +30206,15 @@
 			}
 		},
 		"@babel/preset-typescript": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/preset-typescript/-/preset-typescript-7.21.4.tgz",
-			"integrity": "sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz",
+			"integrity": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==",
 			"requires": {
-				"@babel/helper-plugin-utils": "^7.20.2",
-				"@babel/helper-validator-option": "^7.21.0",
-				"@babel/plugin-syntax-jsx": "^7.21.4",
-				"@babel/plugin-transform-modules-commonjs": "^7.21.2",
-				"@babel/plugin-transform-typescript": "^7.21.3"
+				"@babel/helper-plugin-utils": "^7.22.5",
+				"@babel/helper-validator-option": "^7.22.15",
+				"@babel/plugin-syntax-jsx": "^7.22.5",
+				"@babel/plugin-transform-modules-commonjs": "^7.23.0",
+				"@babel/plugin-transform-typescript": "^7.22.15"
 			}
 		},
 		"@babel/regjsgen": {
@@ -32784,70 +30223,60 @@
 			"integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="
 		},
 		"@babel/runtime": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/runtime/-/runtime-7.20.7.tgz",
-			"integrity": "sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==",
+			"version": "7.22.6",
+			"resolved": "http://localhost:4873/@babel/runtime/-/runtime-7.22.6.tgz",
+			"integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==",
 			"requires": {
 				"regenerator-runtime": "^0.13.11"
 			}
 		},
 		"@babel/template": {
-			"version": "7.20.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/template/-/template-7.20.7.tgz",
-			"integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
+			"version": "7.22.5",
+			"resolved": "http://localhost:4873/@babel/template/-/template-7.22.5.tgz",
+			"integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==",
 			"requires": {
-				"@babel/code-frame": "^7.18.6",
-				"@babel/parser": "^7.20.7",
-				"@babel/types": "^7.20.7"
+				"@babel/code-frame": "^7.22.5",
+				"@babel/parser": "^7.22.5",
+				"@babel/types": "^7.22.5"
 			}
 		},
 		"@babel/traverse": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/traverse/-/traverse-7.21.4.tgz",
-			"integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==",
-			"requires": {
-				"@babel/code-frame": "^7.21.4",
-				"@babel/generator": "^7.21.4",
-				"@babel/helper-environment-visitor": "^7.18.9",
-				"@babel/helper-function-name": "^7.21.0",
-				"@babel/helper-hoist-variables": "^7.18.6",
-				"@babel/helper-split-export-declaration": "^7.18.6",
-				"@babel/parser": "^7.21.4",
-				"@babel/types": "^7.21.4",
+			"version": "7.23.2",
+			"resolved": "http://localhost:4873/@babel/traverse/-/traverse-7.23.2.tgz",
+			"integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==",
+			"requires": {
+				"@babel/code-frame": "^7.22.13",
+				"@babel/generator": "^7.23.0",
+				"@babel/helper-environment-visitor": "^7.22.20",
+				"@babel/helper-function-name": "^7.23.0",
+				"@babel/helper-hoist-variables": "^7.22.5",
+				"@babel/helper-split-export-declaration": "^7.22.6",
+				"@babel/parser": "^7.23.0",
+				"@babel/types": "^7.23.0",
 				"debug": "^4.1.0",
 				"globals": "^11.1.0"
 			},
 			"dependencies": {
 				"@babel/generator": {
-					"version": "7.21.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/generator/-/generator-7.21.4.tgz",
-					"integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==",
+					"version": "7.23.0",
+					"resolved": "http://localhost:4873/@babel/generator/-/generator-7.23.0.tgz",
+					"integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
 					"requires": {
-						"@babel/types": "^7.21.4",
+						"@babel/types": "^7.23.0",
 						"@jridgewell/gen-mapping": "^0.3.2",
 						"@jridgewell/trace-mapping": "^0.3.17",
 						"jsesc": "^2.5.1"
 					}
-				},
-				"@jridgewell/gen-mapping": {
-					"version": "0.3.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-					"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-					"requires": {
-						"@jridgewell/set-array": "^1.0.1",
-						"@jridgewell/sourcemap-codec": "^1.4.10",
-						"@jridgewell/trace-mapping": "^0.3.9"
-					}
 				}
 			}
 		},
 		"@babel/types": {
-			"version": "7.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@babel/types/-/types-7.21.4.tgz",
-			"integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==",
+			"version": "7.23.0",
+			"resolved": "http://localhost:4873/@babel/types/-/types-7.23.0.tgz",
+			"integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
 			"requires": {
-				"@babel/helper-string-parser": "^7.19.4",
-				"@babel/helper-validator-identifier": "^7.19.1",
+				"@babel/helper-string-parser": "^7.22.5",
+				"@babel/helper-validator-identifier": "^7.22.20",
 				"to-fast-properties": "^2.0.0"
 			}
 		},
@@ -32874,7 +30303,7 @@
 		},
 		"@bcoe/v8-coverage": {
 			"version": "0.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
+			"resolved": "http://localhost:4873/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
 			"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
 		},
 		"@colors/colors": {
@@ -32904,10 +30333,10 @@
 			}
 		},
 		"@cypress/request": {
-			"version": "2.88.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@cypress/request/-/request-2.88.12.tgz",
-			"integrity": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==",
-			"devOptional": true,
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/@cypress/request/-/request-3.0.1.tgz",
+			"integrity": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==",
+			"dev": true,
 			"requires": {
 				"aws-sign2": "~0.7.0",
 				"aws4": "^1.8.0",
@@ -32922,7 +30351,7 @@
 				"json-stringify-safe": "~5.0.1",
 				"mime-types": "~2.1.19",
 				"performance-now": "^2.1.0",
-				"qs": "~6.10.3",
+				"qs": "6.10.4",
 				"safe-buffer": "^5.1.2",
 				"tough-cookie": "^4.1.3",
 				"tunnel-agent": "^0.6.0",
@@ -33106,8 +30535,7 @@
 					"version": "3.5.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
 					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-					"dev": true,
-					"requires": {}
+					"dev": true
 				},
 				"babel-loader": {
 					"version": "8.3.0",
@@ -33691,7 +31119,7 @@
 			"version": "1.2.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@cypress/xvfb/-/xvfb-1.2.4.tgz",
 			"integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"debug": "^3.1.0",
 				"lodash.once": "^4.1.1"
@@ -33701,7 +31129,7 @@
 					"version": "3.2.7",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-3.2.7.tgz",
 					"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"ms": "^2.1.1"
 					}
@@ -33715,168 +31143,182 @@
 			"dev": true
 		},
 		"@esbuild/android-arm": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/android-arm/-/android-arm-0.16.17.tgz",
-			"integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/android-arm/-/android-arm-0.18.17.tgz",
+			"integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/android-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz",
-			"integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz",
+			"integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/android-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/android-x64/-/android-x64-0.16.17.tgz",
-			"integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/android-x64/-/android-x64-0.18.17.tgz",
+			"integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/darwin-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz",
-			"integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz",
+			"integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/darwin-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz",
-			"integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz",
+			"integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/freebsd-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz",
-			"integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz",
+			"integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/freebsd-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz",
-			"integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz",
+			"integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-arm": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz",
-			"integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz",
+			"integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz",
-			"integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz",
+			"integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-ia32": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz",
-			"integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz",
+			"integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-loong64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz",
-			"integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz",
+			"integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-mips64el": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz",
-			"integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz",
+			"integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-ppc64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz",
-			"integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz",
+			"integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-riscv64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz",
-			"integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz",
+			"integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-s390x": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz",
-			"integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz",
+			"integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/linux-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz",
-			"integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz",
+			"integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/netbsd-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz",
-			"integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz",
+			"integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/openbsd-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz",
-			"integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz",
+			"integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/sunos-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz",
-			"integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz",
+			"integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/win32-arm64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz",
-			"integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz",
+			"integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/win32-ia32": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz",
-			"integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz",
+			"integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==",
 			"dev": true,
 			"optional": true
 		},
 		"@esbuild/win32-x64": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz",
-			"integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz",
+			"integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==",
 			"dev": true,
 			"optional": true
 		},
+		"@eslint-community/eslint-utils": {
+			"version": "4.4.0",
+			"resolved": "http://localhost:4873/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
+			"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
+			"requires": {
+				"eslint-visitor-keys": "^3.3.0"
+			}
+		},
+		"@eslint-community/regexpp": {
+			"version": "4.10.0",
+			"resolved": "http://localhost:4873/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
+			"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
+			"dev": true
+		},
 		"@eslint/eslintrc": {
-			"version": "1.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
-			"integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
-			"devOptional": true,
+			"version": "2.1.2",
+			"resolved": "http://localhost:4873/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
+			"integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
+			"dev": true,
 			"requires": {
 				"ajv": "^6.12.4",
 				"debug": "^4.3.2",
-				"espree": "^9.4.0",
+				"espree": "^9.6.0",
 				"globals": "^13.19.0",
 				"ignore": "^5.2.0",
 				"import-fresh": "^3.2.1",
@@ -33887,9 +31329,9 @@
 			"dependencies": {
 				"ajv": {
 					"version": "6.12.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+					"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 					"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"fast-deep-equal": "^3.1.1",
 						"fast-json-stable-stringify": "^2.0.0",
@@ -33899,79 +31341,150 @@
 				},
 				"argparse": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/argparse/-/argparse-2.0.1.tgz",
+					"resolved": "http://localhost:4873/argparse/-/argparse-2.0.1.tgz",
 					"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-					"devOptional": true
+					"dev": true
 				},
 				"globals": {
-					"version": "13.20.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globals/-/globals-13.20.0.tgz",
-					"integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
-					"devOptional": true,
+					"version": "13.23.0",
+					"resolved": "http://localhost:4873/globals/-/globals-13.23.0.tgz",
+					"integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==",
+					"dev": true,
 					"requires": {
 						"type-fest": "^0.20.2"
 					}
 				},
 				"js-yaml": {
 					"version": "4.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-yaml/-/js-yaml-4.1.0.tgz",
+					"resolved": "http://localhost:4873/js-yaml/-/js-yaml-4.1.0.tgz",
 					"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"argparse": "^2.0.1"
 					}
 				},
 				"json-schema-traverse": {
 					"version": "0.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+					"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 					"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-					"devOptional": true
+					"dev": true
 				},
 				"minimatch": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"brace-expansion": "^1.1.7"
 					}
 				},
 				"type-fest": {
 					"version": "0.20.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-fest/-/type-fest-0.20.2.tgz",
+					"resolved": "http://localhost:4873/type-fest/-/type-fest-0.20.2.tgz",
 					"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
-					"devOptional": true
+					"dev": true
 				}
 			}
 		},
+		"@eslint/js": {
+			"version": "8.52.0",
+			"resolved": "http://localhost:4873/@eslint/js/-/js-8.52.0.tgz",
+			"integrity": "sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==",
+			"dev": true
+		},
 		"@faker-js/faker": {
 			"version": "6.3.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@faker-js/faker/-/faker-6.3.1.tgz",
 			"integrity": "sha512-8YXBE2ZcU/pImVOHX7MWrSR/X5up7t6rPWZlk34RwZEcdr3ua6X+32pSd6XuOQRN+vbuvYNfA6iey8NbrjuMFQ==",
 			"dev": true
 		},
-		"@gar/promisify": {
-			"version": "1.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@gar/promisify/-/promisify-1.1.3.tgz",
-			"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
-			"dev": true
-		},
 		"@humanwhocodes/config-array": {
-			"version": "0.9.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
-			"integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==",
-			"devOptional": true,
+			"version": "0.11.13",
+			"resolved": "http://localhost:4873/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
+			"integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==",
+			"dev": true,
 			"requires": {
-				"@humanwhocodes/object-schema": "^1.2.1",
+				"@humanwhocodes/object-schema": "^2.0.1",
 				"debug": "^4.1.1",
-				"minimatch": "^3.0.4"
+				"minimatch": "^3.0.5"
 			}
 		},
+		"@humanwhocodes/module-importer": {
+			"version": "1.0.1",
+			"resolved": "http://localhost:4873/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+			"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+			"dev": true
+		},
 		"@humanwhocodes/object-schema": {
-			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
-			"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
-			"devOptional": true
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz",
+			"integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==",
+			"dev": true
+		},
+		"@isaacs/cliui": {
+			"version": "8.0.2",
+			"resolved": "http://localhost:4873/@isaacs/cliui/-/cliui-8.0.2.tgz",
+			"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+			"dev": true,
+			"requires": {
+				"string-width": "^5.1.2",
+				"string-width-cjs": "npm:string-width@^4.2.0",
+				"strip-ansi": "^7.0.1",
+				"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+				"wrap-ansi": "^8.1.0",
+				"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+			},
+			"dependencies": {
+				"ansi-regex": {
+					"version": "6.0.1",
+					"resolved": "http://localhost:4873/ansi-regex/-/ansi-regex-6.0.1.tgz",
+					"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+					"dev": true
+				},
+				"ansi-styles": {
+					"version": "6.2.1",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-6.2.1.tgz",
+					"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+					"dev": true
+				},
+				"emoji-regex": {
+					"version": "9.2.2",
+					"resolved": "http://localhost:4873/emoji-regex/-/emoji-regex-9.2.2.tgz",
+					"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+					"dev": true
+				},
+				"string-width": {
+					"version": "5.1.2",
+					"resolved": "http://localhost:4873/string-width/-/string-width-5.1.2.tgz",
+					"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+					"dev": true,
+					"requires": {
+						"eastasianwidth": "^0.2.0",
+						"emoji-regex": "^9.2.2",
+						"strip-ansi": "^7.0.1"
+					}
+				},
+				"strip-ansi": {
+					"version": "7.1.0",
+					"resolved": "http://localhost:4873/strip-ansi/-/strip-ansi-7.1.0.tgz",
+					"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+					"dev": true,
+					"requires": {
+						"ansi-regex": "^6.0.1"
+					}
+				},
+				"wrap-ansi": {
+					"version": "8.1.0",
+					"resolved": "http://localhost:4873/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+					"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+					"dev": true,
+					"requires": {
+						"ansi-styles": "^6.1.0",
+						"string-width": "^5.0.1",
+						"strip-ansi": "^7.0.1"
+					}
+				}
+			}
 		},
 		"@istanbuljs/load-nyc-config": {
 			"version": "1.1.0",
@@ -33991,21 +31504,21 @@
 			"integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
 		},
 		"@jest/console": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/console/-/console-28.1.3.tgz",
-			"integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/console/-/console-29.7.0.tgz",
+			"integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
 			"requires": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"slash": "^3.0.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -34013,7 +31526,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -34022,7 +31535,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -34030,30 +31543,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -34062,90 +31562,44 @@
 			}
 		},
 		"@jest/core": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/core/-/core-28.1.3.tgz",
-			"integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/core/-/core-29.7.0.tgz",
+			"integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
 			"dev": true,
 			"requires": {
-				"@jest/console": "^28.1.3",
-				"@jest/reporters": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/console": "^29.7.0",
+				"@jest/reporters": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"ansi-escapes": "^4.2.1",
 				"chalk": "^4.0.0",
 				"ci-info": "^3.2.0",
 				"exit": "^0.1.2",
 				"graceful-fs": "^4.2.9",
-				"jest-changed-files": "^28.1.3",
-				"jest-config": "^28.1.3",
-				"jest-haste-map": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.3",
-				"jest-resolve-dependencies": "^28.1.3",
-				"jest-runner": "^28.1.3",
-				"jest-runtime": "^28.1.3",
-				"jest-snapshot": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"jest-watcher": "^28.1.3",
+				"jest-changed-files": "^29.7.0",
+				"jest-config": "^29.7.0",
+				"jest-haste-map": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-regex-util": "^29.6.3",
+				"jest-resolve": "^29.7.0",
+				"jest-resolve-dependencies": "^29.7.0",
+				"jest-runner": "^29.7.0",
+				"jest-runtime": "^29.7.0",
+				"jest-snapshot": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
+				"jest-watcher": "^29.7.0",
 				"micromatch": "^4.0.4",
-				"pretty-format": "^28.1.3",
-				"rimraf": "^3.0.0",
+				"pretty-format": "^29.7.0",
 				"slash": "^3.0.0",
 				"strip-ansi": "^6.0.0"
 			},
 			"dependencies": {
-				"@jest/reporters": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/reporters/-/reporters-28.1.3.tgz",
-					"integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==",
-					"dev": true,
-					"requires": {
-						"@bcoe/v8-coverage": "^0.2.3",
-						"@jest/console": "^28.1.3",
-						"@jest/test-result": "^28.1.3",
-						"@jest/transform": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@jridgewell/trace-mapping": "^0.3.13",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"collect-v8-coverage": "^1.0.0",
-						"exit": "^0.1.2",
-						"glob": "^7.1.3",
-						"graceful-fs": "^4.2.9",
-						"istanbul-lib-coverage": "^3.0.0",
-						"istanbul-lib-instrument": "^5.1.0",
-						"istanbul-lib-report": "^3.0.0",
-						"istanbul-lib-source-maps": "^4.0.0",
-						"istanbul-reports": "^3.1.3",
-						"jest-message-util": "^28.1.3",
-						"jest-util": "^28.1.3",
-						"jest-worker": "^28.1.3",
-						"slash": "^3.0.0",
-						"string-length": "^4.0.1",
-						"strip-ansi": "^6.0.0",
-						"terminal-link": "^2.0.0",
-						"v8-to-istanbul": "^9.0.1"
-					}
-				},
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"dev": true,
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"dev": true,
 					"requires": {
@@ -34154,7 +31608,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"dev": true,
 					"requires": {
@@ -34164,7 +31618,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"dev": true,
 					"requires": {
@@ -34173,103 +31627,19 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
 					"dev": true
 				},
-				"glob": {
-					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
-					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-					"dev": true,
-					"requires": {
-						"fs.realpath": "^1.0.0",
-						"inflight": "^1.0.4",
-						"inherits": "2",
-						"minimatch": "^3.1.1",
-						"once": "^1.3.0",
-						"path-is-absolute": "^1.0.0"
-					}
-				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 					"dev": true
 				},
-				"jest-config": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-config/-/jest-config-28.1.3.tgz",
-					"integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==",
-					"dev": true,
-					"requires": {
-						"@babel/core": "^7.11.6",
-						"@jest/test-sequencer": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"babel-jest": "^28.1.3",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"deepmerge": "^4.2.2",
-						"glob": "^7.1.3",
-						"graceful-fs": "^4.2.9",
-						"jest-circus": "^28.1.3",
-						"jest-environment-node": "^28.1.3",
-						"jest-get-type": "^28.0.2",
-						"jest-regex-util": "^28.0.2",
-						"jest-resolve": "^28.1.3",
-						"jest-runner": "^28.1.3",
-						"jest-util": "^28.1.3",
-						"jest-validate": "^28.1.3",
-						"micromatch": "^4.0.4",
-						"parse-json": "^5.2.0",
-						"pretty-format": "^28.1.3",
-						"slash": "^3.0.0",
-						"strip-json-comments": "^3.1.1"
-					}
-				},
-				"jest-resolve": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-					"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-					"dev": true,
-					"requires": {
-						"chalk": "^4.0.0",
-						"graceful-fs": "^4.2.9",
-						"jest-haste-map": "^28.1.3",
-						"jest-pnp-resolver": "^1.2.2",
-						"jest-util": "^28.1.3",
-						"jest-validate": "^28.1.3",
-						"resolve": "^1.20.0",
-						"resolve.exports": "^1.1.0",
-						"slash": "^3.0.0"
-					}
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"dev": true,
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
-				"minimatch": {
-					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
-					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-					"dev": true,
-					"requires": {
-						"brace-expansion": "^1.1.7"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"dev": true,
 					"requires": {
@@ -34279,125 +31649,68 @@
 			}
 		},
 		"@jest/environment": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/environment/-/environment-28.1.3.tgz",
-			"integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/environment/-/environment-29.7.0.tgz",
+			"integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==",
 			"requires": {
-				"@jest/fake-timers": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/fake-timers": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
-				"jest-mock": "^28.1.3"
+				"jest-mock": "^29.7.0"
 			}
 		},
 		"@jest/expect": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/expect/-/expect-28.1.3.tgz",
-			"integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/expect/-/expect-29.7.0.tgz",
+			"integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
 			"requires": {
-				"expect": "^28.1.3",
-				"jest-snapshot": "^28.1.3"
+				"expect": "^29.7.0",
+				"jest-snapshot": "^29.7.0"
 			}
 		},
 		"@jest/expect-utils": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/expect-utils/-/expect-utils-28.1.3.tgz",
-			"integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/expect-utils/-/expect-utils-29.7.0.tgz",
+			"integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==",
 			"requires": {
-				"jest-get-type": "^28.0.2"
+				"jest-get-type": "^29.6.3"
 			}
 		},
 		"@jest/fake-timers": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/fake-timers/-/fake-timers-28.1.3.tgz",
-			"integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/fake-timers/-/fake-timers-29.7.0.tgz",
+			"integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==",
 			"requires": {
-				"@jest/types": "^28.1.3",
-				"@sinonjs/fake-timers": "^9.1.2",
+				"@jest/types": "^29.6.3",
+				"@sinonjs/fake-timers": "^10.0.2",
 				"@types/node": "*",
-				"jest-message-util": "^28.1.3",
-				"jest-mock": "^28.1.3",
-				"jest-util": "^28.1.3"
-			},
-			"dependencies": {
-				"ansi-styles": {
-					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"requires": {
-						"color-convert": "^2.0.1"
-					}
-				},
-				"chalk": {
-					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-					"requires": {
-						"ansi-styles": "^4.1.0",
-						"supports-color": "^7.1.0"
-					}
-				},
-				"color-convert": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"requires": {
-						"color-name": "~1.1.4"
-					}
-				},
-				"color-name": {
-					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
-				},
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
-				"supports-color": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-					"requires": {
-						"has-flag": "^4.0.0"
-					}
-				}
+				"jest-message-util": "^29.7.0",
+				"jest-mock": "^29.7.0",
+				"jest-util": "^29.7.0"
 			}
 		},
 		"@jest/globals": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/globals/-/globals-28.1.3.tgz",
-			"integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/globals/-/globals-29.7.0.tgz",
+			"integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
 			"requires": {
-				"@jest/environment": "^28.1.3",
-				"@jest/expect": "^28.1.3",
-				"@jest/types": "^28.1.3"
+				"@jest/environment": "^29.7.0",
+				"@jest/expect": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"jest-mock": "^29.7.0"
 			}
 		},
 		"@jest/reporters": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/reporters/-/reporters-28.1.1.tgz",
-			"integrity": "sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/reporters/-/reporters-29.7.0.tgz",
+			"integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
 			"requires": {
 				"@bcoe/v8-coverage": "^0.2.3",
-				"@jest/console": "^28.1.1",
-				"@jest/test-result": "^28.1.1",
-				"@jest/transform": "^28.1.1",
-				"@jest/types": "^28.1.1",
-				"@jridgewell/trace-mapping": "^0.3.7",
+				"@jest/console": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"@jridgewell/trace-mapping": "^0.3.18",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"collect-v8-coverage": "^1.0.0",
@@ -34405,23 +31718,22 @@
 				"glob": "^7.1.3",
 				"graceful-fs": "^4.2.9",
 				"istanbul-lib-coverage": "^3.0.0",
-				"istanbul-lib-instrument": "^5.1.0",
+				"istanbul-lib-instrument": "^6.0.0",
 				"istanbul-lib-report": "^3.0.0",
 				"istanbul-lib-source-maps": "^4.0.0",
 				"istanbul-reports": "^3.1.3",
-				"jest-message-util": "^28.1.1",
-				"jest-util": "^28.1.1",
-				"jest-worker": "^28.1.1",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-worker": "^29.7.0",
 				"slash": "^3.0.0",
 				"string-length": "^4.0.1",
 				"strip-ansi": "^6.0.0",
-				"terminal-link": "^2.0.0",
-				"v8-to-istanbul": "^9.0.0"
+				"v8-to-istanbul": "^9.0.1"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -34429,7 +31741,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -34438,7 +31750,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -34446,12 +31758,12 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"glob": {
 					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+					"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
 					"requires": {
 						"fs.realpath": "^1.0.0",
@@ -34464,12 +31776,24 @@
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
+				"istanbul-lib-instrument": {
+					"version": "6.0.1",
+					"resolved": "http://localhost:4873/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz",
+					"integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==",
+					"requires": {
+						"@babel/core": "^7.12.3",
+						"@babel/parser": "^7.14.7",
+						"@istanbuljs/schema": "^0.1.2",
+						"istanbul-lib-coverage": "^3.2.0",
+						"semver": "^7.5.4"
+					}
+				},
 				"minimatch": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
 					"requires": {
 						"brace-expansion": "^1.1.7"
@@ -34477,7 +31801,7 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -34486,83 +31810,70 @@
 			}
 		},
 		"@jest/schemas": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/schemas/-/schemas-28.1.3.tgz",
-			"integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/@jest/schemas/-/schemas-29.6.3.tgz",
+			"integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
 			"requires": {
-				"@sinclair/typebox": "^0.24.1"
+				"@sinclair/typebox": "^0.27.8"
 			}
 		},
 		"@jest/source-map": {
-			"version": "28.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/source-map/-/source-map-28.1.2.tgz",
-			"integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/@jest/source-map/-/source-map-29.6.3.tgz",
+			"integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
 			"requires": {
-				"@jridgewell/trace-mapping": "^0.3.13",
+				"@jridgewell/trace-mapping": "^0.3.18",
 				"callsites": "^3.0.0",
 				"graceful-fs": "^4.2.9"
 			}
 		},
 		"@jest/test-result": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.1.tgz",
-			"integrity": "sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/test-result/-/test-result-29.7.0.tgz",
+			"integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
 			"requires": {
-				"@jest/console": "^28.1.1",
-				"@jest/types": "^28.1.1",
+				"@jest/console": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/istanbul-lib-coverage": "^2.0.0",
 				"collect-v8-coverage": "^1.0.0"
 			}
 		},
 		"@jest/test-sequencer": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz",
-			"integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
+			"integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
 			"requires": {
-				"@jest/test-result": "^28.1.3",
+				"@jest/test-result": "^29.7.0",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
+				"jest-haste-map": "^29.7.0",
 				"slash": "^3.0.0"
-			},
-			"dependencies": {
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				}
 			}
 		},
 		"@jest/transform": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/transform/-/transform-28.1.3.tgz",
-			"integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/@jest/transform/-/transform-29.7.0.tgz",
+			"integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
 			"requires": {
 				"@babel/core": "^7.11.6",
-				"@jest/types": "^28.1.3",
-				"@jridgewell/trace-mapping": "^0.3.13",
+				"@jest/types": "^29.6.3",
+				"@jridgewell/trace-mapping": "^0.3.18",
 				"babel-plugin-istanbul": "^6.1.1",
 				"chalk": "^4.0.0",
-				"convert-source-map": "^1.4.0",
-				"fast-json-stable-stringify": "^2.0.0",
+				"convert-source-map": "^2.0.0",
+				"fast-json-stable-stringify": "^2.1.0",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-regex-util": "^28.0.2",
-				"jest-util": "^28.1.3",
+				"jest-haste-map": "^29.7.0",
+				"jest-regex-util": "^29.6.3",
+				"jest-util": "^29.7.0",
 				"micromatch": "^4.0.4",
 				"pirates": "^4.0.4",
 				"slash": "^3.0.0",
-				"write-file-atomic": "^4.0.1"
+				"write-file-atomic": "^4.0.2"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -34570,7 +31881,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -34579,7 +31890,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -34587,30 +31898,22 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
+				"convert-source-map": {
+					"version": "2.0.0",
+					"resolved": "http://localhost:4873/convert-source-map/-/convert-source-map-2.0.0.tgz",
+					"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -34619,11 +31922,11 @@
 			}
 		},
 		"@jest/types": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/types/-/types-28.1.3.tgz",
-			"integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/@jest/types/-/types-29.6.3.tgz",
+			"integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
 			"requires": {
-				"@jest/schemas": "^28.1.3",
+				"@jest/schemas": "^29.6.3",
 				"@types/istanbul-lib-coverage": "^2.0.0",
 				"@types/istanbul-reports": "^3.0.0",
 				"@types/node": "*",
@@ -34633,7 +31936,7 @@
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -34641,7 +31944,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -34650,7 +31953,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -34658,17 +31961,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -34677,12 +31980,13 @@
 			}
 		},
 		"@jridgewell/gen-mapping": {
-			"version": "0.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
-			"integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
+			"version": "0.3.3",
+			"resolved": "http://localhost:4873/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
+			"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
 			"requires": {
-				"@jridgewell/set-array": "^1.0.0",
-				"@jridgewell/sourcemap-codec": "^1.4.10"
+				"@jridgewell/set-array": "^1.0.1",
+				"@jridgewell/sourcemap-codec": "^1.4.10",
+				"@jridgewell/trace-mapping": "^0.3.9"
 			}
 		},
 		"@jridgewell/resolve-uri": {
@@ -34692,862 +31996,849 @@
 		},
 		"@jridgewell/set-array": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/set-array/-/set-array-1.1.2.tgz",
+			"resolved": "http://localhost:4873/@jridgewell/set-array/-/set-array-1.1.2.tgz",
 			"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
 		},
 		"@jridgewell/source-map": {
-			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/source-map/-/source-map-0.3.2.tgz",
-			"integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
+			"version": "0.3.5",
+			"resolved": "http://localhost:4873/@jridgewell/source-map/-/source-map-0.3.5.tgz",
+			"integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
 			"requires": {
 				"@jridgewell/gen-mapping": "^0.3.0",
 				"@jridgewell/trace-mapping": "^0.3.9"
-			},
-			"dependencies": {
-				"@jridgewell/gen-mapping": {
-					"version": "0.3.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
-					"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
-					"requires": {
-						"@jridgewell/set-array": "^1.0.1",
-						"@jridgewell/sourcemap-codec": "^1.4.10",
-						"@jridgewell/trace-mapping": "^0.3.9"
-					}
-				}
 			}
 		},
 		"@jridgewell/sourcemap-codec": {
-			"version": "1.4.14",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
-			"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
+			"version": "1.4.15",
+			"resolved": "http://localhost:4873/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
+			"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
 		},
 		"@jridgewell/trace-mapping": {
-			"version": "0.3.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
-			"integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
+			"version": "0.3.20",
+			"resolved": "http://localhost:4873/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz",
+			"integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==",
 			"requires": {
-				"@jridgewell/resolve-uri": "3.1.0",
-				"@jridgewell/sourcemap-codec": "1.4.14"
+				"@jridgewell/resolve-uri": "^3.1.0",
+				"@jridgewell/sourcemap-codec": "^1.4.14"
 			}
 		},
 		"@leichtgewicht/ip-codec": {
 			"version": "2.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
+			"resolved": "http://localhost:4873/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
 			"integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="
 		},
 		"@material/animation": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/animation/-/animation-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-5osi1z4JQIXcklPALbH/zTfOm2pDzHt9Fxm7ZyURy250xIZj6QjULRzPTnzOhC2ropfix9ra2Cfggbf0dcRbEQ==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/animation/-/animation-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-leRf+BcZTfC/iSigLXnYgcHAGvFVQveoJT5+2PIRdyPI/bIG7hhciRgacHRsCKC0sGya81dDblLgdkjSUemYLw==",
 			"requires": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/auto-init": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/auto-init/-/auto-init-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-OigQTmrVzkcGvxNjOaIe5oItTFPgrO9xLewvharDI6m6yvO1z7OBnkcW+sFN6ggLNYNxd0O1u9v64vMsmeDABQ==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/auto-init/-/auto-init-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-uxzDq7q3c0Bu1pAsMugc1Ik9ftQYQqZY+5e2ybNplT8gTImJhNt4M2mMiMHbMANk2l3UgICmUyRSomgPBWCPIA==",
 			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/banner": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/banner/-/banner-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-PqtGp3KWzdu58rWv/DIvSfe38m5YKOBbAAbBinSvgadBb/da+IE1t5F7YPNKE1T5lJsQBGVUYx6QBIeXm+aI/A==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/banner/-/banner-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-SHeVoidCUFVhXANN6MNWxK9SZoTSgpIP8GZB7kAl52BywLxtV+FirTtLXkg/8RUkxZRyRWl7HvQ0ZFZa7QQAyA==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/base": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/base/-/base-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-oOaqb/SfjWwTKsdJUZmeh/Qrs41nIJI0N+zELsxnvbGjSIN1ZMAKYZFPMahqvC68OJ6+5CvJM8PoTNs5l+B8IQ==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/base/-/base-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Fc3vGuOf+duGo22HTRP6dHdc+MUe0VqQfWOuKrn/wXKD62m0QQR2TqJd3rRhCumH557T5QUyheW943M3E+IGfg==",
 			"requires": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/button": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/button/-/button-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-Nkekk4edeX+ObVOa7UlwavaHdmckPV5wU4SAJf3iA3R61cmz+KsgAgpzfcwv5WfNhIlc2nLu8QYEecpHdo9d/w==",
-			"requires": {
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/button/-/button-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-3AQgwrPZCTWHDJvwgKq7Cj+BurQ4wTjDdGL+FEnIGUAjJDskwi1yzx5tW2Wf/NxIi7IoPFyOY3UB41jwMiOrnw==",
+			"requires": {
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/card": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/card/-/card-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-xhyB7XX5KkEiCEqwSPkl58ZGYL6xFdnY62zimyBXJRG/Eaa0Swj3kW20hVCpt4f7c9Zmp8Se27rg8vnKmhvO3g==",
-			"requires": {
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/card/-/card-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-nPlhiWvbLmooTnBmV5gmzB0eLWSgLKsSRBYAbIBmO76Okgz1y+fQNLag+lpm/TDaHVsn5fmQJH8e0zIg0rYsQA==",
+			"requires": {
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/checkbox": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/checkbox/-/checkbox-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-NFpM3TS924PmVsk2KQLNU95OYCf8ZwYgzeqfnAexU0bEfjUJXINBun2Go0AaeOUMjuvWUe+byjrXgv8SFYbMUA==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/checkbox/-/checkbox-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-4tpNnO1L0IppoMF3oeQn8F17t2n0WHB0D7mdJK9rhrujen/fLbekkIC82APB3fdGtLGg3qeNqDqPsJm1YnmrwA==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/chips": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/chips/-/chips-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-z4ajQ4NnsAQ/Si9tZ4xmxzjj2Qb+vW++4QjCjjjwAGIZbCe0xglAnMh2t66XLJUxt7RoKZuZVEO7ZqcFZpvJFQ==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/checkbox": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/chips/-/chips-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-fqHKvE5bSWK0bXVkf57MWxZtytGqYBZvvHIOs4JI9HPHEhaJy4CpSw562BEtbm3yFxxALoQknvPW2KYzvADnmA==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"safevalues": "^0.3.4",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/circular-progress": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/circular-progress/-/circular-progress-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-G6qD0nGNtEUwWnAMJuA9INYFpZoKtx7KFjBaPF4Ol2YLHtmShALNAYyn54TMAK8AZ2IpW08PXjGS7Ye88vrdEQ==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/progress-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/circular-progress/-/circular-progress-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Lxe8BGAxQwCQqrLhrYrIP0Uok10h7aYS3RBXP41ph+5GmwJd5zdyE2t93qm2dyThvU6qKuXw9726Dtq/N+wvZQ==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/progress-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/data-table": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/data-table/-/data-table-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-+wDw1DDDFfAsKAMzs84f/5GCjux39zjNfW8tL4wFbkWNwewmQrG9zaQMJhBpVOtLCrM8Gj6SOgOANqgqoCjvGg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/checkbox": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/linear-progress": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/select": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/data-table/-/data-table-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-j/7qplT9+sUpfe4pyWhPbl01qJA+OoNAG3VMJruBBR461ZBKyTi7ssKH9yksFGZ8eCEPkOsk/+kDxsiZvRWkeQ==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/linear-progress": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/select": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/density": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/density/-/density-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-661yEVRMGrlq6S6WuSbPRO+ZwpdUOg2glCc7y96doM6itSLOa3UEAldjOLfsYZVB74GnKCiuDp//QmfoRyYTfA==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/density/-/density-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Zt3u07fXrBWLW06Tl5fgvjicxNQMkFdawLyNTzZ5TvbXfVkErILLePwwGaw8LNcvzqJP6ABLA8jiR+sKNoJQCg==",
 			"requires": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/dialog": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/dialog/-/dialog-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-szn0dHnfeQTSOC6SSRSGAzX6Tnx+4NnSMUwNkXm+3bwjds8ZVK26+DXwLrP5f3ID5F1K5sFsRf2INo5/TNTHyQ==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/dialog/-/dialog-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-o+9a/fmwJ9+gY3Z/uhj/PMVJDq7it1NTWKJn2GwAKdB+fDkT4hb9qEdcxMPyvJJ5ups+XiKZo03+tZrD+38c1w==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/dom": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/dom/-/dom-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-7pEJLYov+tGgfuD8mZxoVU6rWtPI8ppjTAhz+F27Hz9FG0JETMWTKpDPBXLnKvX7vhIxL83GvZ9geNHCe8Hfog==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/dom/-/dom-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-ly78R7aoCJtundSUu0UROU+5pQD5Piae0Y1MkN6bs0724azeazX1KeXFeaf06JOXnlr5/41ol+fSUPowjoqnOg==",
 			"requires": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/drawer": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/drawer/-/drawer-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-/KMckLf1PYU/H3PXnS4e0aFl03qG3JlSv4LGgX6juJufcONqGTl/m63EMO/L/eUy6H1CRrXmVDjik/jzHLyDhg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/drawer/-/drawer-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-PFL4cEFnt7VTxDsuspFVNhsFDYyumjU0VWfj3PWB7XudsEfQ3lo85D3HCEtTTbRsCainGN8bgYNDNafLBqiigw==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/elevation": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/elevation/-/elevation-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-WDF8SsRtq3rXUbVVbd9K4DUijIPH0bUFSOreVYxudpuxAfTlDS5+aeS1EK9UIBFYLuba4u5wVT2tDv6e1RTfrQ==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/elevation/-/elevation-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Ro+Pk8jFuap+T0B0shA3xI1hs2b89dNQ2EIPCNjNMp87emHKAzJfhKb7EZGIwv3+gFLlVaLyIVkb94I89KLsyg==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/fab": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/fab/-/fab-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-KCu87rWOKEAe9vZcAm6K8XazYSWPNjMG+OhrbPjHW6bCO7as1YCgtmkBkhff7csY/rFmcVpIy884xtUfLmSudQ==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/fab/-/fab-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-dvU0KWMRglwJEQwmQtFAmJcAjzg9VFF6Aqj78bJYu/DAIGFJ1VTTTSgoXM/XCm1YyQEZ7kZRvxBO37CH54rSDg==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/feature-targeting": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/feature-targeting/-/feature-targeting-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-HyH1erNTSjS63sigNSUMaCd0nJhTNdDFeC+myrxwtDaQm+uYJ8troCNtQM3g6mx0XATNtX5aTOoPmrM6yVVi1A==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/feature-targeting/-/feature-targeting-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-wkDjVcoVEYYaJvun28IXdln/foLgPD7n9ZC9TY76GErGCwTq+HWpU6wBAAk+ePmpRFDayw4vI4wBlaWGxLtysQ==",
 			"requires": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/floating-label": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/floating-label/-/floating-label-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-f7TPp6bKpGvV3sYYiZHSGlrixXKkXXITW3Esp7KB9jRq42c0H82novmdwvY0eTef4ootmA2JEysr78KQfHBUPg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/floating-label/-/floating-label-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-bUWPtXzZITOD/2mkvLkEPO1ngDWmb74y0Kgbz6llHLOQBtycyJIpuoQJ1q2Ez0NM/tFLwPphhAgRqmL3YQ/Kzw==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/focus-ring": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/focus-ring/-/focus-ring-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-ikw2RVUfgzXChpWIzPH1VzRvTjYb5ZKj4H+CZf7jqPUXMstFOZg90Bp7ARLZHqYiyNMuUq3zUTHozS6iHorSqg==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/focus-ring/-/focus-ring-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-cZHThVose3GvAlJzpJoBI1iqL6d1/Jj9hXrR+r8Mwtb1hBIUEG3hxfsRd4vGREuzROPlf0OgNf/V+YHoSwgR5w==",
 			"requires": {
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0"
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0"
 			}
 		},
 		"@material/form-field": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/form-field/-/form-field-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-vpF9N/uq5no/7+8GAbEH0868FhOuBgxAWRr1Sfb+jthKfBr8OS/wPU/AHzZHdHdAm7PQynbeOXfDsX2dI//PDA==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/form-field/-/form-field-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-+JFXy5X44Gue1CbZZAQ6YejnI203lebYwL0i6k0ylDpWHEOdD5xkF2PyHR28r9/65Ebcbwbff6q7kI1SGoT7MA==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/icon-button": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/icon-button/-/icon-button-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-wMI+XGzmIN/o2ePBKg2hLyx7H4pXCRAyyIKMQS1FMp1UKa2tYmiHVX/V8skhKwCqxg3i6Ls/LxMjfPxTR18WvQ==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/icon-button/-/icon-button-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-1a0MHgyIwOs4RzxrVljsqSizGYFlM1zY2AZaLDsgT4G3kzsplTx8HZQ022GpUCjAygW+WLvg4z1qAhQHvsbqlw==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/image-list": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/image-list/-/image-list-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-Ol+uaHYBe5R/cgzlfh5ONnMVX0wO6fV74JMUcQCQlxP6lXau/edARo4tkRc7A7UJUkU3VRv0EpEjLoCRNUPGaA==",
-			"requires": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/image-list/-/image-list-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-WKWmiYap2iu4QdqmeUSliLlN4O2Ueqa0OuVAYHn/TCzmQ2xmnhZ1pvDLbs6TplpOmlki7vFfe+aSt5SU9gwfOQ==",
+			"requires": {
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/layout-grid": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/layout-grid/-/layout-grid-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-ALXE1mqFNb/RB2lVRQ3/r1Aufw2mFZnOjRE+boYDVepmAG/xWyPCyaGoavELJF5l4GAb0tXi8wA/8HeGbLOpuA==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/layout-grid/-/layout-grid-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-5GqmT6oTZhUGWIb+CLD0ZNyDyTiJsr/rm9oRIi3+vCujACwxFkON9tzBlZohdtFS16nuzUusthN6Jt9UrJcN6Q==",
 			"requires": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/line-ripple": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/line-ripple/-/line-ripple-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-7hRx8C/e9i0P6pgQpNOMfTwSS2r1fwEvBL72QDVGLtLuoKKwsjjgP6Z0Jat/GeHJe87u9LQvGBoD4upt+of/HA==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/line-ripple/-/line-ripple-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-8S30WXEuUdgDdBulzUDlPXD6qMzwCX9SxYb5mGDYLwl199cpSGdXHtGgEcCjokvnpLhdZhcT1Dsxeo1g2Evh5Q==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/linear-progress": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/linear-progress/-/linear-progress-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-iJclt7mKmcMk6pqD7ocXKfCWZhqBoODp7N593jYlxVpTJuEz2wiVAjZUDn/YGj/Uz3CRH+2YFfOiLr9pwWjhDg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/progress-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/linear-progress/-/linear-progress-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-6EJpjrz6aoH2/gXLg9iMe0yF2C42hpQyZoHpmcgTLKeci85ktDvJIjwup8tnk8ULQyFiGiIrhXw2v2RSsiFjvQ==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/progress-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/list": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/list/-/list-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-rQ+FCSdzmwTcT00IYE0uRV3CS4oGSccKFl9hkcF+aHFW61L7ORh/SCGUDPrEfQFrFkMn5f8qroVJjpUAMXBz4g==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/list/-/list-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-TQ1ppqiCMQj/P7bGD4edbIIv4goczZUoiUAaPq/feb1dflvrFMzYqJ7tQRRCyBL8nRhJoI2x99tk8Q2RXvlGUQ==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/menu": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/menu/-/menu-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-r7wzDLSGSI9629/mfpvsMzkVxpmV75kcD3IrW0Pcu6/Bv/1xi0EvjcUXzNJJoQlwN4Zj35Ymz/PCjZkIDIz68Q==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu-surface": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/menu/-/menu-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-IlAh61xzrzxXs38QZlt74UYt8J431zGznSzDtB1Fqs6YFNd11QPKoiRXn1J2Qu/lUxbFV7i8NBKMCKtia0n6/Q==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/menu-surface": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/menu-surface/-/menu-surface-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-RVO5GAYcfWPaKwxsF/NhUAmrYXQCQBKvRQW0TIlbmAJz6lcFeTs6YZqF3u1C7qrL3ZQGz+sur/7ywj6QU0oMow==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/menu-surface/-/menu-surface-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-dMtSPN+olTWE+08M5qe4ea1IZOhVryYqzK0Gyb2u1G75rSArUxCOB5rr6OC/ST3Mq3RS6zGuYo7srZt4534K9Q==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/notched-outline": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/notched-outline/-/notched-outline-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-9YHcBkvJLPVYzkHcWoTpBZAFrEd+j1hjhGxLhh0LuNrZe8VroUkZD1TTnUAPHRG3os6EqEWWaKb0RN+aPIF2yQ==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/notched-outline/-/notched-outline-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-WuurMg44xexkvLTBTnsO0A+qnzFjpcPdvgWBGstBepYozsvSF9zJGdb1x7Zv1MmqbpYh/Ohnuxtb/Y3jOh6irg==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/progress-indicator": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/progress-indicator/-/progress-indicator-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-c0icji4faeNWUoqGENGC7Hav0Puxh0RwXIDVizffaUxKIGbajpIp5+4Zop73fK/xFLGMB/npg7TbP+aCGjQ3fw==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/progress-indicator/-/progress-indicator-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-uOnsvqw5F2fkeTnTl4MrYzjI7KCLmmLyZaM0cgLNuLsWVlddQE+SGMl28tENx7DUK3HebWq0FxCP8f25LuDD+w==",
 			"requires": {
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/radio": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/radio/-/radio-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-U3Eh8sNUA8trDla1Bq8Bo02foxYvtoewaKeF8A8tAju81XZ4jRiftfOsOWZDZEHCVbbCB2QwvutvFlnay5n+Aw==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/radio/-/radio-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-ehzOK+U1IxQN+OQjgD2lsnf1t7t7RAwQzeO6Czkiuid29ookYbQynWuLWk7NW8H8ohl7lnmfqTP1xSNkkL/F0g==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/ripple": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/ripple/-/ripple-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-RyePu7SjIm/OuyyEieZ/gxiPYkNZOZHeid72WRcN9ofdlljj2pifcdPvcfZA+v/DMS33xo5GjG2L/Qj6ClWrKw==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/ripple/-/ripple-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-JfLW+g3GMVDv4cruQ19+HUxpKVdWCldFlIPw1UYezz2h3WTNDy05S3uP2zUdXzZ01C3dkBFviv4nqZ0GCT16MA==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/rtl": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/rtl/-/rtl-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-NqdJl8Ayupp1Th+vCNCpVQHbUFOuF7TCte9LD1norTIBUF/QizIxWby2W5uUEiPbnh5j9PmE1CJtfLwKun3pcw==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/rtl/-/rtl-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-SkKLNLFp5QtG7/JEFg9R92qq4MzTcZ5As6sWbH7rRg6ahTHoJEuqE+pOb9Vrtbj84k5gtX+vCYPvCILtSlr2uw==",
 			"requires": {
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/segmented-button": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/segmented-button/-/segmented-button-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-bEGgg8vgXNLyukyV8HRjFMuQ6t6nm5LQ4Pgm22um61Yc8qyi0BOqV41OR4SVdUrUqZxh1aVD+p+4NN03+LfQXw==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/touch-target": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/segmented-button/-/segmented-button-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-YDwkCWP9l5mIZJ7pZJZ2hMDxfBlIGVJ+deNzr8O+Z7/xC5LGXbl4R5aPtUVHygvXAXxpf5096ZD+dSXzYzvWlw==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/select": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/select/-/select-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-kf178/2TeEinTv0mgmSBcmmExQ2h7a7dtR1E3WuqQgisJ/R6+zVLMkC2CnfIyzxYX2vkuUTG0ue3Reh/6XiqSg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/line-ripple": "15.0.0-canary.684e33d25.0",
-				"@material/list": "15.0.0-canary.684e33d25.0",
-				"@material/menu": "15.0.0-canary.684e33d25.0",
-				"@material/menu-surface": "15.0.0-canary.684e33d25.0",
-				"@material/notched-outline": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/select/-/select-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-unfOWVf7T0sixVG+3k3RTuATfzqvCF6QAzA6J9rlCh/Tq4HuIBNDdV4z19IVu4zwmgWYxY0iSvqWUvdJJYwakQ==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/list": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/shape": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/shape/-/shape-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-aEelpaTFmpnCji3TUGP9bVCS/bRVjUmLTHBPZtuu1gOrUVVtJ6kYOg73dZNJF+XOoNL2yOX/LRcKwsop29tptA==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/shape/-/shape-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Dsvr771ZKC46ODzoixLdGwlLEQLfxfLrtnRojXABoZf5G3o9KtJU+J+5Ld5aa960OAsCzzANuaub4iR88b1guA==",
 			"requires": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/slider": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/slider/-/slider-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-WVyK+2pSNSZmj07M2K/a3TADoQ9FBCndfNC/vE7/wGIg4dddJJK5KvQ+yruf9R2cSzTL/S1sZ5WpyyeM8E9HTw==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/slider/-/slider-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-3AEu+7PwW4DSNLndue47dh2u7ga4hDJRYmuu7wnJCIWJBnLCkp6C92kNc4Rj5iQY2ftJio5aj1gqryluh5tlYg==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/snackbar": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/snackbar/-/snackbar-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-itO+DCkOannZzR1/cCHcqAm7ifhuFvXmDItNoA8qLEcAyJDJJRkhpwj3XQ01yuo9gBFcSctp7Txt7e+Hncm/Jg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/icon-button": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/snackbar/-/snackbar-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-TwwQSYxfGK6mc03/rdDamycND6o+1p61WNd7ElZv1F1CLxB4ihRjbCoH7Qo+oVDaP8CTpjeclka+24RLhQq0mA==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/switch": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/switch/-/switch-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-Jxi0gl92yvvZZsAPxvVHzXx2ga+T/djMow98jvEczmpUorWnAhgiCr9CsSSRoosahWyRB8NLZOxUQrACxvffjw==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/switch/-/switch-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-OjUjtT0kRz1ASAsOS+dNzwMwvsjmqy5edK57692qmrP6bL4GblFfBDoiNJ6t0AN4OaKcmL5Hy/xNrTdOZW7Qqw==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
 				"safevalues": "^0.3.4",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/tab": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab/-/tab-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-WQL3wj9syHNcfe8KbgGGUcA34M8C/xZ+n0Fkkh8Kk6puVwaU+xqUNihsxPY6YzKpmh4PZ4oJaBdiN8zvFT1zqQ==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/focus-ring": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab/-/tab-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-s/L9otAwn/pZwVQZBRQJmPqYeNbjoEbzbjMpDQf/VBG/6dJ+aP03ilIBEkqo8NVnCoChqcdtVCoDNRtbU+yp6w==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/focus-ring": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/tab-bar": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab-bar/-/tab-bar-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-SW/cMaDsIGGkM1ag3A7GJRlmr8eXmObWsvitQJzh6Azr5zzZtSI+GQygkMesAEE1gbpqOVN8d40rh3H7VVIAcA==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/tab": "15.0.0-canary.684e33d25.0",
-				"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
-				"@material/tab-scroller": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab-bar/-/tab-bar-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-Xmtq0wJGfu5k+zQeFeNsr4bUKv7L+feCmUp/gsapJ655LQKMXOUQZtSv9ZqWOfrCMy55hoF1CzGFV+oN3tyWWQ==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab-scroller": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/tab-indicator": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab-indicator/-/tab-indicator-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-kKICqSPqOlaf0lzaFFCmuOqPXJC+cK48Qmsc+m5o6fJhkmuZRCYpIwB2JeP+uZSOq/bTH+SrPtCtnVlgWg6ksA==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab-indicator/-/tab-indicator-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-despCJYi1GrDDq7F2hvLQkObHnSLZPPDxnOzU16zJ6FNYvIdszgfzn2HgAZ6pl5hLOexQ8cla6cAqjTDuaJBhQ==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/tab-scroller": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tab-scroller/-/tab-scroller-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-H6EU/TSiK/M2DyyORX5GEtXD9rKYxTMHC2VxsNWARPMFJGzgeW2ugYkFv+rKI1/c0bs0CJ4e+qFnOlBsQXZvyQ==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/tab": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tab-scroller/-/tab-scroller-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-QWHG/EWxirj4V9u2IHz+OSY9XCWrnNrPnNgEufxAJVUKV/A8ma1DYeFSQqxhX709R8wKGdycJksg0Flkl7Gq7w==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/textfield": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/textfield/-/textfield-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-OvgpDXjvpyJTtAWskO69IDybFvDNzr9w2PN/Fk7yFm+uNVupaWz1Ew8lZ4gGslaTNSVmh2XcsvmzxcLINSiiNg==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/density": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/floating-label": "15.0.0-canary.684e33d25.0",
-				"@material/line-ripple": "15.0.0-canary.684e33d25.0",
-				"@material/notched-outline": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/textfield/-/textfield-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-R3qRex9kCaZIAK8DuxPnVC42R0OaW7AB7fsFknDKeTeVQvRcbnV8E+iWSdqTiGdsi6QQHifX8idUrXw+O45zPw==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/density": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/theme": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/theme/-/theme-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-AZxaXXAvRKzAi20RlMxzt2U5UmkCWyv7DMWEBXsxtG5Tk54mi1HsbVUp3fxDPTlmL7Pq8p1/DESg/o7TgRCVlw==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/theme/-/theme-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-CpUwXGE0dbhxQ45Hu9r9wbJtO/MAlv5ER4tBHA9tp/K+SU+lDgurBE2touFMg5INmdfVNtdumxb0nPPLaNQcUg==",
 			"requires": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/tokens": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tokens/-/tokens-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-wVwbQOTCXDPKYPdHQHLr026y36MMFelID1CmbfRk6mSol4O8yE9U0fXcShfRDW8Qo5E3X31w9c2A6T3neJY7wQ==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tokens/-/tokens-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-nbEuGj05txWz6ZMUanpM47SaAD7soyjKILR+XwDell9Zg3bGhsnexCNXPEz2fD+YgomS+jM5XmIcaJJHg/H93Q==",
 			"requires": {
-				"@material/elevation": "15.0.0-canary.684e33d25.0"
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0"
 			}
 		},
 		"@material/tooltip": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/tooltip/-/tooltip-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-dtm26QjxyQdinc8btgz6yys07b7bUW4FZgNF2EBPeGrICrPg7jf+JEvDziz5g8VMaTBQLOQRSCGy0MKuRlOjLw==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/button": "15.0.0-canary.684e33d25.0",
-				"@material/dom": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/tokens": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/tooltip/-/tooltip-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-UzuXp0b9NuWuYLYpPguxrjbJnCmT/Cco8CkjI/6JajxaeA3o2XEBbQfRMTq8PTafuBjCHTc0b0mQY7rtxUp1Gg==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/button": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/tokens": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"safevalues": "^0.3.4",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/top-app-bar": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/top-app-bar/-/top-app-bar-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-1M+oupUxflfW7u81P1XlxoLZB8bLzwtpKofIfDNRbEsiKhlLTERJR3Yak3BGE9xakNMysAaBHlkb5MrN5bNPFw==",
-			"requires": {
-				"@material/animation": "15.0.0-canary.684e33d25.0",
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/elevation": "15.0.0-canary.684e33d25.0",
-				"@material/ripple": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/shape": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
-				"@material/typography": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/top-app-bar/-/top-app-bar-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-vJWjsvqtdSD5+yQ/9vgoBtBSCvPJ5uF/DVssv8Hdhgs1PYaAcODUi77kdi0+sy/TaWyOsTkQixqmwnFS16zesA==",
+			"requires": {
+				"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/touch-target": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/touch-target/-/touch-target-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-zdE69Slg8+T7sTn1OwqZ6H7WBYac9mxJ/JlJqfTqthzIjZRcCxBSYymQJcDHjsrPnUojOtr9U4Tpm5YZ96TEkQ==",
-			"requires": {
-				"@material/base": "15.0.0-canary.684e33d25.0",
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/rtl": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/touch-target/-/touch-target-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-AqYh9fjt+tv4ZE0C6MeYHblS2H+XwLbDl2mtyrK0DOEnCVQk5/l5ImKDfhrUdFWHvS4a5nBM4AA+sa7KaroLoA==",
+			"requires": {
+				"@material/base": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@material/typography": {
-			"version": "15.0.0-canary.684e33d25.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@material/typography/-/typography-15.0.0-canary.684e33d25.0.tgz",
-			"integrity": "sha512-aVnvgMwcfNa/K4wujzpKDIxjGl2hbkEL+m+OKDSQqWYjKcP9QrbzCXJruJBqxrBoPRHLbqo47k5f9uT8raSgjw==",
+			"version": "15.0.0-canary.bc9ae6c9c.0",
+			"resolved": "http://localhost:4873/@material/typography/-/typography-15.0.0-canary.bc9ae6c9c.0.tgz",
+			"integrity": "sha512-CKsG1zyv34AKPNyZC8olER2OdPII64iR2SzQjpqh1UUvmIFiMPk23LvQ1OnC5aCB14pOXzmVgvJt31r9eNdZ6Q==",
 			"requires": {
-				"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
-				"@material/theme": "15.0.0-canary.684e33d25.0",
+				"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
+				"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
 				"tslib": "^2.1.0"
 			}
 		},
 		"@ngrx/component-store": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/component-store/-/component-store-15.0.0.tgz",
-			"integrity": "sha512-j6Xdch4z54NCXYUKBAJYp2d3F7IObnqJ2dcsYqNhlXE5VUUtZPY1i75RJfMKuBCoSByRVnv1f/OkOxrPnvXp+g==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/component-store/-/component-store-16.0.1.tgz",
+			"integrity": "sha512-c52V2bHnKV1MRjA+270oEpRa9hTUD7xP8t1eElYzV0ISisILO8xfWB9/C6XOJtjkK6+j6tHQmtiIGK9gZyIh3g==",
 			"requires": {
 				"tslib": "^2.0.0"
 			}
 		},
 		"@ngrx/effects": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/effects/-/effects-15.0.0.tgz",
-			"integrity": "sha512-EfYmGYFF1bNLPCRPnfAZnppT47RPwpprZK6HSQQ1fvV0sA0FYKQilg93ictNhDv+0IhMBZJEbR/hBMYyi4rkBg==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/effects/-/effects-16.0.1.tgz",
+			"integrity": "sha512-hpmON8p7kT44jIiruLBy3raFkYhNzQ45was0puKPkGhv41VrAoo44UcEn4Aysdx5yHaJc/CMCtI/+emFIpqgGA==",
 			"requires": {
 				"tslib": "^2.0.0"
 			}
 		},
 		"@ngrx/entity": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/entity/-/entity-15.0.0.tgz",
-			"integrity": "sha512-hzturyYclwDazAVc9HzLcQw03uSql7HkwLJDMhivUIal27BDcALM0554szzhWW4M/pn43FWX9lAiW0s7zysD+w==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/entity/-/entity-16.0.1.tgz",
+			"integrity": "sha512-LUqcFnH9+Civwq5F3bQ5CIrev6NYG89q918kDnM2ETmhIm7penjLmSj5uR8C4Byl14MpXArKaQuHQeMWovewFQ==",
 			"requires": {
 				"tslib": "^2.0.0"
 			}
 		},
 		"@ngrx/router-store": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/router-store/-/router-store-15.0.0.tgz",
-			"integrity": "sha512-WBgT2uI/CejfYfdi3cjDsp9Q5UZTFnTcTGMTDFT8HujrCD75PxVw8ad9k2GMqp7j96qE13xi+8VRknQyUPx3HA==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/router-store/-/router-store-16.0.1.tgz",
+			"integrity": "sha512-2lqKK3d6g15VwBH09aIgTEKSGZ2CYcflpYyaHVja0GAg/iGPpc69P9fF76Z3GomsuMD2g8dCYYoFn6fbrqJp+Q==",
 			"requires": {
 				"tslib": "^2.0.0"
 			}
 		},
 		"@ngrx/schematics": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/schematics/-/schematics-15.0.0.tgz",
-			"integrity": "sha512-P34CBkJaMWTfcaxf7OHF1zH+qg7rY1re4tWk5LrZAFFI3LMv8hhM1peWQehENPrbNWudo6yMr8HIU7ygnpBWZQ==",
-			"dev": true,
-			"requires": {}
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/schematics/-/schematics-16.0.1.tgz",
+			"integrity": "sha512-NLRSQF6kjgVFi5/JVTFU6PuuMrQ4lL6SIK81ZPCFEIm3wZH0e4FcQhsKe0D/gqoENTunFquRR4PWr9tdbsa5pg==",
+			"dev": true
 		},
 		"@ngrx/store": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/store/-/store-15.0.0.tgz",
-			"integrity": "sha512-zGEK7pgL9X1M2d+tF5tJRjN9dUibfPnyAFcI0+375gBkUSU2gJxuphB0NoGPVJMtLFsW+5yI4+kjui7M6nsaYQ==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/store/-/store-16.0.1.tgz",
+			"integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==",
 			"requires": {
 				"tslib": "^2.0.0"
 			}
 		},
 		"@ngrx/store-devtools": {
-			"version": "15.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngrx/store-devtools/-/store-devtools-15.0.0.tgz",
-			"integrity": "sha512-qvMFjPR9joQWN7Z+zhP03TCb4aCVt2l0wuJkZfhwmeaE1f4d5ms8FuOJh1lNEZg7ZyEfVP+XQ737kl59hEQMUA==",
+			"version": "16.0.1",
+			"resolved": "http://localhost:4873/@ngrx/store-devtools/-/store-devtools-16.0.1.tgz",
+			"integrity": "sha512-fOk/etV2ldgPgy3BD7v0yK4ocsxNUx7iktjMOVSvfPY/eg6KsfUy0ObQ2/kJasan32wN9rADCVRD6PzLg1Zo8g==",
 			"dev": true,
 			"requires": {
 				"tslib": "^2.0.0"
 			}
 		},
 		"@ngtools/webpack": {
-			"version": "15.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@ngtools/webpack/-/webpack-15.1.5.tgz",
-			"integrity": "sha512-/rneUv2A7a473ID6vNMWVEq6ImgITYRmyAwcF4wsrUguRSbQzwuuxEDapakMJaYnb8ejoMahD/1lSKO6ZV1nig==",
-			"dev": true,
-			"requires": {}
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@ngtools/webpack/-/webpack-16.2.8.tgz",
+			"integrity": "sha512-GeblhLBwXe3qPYa4YHxbo0xujRl1FKkfIusU1mTIhkQBRtZY4Xgz4iMnPIEMJTU3XXGMkS+SCx34lqbwwMhR5A==",
+			"dev": true
 		},
 		"@ngxp/rest": {
 			"version": "8.0.0",
@@ -35582,7 +32873,7 @@
 		},
 		"@npmcli/fs": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/fs/-/fs-3.1.0.tgz",
+			"resolved": "http://localhost:4873/@npmcli/fs/-/fs-3.1.0.tgz",
 			"integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==",
 			"dev": true,
 			"requires": {
@@ -35590,9 +32881,9 @@
 			}
 		},
 		"@npmcli/git": {
-			"version": "4.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/git/-/git-4.0.4.tgz",
-			"integrity": "sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==",
+			"version": "4.1.0",
+			"resolved": "http://localhost:4873/@npmcli/git/-/git-4.1.0.tgz",
+			"integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==",
 			"dev": true,
 			"requires": {
 				"@npmcli/promise-spawn": "^6.0.0",
@@ -35607,14 +32898,14 @@
 			"dependencies": {
 				"lru-cache": {
 					"version": "7.18.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 					"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 					"dev": true
 				},
 				"which": {
-					"version": "3.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/which/-/which-3.0.0.tgz",
-					"integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==",
+					"version": "3.0.1",
+					"resolved": "http://localhost:4873/which/-/which-3.0.1.tgz",
+					"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
 					"dev": true,
 					"requires": {
 						"isexe": "^2.0.0"
@@ -35624,7 +32915,7 @@
 		},
 		"@npmcli/installed-package-contents": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz",
+			"resolved": "http://localhost:4873/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz",
 			"integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==",
 			"dev": true,
 			"requires": {
@@ -35632,25 +32923,15 @@
 				"npm-normalize-package-bin": "^3.0.0"
 			}
 		},
-		"@npmcli/move-file": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/move-file/-/move-file-2.0.1.tgz",
-			"integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==",
-			"dev": true,
-			"requires": {
-				"mkdirp": "^1.0.4",
-				"rimraf": "^3.0.2"
-			}
-		},
 		"@npmcli/node-gyp": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz",
+			"resolved": "http://localhost:4873/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz",
 			"integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==",
 			"dev": true
 		},
 		"@npmcli/promise-spawn": {
 			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
+			"resolved": "http://localhost:4873/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
 			"integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
 			"dev": true,
 			"requires": {
@@ -35658,9 +32939,9 @@
 			},
 			"dependencies": {
 				"which": {
-					"version": "3.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/which/-/which-3.0.0.tgz",
-					"integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==",
+					"version": "3.0.1",
+					"resolved": "http://localhost:4873/which/-/which-3.0.1.tgz",
+					"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
 					"dev": true,
 					"requires": {
 						"isexe": "^2.0.0"
@@ -35669,9 +32950,9 @@
 			}
 		},
 		"@npmcli/run-script": {
-			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/run-script/-/run-script-6.0.0.tgz",
-			"integrity": "sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==",
+			"version": "6.0.2",
+			"resolved": "http://localhost:4873/@npmcli/run-script/-/run-script-6.0.2.tgz",
+			"integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==",
 			"dev": true,
 			"requires": {
 				"@npmcli/node-gyp": "^3.0.0",
@@ -35682,9 +32963,9 @@
 			},
 			"dependencies": {
 				"which": {
-					"version": "3.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/which/-/which-3.0.0.tgz",
-					"integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==",
+					"version": "3.0.1",
+					"resolved": "http://localhost:4873/which/-/which-3.0.1.tgz",
+					"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
 					"dev": true,
 					"requires": {
 						"isexe": "^2.0.0"
@@ -35693,98 +32974,118 @@
 			}
 		},
 		"@nrwl/angular": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/angular/-/angular-15.6.3.tgz",
-			"integrity": "sha512-IHOwDe1T3E35BblBYaUAmQr6iti/HDEnIcHeSCbBcomrDPsMR1RSE1COSDv14dQI90nmU4Jx1eUWiEkoY0FVJA==",
-			"requires": {
-				"@angular-devkit/schematics": "~15.1.0",
-				"@nrwl/cypress": "15.6.3",
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/jest": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/webpack": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
-				"@schematics/angular": "~15.1.0",
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/angular/-/angular-16.10.0.tgz",
+			"integrity": "sha512-MT4gYcvsHxNXTIu40CZKVmO7PD42HeJKfQpVOKPZnfRl9Zf38tRtDnC99QxMpVk/4fo9y1hM8ifoDO97WFOBOQ==",
+			"requires": {
+				"@nx/angular": "16.10.0",
+				"tslib": "^2.3.0"
+			}
+		},
+		"@nrwl/cypress": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/cypress/-/cypress-16.10.0.tgz",
+			"integrity": "sha512-ns6VQrrF08XYwZE4OduLVK2rwpN6dNrkVArw4fzJccuZ1g3YxR5JSuxpdBQA3FjKWoo2DybivuQudpIlYGq3UQ==",
+			"requires": {
+				"@nx/cypress": "16.10.0"
+			}
+		},
+		"@nrwl/devkit": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/devkit/-/devkit-16.10.0.tgz",
+			"integrity": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==",
+			"requires": {
+				"@nx/devkit": "16.10.0"
+			}
+		},
+		"@nrwl/eslint-plugin-nx": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.10.0.tgz",
+			"integrity": "sha512-w8fHXEatdPHQeP/Yompsdrgz4BJ2BSVaaaulcovzTNJ9KrCCtDyTGY7sihU7qLVcbZtUVq9xoAsSeuTQuOCTDw==",
+			"dev": true,
+			"requires": {
+				"@nx/eslint-plugin": "16.10.0"
+			}
+		},
+		"@nrwl/jest": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/jest/-/jest-16.10.0.tgz",
+			"integrity": "sha512-hZuIK3xXh4HaE6/Ny8hGidjkJ4aLZjnQtPDxKD/423gznQe2FdHx3avoSlbOEOx5Oc6sJ9QGGZLcvckKQ5uWww==",
+			"requires": {
+				"@nx/jest": "16.10.0"
+			}
+		},
+		"@nrwl/js": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/js/-/js-16.10.0.tgz",
+			"integrity": "sha512-asybPpyPrxLLDWWdYzFqbgubLmDKLEhoMz8x9MPOm3CH8v2vlIE6hD0JT19GdJArBPxRB33nhjtu8wmJGz5czw==",
+			"requires": {
+				"@nx/js": "16.10.0"
+			}
+		},
+		"@nrwl/linter": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/linter/-/linter-16.10.0.tgz",
+			"integrity": "sha512-XvMuTeIc2I3630iaqhlV4w3qgABQIo+kv8mT0DbT1HfjjZDm4ST8hrvkdWSf9mCl24vShNL8GDVQVNOX0bZY5A==",
+			"requires": {
+				"@nx/linter": "16.10.0"
+			}
+		},
+		"@nrwl/tao": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/tao/-/tao-16.10.0.tgz",
+			"integrity": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==",
+			"requires": {
+				"nx": "16.10.0",
+				"tslib": "^2.3.0"
+			}
+		},
+		"@nrwl/webpack": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/webpack/-/webpack-16.10.0.tgz",
+			"integrity": "sha512-oh/8jzytaU2YM6DOvEOt2CysKWpru+fc+M31JGj6gdq1c1wr4feSs1c/rmJ4jAfvYqejrJwyZK96XX1uRo+3RQ==",
+			"requires": {
+				"@nx/webpack": "16.10.0"
+			}
+		},
+		"@nrwl/workspace": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nrwl/workspace/-/workspace-16.10.0.tgz",
+			"integrity": "sha512-fZeNxhFs/2cm326NebfJIgSI3W4KZN94WGS46wlIBrUUGP5/vwHYsi09Kx6sG1kRkAuZVtgJ33uU2F6xcAWzUA==",
+			"requires": {
+				"@nx/workspace": "16.10.0"
+			}
+		},
+		"@nx/angular": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/angular/-/angular-16.10.0.tgz",
+			"integrity": "sha512-NkXe6N0vYrd8YexAjDUE9yLVOBtNrXuCnp2HW+QePd0sW5AiUeNeGwy07oStCJwH9xD5Rr5nl3JPrpBFEdNlVg==",
+			"requires": {
+				"@nrwl/angular": "16.10.0",
+				"@nx/cypress": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/jest": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@nx/linter": "16.10.0",
+				"@nx/webpack": "16.10.0",
+				"@nx/workspace": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
+				"@typescript-eslint/type-utils": "^5.36.1",
 				"chalk": "^4.1.0",
-				"chokidar": "^3.5.1",
-				"http-server": "^14.1.0",
+				"enquirer": "^2.3.6",
+				"find-cache-dir": "^3.3.2",
 				"ignore": "^5.0.4",
-				"magic-string": "~0.26.2",
+				"magic-string": "~0.30.2",
 				"minimatch": "3.0.5",
-				"semver": "7.3.4",
-				"ts-node": "10.9.1",
-				"tsconfig-paths": "^4.1.2",
+				"semver": "7.5.3",
 				"tslib": "^2.3.0",
-				"webpack": "^5.75.0",
-				"webpack-merge": "5.7.3"
+				"webpack": "^5.80.0",
+				"webpack-merge": "^5.8.0"
 			},
 			"dependencies": {
-				"@angular-devkit/core": {
-					"version": "15.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.6.tgz",
-					"integrity": "sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==",
-					"requires": {
-						"ajv": "8.12.0",
-						"ajv-formats": "2.1.1",
-						"jsonc-parser": "3.2.0",
-						"rxjs": "6.6.7",
-						"source-map": "0.7.4"
-					},
-					"dependencies": {
-						"rxjs": {
-							"version": "6.6.7",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-							"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-							"requires": {
-								"tslib": "^1.9.0"
-							}
-						},
-						"tslib": {
-							"version": "1.14.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-							"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
-						}
-					}
-				},
-				"@angular-devkit/schematics": {
-					"version": "15.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-15.1.6.tgz",
-					"integrity": "sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==",
-					"requires": {
-						"@angular-devkit/core": "15.1.6",
-						"jsonc-parser": "3.2.0",
-						"magic-string": "0.27.0",
-						"ora": "5.4.1",
-						"rxjs": "6.6.7"
-					},
-					"dependencies": {
-						"magic-string": {
-							"version": "0.27.0",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.27.0.tgz",
-							"integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
-							"requires": {
-								"@jridgewell/sourcemap-codec": "^1.4.13"
-							}
-						},
-						"rxjs": {
-							"version": "6.6.7",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-							"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-							"requires": {
-								"tslib": "^1.9.0"
-							}
-						},
-						"tslib": {
-							"version": "1.14.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-							"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
-						}
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -35792,7 +33093,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -35801,7 +33102,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -35809,157 +33110,177 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"lru-cache": {
 					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
 					"requires": {
 						"yallist": "^4.0.0"
 					}
 				},
 				"magic-string": {
-					"version": "0.26.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.26.7.tgz",
-					"integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==",
+					"version": "0.30.5",
+					"resolved": "http://localhost:4873/magic-string/-/magic-string-0.30.5.tgz",
+					"integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==",
 					"requires": {
-						"sourcemap-codec": "^1.4.8"
+						"@jridgewell/sourcemap-codec": "^1.4.15"
 					}
 				},
 				"semver": {
-					"version": "7.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-					"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+					"version": "7.5.3",
+					"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+					"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 					"requires": {
 						"lru-cache": "^6.0.0"
 					}
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
 				},
-				"webpack-merge": {
-					"version": "5.7.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-merge/-/webpack-merge-5.7.3.tgz",
-					"integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==",
-					"requires": {
-						"clone-deep": "^4.0.1",
-						"wildcard": "^2.0.0"
-					}
-				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 				}
 			}
 		},
-		"@nrwl/cli": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/cli/-/cli-15.6.3.tgz",
-			"integrity": "sha512-K4E0spofThZXMnhA6R8hkUTdfqmwSnUE2+DlD5Y3jqsvKTAgwF5U41IFkEouFZCf+dWjy0RA20bWoX48EVFtmQ==",
+		"@nx/cypress": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/cypress/-/cypress-16.10.0.tgz",
+			"integrity": "sha512-suYc5jC6Os0D78Fn2pAIuGOkM6nhIWsSEb94PWwdZWE0XKQiWrgQJZBXDIu3x2zq6oZxYdx8OufUFli8vr4/Tw==",
 			"requires": {
-				"nx": "15.6.3"
-			}
-		},
-		"@nrwl/cypress": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/cypress/-/cypress-15.6.3.tgz",
-			"integrity": "sha512-ZPQ60KTkEgCQaIhaoPICiACfufuE8klwkBSl3bbTL5d6QEYlpTb2M1IeHEYZP1aEKXJlC9Kb6al9lB87peNVkQ==",
-			"requires": {
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
-				"dotenv": "~10.0.0",
-				"semver": "7.3.4"
+				"@nrwl/cypress": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@nx/linter": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
+				"detect-port": "^1.5.1",
+				"semver": "7.5.3",
+				"tslib": "^2.3.0"
 			},
 			"dependencies": {
 				"lru-cache": {
 					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
 					"requires": {
 						"yallist": "^4.0.0"
 					}
 				},
 				"semver": {
-					"version": "7.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-					"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+					"version": "7.5.3",
+					"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+					"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 					"requires": {
 						"lru-cache": "^6.0.0"
 					}
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 				}
 			}
 		},
-		"@nrwl/devkit": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/devkit/-/devkit-15.6.3.tgz",
-			"integrity": "sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ==",
+		"@nx/devkit": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/devkit/-/devkit-16.10.0.tgz",
+			"integrity": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==",
 			"requires": {
-				"@phenomnomnominal/tsquery": "4.1.1",
+				"@nrwl/devkit": "16.10.0",
 				"ejs": "^3.1.7",
+				"enquirer": "~2.3.6",
 				"ignore": "^5.0.4",
-				"semver": "7.3.4",
+				"semver": "7.5.3",
+				"tmp": "~0.2.1",
 				"tslib": "^2.3.0"
 			},
 			"dependencies": {
 				"lru-cache": {
 					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
 					"requires": {
 						"yallist": "^4.0.0"
 					}
 				},
 				"semver": {
-					"version": "7.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-					"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+					"version": "7.5.3",
+					"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+					"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 					"requires": {
 						"lru-cache": "^6.0.0"
 					}
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 				}
 			}
 		},
-		"@nrwl/eslint-plugin-nx": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-15.6.3.tgz",
-			"integrity": "sha512-UCwyMKlU3shoccNHSeYqF/F9FPm3vMx827Pu2L+Kmkbuy8MhpA20BBpNm/ISXD4w37BBrXgr5e8ATZPuVZTl7A==",
+		"@nx/eslint-plugin": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/eslint-plugin/-/eslint-plugin-16.10.0.tgz",
+			"integrity": "sha512-fdOlCrSJK6HfCs+FVXUxzS5gobnGymTU85B3vXPYkVpJwKmq9voX7HBhx9euScRGgXdO9335DIixc/QV6zGpKA==",
 			"dev": true,
 			"requires": {
-				"@nrwl/devkit": "15.6.3",
-				"@typescript-eslint/utils": "^5.36.1",
+				"@nrwl/eslint-plugin-nx": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@typescript-eslint/type-utils": "^5.60.1",
+				"@typescript-eslint/utils": "^5.60.1",
 				"chalk": "^4.1.0",
 				"confusing-browser-globals": "^1.0.9",
-				"semver": "7.3.4"
+				"jsonc-eslint-parser": "^2.1.0",
+				"semver": "7.5.3",
+				"tslib": "^2.3.0"
 			},
 			"dependencies": {
+				"@typescript-eslint/type-utils": {
+					"version": "5.62.0",
+					"resolved": "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
+					"integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
+					"dev": true,
+					"requires": {
+						"@typescript-eslint/typescript-estree": "5.62.0",
+						"@typescript-eslint/utils": "5.62.0",
+						"debug": "^4.3.4",
+						"tsutils": "^3.21.0"
+					}
+				},
+				"@typescript-eslint/utils": {
+					"version": "5.62.0",
+					"resolved": "http://localhost:4873/@typescript-eslint/utils/-/utils-5.62.0.tgz",
+					"integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
+					"dev": true,
+					"requires": {
+						"@eslint-community/eslint-utils": "^4.2.0",
+						"@types/json-schema": "^7.0.9",
+						"@types/semver": "^7.3.12",
+						"@typescript-eslint/scope-manager": "5.62.0",
+						"@typescript-eslint/types": "5.62.0",
+						"@typescript-eslint/typescript-estree": "5.62.0",
+						"eslint-scope": "^5.1.1",
+						"semver": "^7.3.7"
+					}
+				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"dev": true,
 					"requires": {
@@ -35968,7 +33289,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"dev": true,
 					"requires": {
@@ -35978,7 +33299,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"dev": true,
 					"requires": {
@@ -35987,19 +33308,35 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
 					"dev": true
 				},
+				"eslint-scope": {
+					"version": "5.1.1",
+					"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
+					"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+					"dev": true,
+					"requires": {
+						"esrecurse": "^4.3.0",
+						"estraverse": "^4.1.1"
+					}
+				},
+				"estraverse": {
+					"version": "4.3.0",
+					"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
+					"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+					"dev": true
+				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 					"dev": true
 				},
 				"lru-cache": {
 					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
 					"dev": true,
 					"requires": {
@@ -36007,9 +33344,9 @@
 					}
 				},
 				"semver": {
-					"version": "7.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-					"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+					"version": "7.5.3",
+					"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+					"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 					"dev": true,
 					"requires": {
 						"lru-cache": "^6.0.0"
@@ -36017,7 +33354,7 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"dev": true,
 					"requires": {
@@ -36026,34 +33363,35 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
 			}
 		},
-		"@nrwl/jest": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/jest/-/jest-15.6.3.tgz",
-			"integrity": "sha512-pG8ESEJFkgyBGOOVZ6bFohklkDXn7JrDPSjmnoKvcOzprluPS7Nx4Ce5bw7wk2Ul3fqJcpAcH5LAZvb+HtA85w==",
-			"requires": {
-				"@jest/reporters": "28.1.1",
-				"@jest/test-result": "28.1.1",
-				"@nrwl/devkit": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
+		"@nx/jest": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/jest/-/jest-16.10.0.tgz",
+			"integrity": "sha512-QseeLjDrl4c9q9Dd/057SXYqd47JVLhD2VQlQDraYwjsHz3lWkzlGaaHy0ZrVu8LSzY7lUUhJMPyYO3qo8wT6A==",
+			"requires": {
+				"@jest/reporters": "^29.4.1",
+				"@jest/test-result": "^29.4.1",
+				"@nrwl/jest": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
 				"chalk": "^4.1.0",
-				"dotenv": "~10.0.0",
 				"identity-obj-proxy": "3.0.0",
-				"jest-config": "28.1.1",
-				"jest-resolve": "28.1.1",
-				"jest-util": "28.1.1",
+				"jest-config": "^29.4.1",
+				"jest-resolve": "^29.4.1",
+				"jest-util": "^29.4.1",
 				"resolve.exports": "1.1.0",
 				"tslib": "^2.3.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -36061,7 +33399,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -36070,7 +33408,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -36078,17 +33416,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -36096,38 +33434,46 @@
 				}
 			}
 		},
-		"@nrwl/js": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/js/-/js-15.6.3.tgz",
-			"integrity": "sha512-OkjpbNAL6732jGPR7Lz/6K6AScqjxMGuZCHmMqmlK0NpSRcOtYJpGsn4XZzPRsWteqXCvY/l3efceiL6eNPmRg==",
-			"requires": {
-				"@babel/core": "^7.15.0",
-				"@babel/plugin-proposal-class-properties": "^7.14.5",
-				"@babel/plugin-proposal-decorators": "^7.14.5",
-				"@babel/plugin-transform-runtime": "^7.15.0",
-				"@babel/preset-env": "^7.15.0",
-				"@babel/preset-typescript": "^7.15.0",
-				"@babel/runtime": "^7.14.8",
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
+		"@nx/js": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/js/-/js-16.10.0.tgz",
+			"integrity": "sha512-27AH0/+XTMzOxVS6oV8Zl7/Rr1UDMYsnCVqoCU9CXp087uxcD4VnBOEjsEUlJKh1RdwGE3K0hBkk7NC1LP+vYQ==",
+			"requires": {
+				"@babel/core": "^7.22.9",
+				"@babel/plugin-proposal-class-properties": "^7.18.6",
+				"@babel/plugin-proposal-decorators": "^7.22.7",
+				"@babel/plugin-transform-runtime": "^7.22.9",
+				"@babel/preset-env": "^7.22.9",
+				"@babel/preset-typescript": "^7.22.5",
+				"@babel/runtime": "^7.22.6",
+				"@nrwl/js": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/workspace": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
 				"babel-plugin-const-enum": "^1.0.1",
 				"babel-plugin-macros": "^2.8.0",
 				"babel-plugin-transform-typescript-metadata": "^0.3.1",
 				"chalk": "^4.1.0",
+				"columnify": "^1.6.0",
+				"detect-port": "^1.5.1",
 				"fast-glob": "3.2.7",
 				"fs-extra": "^11.1.0",
 				"ignore": "^5.0.4",
 				"js-tokens": "^4.0.0",
 				"minimatch": "3.0.5",
+				"npm-package-arg": "11.0.1",
+				"npm-run-path": "^4.0.1",
+				"ora": "5.3.0",
+				"semver": "7.5.3",
 				"source-map-support": "0.5.19",
-				"tree-kill": "1.2.2",
+				"ts-node": "10.9.1",
+				"tsconfig-paths": "^4.1.2",
 				"tslib": "^2.3.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -36135,7 +33481,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -36144,7 +33490,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -36152,22 +33498,91 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
+				"fast-glob": {
+					"version": "3.2.7",
+					"resolved": "http://localhost:4873/fast-glob/-/fast-glob-3.2.7.tgz",
+					"integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
+					"requires": {
+						"@nodelib/fs.stat": "^2.0.2",
+						"@nodelib/fs.walk": "^1.2.3",
+						"glob-parent": "^5.1.2",
+						"merge2": "^1.3.0",
+						"micromatch": "^4.0.4"
+					}
+				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
+				"hosted-git-info": {
+					"version": "7.0.1",
+					"resolved": "http://localhost:4873/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
+					"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
+					"requires": {
+						"lru-cache": "^10.0.1"
+					}
+				},
+				"lru-cache": {
+					"version": "10.0.1",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-10.0.1.tgz",
+					"integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g=="
+				},
+				"npm-package-arg": {
+					"version": "11.0.1",
+					"resolved": "http://localhost:4873/npm-package-arg/-/npm-package-arg-11.0.1.tgz",
+					"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",
+					"requires": {
+						"hosted-git-info": "^7.0.0",
+						"proc-log": "^3.0.0",
+						"semver": "^7.3.5",
+						"validate-npm-package-name": "^5.0.0"
+					}
+				},
+				"ora": {
+					"version": "5.3.0",
+					"resolved": "http://localhost:4873/ora/-/ora-5.3.0.tgz",
+					"integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==",
+					"requires": {
+						"bl": "^4.0.3",
+						"chalk": "^4.1.0",
+						"cli-cursor": "^3.1.0",
+						"cli-spinners": "^2.5.0",
+						"is-interactive": "^1.0.0",
+						"log-symbols": "^4.0.0",
+						"strip-ansi": "^6.0.0",
+						"wcwidth": "^1.0.1"
+					}
+				},
+				"semver": {
+					"version": "7.5.3",
+					"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+					"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
+					"requires": {
+						"lru-cache": "^6.0.0"
+					},
+					"dependencies": {
+						"lru-cache": {
+							"version": "6.0.0",
+							"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
+							"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+							"requires": {
+								"yallist": "^4.0.0"
+							}
+						}
+					}
+				},
 				"source-map": {
 					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+					"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
 				},
 				"source-map-support": {
 					"version": "0.5.19",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-support/-/source-map-support-0.5.19.tgz",
+					"resolved": "http://localhost:4873/source-map-support/-/source-map-support-0.5.19.tgz",
 					"integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==",
 					"requires": {
 						"buffer-from": "^1.0.0",
@@ -36176,86 +33591,139 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
+				},
+				"yallist": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
+					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 				}
 			}
 		},
-		"@nrwl/linter": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/linter/-/linter-15.6.3.tgz",
-			"integrity": "sha512-efGOduHbUa/L6MuJLb2SoDwi4hEKpz6lM1X/Yg36dYDjLuJdpLC23K4WwEOQeZL6jkcUerfY65W8NMPinAHWKg==",
+		"@nx/linter": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/linter/-/linter-16.10.0.tgz",
+			"integrity": "sha512-G6XBfuMHNHoJDc4n2Gip4fsa9KssT91V5PF2Rd4hILkg4YU8B8mlmHN71stpzwbEyUJtyhyJc5SGgVLrSpRQew==",
 			"requires": {
-				"@nrwl/devkit": "15.6.3",
-				"@phenomnomnominal/tsquery": "4.1.1",
+				"@nrwl/linter": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
+				"@phenomnomnominal/tsquery": "~5.0.1",
 				"tmp": "~0.2.1",
-				"tslib": "^2.3.0"
+				"tslib": "^2.3.0",
+				"typescript": "~5.1.3"
 			}
 		},
-		"@nrwl/tao": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/tao/-/tao-15.6.3.tgz",
-			"integrity": "sha512-bDZbPIbU5Mf2BvX0q8GjPxrm1WkYyfW+gp7mLuuJth2sEpZiCr47mSwuGko/y4CKXvIX46VQcAS0pKQMKugXsg==",
-			"requires": {
-				"nx": "15.6.3"
-			}
+		"@nx/nx-darwin-arm64": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.10.0.tgz",
+			"integrity": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==",
+			"optional": true
 		},
-		"@nrwl/webpack": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/webpack/-/webpack-15.6.3.tgz",
-			"integrity": "sha512-/cnUHtMwUE9/FnctI0sQCc9Y/VdS4w15FBSlN1JB+CSF9Sm/CIZ9LzpINGnjqxa+3P2Pz3svx0eyzsBIUFseMA==",
+		"@nx/nx-darwin-x64": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-darwin-x64/-/nx-darwin-x64-16.10.0.tgz",
+			"integrity": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==",
+			"optional": true
+		},
+		"@nx/nx-freebsd-x64": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.10.0.tgz",
+			"integrity": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==",
+			"optional": true
+		},
+		"@nx/nx-linux-arm-gnueabihf": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.10.0.tgz",
+			"integrity": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==",
+			"optional": true
+		},
+		"@nx/nx-linux-arm64-gnu": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.10.0.tgz",
+			"integrity": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==",
+			"optional": true
+		},
+		"@nx/nx-linux-arm64-musl": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.10.0.tgz",
+			"integrity": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==",
+			"optional": true
+		},
+		"@nx/nx-linux-x64-gnu": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.10.0.tgz",
+			"integrity": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==",
+			"optional": true
+		},
+		"@nx/nx-linux-x64-musl": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.10.0.tgz",
+			"integrity": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==",
+			"optional": true
+		},
+		"@nx/nx-win32-arm64-msvc": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.10.0.tgz",
+			"integrity": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==",
+			"optional": true
+		},
+		"@nx/nx-win32-x64-msvc": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.10.0.tgz",
+			"integrity": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==",
+			"optional": true
+		},
+		"@nx/webpack": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/webpack/-/webpack-16.10.0.tgz",
+			"integrity": "sha512-rKftYWh4kW6A7svMx73Zg3fJFDS3618cKTZsCkuQWeSE+RMQXjcefeCxYhwvHXc/ehoakCIIBx7jDCR+6NIlzQ==",
 			"requires": {
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/js": "15.6.3",
-				"@nrwl/workspace": "15.6.3",
+				"@babel/core": "^7.22.9",
+				"@nrwl/webpack": "16.10.0",
+				"@nx/devkit": "16.10.0",
+				"@nx/js": "16.10.0",
 				"autoprefixer": "^10.4.9",
 				"babel-loader": "^9.1.2",
+				"browserslist": "^4.21.4",
 				"chalk": "^4.1.0",
-				"chokidar": "^3.5.1",
 				"copy-webpack-plugin": "^10.2.4",
 				"css-loader": "^6.4.0",
-				"css-minimizer-webpack-plugin": "^3.4.1",
-				"dotenv": "~10.0.0",
-				"file-loader": "^6.2.0",
+				"css-minimizer-webpack-plugin": "^5.0.0",
 				"fork-ts-checker-webpack-plugin": "7.2.13",
-				"fs-extra": "^11.1.0",
-				"ignore": "^5.0.4",
-				"less": "3.12.2",
-				"less-loader": "^11.1.0",
+				"less": "4.1.3",
+				"less-loader": "11.1.0",
 				"license-webpack-plugin": "^4.0.2",
 				"loader-utils": "^2.0.3",
 				"mini-css-extract-plugin": "~2.4.7",
 				"parse5": "4.0.0",
-				"parse5-html-rewriting-stream": "6.0.1",
 				"postcss": "^8.4.14",
 				"postcss-import": "~14.1.0",
 				"postcss-loader": "^6.1.1",
-				"rxjs": "^6.5.4",
+				"rxjs": "^7.8.0",
 				"sass": "^1.42.1",
 				"sass-loader": "^12.2.0",
 				"source-map-loader": "^3.0.0",
 				"style-loader": "^3.3.0",
-				"stylus": "^0.55.0",
+				"stylus": "^0.59.0",
 				"stylus-loader": "^7.1.0",
 				"terser-webpack-plugin": "^5.3.3",
 				"ts-loader": "^9.3.1",
-				"ts-node": "10.9.1",
-				"tsconfig-paths": "^4.1.2",
 				"tsconfig-paths-webpack-plugin": "4.0.0",
 				"tslib": "^2.3.0",
-				"webpack": "^5.75.0",
+				"webpack": "^5.80.0",
 				"webpack-dev-server": "^4.9.3",
-				"webpack-merge": "^5.8.0",
 				"webpack-node-externals": "^3.0.0",
 				"webpack-subresource-integrity": "^5.1.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -36263,12 +33731,12 @@
 				},
 				"array-union": {
 					"version": "3.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-union/-/array-union-3.0.1.tgz",
+					"resolved": "http://localhost:4873/array-union/-/array-union-3.0.1.tgz",
 					"integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw=="
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -36277,7 +33745,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -36285,12 +33753,12 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"copy-webpack-plugin": {
 					"version": "10.2.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz",
+					"resolved": "http://localhost:4873/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz",
 					"integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==",
 					"requires": {
 						"fast-glob": "^3.2.7",
@@ -36303,7 +33771,7 @@
 				},
 				"cosmiconfig": {
 					"version": "7.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+					"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
 					"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
 					"requires": {
 						"@types/parse-json": "^4.0.0",
@@ -36314,9 +33782,9 @@
 					}
 				},
 				"enhanced-resolve": {
-					"version": "5.12.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
-					"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
+					"version": "5.15.0",
+					"resolved": "http://localhost:4873/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
+					"integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
 					"requires": {
 						"graceful-fs": "^4.2.4",
 						"tapable": "^2.2.0"
@@ -36324,7 +33792,7 @@
 				},
 				"glob-parent": {
 					"version": "6.0.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-6.0.2.tgz",
+					"resolved": "http://localhost:4873/glob-parent/-/glob-parent-6.0.2.tgz",
 					"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
 					"requires": {
 						"is-glob": "^4.0.3"
@@ -36332,7 +33800,7 @@
 				},
 				"globby": {
 					"version": "12.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globby/-/globby-12.2.0.tgz",
+					"resolved": "http://localhost:4873/globby/-/globby-12.2.0.tgz",
 					"integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==",
 					"requires": {
 						"array-union": "^3.0.1",
@@ -36345,42 +33813,20 @@
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"iconv-lite": {
 					"version": "0.6.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/iconv-lite/-/iconv-lite-0.6.3.tgz",
+					"resolved": "http://localhost:4873/iconv-lite/-/iconv-lite-0.6.3.tgz",
 					"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
 					"requires": {
 						"safer-buffer": ">= 2.1.2 < 3.0.0"
 					}
 				},
-				"less": {
-					"version": "3.12.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/less/-/less-3.12.2.tgz",
-					"integrity": "sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==",
-					"requires": {
-						"errno": "^0.1.1",
-						"graceful-fs": "^4.1.2",
-						"image-size": "~0.5.0",
-						"make-dir": "^2.1.0",
-						"mime": "^1.4.1",
-						"native-request": "^1.0.5",
-						"source-map": "~0.6.0",
-						"tslib": "^1.10.0"
-					},
-					"dependencies": {
-						"tslib": {
-							"version": "1.14.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-							"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
-						}
-					}
-				},
 				"loader-utils": {
 					"version": "2.0.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/loader-utils/-/loader-utils-2.0.4.tgz",
+					"resolved": "http://localhost:4873/loader-utils/-/loader-utils-2.0.4.tgz",
 					"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
 					"requires": {
 						"big.js": "^5.2.2",
@@ -36388,27 +33834,9 @@
 						"json5": "^2.1.2"
 					}
 				},
-				"make-dir": {
-					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-dir/-/make-dir-2.1.0.tgz",
-					"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
-					"optional": true,
-					"requires": {
-						"pify": "^4.0.1",
-						"semver": "^5.6.0"
-					},
-					"dependencies": {
-						"semver": {
-							"version": "5.7.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-5.7.1.tgz",
-							"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
-							"optional": true
-						}
-					}
-				},
 				"mini-css-extract-plugin": {
 					"version": "2.4.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz",
+					"resolved": "http://localhost:4873/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz",
 					"integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==",
 					"requires": {
 						"schema-utils": "^4.0.0"
@@ -36416,18 +33844,12 @@
 				},
 				"parse5": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-4.0.0.tgz",
+					"resolved": "http://localhost:4873/parse5/-/parse5-4.0.0.tgz",
 					"integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA=="
 				},
-				"pify": {
-					"version": "4.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pify/-/pify-4.0.1.tgz",
-					"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
-					"optional": true
-				},
 				"postcss-loader": {
 					"version": "6.2.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-loader/-/postcss-loader-6.2.1.tgz",
+					"resolved": "http://localhost:4873/postcss-loader/-/postcss-loader-6.2.1.tgz",
 					"integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==",
 					"requires": {
 						"cosmiconfig": "^7.0.0",
@@ -36435,24 +33857,9 @@
 						"semver": "^7.3.5"
 					}
 				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"requires": {
-						"tslib": "^1.9.0"
-					},
-					"dependencies": {
-						"tslib": {
-							"version": "1.14.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-							"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
-						}
-					}
-				},
 				"sass-loader": {
 					"version": "12.6.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sass-loader/-/sass-loader-12.6.0.tgz",
+					"resolved": "http://localhost:4873/sass-loader/-/sass-loader-12.6.0.tgz",
 					"integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==",
 					"requires": {
 						"klona": "^2.0.4",
@@ -36461,18 +33868,12 @@
 				},
 				"slash": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slash/-/slash-4.0.0.tgz",
+					"resolved": "http://localhost:4873/slash/-/slash-4.0.0.tgz",
 					"integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="
 				},
-				"source-map": {
-					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-					"optional": true
-				},
 				"source-map-loader": {
 					"version": "3.0.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-loader/-/source-map-loader-3.0.2.tgz",
+					"resolved": "http://localhost:4873/source-map-loader/-/source-map-loader-3.0.2.tgz",
 					"integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==",
 					"requires": {
 						"abab": "^2.0.5",
@@ -36482,26 +33883,27 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
 				},
 				"ts-loader": {
-					"version": "9.4.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ts-loader/-/ts-loader-9.4.2.tgz",
-					"integrity": "sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==",
+					"version": "9.5.0",
+					"resolved": "http://localhost:4873/ts-loader/-/ts-loader-9.5.0.tgz",
+					"integrity": "sha512-LLlB/pkB4q9mW2yLdFMnK3dEHbrBjeZTYguaaIfusyojBgAGf5kF+O6KcWqiGzWqHk0LBsoolrp4VftEURhybg==",
 					"requires": {
 						"chalk": "^4.1.0",
 						"enhanced-resolve": "^5.0.0",
 						"micromatch": "^4.0.0",
-						"semver": "^7.3.4"
+						"semver": "^7.3.4",
+						"source-map": "^0.7.4"
 					}
 				},
 				"tsconfig-paths-webpack-plugin": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz",
+					"resolved": "http://localhost:4873/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz",
 					"integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==",
 					"requires": {
 						"chalk": "^4.1.0",
@@ -36511,41 +33913,25 @@
 				}
 			}
 		},
-		"@nrwl/workspace": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@nrwl/workspace/-/workspace-15.6.3.tgz",
-			"integrity": "sha512-RkCmDvcMXCVanR0RS8CZ14D7OMojSyvAal+b37P521MpizDkiN+zdRKewKvyOonzDeTAmZODtYccQ/uM5DjRfQ==",
+		"@nx/workspace": {
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/@nx/workspace/-/workspace-16.10.0.tgz",
+			"integrity": "sha512-95Eq36bzq2hb095Zvg+Ru8o9oIeOE62tNGGpohBkZPKoK2CUTYEq0AZtdj1suXS82ukCFCyyZ/c/fwxL62HRZA==",
 			"requires": {
-				"@nrwl/devkit": "15.6.3",
-				"@nrwl/linter": "15.6.3",
-				"@parcel/watcher": "2.0.4",
+				"@nrwl/workspace": "16.10.0",
+				"@nx/devkit": "16.10.0",
 				"chalk": "^4.1.0",
-				"chokidar": "^3.5.1",
-				"cli-cursor": "3.1.0",
-				"cli-spinners": "2.6.1",
-				"dotenv": "~10.0.0",
 				"enquirer": "~2.3.6",
-				"figures": "3.2.0",
-				"flat": "^5.0.2",
-				"fs-extra": "^11.1.0",
-				"glob": "7.1.4",
 				"ignore": "^5.0.4",
-				"jsonc-parser": "3.2.0",
-				"minimatch": "3.0.5",
-				"npm-run-path": "^4.0.1",
-				"nx": "15.6.3",
-				"open": "^8.4.0",
-				"rxjs": "^6.5.4",
-				"semver": "7.3.4",
-				"tmp": "~0.2.1",
+				"nx": "16.10.0",
+				"rxjs": "^7.8.0",
 				"tslib": "^2.3.0",
-				"yargs": "^17.6.2",
 				"yargs-parser": "21.1.1"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -36553,7 +33939,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -36562,7 +33948,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -36570,70 +33956,21 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
-				"glob": {
-					"version": "7.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.1.4.tgz",
-					"integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==",
-					"requires": {
-						"fs.realpath": "^1.0.0",
-						"inflight": "^1.0.4",
-						"inherits": "2",
-						"minimatch": "^3.0.4",
-						"once": "^1.3.0",
-						"path-is-absolute": "^1.0.0"
-					}
-				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"lru-cache": {
-					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
-					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-					"requires": {
-						"yallist": "^4.0.0"
-					}
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"requires": {
-						"tslib": "^1.9.0"
-					},
-					"dependencies": {
-						"tslib": {
-							"version": "1.14.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-							"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
-						}
-					}
-				},
-				"semver": {
-					"version": "7.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-					"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-					"requires": {
-						"lru-cache": "^6.0.0"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
-				},
-				"yallist": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 				}
 			}
 		},
@@ -36647,81 +33984,86 @@
 			}
 		},
 		"@phenomnomnominal/tsquery": {
-			"version": "4.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz",
-			"integrity": "sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==",
+			"version": "5.0.1",
+			"resolved": "http://localhost:4873/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz",
+			"integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==",
 			"requires": {
-				"esquery": "^1.0.1"
+				"esquery": "^1.4.0"
 			}
 		},
+		"@pkgjs/parseargs": {
+			"version": "0.11.0",
+			"resolved": "http://localhost:4873/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+			"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+			"dev": true,
+			"optional": true
+		},
 		"@schematics/angular": {
-			"version": "15.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@schematics/angular/-/angular-15.1.6.tgz",
-			"integrity": "sha512-y2kIQ1wJL0wR6v/LM5+PFJUivrYtdaIJVRdOXLLWl0AB5aLwObiWgLzAuBsbGm/9//WPPhw9PglS5EFFxTBDzg==",
+			"version": "16.2.8",
+			"resolved": "http://localhost:4873/@schematics/angular/-/angular-16.2.8.tgz",
+			"integrity": "sha512-yxfxJ2IMRIt+dQcqyJR30qd/osb5NwRsi9US3gFIHP1jfjOAs1Nk8ENNd5ycYV+yykCa78KWhmbOw4G1zpR56Q==",
+			"dev": true,
 			"requires": {
-				"@angular-devkit/core": "15.1.6",
-				"@angular-devkit/schematics": "15.1.6",
+				"@angular-devkit/core": "16.2.8",
+				"@angular-devkit/schematics": "16.2.8",
 				"jsonc-parser": "3.2.0"
-			},
-			"dependencies": {
-				"@angular-devkit/core": {
-					"version": "15.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/core/-/core-15.1.6.tgz",
-					"integrity": "sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==",
-					"requires": {
-						"ajv": "8.12.0",
-						"ajv-formats": "2.1.1",
-						"jsonc-parser": "3.2.0",
-						"rxjs": "6.6.7",
-						"source-map": "0.7.4"
-					}
-				},
-				"@angular-devkit/schematics": {
-					"version": "15.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@angular-devkit/schematics/-/schematics-15.1.6.tgz",
-					"integrity": "sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==",
-					"requires": {
-						"@angular-devkit/core": "15.1.6",
-						"jsonc-parser": "3.2.0",
-						"magic-string": "0.27.0",
-						"ora": "5.4.1",
-						"rxjs": "6.6.7"
-					}
-				},
-				"rxjs": {
-					"version": "6.6.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rxjs/-/rxjs-6.6.7.tgz",
-					"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
-					"requires": {
-						"tslib": "^1.9.0"
-					}
-				},
-				"tslib": {
-					"version": "1.14.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
-				}
+			}
+		},
+		"@sigstore/bundle": {
+			"version": "1.1.0",
+			"resolved": "http://localhost:4873/@sigstore/bundle/-/bundle-1.1.0.tgz",
+			"integrity": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==",
+			"dev": true,
+			"requires": {
+				"@sigstore/protobuf-specs": "^0.2.0"
+			}
+		},
+		"@sigstore/protobuf-specs": {
+			"version": "0.2.1",
+			"resolved": "http://localhost:4873/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz",
+			"integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==",
+			"dev": true
+		},
+		"@sigstore/sign": {
+			"version": "1.0.0",
+			"resolved": "http://localhost:4873/@sigstore/sign/-/sign-1.0.0.tgz",
+			"integrity": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==",
+			"dev": true,
+			"requires": {
+				"@sigstore/bundle": "^1.1.0",
+				"@sigstore/protobuf-specs": "^0.2.0",
+				"make-fetch-happen": "^11.0.1"
+			}
+		},
+		"@sigstore/tuf": {
+			"version": "1.0.3",
+			"resolved": "http://localhost:4873/@sigstore/tuf/-/tuf-1.0.3.tgz",
+			"integrity": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==",
+			"dev": true,
+			"requires": {
+				"@sigstore/protobuf-specs": "^0.2.0",
+				"tuf-js": "^1.1.7"
 			}
 		},
 		"@sinclair/typebox": {
-			"version": "0.24.51",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@sinclair/typebox/-/typebox-0.24.51.tgz",
-			"integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="
+			"version": "0.27.8",
+			"resolved": "http://localhost:4873/@sinclair/typebox/-/typebox-0.27.8.tgz",
+			"integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="
 		},
 		"@sinonjs/commons": {
-			"version": "1.8.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@sinonjs/commons/-/commons-1.8.6.tgz",
-			"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/@sinonjs/commons/-/commons-3.0.0.tgz",
+			"integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==",
 			"requires": {
 				"type-detect": "4.0.8"
 			}
 		},
 		"@sinonjs/fake-timers": {
-			"version": "9.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
-			"integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
+			"version": "10.3.0",
+			"resolved": "http://localhost:4873/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz",
+			"integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
 			"requires": {
-				"@sinonjs/commons": "^1.7.0"
+				"@sinonjs/commons": "^3.0.0"
 			}
 		},
 		"@testing-library/jest-dom": {
@@ -36800,7 +34142,7 @@
 		},
 		"@trysound/sax": {
 			"version": "0.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@trysound/sax/-/sax-0.2.0.tgz",
+			"resolved": "http://localhost:4873/@trysound/sax/-/sax-0.2.0.tgz",
 			"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
 		},
 		"@tsconfig/node10": {
@@ -36823,10 +34165,46 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@tsconfig/node16/-/node16-1.0.3.tgz",
 			"integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ=="
 		},
+		"@tufjs/canonical-json": {
+			"version": "1.0.0",
+			"resolved": "http://localhost:4873/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz",
+			"integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==",
+			"dev": true
+		},
+		"@tufjs/models": {
+			"version": "1.0.4",
+			"resolved": "http://localhost:4873/@tufjs/models/-/models-1.0.4.tgz",
+			"integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==",
+			"dev": true,
+			"requires": {
+				"@tufjs/canonical-json": "1.0.0",
+				"minimatch": "^9.0.0"
+			},
+			"dependencies": {
+				"brace-expansion": {
+					"version": "2.0.1",
+					"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
+					"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+					"dev": true,
+					"requires": {
+						"balanced-match": "^1.0.0"
+					}
+				},
+				"minimatch": {
+					"version": "9.0.3",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-9.0.3.tgz",
+					"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+					"dev": true,
+					"requires": {
+						"brace-expansion": "^2.0.1"
+					}
+				}
+			}
+		},
 		"@types/babel__core": {
-			"version": "7.20.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__core/-/babel__core-7.20.0.tgz",
-			"integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==",
+			"version": "7.20.3",
+			"resolved": "http://localhost:4873/@types/babel__core/-/babel__core-7.20.3.tgz",
+			"integrity": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==",
 			"requires": {
 				"@babel/parser": "^7.20.7",
 				"@babel/types": "^7.20.7",
@@ -36836,91 +34214,91 @@
 			}
 		},
 		"@types/babel__generator": {
-			"version": "7.6.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__generator/-/babel__generator-7.6.4.tgz",
-			"integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
+			"version": "7.6.6",
+			"resolved": "http://localhost:4873/@types/babel__generator/-/babel__generator-7.6.6.tgz",
+			"integrity": "sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==",
 			"requires": {
 				"@babel/types": "^7.0.0"
 			}
 		},
 		"@types/babel__template": {
-			"version": "7.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__template/-/babel__template-7.4.1.tgz",
-			"integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
+			"version": "7.4.3",
+			"resolved": "http://localhost:4873/@types/babel__template/-/babel__template-7.4.3.tgz",
+			"integrity": "sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==",
 			"requires": {
 				"@babel/parser": "^7.1.0",
 				"@babel/types": "^7.0.0"
 			}
 		},
 		"@types/babel__traverse": {
-			"version": "7.18.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/babel__traverse/-/babel__traverse-7.18.3.tgz",
-			"integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==",
+			"version": "7.20.3",
+			"resolved": "http://localhost:4873/@types/babel__traverse/-/babel__traverse-7.20.3.tgz",
+			"integrity": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==",
 			"requires": {
-				"@babel/types": "^7.3.0"
+				"@babel/types": "^7.20.7"
 			}
 		},
 		"@types/body-parser": {
-			"version": "1.19.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/body-parser/-/body-parser-1.19.2.tgz",
-			"integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
+			"version": "1.19.4",
+			"resolved": "http://localhost:4873/@types/body-parser/-/body-parser-1.19.4.tgz",
+			"integrity": "sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==",
 			"requires": {
 				"@types/connect": "*",
 				"@types/node": "*"
 			}
 		},
 		"@types/bonjour": {
-			"version": "3.5.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/bonjour/-/bonjour-3.5.10.tgz",
-			"integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==",
+			"version": "3.5.12",
+			"resolved": "http://localhost:4873/@types/bonjour/-/bonjour-3.5.12.tgz",
+			"integrity": "sha512-ky0kWSqXVxSqgqJvPIkgFkcn4C8MnRog308Ou8xBBIVo39OmUFy+jqNe0nPwLCDFxUpmT9EvT91YzOJgkDRcFg==",
 			"requires": {
 				"@types/node": "*"
 			}
 		},
 		"@types/connect": {
-			"version": "3.4.35",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/connect/-/connect-3.4.35.tgz",
-			"integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
+			"version": "3.4.37",
+			"resolved": "http://localhost:4873/@types/connect/-/connect-3.4.37.tgz",
+			"integrity": "sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==",
 			"requires": {
 				"@types/node": "*"
 			}
 		},
 		"@types/connect-history-api-fallback": {
-			"version": "1.3.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz",
-			"integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==",
+			"version": "1.5.2",
+			"resolved": "http://localhost:4873/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.2.tgz",
+			"integrity": "sha512-gX2j9x+NzSh4zOhnRPSdPPmTepS4DfxES0AvIFv3jGv5QyeAJf6u6dY5/BAoAJU9Qq1uTvwOku8SSC2GnCRl6Q==",
 			"requires": {
 				"@types/express-serve-static-core": "*",
 				"@types/node": "*"
 			}
 		},
 		"@types/eslint": {
-			"version": "8.37.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/eslint/-/eslint-8.37.0.tgz",
-			"integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==",
+			"version": "8.44.6",
+			"resolved": "http://localhost:4873/@types/eslint/-/eslint-8.44.6.tgz",
+			"integrity": "sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==",
 			"requires": {
 				"@types/estree": "*",
 				"@types/json-schema": "*"
 			}
 		},
 		"@types/eslint-scope": {
-			"version": "3.7.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/eslint-scope/-/eslint-scope-3.7.4.tgz",
-			"integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==",
+			"version": "3.7.6",
+			"resolved": "http://localhost:4873/@types/eslint-scope/-/eslint-scope-3.7.6.tgz",
+			"integrity": "sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==",
 			"requires": {
 				"@types/eslint": "*",
 				"@types/estree": "*"
 			}
 		},
 		"@types/estree": {
-			"version": "0.0.51",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/estree/-/estree-0.0.51.tgz",
-			"integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="
+			"version": "1.0.3",
+			"resolved": "http://localhost:4873/@types/estree/-/estree-1.0.3.tgz",
+			"integrity": "sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ=="
 		},
 		"@types/express": {
-			"version": "4.17.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/express/-/express-4.17.17.tgz",
-			"integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
+			"version": "4.17.20",
+			"resolved": "http://localhost:4873/@types/express/-/express-4.17.20.tgz",
+			"integrity": "sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==",
 			"requires": {
 				"@types/body-parser": "*",
 				"@types/express-serve-static-core": "^4.17.33",
@@ -36929,13 +34307,14 @@
 			}
 		},
 		"@types/express-serve-static-core": {
-			"version": "4.17.33",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz",
-			"integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==",
+			"version": "4.17.39",
+			"resolved": "http://localhost:4873/@types/express-serve-static-core/-/express-serve-static-core-4.17.39.tgz",
+			"integrity": "sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==",
 			"requires": {
 				"@types/node": "*",
 				"@types/qs": "*",
-				"@types/range-parser": "*"
+				"@types/range-parser": "*",
+				"@types/send": "*"
 			}
 		},
 		"@types/file-saver": {
@@ -36945,61 +34324,66 @@
 			"dev": true
 		},
 		"@types/graceful-fs": {
-			"version": "4.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
-			"integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==",
+			"version": "4.1.8",
+			"resolved": "http://localhost:4873/@types/graceful-fs/-/graceful-fs-4.1.8.tgz",
+			"integrity": "sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==",
 			"requires": {
 				"@types/node": "*"
 			}
 		},
+		"@types/http-errors": {
+			"version": "2.0.3",
+			"resolved": "http://localhost:4873/@types/http-errors/-/http-errors-2.0.3.tgz",
+			"integrity": "sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA=="
+		},
 		"@types/http-proxy": {
-			"version": "1.17.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/http-proxy/-/http-proxy-1.17.10.tgz",
-			"integrity": "sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==",
+			"version": "1.17.13",
+			"resolved": "http://localhost:4873/@types/http-proxy/-/http-proxy-1.17.13.tgz",
+			"integrity": "sha512-GkhdWcMNiR5QSQRYnJ+/oXzu0+7JJEPC8vkWXK351BkhjraZF+1W13CUYARUvX9+NqIU2n6YHA4iwywsc/M6Sw==",
 			"requires": {
 				"@types/node": "*"
 			}
 		},
 		"@types/istanbul-lib-coverage": {
-			"version": "2.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
-			"integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
+			"version": "2.0.5",
+			"resolved": "http://localhost:4873/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz",
+			"integrity": "sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ=="
 		},
 		"@types/istanbul-lib-report": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
-			"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+			"version": "3.0.2",
+			"resolved": "http://localhost:4873/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.2.tgz",
+			"integrity": "sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==",
 			"requires": {
 				"@types/istanbul-lib-coverage": "*"
 			}
 		},
 		"@types/istanbul-reports": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
-			"integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
+			"version": "3.0.3",
+			"resolved": "http://localhost:4873/@types/istanbul-reports/-/istanbul-reports-3.0.3.tgz",
+			"integrity": "sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==",
 			"requires": {
 				"@types/istanbul-lib-report": "*"
 			}
 		},
 		"@types/jest": {
-			"version": "28.1.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/jest/-/jest-28.1.8.tgz",
-			"integrity": "sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==",
+			"version": "29.4.4",
+			"resolved": "http://localhost:4873/@types/jest/-/jest-29.4.4.tgz",
+			"integrity": "sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==",
 			"dev": true,
 			"requires": {
-				"expect": "^28.0.0",
-				"pretty-format": "^28.0.0"
+				"expect": "^29.0.0",
+				"pretty-format": "^29.0.0"
 			}
 		},
 		"@types/jsdom": {
-			"version": "16.2.15",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/jsdom/-/jsdom-16.2.15.tgz",
-			"integrity": "sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==",
+			"version": "20.0.1",
+			"resolved": "http://localhost:4873/@types/jsdom/-/jsdom-20.0.1.tgz",
+			"integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==",
 			"dev": true,
 			"requires": {
 				"@types/node": "*",
-				"@types/parse5": "^6.0.3",
-				"@types/tough-cookie": "*"
+				"@types/tough-cookie": "*",
+				"parse5": "^7.0.0"
 			}
 		},
 		"@types/json-schema": {
@@ -37029,9 +34413,9 @@
 			}
 		},
 		"@types/mime": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/mime/-/mime-3.0.1.tgz",
-			"integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="
+			"version": "1.3.4",
+			"resolved": "http://localhost:4873/@types/mime/-/mime-1.3.4.tgz",
+			"integrity": "sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw=="
 		},
 		"@types/node": {
 			"version": "16.18.54",
@@ -37039,55 +34423,53 @@
 			"integrity": "sha512-oTmGy68gxZZ21FhTJVVvZBYpQHEBZxHKTsGshobMqm9qWpbqdZsA5jvsuPZcHu0KwpmLrOHWPdEfg7XDpNT9UA=="
 		},
 		"@types/parse-json": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/parse-json/-/parse-json-4.0.0.tgz",
-			"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
-		},
-		"@types/parse5": {
-			"version": "6.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/parse5/-/parse5-6.0.3.tgz",
-			"integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==",
-			"dev": true
-		},
-		"@types/prettier": {
-			"version": "2.7.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/prettier/-/prettier-2.7.2.tgz",
-			"integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg=="
+			"version": "4.0.1",
+			"resolved": "http://localhost:4873/@types/parse-json/-/parse-json-4.0.1.tgz",
+			"integrity": "sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng=="
 		},
 		"@types/qs": {
-			"version": "6.9.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/qs/-/qs-6.9.7.tgz",
-			"integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
+			"version": "6.9.9",
+			"resolved": "http://localhost:4873/@types/qs/-/qs-6.9.9.tgz",
+			"integrity": "sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg=="
 		},
 		"@types/range-parser": {
-			"version": "1.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/range-parser/-/range-parser-1.2.4.tgz",
-			"integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
+			"version": "1.2.6",
+			"resolved": "http://localhost:4873/@types/range-parser/-/range-parser-1.2.6.tgz",
+			"integrity": "sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA=="
 		},
 		"@types/retry": {
 			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/retry/-/retry-0.12.0.tgz",
+			"resolved": "http://localhost:4873/@types/retry/-/retry-0.12.0.tgz",
 			"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
 		},
 		"@types/semver": {
-			"version": "7.3.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/semver/-/semver-7.3.13.tgz",
-			"integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==",
-			"dev": true
+			"version": "7.5.4",
+			"resolved": "http://localhost:4873/@types/semver/-/semver-7.5.4.tgz",
+			"integrity": "sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ=="
+		},
+		"@types/send": {
+			"version": "0.17.3",
+			"resolved": "http://localhost:4873/@types/send/-/send-0.17.3.tgz",
+			"integrity": "sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==",
+			"requires": {
+				"@types/mime": "^1",
+				"@types/node": "*"
+			}
 		},
 		"@types/serve-index": {
-			"version": "1.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/serve-index/-/serve-index-1.9.1.tgz",
-			"integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==",
+			"version": "1.9.3",
+			"resolved": "http://localhost:4873/@types/serve-index/-/serve-index-1.9.3.tgz",
+			"integrity": "sha512-4KG+yMEuvDPRrYq5fyVm/I2uqAJSAwZK9VSa+Zf+zUq9/oxSSvy3kkIqyL+jjStv6UCVi8/Aho0NHtB1Fwosrg==",
 			"requires": {
 				"@types/express": "*"
 			}
 		},
 		"@types/serve-static": {
-			"version": "1.15.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/serve-static/-/serve-static-1.15.1.tgz",
-			"integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
+			"version": "1.15.4",
+			"resolved": "http://localhost:4873/@types/serve-static/-/serve-static-1.15.4.tgz",
+			"integrity": "sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==",
 			"requires": {
+				"@types/http-errors": "*",
 				"@types/mime": "*",
 				"@types/node": "*"
 			}
@@ -37096,26 +34478,26 @@
 			"version": "8.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz",
 			"integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==",
-			"devOptional": true
+			"dev": true
 		},
 		"@types/sizzle": {
 			"version": "2.3.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/sizzle/-/sizzle-2.3.3.tgz",
 			"integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"@types/sockjs": {
-			"version": "0.3.33",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/sockjs/-/sockjs-0.3.33.tgz",
-			"integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==",
+			"version": "0.3.35",
+			"resolved": "http://localhost:4873/@types/sockjs/-/sockjs-0.3.35.tgz",
+			"integrity": "sha512-tIF57KB+ZvOBpAQwSaACfEu7htponHXaFzP7RfKYgsOS0NoYnn+9+jzp7bbq4fWerizI3dTB4NfAZoyeQKWJLw==",
 			"requires": {
 				"@types/node": "*"
 			}
 		},
 		"@types/stack-utils": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/stack-utils/-/stack-utils-2.0.1.tgz",
-			"integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
+			"version": "2.0.2",
+			"resolved": "http://localhost:4873/@types/stack-utils/-/stack-utils-2.0.2.tgz",
+			"integrity": "sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw=="
 		},
 		"@types/strip-bom": {
 			"version": "3.0.0",
@@ -37139,9 +34521,9 @@
 			}
 		},
 		"@types/tough-cookie": {
-			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/tough-cookie/-/tough-cookie-4.0.2.tgz",
-			"integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==",
+			"version": "4.0.4",
+			"resolved": "http://localhost:4873/@types/tough-cookie/-/tough-cookie-4.0.4.tgz",
+			"integrity": "sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==",
 			"dev": true
 		},
 		"@types/webidl-conversions": {
@@ -37161,25 +34543,25 @@
 			}
 		},
 		"@types/ws": {
-			"version": "8.5.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/ws/-/ws-8.5.4.tgz",
-			"integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==",
+			"version": "8.5.8",
+			"resolved": "http://localhost:4873/@types/ws/-/ws-8.5.8.tgz",
+			"integrity": "sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg==",
 			"requires": {
 				"@types/node": "*"
 			}
 		},
 		"@types/yargs": {
-			"version": "17.0.24",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/yargs/-/yargs-17.0.24.tgz",
-			"integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+			"version": "17.0.29",
+			"resolved": "http://localhost:4873/@types/yargs/-/yargs-17.0.29.tgz",
+			"integrity": "sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==",
 			"requires": {
 				"@types/yargs-parser": "*"
 			}
 		},
 		"@types/yargs-parser": {
-			"version": "21.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
-			"integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
+			"version": "21.0.2",
+			"resolved": "http://localhost:4873/@types/yargs-parser/-/yargs-parser-21.0.2.tgz",
+			"integrity": "sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw=="
 		},
 		"@types/yauzl": {
 			"version": "2.10.0",
@@ -37192,53 +34574,54 @@
 			}
 		},
 		"@typescript-eslint/eslint-plugin": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.44.0.tgz",
-			"integrity": "sha512-j5ULd7FmmekcyWeArx+i8x7sdRHzAtXTkmDPthE4amxZOWKFK7bomoJ4r7PJ8K7PoMzD16U8MmuZFAonr1ERvw==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
+			"integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
 			"dev": true,
 			"requires": {
-				"@typescript-eslint/scope-manager": "5.44.0",
-				"@typescript-eslint/type-utils": "5.44.0",
-				"@typescript-eslint/utils": "5.44.0",
+				"@eslint-community/regexpp": "^4.4.0",
+				"@typescript-eslint/scope-manager": "5.62.0",
+				"@typescript-eslint/type-utils": "5.62.0",
+				"@typescript-eslint/utils": "5.62.0",
 				"debug": "^4.3.4",
+				"graphemer": "^1.4.0",
 				"ignore": "^5.2.0",
 				"natural-compare-lite": "^1.4.0",
-				"regexpp": "^3.2.0",
 				"semver": "^7.3.7",
 				"tsutils": "^3.21.0"
 			},
 			"dependencies": {
 				"@typescript-eslint/type-utils": {
-					"version": "5.44.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/type-utils/-/type-utils-5.44.0.tgz",
-					"integrity": "sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==",
+					"version": "5.62.0",
+					"resolved": "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
+					"integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
 					"dev": true,
 					"requires": {
-						"@typescript-eslint/typescript-estree": "5.44.0",
-						"@typescript-eslint/utils": "5.44.0",
+						"@typescript-eslint/typescript-estree": "5.62.0",
+						"@typescript-eslint/utils": "5.62.0",
 						"debug": "^4.3.4",
 						"tsutils": "^3.21.0"
 					}
 				},
 				"@typescript-eslint/utils": {
-					"version": "5.44.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/utils/-/utils-5.44.0.tgz",
-					"integrity": "sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==",
+					"version": "5.62.0",
+					"resolved": "http://localhost:4873/@typescript-eslint/utils/-/utils-5.62.0.tgz",
+					"integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
 					"dev": true,
 					"requires": {
+						"@eslint-community/eslint-utils": "^4.2.0",
 						"@types/json-schema": "^7.0.9",
 						"@types/semver": "^7.3.12",
-						"@typescript-eslint/scope-manager": "5.44.0",
-						"@typescript-eslint/types": "5.44.0",
-						"@typescript-eslint/typescript-estree": "5.44.0",
+						"@typescript-eslint/scope-manager": "5.62.0",
+						"@typescript-eslint/types": "5.62.0",
+						"@typescript-eslint/typescript-estree": "5.62.0",
 						"eslint-scope": "^5.1.1",
-						"eslint-utils": "^3.0.0",
 						"semver": "^7.3.7"
 					}
 				},
 				"eslint-scope": {
 					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
+					"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
 					"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
 					"dev": true,
 					"requires": {
@@ -37248,60 +34631,57 @@
 				},
 				"estraverse": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
+					"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
 					"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
 					"dev": true
 				}
 			}
 		},
 		"@typescript-eslint/parser": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/parser/-/parser-5.44.0.tgz",
-			"integrity": "sha512-H7LCqbZnKqkkgQHaKLGC6KUjt3pjJDx8ETDqmwncyb6PuoigYajyAwBGz08VU/l86dZWZgI4zm5k2VaKqayYyA==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/parser/-/parser-5.62.0.tgz",
+			"integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
 			"dev": true,
 			"requires": {
-				"@typescript-eslint/scope-manager": "5.44.0",
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/typescript-estree": "5.44.0",
+				"@typescript-eslint/scope-manager": "5.62.0",
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/typescript-estree": "5.62.0",
 				"debug": "^4.3.4"
 			}
 		},
 		"@typescript-eslint/scope-manager": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/scope-manager/-/scope-manager-5.44.0.tgz",
-			"integrity": "sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
+			"integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
 			"dev": true,
 			"requires": {
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/visitor-keys": "5.44.0"
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/visitor-keys": "5.62.0"
 			}
 		},
 		"@typescript-eslint/type-utils": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/type-utils/-/type-utils-5.43.0.tgz",
-			"integrity": "sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==",
-			"dev": true,
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz",
+			"integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==",
 			"requires": {
-				"@typescript-eslint/typescript-estree": "5.43.0",
-				"@typescript-eslint/utils": "5.43.0",
+				"@typescript-eslint/typescript-estree": "5.59.7",
+				"@typescript-eslint/utils": "5.59.7",
 				"debug": "^4.3.4",
 				"tsutils": "^3.21.0"
 			},
 			"dependencies": {
 				"@typescript-eslint/types": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/types/-/types-5.43.0.tgz",
-					"integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==",
-					"dev": true
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/types/-/types-5.59.7.tgz",
+					"integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A=="
 				},
 				"@typescript-eslint/typescript-estree": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz",
-					"integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==",
-					"dev": true,
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
+					"integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
 					"requires": {
-						"@typescript-eslint/types": "5.43.0",
-						"@typescript-eslint/visitor-keys": "5.43.0",
+						"@typescript-eslint/types": "5.59.7",
+						"@typescript-eslint/visitor-keys": "5.59.7",
 						"debug": "^4.3.4",
 						"globby": "^11.1.0",
 						"is-glob": "^4.0.3",
@@ -37310,31 +34690,30 @@
 					}
 				},
 				"@typescript-eslint/visitor-keys": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz",
-					"integrity": "sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==",
-					"dev": true,
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
+					"integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
 					"requires": {
-						"@typescript-eslint/types": "5.43.0",
+						"@typescript-eslint/types": "5.59.7",
 						"eslint-visitor-keys": "^3.3.0"
 					}
 				}
 			}
 		},
 		"@typescript-eslint/types": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/types/-/types-5.44.0.tgz",
-			"integrity": "sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/types/-/types-5.62.0.tgz",
+			"integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
 			"dev": true
 		},
 		"@typescript-eslint/typescript-estree": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/typescript-estree/-/typescript-estree-5.44.0.tgz",
-			"integrity": "sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
+			"integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
 			"dev": true,
 			"requires": {
-				"@typescript-eslint/types": "5.44.0",
-				"@typescript-eslint/visitor-keys": "5.44.0",
+				"@typescript-eslint/types": "5.62.0",
+				"@typescript-eslint/visitor-keys": "5.62.0",
 				"debug": "^4.3.4",
 				"globby": "^11.1.0",
 				"is-glob": "^4.0.3",
@@ -37343,45 +34722,41 @@
 			}
 		},
 		"@typescript-eslint/utils": {
-			"version": "5.43.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/utils/-/utils-5.43.0.tgz",
-			"integrity": "sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==",
-			"dev": true,
+			"version": "5.59.7",
+			"resolved": "http://localhost:4873/@typescript-eslint/utils/-/utils-5.59.7.tgz",
+			"integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==",
 			"requires": {
+				"@eslint-community/eslint-utils": "^4.2.0",
 				"@types/json-schema": "^7.0.9",
 				"@types/semver": "^7.3.12",
-				"@typescript-eslint/scope-manager": "5.43.0",
-				"@typescript-eslint/types": "5.43.0",
-				"@typescript-eslint/typescript-estree": "5.43.0",
+				"@typescript-eslint/scope-manager": "5.59.7",
+				"@typescript-eslint/types": "5.59.7",
+				"@typescript-eslint/typescript-estree": "5.59.7",
 				"eslint-scope": "^5.1.1",
-				"eslint-utils": "^3.0.0",
 				"semver": "^7.3.7"
 			},
 			"dependencies": {
 				"@typescript-eslint/scope-manager": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz",
-					"integrity": "sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==",
-					"dev": true,
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz",
+					"integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==",
 					"requires": {
-						"@typescript-eslint/types": "5.43.0",
-						"@typescript-eslint/visitor-keys": "5.43.0"
+						"@typescript-eslint/types": "5.59.7",
+						"@typescript-eslint/visitor-keys": "5.59.7"
 					}
 				},
 				"@typescript-eslint/types": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/types/-/types-5.43.0.tgz",
-					"integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==",
-					"dev": true
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/types/-/types-5.59.7.tgz",
+					"integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A=="
 				},
 				"@typescript-eslint/typescript-estree": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz",
-					"integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==",
-					"dev": true,
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
+					"integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
 					"requires": {
-						"@typescript-eslint/types": "5.43.0",
-						"@typescript-eslint/visitor-keys": "5.43.0",
+						"@typescript-eslint/types": "5.59.7",
+						"@typescript-eslint/visitor-keys": "5.59.7",
 						"debug": "^4.3.4",
 						"globby": "^11.1.0",
 						"is-glob": "^4.0.3",
@@ -37390,20 +34765,18 @@
 					}
 				},
 				"@typescript-eslint/visitor-keys": {
-					"version": "5.43.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz",
-					"integrity": "sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==",
-					"dev": true,
+					"version": "5.59.7",
+					"resolved": "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
+					"integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
 					"requires": {
-						"@typescript-eslint/types": "5.43.0",
+						"@typescript-eslint/types": "5.59.7",
 						"eslint-visitor-keys": "^3.3.0"
 					}
 				},
 				"eslint-scope": {
 					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
+					"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
 					"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
-					"dev": true,
 					"requires": {
 						"esrecurse": "^4.3.0",
 						"estraverse": "^4.1.1"
@@ -37411,45 +34784,50 @@
 				},
 				"estraverse": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
-					"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
-					"dev": true
+					"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
+					"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
 				}
 			}
 		},
 		"@typescript-eslint/visitor-keys": {
-			"version": "5.44.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@typescript-eslint/visitor-keys/-/visitor-keys-5.44.0.tgz",
-			"integrity": "sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==",
+			"version": "5.62.0",
+			"resolved": "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
+			"integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
 			"dev": true,
 			"requires": {
-				"@typescript-eslint/types": "5.44.0",
+				"@typescript-eslint/types": "5.62.0",
 				"eslint-visitor-keys": "^3.3.0"
 			}
 		},
+		"@vitejs/plugin-basic-ssl": {
+			"version": "1.0.1",
+			"resolved": "http://localhost:4873/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz",
+			"integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==",
+			"dev": true
+		},
 		"@webassemblyjs/ast": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/ast/-/ast-1.11.1.tgz",
-			"integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/ast/-/ast-1.11.6.tgz",
+			"integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==",
 			"requires": {
-				"@webassemblyjs/helper-numbers": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1"
+				"@webassemblyjs/helper-numbers": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6"
 			}
 		},
 		"@webassemblyjs/floating-point-hex-parser": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
-			"integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz",
+			"integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw=="
 		},
 		"@webassemblyjs/helper-api-error": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
-			"integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz",
+			"integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q=="
 		},
 		"@webassemblyjs/helper-buffer": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
-			"integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz",
+			"integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA=="
 		},
 		"@webassemblyjs/helper-code-frame": {
 			"version": "1.9.0",
@@ -37525,101 +34903,101 @@
 			}
 		},
 		"@webassemblyjs/helper-numbers": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
-			"integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz",
+			"integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==",
 			"requires": {
-				"@webassemblyjs/floating-point-hex-parser": "1.11.1",
-				"@webassemblyjs/helper-api-error": "1.11.1",
+				"@webassemblyjs/floating-point-hex-parser": "1.11.6",
+				"@webassemblyjs/helper-api-error": "1.11.6",
 				"@xtuc/long": "4.2.2"
 			}
 		},
 		"@webassemblyjs/helper-wasm-bytecode": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
-			"integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz",
+			"integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA=="
 		},
 		"@webassemblyjs/helper-wasm-section": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
-			"integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz",
+			"integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==",
 			"requires": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-buffer": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/wasm-gen": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-buffer": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/wasm-gen": "1.11.6"
 			}
 		},
 		"@webassemblyjs/ieee754": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
-			"integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz",
+			"integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==",
 			"requires": {
 				"@xtuc/ieee754": "^1.2.0"
 			}
 		},
 		"@webassemblyjs/leb128": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
-			"integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/leb128/-/leb128-1.11.6.tgz",
+			"integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==",
 			"requires": {
 				"@xtuc/long": "4.2.2"
 			}
 		},
 		"@webassemblyjs/utf8": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
-			"integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/utf8/-/utf8-1.11.6.tgz",
+			"integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA=="
 		},
 		"@webassemblyjs/wasm-edit": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
-			"integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz",
+			"integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==",
 			"requires": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-buffer": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/helper-wasm-section": "1.11.1",
-				"@webassemblyjs/wasm-gen": "1.11.1",
-				"@webassemblyjs/wasm-opt": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1",
-				"@webassemblyjs/wast-printer": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-buffer": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/helper-wasm-section": "1.11.6",
+				"@webassemblyjs/wasm-gen": "1.11.6",
+				"@webassemblyjs/wasm-opt": "1.11.6",
+				"@webassemblyjs/wasm-parser": "1.11.6",
+				"@webassemblyjs/wast-printer": "1.11.6"
 			}
 		},
 		"@webassemblyjs/wasm-gen": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
-			"integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz",
+			"integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==",
 			"requires": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/ieee754": "1.11.1",
-				"@webassemblyjs/leb128": "1.11.1",
-				"@webassemblyjs/utf8": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/ieee754": "1.11.6",
+				"@webassemblyjs/leb128": "1.11.6",
+				"@webassemblyjs/utf8": "1.11.6"
 			}
 		},
 		"@webassemblyjs/wasm-opt": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
-			"integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz",
+			"integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==",
 			"requires": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-buffer": "1.11.1",
-				"@webassemblyjs/wasm-gen": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-buffer": "1.11.6",
+				"@webassemblyjs/wasm-gen": "1.11.6",
+				"@webassemblyjs/wasm-parser": "1.11.6"
 			}
 		},
 		"@webassemblyjs/wasm-parser": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
-			"integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz",
+			"integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==",
 			"requires": {
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/helper-api-error": "1.11.1",
-				"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
-				"@webassemblyjs/ieee754": "1.11.1",
-				"@webassemblyjs/leb128": "1.11.1",
-				"@webassemblyjs/utf8": "1.11.1"
+				"@webassemblyjs/ast": "1.11.6",
+				"@webassemblyjs/helper-api-error": "1.11.6",
+				"@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+				"@webassemblyjs/ieee754": "1.11.6",
+				"@webassemblyjs/leb128": "1.11.6",
+				"@webassemblyjs/utf8": "1.11.6"
 			}
 		},
 		"@webassemblyjs/wast-parser": {
@@ -37668,14 +35046,77 @@
 			}
 		},
 		"@webassemblyjs/wast-printer": {
-			"version": "1.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
-			"integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
+			"version": "1.11.6",
+			"resolved": "http://localhost:4873/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz",
+			"integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==",
 			"requires": {
-				"@webassemblyjs/ast": "1.11.1",
+				"@webassemblyjs/ast": "1.11.6",
 				"@xtuc/long": "4.2.2"
 			}
 		},
+		"@wessberg/ts-evaluator": {
+			"version": "0.0.27",
+			"resolved": "http://localhost:4873/@wessberg/ts-evaluator/-/ts-evaluator-0.0.27.tgz",
+			"integrity": "sha512-7gOpVm3yYojUp/Yn7F4ZybJRxyqfMNf0LXK5KJiawbPfL0XTsJV+0mgrEDjOIR6Bi0OYk2Cyg4tjFu1r8MCZaA==",
+			"dev": true,
+			"requires": {
+				"chalk": "^4.1.0",
+				"jsdom": "^16.4.0",
+				"object-path": "^0.11.5",
+				"tslib": "^2.0.3"
+			},
+			"dependencies": {
+				"ansi-styles": {
+					"version": "4.3.0",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+					"dev": true,
+					"requires": {
+						"color-convert": "^2.0.1"
+					}
+				},
+				"chalk": {
+					"version": "4.1.2",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
+					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+					"dev": true,
+					"requires": {
+						"ansi-styles": "^4.1.0",
+						"supports-color": "^7.1.0"
+					}
+				},
+				"color-convert": {
+					"version": "2.0.1",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
+					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+					"dev": true,
+					"requires": {
+						"color-name": "~1.1.4"
+					}
+				},
+				"color-name": {
+					"version": "1.1.4",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+					"dev": true
+				},
+				"has-flag": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
+					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+					"dev": true
+				},
+				"supports-color": {
+					"version": "7.2.0",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
+					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+					"dev": true,
+					"requires": {
+						"has-flag": "^4.0.0"
+					}
+				}
+			}
+		},
 		"@xtuc/ieee754": {
 			"version": "1.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
@@ -37692,9 +35133,9 @@
 			"integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="
 		},
 		"@yarnpkg/parsers": {
-			"version": "3.0.0-rc.42",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@yarnpkg/parsers/-/parsers-3.0.0-rc.42.tgz",
-			"integrity": "sha512-eW9Mbegmb5bJjwawJM9ghjUjUqciNMhC6L7XrQPF/clXS5bbP66MstsgCT5hy9VlfUh/CfBT+0Wucf531dMjHA==",
+			"version": "3.0.0-rc.46",
+			"resolved": "http://localhost:4873/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz",
+			"integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==",
 			"requires": {
 				"js-yaml": "^3.10.0",
 				"tslib": "^2.4.0"
@@ -37722,13 +35163,13 @@
 		},
 		"abbrev": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/abbrev/-/abbrev-1.1.1.tgz",
+			"resolved": "http://localhost:4873/abbrev/-/abbrev-1.1.1.tgz",
 			"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
 			"dev": true
 		},
 		"accepts": {
 			"version": "1.3.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/accepts/-/accepts-1.3.8.tgz",
+			"resolved": "http://localhost:4873/accepts/-/accepts-1.3.8.tgz",
 			"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
 			"requires": {
 				"mime-types": "~2.1.34",
@@ -37736,13 +35177,13 @@
 			}
 		},
 		"acorn": {
-			"version": "8.8.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn/-/acorn-8.8.2.tgz",
-			"integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw=="
+			"version": "8.10.0",
+			"resolved": "http://localhost:4873/acorn/-/acorn-8.10.0.tgz",
+			"integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="
 		},
 		"acorn-globals": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-globals/-/acorn-globals-6.0.0.tgz",
+			"resolved": "http://localhost:4873/acorn-globals/-/acorn-globals-6.0.0.tgz",
 			"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
 			"dev": true,
 			"requires": {
@@ -37752,31 +35193,34 @@
 			"dependencies": {
 				"acorn": {
 					"version": "7.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn/-/acorn-7.4.1.tgz",
+					"resolved": "http://localhost:4873/acorn/-/acorn-7.4.1.tgz",
 					"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
 					"dev": true
 				}
 			}
 		},
 		"acorn-import-assertions": {
-			"version": "1.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
-			"integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
-			"requires": {}
+			"version": "1.9.0",
+			"resolved": "http://localhost:4873/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz",
+			"integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA=="
 		},
 		"acorn-jsx": {
 			"version": "5.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+			"resolved": "http://localhost:4873/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
 			"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
-			"devOptional": true,
-			"requires": {}
+			"dev": true
 		},
 		"acorn-walk": {
 			"version": "7.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/acorn-walk/-/acorn-walk-7.2.0.tgz",
+			"resolved": "http://localhost:4873/acorn-walk/-/acorn-walk-7.2.0.tgz",
 			"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
 			"dev": true
 		},
+		"address": {
+			"version": "1.2.2",
+			"resolved": "http://localhost:4873/address/-/address-1.2.2.tgz",
+			"integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA=="
+		},
 		"adjust-sourcemap-loader": {
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
@@ -37816,13 +35260,11 @@
 			}
 		},
 		"agentkeepalive": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/agentkeepalive/-/agentkeepalive-4.3.0.tgz",
-			"integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==",
+			"version": "4.5.0",
+			"resolved": "http://localhost:4873/agentkeepalive/-/agentkeepalive-4.5.0.tgz",
+			"integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==",
 			"dev": true,
 			"requires": {
-				"debug": "^4.1.0",
-				"depd": "^2.0.0",
 				"humanize-ms": "^1.2.1"
 			}
 		},
@@ -37830,7 +35272,7 @@
 			"version": "3.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aggregate-error/-/aggregate-error-3.1.0.tgz",
 			"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"clean-stack": "^2.0.0",
 				"indent-string": "^4.0.0"
@@ -37851,8 +35293,7 @@
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-errors/-/ajv-errors-1.0.1.tgz",
 			"integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"ajv-formats": {
 			"version": "2.1.1",
@@ -37902,7 +35343,7 @@
 		},
 		"ansi-html-community": {
 			"version": "0.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
+			"resolved": "http://localhost:4873/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
 			"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="
 		},
 		"ansi-regex": {
@@ -37912,7 +35353,7 @@
 		},
 		"ansi-styles": {
 			"version": "3.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-3.2.1.tgz",
+			"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-3.2.1.tgz",
 			"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
 			"requires": {
 				"color-convert": "^1.9.0"
@@ -37929,7 +35370,7 @@
 		},
 		"aproba": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aproba/-/aproba-2.0.0.tgz",
+			"resolved": "http://localhost:4873/aproba/-/aproba-2.0.0.tgz",
 			"integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
 			"dev": true
 		},
@@ -37937,11 +35378,11 @@
 			"version": "2.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/arch/-/arch-2.2.0.tgz",
 			"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"are-we-there-yet": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
+			"resolved": "http://localhost:4873/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
 			"integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
 			"dev": true,
 			"requires": {
@@ -37991,14 +35432,13 @@
 		},
 		"array-flatten": {
 			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-flatten/-/array-flatten-2.1.2.tgz",
+			"resolved": "http://localhost:4873/array-flatten/-/array-flatten-2.1.2.tgz",
 			"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
 		},
 		"array-union": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-union/-/array-union-2.1.0.tgz",
-			"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
-			"dev": true
+			"resolved": "http://localhost:4873/array-union/-/array-union-2.1.0.tgz",
+			"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
 		},
 		"array-unique": {
 			"version": "0.3.2",
@@ -38008,9 +35448,9 @@
 		},
 		"asn1": {
 			"version": "0.2.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/asn1/-/asn1-0.2.6.tgz",
+			"resolved": "http://localhost:4873/asn1/-/asn1-0.2.6.tgz",
 			"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"safer-buffer": "~2.1.0"
 			}
@@ -38064,9 +35504,9 @@
 		},
 		"assert-plus": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/assert-plus/-/assert-plus-1.0.0.tgz",
+			"resolved": "http://localhost:4873/assert-plus/-/assert-plus-1.0.0.tgz",
 			"integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
-			"devOptional": true
+			"dev": true
 		},
 		"assign-symbols": {
 			"version": "1.0.0",
@@ -38078,7 +35518,7 @@
 			"version": "2.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/astral-regex/-/astral-regex-2.0.0.tgz",
 			"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"async": {
 			"version": "3.2.4",
@@ -38101,20 +35541,21 @@
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/at-least-node/-/at-least-node-1.0.0.tgz",
 			"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
-			"devOptional": true
+			"dev": true
 		},
 		"atob": {
 			"version": "2.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/atob/-/atob-2.1.2.tgz",
-			"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
+			"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+			"dev": true
 		},
 		"autoprefixer": {
-			"version": "10.4.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/autoprefixer/-/autoprefixer-10.4.13.tgz",
-			"integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==",
+			"version": "10.4.14",
+			"resolved": "http://localhost:4873/autoprefixer/-/autoprefixer-10.4.14.tgz",
+			"integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
 			"requires": {
-				"browserslist": "^4.21.4",
-				"caniuse-lite": "^1.0.30001426",
+				"browserslist": "^4.21.5",
+				"caniuse-lite": "^1.0.30001464",
 				"fraction.js": "^4.2.0",
 				"normalize-range": "^0.1.2",
 				"picocolors": "^1.0.0",
@@ -38129,15 +35570,15 @@
 		},
 		"aws-sign2": {
 			"version": "0.7.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aws-sign2/-/aws-sign2-0.7.0.tgz",
+			"resolved": "http://localhost:4873/aws-sign2/-/aws-sign2-0.7.0.tgz",
 			"integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
-			"devOptional": true
+			"dev": true
 		},
 		"aws4": {
 			"version": "1.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/aws4/-/aws4-1.12.0.tgz",
+			"resolved": "http://localhost:4873/aws4/-/aws4-1.12.0.tgz",
 			"integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==",
-			"devOptional": true
+			"dev": true
 		},
 		"axios": {
 			"version": "1.3.5",
@@ -38176,14 +35617,14 @@
 			}
 		},
 		"babel-jest": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-jest/-/babel-jest-28.1.3.tgz",
-			"integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/babel-jest/-/babel-jest-29.7.0.tgz",
+			"integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==",
 			"requires": {
-				"@jest/transform": "^28.1.3",
+				"@jest/transform": "^29.7.0",
 				"@types/babel__core": "^7.1.14",
 				"babel-plugin-istanbul": "^6.1.1",
-				"babel-preset-jest": "^28.1.3",
+				"babel-preset-jest": "^29.6.3",
 				"chalk": "^4.0.0",
 				"graceful-fs": "^4.2.9",
 				"slash": "^3.0.0"
@@ -38191,7 +35632,7 @@
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -38199,7 +35640,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -38208,7 +35649,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -38216,17 +35657,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -38235,12 +35676,74 @@
 			}
 		},
 		"babel-loader": {
-			"version": "9.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-loader/-/babel-loader-9.1.2.tgz",
-			"integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==",
+			"version": "9.1.3",
+			"resolved": "http://localhost:4873/babel-loader/-/babel-loader-9.1.3.tgz",
+			"integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==",
 			"requires": {
-				"find-cache-dir": "^3.3.2",
+				"find-cache-dir": "^4.0.0",
 				"schema-utils": "^4.0.0"
+			},
+			"dependencies": {
+				"find-cache-dir": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/find-cache-dir/-/find-cache-dir-4.0.0.tgz",
+					"integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==",
+					"requires": {
+						"common-path-prefix": "^3.0.0",
+						"pkg-dir": "^7.0.0"
+					}
+				},
+				"find-up": {
+					"version": "6.3.0",
+					"resolved": "http://localhost:4873/find-up/-/find-up-6.3.0.tgz",
+					"integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
+					"requires": {
+						"locate-path": "^7.1.0",
+						"path-exists": "^5.0.0"
+					}
+				},
+				"locate-path": {
+					"version": "7.2.0",
+					"resolved": "http://localhost:4873/locate-path/-/locate-path-7.2.0.tgz",
+					"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
+					"requires": {
+						"p-locate": "^6.0.0"
+					}
+				},
+				"p-limit": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/p-limit/-/p-limit-4.0.0.tgz",
+					"integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
+					"requires": {
+						"yocto-queue": "^1.0.0"
+					}
+				},
+				"p-locate": {
+					"version": "6.0.0",
+					"resolved": "http://localhost:4873/p-locate/-/p-locate-6.0.0.tgz",
+					"integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
+					"requires": {
+						"p-limit": "^4.0.0"
+					}
+				},
+				"path-exists": {
+					"version": "5.0.0",
+					"resolved": "http://localhost:4873/path-exists/-/path-exists-5.0.0.tgz",
+					"integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ=="
+				},
+				"pkg-dir": {
+					"version": "7.0.0",
+					"resolved": "http://localhost:4873/pkg-dir/-/pkg-dir-7.0.0.tgz",
+					"integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==",
+					"requires": {
+						"find-up": "^6.3.0"
+					}
+				},
+				"yocto-queue": {
+					"version": "1.0.0",
+					"resolved": "http://localhost:4873/yocto-queue/-/yocto-queue-1.0.0.tgz",
+					"integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g=="
+				}
 			}
 		},
 		"babel-plugin-add-module-exports": {
@@ -38251,7 +35754,7 @@
 		},
 		"babel-plugin-const-enum": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz",
+			"resolved": "http://localhost:4873/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz",
 			"integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.0.0",
@@ -38272,9 +35775,9 @@
 			}
 		},
 		"babel-plugin-jest-hoist": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz",
-			"integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz",
+			"integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==",
 			"requires": {
 				"@babel/template": "^7.3.3",
 				"@babel/types": "^7.3.3",
@@ -38284,7 +35787,7 @@
 		},
 		"babel-plugin-macros": {
 			"version": "2.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
+			"resolved": "http://localhost:4873/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
 			"integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
 			"requires": {
 				"@babel/runtime": "^7.7.2",
@@ -38293,42 +35796,42 @@
 			}
 		},
 		"babel-plugin-polyfill-corejs2": {
-			"version": "0.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
-			"integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
+			"version": "0.4.6",
+			"resolved": "http://localhost:4873/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz",
+			"integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==",
 			"requires": {
-				"@babel/compat-data": "^7.17.7",
-				"@babel/helper-define-polyfill-provider": "^0.3.3",
-				"semver": "^6.1.1"
+				"@babel/compat-data": "^7.22.6",
+				"@babel/helper-define-polyfill-provider": "^0.4.3",
+				"semver": "^6.3.1"
 			},
 			"dependencies": {
 				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+					"version": "6.3.1",
+					"resolved": "http://localhost:4873/semver/-/semver-6.3.1.tgz",
+					"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 				}
 			}
 		},
 		"babel-plugin-polyfill-corejs3": {
-			"version": "0.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
-			"integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
+			"version": "0.8.6",
+			"resolved": "http://localhost:4873/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz",
+			"integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==",
 			"requires": {
-				"@babel/helper-define-polyfill-provider": "^0.3.3",
-				"core-js-compat": "^3.25.1"
+				"@babel/helper-define-polyfill-provider": "^0.4.3",
+				"core-js-compat": "^3.33.1"
 			}
 		},
 		"babel-plugin-polyfill-regenerator": {
-			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
-			"integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
+			"version": "0.5.3",
+			"resolved": "http://localhost:4873/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz",
+			"integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==",
 			"requires": {
-				"@babel/helper-define-polyfill-provider": "^0.3.3"
+				"@babel/helper-define-polyfill-provider": "^0.4.3"
 			}
 		},
 		"babel-plugin-transform-typescript-metadata": {
 			"version": "0.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz",
+			"resolved": "http://localhost:4873/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz",
 			"integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==",
 			"requires": {
 				"@babel/helper-plugin-utils": "^7.0.0"
@@ -38336,7 +35839,7 @@
 		},
 		"babel-preset-current-node-syntax": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
+			"resolved": "http://localhost:4873/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
 			"integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
 			"requires": {
 				"@babel/plugin-syntax-async-generators": "^7.8.4",
@@ -38354,11 +35857,11 @@
 			}
 		},
 		"babel-preset-jest": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz",
-			"integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==",
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
+			"integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
 			"requires": {
-				"babel-plugin-jest-hoist": "^28.1.3",
+				"babel-plugin-jest-hoist": "^29.6.3",
 				"babel-preset-current-node-syntax": "^1.0.0"
 			}
 		},
@@ -38398,31 +35901,16 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/base64-js/-/base64-js-1.5.1.tgz",
 			"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
 		},
-		"basic-auth": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/basic-auth/-/basic-auth-2.0.1.tgz",
-			"integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
-			"requires": {
-				"safe-buffer": "5.1.2"
-			},
-			"dependencies": {
-				"safe-buffer": {
-					"version": "5.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safe-buffer/-/safe-buffer-5.1.2.tgz",
-					"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
-				}
-			}
-		},
 		"batch": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/batch/-/batch-0.6.1.tgz",
+			"resolved": "http://localhost:4873/batch/-/batch-0.6.1.tgz",
 			"integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="
 		},
 		"bcrypt-pbkdf": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+			"resolved": "http://localhost:4873/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
 			"integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"tweetnacl": "^0.14.3"
 			}
@@ -38461,7 +35949,7 @@
 			"version": "2.0.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/blob-util/-/blob-util-2.0.2.tgz",
 			"integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"bluebird": {
 			"version": "3.7.1",
@@ -38477,7 +35965,7 @@
 		},
 		"body-parser": {
 			"version": "1.20.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/body-parser/-/body-parser-1.20.1.tgz",
+			"resolved": "http://localhost:4873/body-parser/-/body-parser-1.20.1.tgz",
 			"integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
 			"requires": {
 				"bytes": "3.1.2",
@@ -38496,12 +35984,12 @@
 			"dependencies": {
 				"bytes": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bytes/-/bytes-3.1.2.tgz",
+					"resolved": "http://localhost:4873/bytes/-/bytes-3.1.2.tgz",
 					"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
 				},
 				"debug": {
 					"version": "2.6.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+					"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 					"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 					"requires": {
 						"ms": "2.0.0"
@@ -38509,12 +35997,12 @@
 				},
 				"ms": {
 					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-					"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+					"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+					"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 				},
 				"qs": {
 					"version": "6.11.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/qs/-/qs-6.11.0.tgz",
+					"resolved": "http://localhost:4873/qs/-/qs-6.11.0.tgz",
 					"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
 					"requires": {
 						"side-channel": "^1.0.4"
@@ -38524,7 +36012,7 @@
 		},
 		"bonjour-service": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bonjour-service/-/bonjour-service-1.1.1.tgz",
+			"resolved": "http://localhost:4873/bonjour-service/-/bonjour-service-1.1.1.tgz",
 			"integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==",
 			"requires": {
 				"array-flatten": "^2.1.2",
@@ -38535,7 +36023,7 @@
 		},
 		"boolbase": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/boolbase/-/boolbase-1.0.0.tgz",
+			"resolved": "http://localhost:4873/boolbase/-/boolbase-1.0.0.tgz",
 			"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
 		},
 		"brace-expansion": {
@@ -38563,17 +36051,10 @@
 		},
 		"browser-process-hrtime": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+			"resolved": "http://localhost:4873/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
 			"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
 			"dev": true
 		},
-		"browser-stdout": {
-			"version": "1.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browser-stdout/-/browser-stdout-1.3.1.tgz",
-			"integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
-			"dev": true,
-			"peer": true
-		},
 		"browserify-aes": {
 			"version": "1.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browserify-aes/-/browserify-aes-1.2.0.tgz",
@@ -38648,19 +36129,19 @@
 			}
 		},
 		"browserslist": {
-			"version": "4.21.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browserslist/-/browserslist-4.21.4.tgz",
-			"integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==",
+			"version": "4.22.1",
+			"resolved": "http://localhost:4873/browserslist/-/browserslist-4.22.1.tgz",
+			"integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==",
 			"requires": {
-				"caniuse-lite": "^1.0.30001400",
-				"electron-to-chromium": "^1.4.251",
-				"node-releases": "^2.0.6",
-				"update-browserslist-db": "^1.0.9"
+				"caniuse-lite": "^1.0.30001541",
+				"electron-to-chromium": "^1.4.535",
+				"node-releases": "^2.0.13",
+				"update-browserslist-db": "^1.0.13"
 			}
 		},
 		"bs-logger": {
 			"version": "0.2.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bs-logger/-/bs-logger-0.2.6.tgz",
+			"resolved": "http://localhost:4873/bs-logger/-/bs-logger-0.2.6.tgz",
 			"integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
 			"dev": true,
 			"requires": {
@@ -38669,7 +36150,7 @@
 		},
 		"bser": {
 			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bser/-/bser-2.1.1.tgz",
+			"resolved": "http://localhost:4873/bser/-/bser-2.1.1.tgz",
 			"integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
 			"requires": {
 				"node-int64": "^0.4.0"
@@ -38697,7 +36178,7 @@
 			"version": "0.2.13",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
 			"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"buffer-from": {
 			"version": "1.1.2",
@@ -38720,32 +36201,30 @@
 			"version": "5.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/builtins/-/builtins-5.0.1.tgz",
 			"integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
-			"dev": true,
 			"requires": {
 				"semver": "^7.0.0"
 			}
 		},
 		"bytes": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bytes/-/bytes-3.0.0.tgz",
+			"resolved": "http://localhost:4873/bytes/-/bytes-3.0.0.tgz",
 			"integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw=="
 		},
 		"cacache": {
-			"version": "17.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cacache/-/cacache-17.0.4.tgz",
-			"integrity": "sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==",
+			"version": "17.1.4",
+			"resolved": "http://localhost:4873/cacache/-/cacache-17.1.4.tgz",
+			"integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==",
 			"dev": true,
 			"requires": {
 				"@npmcli/fs": "^3.1.0",
 				"fs-minipass": "^3.0.0",
-				"glob": "^8.0.1",
+				"glob": "^10.2.2",
 				"lru-cache": "^7.7.1",
-				"minipass": "^4.0.0",
+				"minipass": "^7.0.3",
 				"minipass-collect": "^1.0.2",
 				"minipass-flush": "^1.0.5",
 				"minipass-pipeline": "^1.2.4",
 				"p-map": "^4.0.0",
-				"promise-inflight": "^1.0.1",
 				"ssri": "^10.0.0",
 				"tar": "^6.1.11",
 				"unique-filename": "^3.0.0"
@@ -38753,9 +36232,15 @@
 			"dependencies": {
 				"lru-cache": {
 					"version": "7.18.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 					"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 					"dev": true
+				},
+				"minipass": {
+					"version": "7.0.4",
+					"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+					"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+					"dev": true
 				}
 			}
 		},
@@ -38780,7 +36265,7 @@
 			"version": "2.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cachedir/-/cachedir-2.3.0.tgz",
 			"integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==",
-			"devOptional": true
+			"dev": true
 		},
 		"call-bind": {
 			"version": "1.0.2",
@@ -38793,7 +36278,7 @@
 		},
 		"callsites": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/callsites/-/callsites-3.1.0.tgz",
+			"resolved": "http://localhost:4873/callsites/-/callsites-3.1.0.tgz",
 			"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
 		},
 		"camelcase": {
@@ -38803,7 +36288,7 @@
 		},
 		"caniuse-api": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/caniuse-api/-/caniuse-api-3.0.0.tgz",
+			"resolved": "http://localhost:4873/caniuse-api/-/caniuse-api-3.0.0.tgz",
 			"integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
 			"requires": {
 				"browserslist": "^4.0.0",
@@ -38813,19 +36298,19 @@
 			}
 		},
 		"caniuse-lite": {
-			"version": "1.0.30001539",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/caniuse-lite/-/caniuse-lite-1.0.30001539.tgz",
-			"integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA=="
+			"version": "1.0.30001554",
+			"resolved": "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001554.tgz",
+			"integrity": "sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ=="
 		},
 		"caseless": {
 			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/caseless/-/caseless-0.12.0.tgz",
+			"resolved": "http://localhost:4873/caseless/-/caseless-0.12.0.tgz",
 			"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
-			"devOptional": true
+			"dev": true
 		},
 		"chalk": {
 			"version": "2.4.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-2.4.2.tgz",
+			"resolved": "http://localhost:4873/chalk/-/chalk-2.4.2.tgz",
 			"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
 			"requires": {
 				"ansi-styles": "^3.2.1",
@@ -38835,7 +36320,7 @@
 		},
 		"char-regex": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/char-regex/-/char-regex-1.0.2.tgz",
+			"resolved": "http://localhost:4873/char-regex/-/char-regex-1.0.2.tgz",
 			"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="
 		},
 		"chardet": {
@@ -38848,7 +36333,7 @@
 			"version": "2.24.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/check-more-types/-/check-more-types-2.24.0.tgz",
 			"integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==",
-			"devOptional": true
+			"dev": true
 		},
 		"chokidar": {
 			"version": "3.5.3",
@@ -38867,7 +36352,7 @@
 		},
 		"chownr": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chownr/-/chownr-2.0.0.tgz",
+			"resolved": "http://localhost:4873/chownr/-/chownr-2.0.0.tgz",
 			"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
 			"dev": true
 		},
@@ -38892,9 +36377,9 @@
 			}
 		},
 		"cjs-module-lexer": {
-			"version": "1.2.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
-			"integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="
+			"version": "1.2.3",
+			"resolved": "http://localhost:4873/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
+			"integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ=="
 		},
 		"class-utils": {
 			"version": "0.3.6",
@@ -38980,7 +36465,7 @@
 			"version": "2.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/clean-stack/-/clean-stack-2.2.0.tgz",
 			"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
-			"devOptional": true
+			"dev": true
 		},
 		"cli-cursor": {
 			"version": "3.1.0",
@@ -38999,7 +36484,7 @@
 			"version": "0.6.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cli-table3/-/cli-table3-0.6.3.tgz",
 			"integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"@colors/colors": "1.5.0",
 				"string-width": "^4.2.0"
@@ -39009,7 +36494,7 @@
 			"version": "2.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cli-truncate/-/cli-truncate-2.1.0.tgz",
 			"integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"slice-ansi": "^3.0.0",
 				"string-width": "^4.2.0"
@@ -39021,16 +36506,6 @@
 			"integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
 			"dev": true
 		},
-		"cliui": {
-			"version": "7.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cliui/-/cliui-7.0.4.tgz",
-			"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
-			"requires": {
-				"string-width": "^4.2.0",
-				"strip-ansi": "^6.0.0",
-				"wrap-ansi": "^7.0.0"
-			}
-		},
 		"clone": {
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/clone/-/clone-1.0.4.tgz",
@@ -39038,7 +36513,7 @@
 		},
 		"clone-deep": {
 			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/clone-deep/-/clone-deep-4.0.1.tgz",
+			"resolved": "http://localhost:4873/clone-deep/-/clone-deep-4.0.1.tgz",
 			"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
 			"requires": {
 				"is-plain-object": "^2.0.4",
@@ -39048,7 +36523,7 @@
 		},
 		"co": {
 			"version": "4.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/co/-/co-4.6.0.tgz",
+			"resolved": "http://localhost:4873/co/-/co-4.6.0.tgz",
 			"integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ=="
 		},
 		"coffee-loader": {
@@ -39089,9 +36564,9 @@
 			"dev": true
 		},
 		"collect-v8-coverage": {
-			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
-			"integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="
+			"version": "1.0.2",
+			"resolved": "http://localhost:4873/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
+			"integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
 		},
 		"collection-visit": {
 			"version": "1.0.0",
@@ -39105,7 +36580,7 @@
 		},
 		"color-convert": {
 			"version": "1.9.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-1.9.3.tgz",
+			"resolved": "http://localhost:4873/color-convert/-/color-convert-1.9.3.tgz",
 			"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
 			"requires": {
 				"color-name": "1.1.3"
@@ -39113,7 +36588,7 @@
 		},
 		"color-name": {
 			"version": "1.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.3.tgz",
+			"resolved": "http://localhost:4873/color-name/-/color-name-1.1.3.tgz",
 			"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
 		},
 		"color-support": {
@@ -39124,7 +36599,7 @@
 		},
 		"colord": {
 			"version": "2.9.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/colord/-/colord-2.9.3.tgz",
+			"resolved": "http://localhost:4873/colord/-/colord-2.9.3.tgz",
 			"integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="
 		},
 		"colorette": {
@@ -39132,6 +36607,15 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/colorette/-/colorette-2.0.19.tgz",
 			"integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="
 		},
+		"columnify": {
+			"version": "1.6.0",
+			"resolved": "http://localhost:4873/columnify/-/columnify-1.6.0.tgz",
+			"integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==",
+			"requires": {
+				"strip-ansi": "^6.0.1",
+				"wcwidth": "^1.0.0"
+			}
+		},
 		"combined-stream": {
 			"version": "1.0.8",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/combined-stream/-/combined-stream-1.0.8.tgz",
@@ -39144,13 +36628,18 @@
 			"version": "6.2.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-6.2.1.tgz",
 			"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
-			"devOptional": true
+			"dev": true
+		},
+		"common-path-prefix": {
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
+			"integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="
 		},
 		"common-tags": {
 			"version": "1.8.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/common-tags/-/common-tags-1.8.2.tgz",
 			"integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==",
-			"devOptional": true
+			"dev": true
 		},
 		"commondir": {
 			"version": "1.0.1",
@@ -39165,7 +36654,7 @@
 		},
 		"compressible": {
 			"version": "2.0.18",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/compressible/-/compressible-2.0.18.tgz",
+			"resolved": "http://localhost:4873/compressible/-/compressible-2.0.18.tgz",
 			"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
 			"requires": {
 				"mime-db": ">= 1.43.0 < 2"
@@ -39173,7 +36662,7 @@
 		},
 		"compression": {
 			"version": "1.7.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/compression/-/compression-1.7.4.tgz",
+			"resolved": "http://localhost:4873/compression/-/compression-1.7.4.tgz",
 			"integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
 			"requires": {
 				"accepts": "~1.3.5",
@@ -39187,7 +36676,7 @@
 			"dependencies": {
 				"debug": {
 					"version": "2.6.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+					"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 					"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 					"requires": {
 						"ms": "2.0.0"
@@ -39195,12 +36684,12 @@
 				},
 				"ms": {
 					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-					"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+					"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+					"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 				},
 				"safe-buffer": {
 					"version": "5.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safe-buffer/-/safe-buffer-5.1.2.tgz",
+					"resolved": "http://localhost:4873/safe-buffer/-/safe-buffer-5.1.2.tgz",
 					"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
 				}
 			}
@@ -39262,13 +36751,13 @@
 		},
 		"confusing-browser-globals": {
 			"version": "1.0.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
+			"resolved": "http://localhost:4873/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
 			"integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==",
 			"dev": true
 		},
 		"connect-history-api-fallback": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
+			"resolved": "http://localhost:4873/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
 			"integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA=="
 		},
 		"console-browserify": {
@@ -39279,7 +36768,7 @@
 		},
 		"console-control-strings": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/console-control-strings/-/console-control-strings-1.1.0.tgz",
+			"resolved": "http://localhost:4873/console-control-strings/-/console-control-strings-1.1.0.tgz",
 			"integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
 			"dev": true
 		},
@@ -39291,7 +36780,7 @@
 		},
 		"content-disposition": {
 			"version": "0.5.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/content-disposition/-/content-disposition-0.5.4.tgz",
+			"resolved": "http://localhost:4873/content-disposition/-/content-disposition-0.5.4.tgz",
 			"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
 			"requires": {
 				"safe-buffer": "5.2.1"
@@ -39299,22 +36788,23 @@
 		},
 		"content-type": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/content-type/-/content-type-1.0.5.tgz",
+			"resolved": "http://localhost:4873/content-type/-/content-type-1.0.5.tgz",
 			"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="
 		},
 		"convert-source-map": {
 			"version": "1.9.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/convert-source-map/-/convert-source-map-1.9.0.tgz",
-			"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
+			"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+			"dev": true
 		},
 		"cookie": {
 			"version": "0.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cookie/-/cookie-0.5.0.tgz",
+			"resolved": "http://localhost:4873/cookie/-/cookie-0.5.0.tgz",
 			"integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="
 		},
 		"cookie-signature": {
 			"version": "1.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cookie-signature/-/cookie-signature-1.0.6.tgz",
+			"resolved": "http://localhost:4873/cookie-signature/-/cookie-signature-1.0.6.tgz",
 			"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
 		},
 		"copy-anything": {
@@ -39408,30 +36898,6 @@
 				"serialize-javascript": "^6.0.0"
 			},
 			"dependencies": {
-				"fast-glob": {
-					"version": "3.2.12",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.12.tgz",
-					"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
-					"dev": true,
-					"requires": {
-						"@nodelib/fs.stat": "^2.0.2",
-						"@nodelib/fs.walk": "^1.2.3",
-						"glob-parent": "^5.1.2",
-						"merge2": "^1.3.0",
-						"micromatch": "^4.0.4"
-					},
-					"dependencies": {
-						"glob-parent": {
-							"version": "5.1.2",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-5.1.2.tgz",
-							"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
-							"dev": true,
-							"requires": {
-								"is-glob": "^4.0.1"
-							}
-						}
-					}
-				},
 				"glob-parent": {
 					"version": "6.0.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-6.0.2.tgz",
@@ -39463,24 +36929,11 @@
 			}
 		},
 		"core-js-compat": {
-			"version": "3.30.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/core-js-compat/-/core-js-compat-3.30.0.tgz",
-			"integrity": "sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==",
+			"version": "3.33.1",
+			"resolved": "http://localhost:4873/core-js-compat/-/core-js-compat-3.33.1.tgz",
+			"integrity": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==",
 			"requires": {
-				"browserslist": "^4.21.5"
-			},
-			"dependencies": {
-				"browserslist": {
-					"version": "4.21.5",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/browserslist/-/browserslist-4.21.5.tgz",
-					"integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
-					"requires": {
-						"caniuse-lite": "^1.0.30001449",
-						"electron-to-chromium": "^1.4.284",
-						"node-releases": "^2.0.8",
-						"update-browserslist-db": "^1.0.10"
-					}
-				}
+				"browserslist": "^4.22.1"
 			}
 		},
 		"core-util-is": {
@@ -39488,14 +36941,9 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/core-util-is/-/core-util-is-1.0.2.tgz",
 			"integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="
 		},
-		"corser": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/corser/-/corser-2.0.1.tgz",
-			"integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ=="
-		},
 		"cosmiconfig": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+			"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
 			"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
 			"requires": {
 				"@types/parse-json": "^4.0.0",
@@ -39550,28 +36998,95 @@
 				"sha.js": "^2.4.8"
 			}
 		},
+		"create-jest": {
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/create-jest/-/create-jest-29.7.0.tgz",
+			"integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
+			"dev": true,
+			"requires": {
+				"@jest/types": "^29.6.3",
+				"chalk": "^4.0.0",
+				"exit": "^0.1.2",
+				"graceful-fs": "^4.2.9",
+				"jest-config": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"prompts": "^2.0.1"
+			},
+			"dependencies": {
+				"ansi-styles": {
+					"version": "4.3.0",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+					"dev": true,
+					"requires": {
+						"color-convert": "^2.0.1"
+					}
+				},
+				"chalk": {
+					"version": "4.1.2",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
+					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+					"dev": true,
+					"requires": {
+						"ansi-styles": "^4.1.0",
+						"supports-color": "^7.1.0"
+					}
+				},
+				"color-convert": {
+					"version": "2.0.1",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
+					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+					"dev": true,
+					"requires": {
+						"color-name": "~1.1.4"
+					}
+				},
+				"color-name": {
+					"version": "1.1.4",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+					"dev": true
+				},
+				"has-flag": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
+					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+					"dev": true
+				},
+				"supports-color": {
+					"version": "7.2.0",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
+					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+					"dev": true,
+					"requires": {
+						"has-flag": "^4.0.0"
+					}
+				}
+			}
+		},
 		"create-require": {
 			"version": "1.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/create-require/-/create-require-1.1.1.tgz",
 			"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="
 		},
 		"critters": {
-			"version": "0.0.16",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/critters/-/critters-0.0.16.tgz",
-			"integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==",
+			"version": "0.0.20",
+			"resolved": "http://localhost:4873/critters/-/critters-0.0.20.tgz",
+			"integrity": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==",
 			"dev": true,
 			"requires": {
 				"chalk": "^4.1.0",
-				"css-select": "^4.2.0",
-				"parse5": "^6.0.1",
-				"parse5-htmlparser2-tree-adapter": "^6.0.1",
-				"postcss": "^8.3.7",
+				"css-select": "^5.1.0",
+				"dom-serializer": "^2.0.0",
+				"domhandler": "^5.0.2",
+				"htmlparser2": "^8.0.2",
+				"postcss": "^8.4.23",
 				"pretty-bytes": "^5.3.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"dev": true,
 					"requires": {
@@ -39580,7 +37095,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"dev": true,
 					"requires": {
@@ -39590,7 +37105,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"dev": true,
 					"requires": {
@@ -39599,25 +37114,19 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
 					"dev": true
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 					"dev": true
 				},
-				"parse5": {
-					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-					"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-					"dev": true
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"dev": true,
 					"requires": {
@@ -39659,6 +37168,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css/-/css-3.0.0.tgz",
 			"integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==",
+			"dev": true,
 			"requires": {
 				"inherits": "^2.0.4",
 				"source-map": "^0.6.1",
@@ -39668,25 +37178,25 @@
 				"source-map": {
 					"version": "0.6.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+					"dev": true
 				}
 			}
 		},
 		"css-declaration-sorter": {
-			"version": "6.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz",
-			"integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==",
-			"requires": {}
+			"version": "6.4.1",
+			"resolved": "http://localhost:4873/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
+			"integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g=="
 		},
 		"css-loader": {
-			"version": "6.7.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-loader/-/css-loader-6.7.3.tgz",
-			"integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==",
+			"version": "6.8.1",
+			"resolved": "http://localhost:4873/css-loader/-/css-loader-6.8.1.tgz",
+			"integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==",
 			"requires": {
 				"icss-utils": "^5.1.0",
-				"postcss": "^8.4.19",
+				"postcss": "^8.4.21",
 				"postcss-modules-extract-imports": "^3.0.0",
-				"postcss-modules-local-by-default": "^4.0.0",
+				"postcss-modules-local-by-default": "^4.0.3",
 				"postcss-modules-scope": "^3.0.0",
 				"postcss-modules-values": "^4.0.0",
 				"postcss-value-parser": "^4.2.0",
@@ -39694,79 +37204,55 @@
 			}
 		},
 		"css-minimizer-webpack-plugin": {
-			"version": "3.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz",
-			"integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==",
+			"version": "5.0.1",
+			"resolved": "http://localhost:4873/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz",
+			"integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==",
 			"requires": {
-				"cssnano": "^5.0.6",
-				"jest-worker": "^27.0.2",
-				"postcss": "^8.3.5",
-				"schema-utils": "^4.0.0",
-				"serialize-javascript": "^6.0.0",
-				"source-map": "^0.6.1"
+				"@jridgewell/trace-mapping": "^0.3.18",
+				"cssnano": "^6.0.1",
+				"jest-worker": "^29.4.3",
+				"postcss": "^8.4.24",
+				"schema-utils": "^4.0.1",
+				"serialize-javascript": "^6.0.1"
 			},
 			"dependencies": {
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
-				},
-				"jest-worker": {
-					"version": "27.5.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-worker/-/jest-worker-27.5.1.tgz",
-					"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
-					"requires": {
-						"@types/node": "*",
-						"merge-stream": "^2.0.0",
-						"supports-color": "^8.0.0"
-					}
-				},
-				"source-map": {
-					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
-				},
-				"supports-color": {
-					"version": "8.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
-					"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+				"schema-utils": {
+					"version": "4.2.0",
+					"resolved": "http://localhost:4873/schema-utils/-/schema-utils-4.2.0.tgz",
+					"integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
 					"requires": {
-						"has-flag": "^4.0.0"
+						"@types/json-schema": "^7.0.9",
+						"ajv": "^8.9.0",
+						"ajv-formats": "^2.1.1",
+						"ajv-keywords": "^5.1.0"
 					}
 				}
 			}
 		},
 		"css-select": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-select/-/css-select-4.3.0.tgz",
-			"integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
+			"version": "5.1.0",
+			"resolved": "http://localhost:4873/css-select/-/css-select-5.1.0.tgz",
+			"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
 			"requires": {
 				"boolbase": "^1.0.0",
-				"css-what": "^6.0.1",
-				"domhandler": "^4.3.1",
-				"domutils": "^2.8.0",
+				"css-what": "^6.1.0",
+				"domhandler": "^5.0.2",
+				"domutils": "^3.0.1",
 				"nth-check": "^2.0.1"
 			}
 		},
 		"css-tree": {
-			"version": "1.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-tree/-/css-tree-1.1.3.tgz",
-			"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
+			"version": "2.3.1",
+			"resolved": "http://localhost:4873/css-tree/-/css-tree-2.3.1.tgz",
+			"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
 			"requires": {
-				"mdn-data": "2.0.14",
-				"source-map": "^0.6.1"
-			},
-			"dependencies": {
-				"source-map": {
-					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
-					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
-				}
+				"mdn-data": "2.0.30",
+				"source-map-js": "^1.0.1"
 			}
 		},
 		"css-what": {
 			"version": "6.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/css-what/-/css-what-6.1.0.tgz",
+			"resolved": "http://localhost:4873/css-what/-/css-what-6.1.0.tgz",
 			"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
 		},
 		"css.escape": {
@@ -39777,78 +37263,92 @@
 		},
 		"cssesc": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssesc/-/cssesc-3.0.0.tgz",
+			"resolved": "http://localhost:4873/cssesc/-/cssesc-3.0.0.tgz",
 			"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
 		},
 		"cssnano": {
-			"version": "5.1.15",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssnano/-/cssnano-5.1.15.tgz",
-			"integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/cssnano/-/cssnano-6.0.1.tgz",
+			"integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==",
 			"requires": {
-				"cssnano-preset-default": "^5.2.14",
-				"lilconfig": "^2.0.3",
-				"yaml": "^1.10.2"
+				"cssnano-preset-default": "^6.0.1",
+				"lilconfig": "^2.1.0"
 			}
 		},
 		"cssnano-preset-default": {
-			"version": "5.2.14",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz",
-			"integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz",
+			"integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==",
 			"requires": {
 				"css-declaration-sorter": "^6.3.1",
-				"cssnano-utils": "^3.1.0",
-				"postcss-calc": "^8.2.3",
-				"postcss-colormin": "^5.3.1",
-				"postcss-convert-values": "^5.1.3",
-				"postcss-discard-comments": "^5.1.2",
-				"postcss-discard-duplicates": "^5.1.0",
-				"postcss-discard-empty": "^5.1.1",
-				"postcss-discard-overridden": "^5.1.0",
-				"postcss-merge-longhand": "^5.1.7",
-				"postcss-merge-rules": "^5.1.4",
-				"postcss-minify-font-values": "^5.1.0",
-				"postcss-minify-gradients": "^5.1.1",
-				"postcss-minify-params": "^5.1.4",
-				"postcss-minify-selectors": "^5.2.1",
-				"postcss-normalize-charset": "^5.1.0",
-				"postcss-normalize-display-values": "^5.1.0",
-				"postcss-normalize-positions": "^5.1.1",
-				"postcss-normalize-repeat-style": "^5.1.1",
-				"postcss-normalize-string": "^5.1.0",
-				"postcss-normalize-timing-functions": "^5.1.0",
-				"postcss-normalize-unicode": "^5.1.1",
-				"postcss-normalize-url": "^5.1.0",
-				"postcss-normalize-whitespace": "^5.1.1",
-				"postcss-ordered-values": "^5.1.3",
-				"postcss-reduce-initial": "^5.1.2",
-				"postcss-reduce-transforms": "^5.1.0",
-				"postcss-svgo": "^5.1.0",
-				"postcss-unique-selectors": "^5.1.1"
+				"cssnano-utils": "^4.0.0",
+				"postcss-calc": "^9.0.0",
+				"postcss-colormin": "^6.0.0",
+				"postcss-convert-values": "^6.0.0",
+				"postcss-discard-comments": "^6.0.0",
+				"postcss-discard-duplicates": "^6.0.0",
+				"postcss-discard-empty": "^6.0.0",
+				"postcss-discard-overridden": "^6.0.0",
+				"postcss-merge-longhand": "^6.0.0",
+				"postcss-merge-rules": "^6.0.1",
+				"postcss-minify-font-values": "^6.0.0",
+				"postcss-minify-gradients": "^6.0.0",
+				"postcss-minify-params": "^6.0.0",
+				"postcss-minify-selectors": "^6.0.0",
+				"postcss-normalize-charset": "^6.0.0",
+				"postcss-normalize-display-values": "^6.0.0",
+				"postcss-normalize-positions": "^6.0.0",
+				"postcss-normalize-repeat-style": "^6.0.0",
+				"postcss-normalize-string": "^6.0.0",
+				"postcss-normalize-timing-functions": "^6.0.0",
+				"postcss-normalize-unicode": "^6.0.0",
+				"postcss-normalize-url": "^6.0.0",
+				"postcss-normalize-whitespace": "^6.0.0",
+				"postcss-ordered-values": "^6.0.0",
+				"postcss-reduce-initial": "^6.0.0",
+				"postcss-reduce-transforms": "^6.0.0",
+				"postcss-svgo": "^6.0.0",
+				"postcss-unique-selectors": "^6.0.0"
 			}
 		},
 		"cssnano-utils": {
-			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssnano-utils/-/cssnano-utils-3.1.0.tgz",
-			"integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==",
-			"requires": {}
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/cssnano-utils/-/cssnano-utils-4.0.0.tgz",
+			"integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw=="
 		},
 		"csso": {
-			"version": "4.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/csso/-/csso-4.2.0.tgz",
-			"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
+			"version": "5.0.5",
+			"resolved": "http://localhost:4873/csso/-/csso-5.0.5.tgz",
+			"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
 			"requires": {
-				"css-tree": "^1.1.2"
+				"css-tree": "~2.2.0"
+			},
+			"dependencies": {
+				"css-tree": {
+					"version": "2.2.1",
+					"resolved": "http://localhost:4873/css-tree/-/css-tree-2.2.1.tgz",
+					"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
+					"requires": {
+						"mdn-data": "2.0.28",
+						"source-map-js": "^1.0.1"
+					}
+				},
+				"mdn-data": {
+					"version": "2.0.28",
+					"resolved": "http://localhost:4873/mdn-data/-/mdn-data-2.0.28.tgz",
+					"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="
+				}
 			}
 		},
 		"cssom": {
-			"version": "0.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssom/-/cssom-0.5.0.tgz",
-			"integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==",
+			"version": "0.4.4",
+			"resolved": "http://localhost:4873/cssom/-/cssom-0.4.4.tgz",
+			"integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
 			"dev": true
 		},
 		"cssstyle": {
 			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssstyle/-/cssstyle-2.3.0.tgz",
+			"resolved": "http://localhost:4873/cssstyle/-/cssstyle-2.3.0.tgz",
 			"integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
 			"dev": true,
 			"requires": {
@@ -39857,7 +37357,7 @@
 			"dependencies": {
 				"cssom": {
 					"version": "0.3.8",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cssom/-/cssom-0.3.8.tgz",
+					"resolved": "http://localhost:4873/cssom/-/cssom-0.3.8.tgz",
 					"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
 					"dev": true
 				}
@@ -39870,14 +37370,14 @@
 			"dev": true
 		},
 		"cypress": {
-			"version": "12.17.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cypress/-/cypress-12.17.4.tgz",
-			"integrity": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==",
-			"devOptional": true,
+			"version": "13.3.3",
+			"resolved": "http://localhost:4873/cypress/-/cypress-13.3.3.tgz",
+			"integrity": "sha512-mbdkojHhKB1xbrj7CrKWHi22uFx9P9vQFiR0sYDZZoK99OMp9/ZYN55TO5pjbXmV7xvCJ4JwBoADXjOJK8aCJw==",
+			"dev": true,
 			"requires": {
-				"@cypress/request": "2.88.12",
+				"@cypress/request": "^3.0.0",
 				"@cypress/xvfb": "^1.2.4",
-				"@types/node": "^16.18.39",
+				"@types/node": "^18.17.5",
 				"@types/sinonjs__fake-timers": "8.1.1",
 				"@types/sizzle": "^2.3.2",
 				"arch": "^2.2.0",
@@ -39920,11 +37420,20 @@
 				"yauzl": "^2.10.0"
 			},
 			"dependencies": {
+				"@types/node": {
+					"version": "18.18.7",
+					"resolved": "http://localhost:4873/@types/node/-/node-18.18.7.tgz",
+					"integrity": "sha512-bw+lEsxis6eqJYW8Ql6+yTqkE6RuFtsQPSe5JxXbqYRFQEER5aJA9a5UH9igqDWm3X4iLHIKOHlnAXLM4mi7uQ==",
+					"dev": true,
+					"requires": {
+						"undici-types": "~5.26.4"
+					}
+				},
 				"ansi-styles": {
 					"version": "4.3.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-convert": "^2.0.1"
 					}
@@ -39933,13 +37442,13 @@
 					"version": "3.7.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bluebird/-/bluebird-3.7.2.tgz",
 					"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
-					"devOptional": true
+					"dev": true
 				},
 				"chalk": {
 					"version": "4.1.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"ansi-styles": "^4.1.0",
 						"supports-color": "^7.1.0"
@@ -39949,7 +37458,7 @@
 							"version": "7.2.0",
 							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
 							"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-							"devOptional": true,
+							"dev": true,
 							"requires": {
 								"has-flag": "^4.0.0"
 							}
@@ -39960,7 +37469,7 @@
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-name": "~1.1.4"
 					}
@@ -39969,13 +37478,13 @@
 					"version": "1.1.4",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-					"devOptional": true
+					"dev": true
 				},
 				"fs-extra": {
 					"version": "9.1.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-extra/-/fs-extra-9.1.0.tgz",
 					"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"at-least-node": "^1.0.0",
 						"graceful-fs": "^4.2.0",
@@ -39987,40 +37496,16 @@
 					"version": "4.0.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-					"devOptional": true
-				},
-				"lru-cache": {
-					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
-					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-					"devOptional": true,
-					"requires": {
-						"yallist": "^4.0.0"
-					}
-				},
-				"semver": {
-					"version": "7.5.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.5.4.tgz",
-					"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
-					"devOptional": true,
-					"requires": {
-						"lru-cache": "^6.0.0"
-					}
+					"dev": true
 				},
 				"supports-color": {
 					"version": "8.1.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
 					"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
-				},
-				"yallist": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-					"devOptional": true
 				}
 			}
 		},
@@ -40028,8 +37513,7 @@
 			"version": "5.0.8",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz",
 			"integrity": "sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"cypress-mochawesome-reporter": {
 			"version": "3.6.0",
@@ -40067,8 +37551,7 @@
 			"version": "1.10.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cypress-real-events/-/cypress-real-events-1.10.3.tgz",
 			"integrity": "sha512-YN3fn+CJIAM638sE6uMvv2/n3PsWowdd0rOiN6ZoyezNAMyENfuQHvccLKZpN+apGfQZYetCml6QXLYgDid2fg==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"cypress-timestamps": {
 			"version": "1.2.3",
@@ -40081,34 +37564,22 @@
 		},
 		"dashdash": {
 			"version": "1.14.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dashdash/-/dashdash-1.14.1.tgz",
+			"resolved": "http://localhost:4873/dashdash/-/dashdash-1.14.1.tgz",
 			"integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"assert-plus": "^1.0.0"
 			}
 		},
 		"data-urls": {
-			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/data-urls/-/data-urls-3.0.2.tgz",
-			"integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==",
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/data-urls/-/data-urls-2.0.0.tgz",
+			"integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
 			"dev": true,
 			"requires": {
-				"abab": "^2.0.6",
-				"whatwg-mimetype": "^3.0.0",
-				"whatwg-url": "^11.0.0"
-			},
-			"dependencies": {
-				"whatwg-url": {
-					"version": "11.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-url/-/whatwg-url-11.0.0.tgz",
-					"integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
-					"dev": true,
-					"requires": {
-						"tr46": "^3.0.0",
-						"webidl-conversions": "^7.0.0"
-					}
-				}
+				"abab": "^2.0.3",
+				"whatwg-mimetype": "^2.3.0",
+				"whatwg-url": "^8.0.0"
 			}
 		},
 		"date-fns": {
@@ -40126,7 +37597,7 @@
 			"version": "1.11.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dayjs/-/dayjs-1.11.7.tgz",
 			"integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"debug": {
 			"version": "4.3.4",
@@ -40136,28 +37607,22 @@
 				"ms": "2.1.2"
 			}
 		},
-		"decamelize": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/decamelize/-/decamelize-4.0.0.tgz",
-			"integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
-			"dev": true,
-			"peer": true
-		},
 		"decimal.js": {
 			"version": "10.4.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/decimal.js/-/decimal.js-10.4.3.tgz",
+			"resolved": "http://localhost:4873/decimal.js/-/decimal.js-10.4.3.tgz",
 			"integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==",
 			"dev": true
 		},
 		"decode-uri-component": {
 			"version": "0.2.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
-			"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="
+			"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
+			"dev": true
 		},
 		"dedent": {
-			"version": "0.7.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dedent/-/dedent-0.7.0.tgz",
-			"integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="
+			"version": "1.5.1",
+			"resolved": "http://localhost:4873/dedent/-/dedent-1.5.1.tgz",
+			"integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg=="
 		},
 		"deep-equal": {
 			"version": "2.2.0",
@@ -40186,9 +37651,9 @@
 		},
 		"deep-is": {
 			"version": "0.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/deep-is/-/deep-is-0.1.4.tgz",
+			"resolved": "http://localhost:4873/deep-is/-/deep-is-0.1.4.tgz",
 			"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"deepmerge": {
 			"version": "4.2.2",
@@ -40197,7 +37662,7 @@
 		},
 		"default-gateway": {
 			"version": "6.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/default-gateway/-/default-gateway-6.0.3.tgz",
+			"resolved": "http://localhost:4873/default-gateway/-/default-gateway-6.0.3.tgz",
 			"integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==",
 			"requires": {
 				"execa": "^5.0.0"
@@ -40205,7 +37670,7 @@
 			"dependencies": {
 				"execa": {
 					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-5.1.1.tgz",
+					"resolved": "http://localhost:4873/execa/-/execa-5.1.1.tgz",
 					"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
 					"requires": {
 						"cross-spawn": "^7.0.3",
@@ -40221,12 +37686,12 @@
 				},
 				"get-stream": {
 					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-6.0.1.tgz",
+					"resolved": "http://localhost:4873/get-stream/-/get-stream-6.0.1.tgz",
 					"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
 				},
 				"human-signals": {
 					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-2.1.0.tgz",
+					"resolved": "http://localhost:4873/human-signals/-/human-signals-2.1.0.tgz",
 					"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
 				}
 			}
@@ -40271,7 +37736,7 @@
 		},
 		"delegates": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/delegates/-/delegates-1.0.0.tgz",
+			"resolved": "http://localhost:4873/delegates/-/delegates-1.0.0.tgz",
 			"integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
 			"dev": true
 		},
@@ -40286,12 +37751,6 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/depd/-/depd-2.0.0.tgz",
 			"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
 		},
-		"dependency-graph": {
-			"version": "0.11.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dependency-graph/-/dependency-graph-0.11.0.tgz",
-			"integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==",
-			"dev": true
-		},
 		"des.js": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/des.js/-/des.js-1.0.1.tgz",
@@ -40304,19 +37763,28 @@
 		},
 		"destroy": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/destroy/-/destroy-1.2.0.tgz",
+			"resolved": "http://localhost:4873/destroy/-/destroy-1.2.0.tgz",
 			"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
 		},
 		"detect-newline": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/detect-newline/-/detect-newline-3.1.0.tgz",
+			"resolved": "http://localhost:4873/detect-newline/-/detect-newline-3.1.0.tgz",
 			"integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="
 		},
 		"detect-node": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/detect-node/-/detect-node-2.1.0.tgz",
+			"resolved": "http://localhost:4873/detect-node/-/detect-node-2.1.0.tgz",
 			"integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="
 		},
+		"detect-port": {
+			"version": "1.5.1",
+			"resolved": "http://localhost:4873/detect-port/-/detect-port-1.5.1.tgz",
+			"integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==",
+			"requires": {
+				"address": "^1.0.1",
+				"debug": "4"
+			}
+		},
 		"diff": {
 			"version": "5.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/diff/-/diff-5.0.0.tgz",
@@ -40324,9 +37792,9 @@
 			"dev": true
 		},
 		"diff-sequences": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/diff-sequences/-/diff-sequences-28.1.1.tgz",
-			"integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw=="
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/diff-sequences/-/diff-sequences-29.6.3.tgz",
+			"integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q=="
 		},
 		"diffie-hellman": {
 			"version": "5.0.3",
@@ -40357,13 +37825,13 @@
 		},
 		"dns-equal": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dns-equal/-/dns-equal-1.0.0.tgz",
+			"resolved": "http://localhost:4873/dns-equal/-/dns-equal-1.0.0.tgz",
 			"integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg=="
 		},
 		"dns-packet": {
-			"version": "5.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dns-packet/-/dns-packet-5.5.0.tgz",
-			"integrity": "sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==",
+			"version": "5.6.1",
+			"resolved": "http://localhost:4873/dns-packet/-/dns-packet-5.6.1.tgz",
+			"integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
 			"requires": {
 				"@leichtgewicht/ip-codec": "^2.0.1"
 			}
@@ -40372,7 +37840,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/doctrine/-/doctrine-3.0.0.tgz",
 			"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"esutils": "^2.0.2"
 			}
@@ -40384,13 +37852,13 @@
 			"dev": true
 		},
 		"dom-serializer": {
-			"version": "1.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dom-serializer/-/dom-serializer-1.4.1.tgz",
-			"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/dom-serializer/-/dom-serializer-2.0.0.tgz",
+			"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
 			"requires": {
-				"domelementtype": "^2.0.1",
-				"domhandler": "^4.2.0",
-				"entities": "^2.0.0"
+				"domelementtype": "^2.3.0",
+				"domhandler": "^5.0.2",
+				"entities": "^4.2.0"
 			}
 		},
 		"domain-browser": {
@@ -40401,40 +37869,53 @@
 		},
 		"domelementtype": {
 			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domelementtype/-/domelementtype-2.3.0.tgz",
+			"resolved": "http://localhost:4873/domelementtype/-/domelementtype-2.3.0.tgz",
 			"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
 		},
 		"domexception": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domexception/-/domexception-4.0.0.tgz",
-			"integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==",
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/domexception/-/domexception-2.0.1.tgz",
+			"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
 			"dev": true,
 			"requires": {
-				"webidl-conversions": "^7.0.0"
+				"webidl-conversions": "^5.0.0"
+			},
+			"dependencies": {
+				"webidl-conversions": {
+					"version": "5.0.0",
+					"resolved": "http://localhost:4873/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
+					"integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
+					"dev": true
+				}
 			}
 		},
 		"domhandler": {
-			"version": "4.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domhandler/-/domhandler-4.3.1.tgz",
-			"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
+			"version": "5.0.3",
+			"resolved": "http://localhost:4873/domhandler/-/domhandler-5.0.3.tgz",
+			"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
 			"requires": {
-				"domelementtype": "^2.2.0"
+				"domelementtype": "^2.3.0"
 			}
 		},
 		"domutils": {
-			"version": "2.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/domutils/-/domutils-2.8.0.tgz",
-			"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+			"version": "3.1.0",
+			"resolved": "http://localhost:4873/domutils/-/domutils-3.1.0.tgz",
+			"integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
 			"requires": {
-				"dom-serializer": "^1.0.1",
-				"domelementtype": "^2.2.0",
-				"domhandler": "^4.2.0"
+				"dom-serializer": "^2.0.0",
+				"domelementtype": "^2.3.0",
+				"domhandler": "^5.0.3"
 			}
 		},
 		"dotenv": {
+			"version": "16.3.1",
+			"resolved": "http://localhost:4873/dotenv/-/dotenv-16.3.1.tgz",
+			"integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ=="
+		},
+		"dotenv-expand": {
 			"version": "10.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/dotenv/-/dotenv-10.0.0.tgz",
-			"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q=="
+			"resolved": "http://localhost:4873/dotenv-expand/-/dotenv-expand-10.0.0.tgz",
+			"integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A=="
 		},
 		"duplexer": {
 			"version": "0.1.2",
@@ -40491,11 +37972,17 @@
 				}
 			}
 		},
+		"eastasianwidth": {
+			"version": "0.2.0",
+			"resolved": "http://localhost:4873/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+			"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+			"dev": true
+		},
 		"ecc-jsbn": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+			"resolved": "http://localhost:4873/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
 			"integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"jsbn": "~0.1.0",
 				"safer-buffer": "^2.1.0"
@@ -40503,21 +37990,21 @@
 		},
 		"ee-first": {
 			"version": "1.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ee-first/-/ee-first-1.1.1.tgz",
+			"resolved": "http://localhost:4873/ee-first/-/ee-first-1.1.1.tgz",
 			"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
 		},
 		"ejs": {
 			"version": "3.1.9",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ejs/-/ejs-3.1.9.tgz",
+			"resolved": "http://localhost:4873/ejs/-/ejs-3.1.9.tgz",
 			"integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==",
 			"requires": {
 				"jake": "^10.8.5"
 			}
 		},
 		"electron-to-chromium": {
-			"version": "1.4.353",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/electron-to-chromium/-/electron-to-chromium-1.4.353.tgz",
-			"integrity": "sha512-IdJVpMHJoBT/nn0GQ02wPfbhogDVpd1ud95lP//FTf5l35wzxKJwibB4HBdY7Q+xKPA1nkZ0UDLOMyRj5U5IAQ=="
+			"version": "1.4.567",
+			"resolved": "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.4.567.tgz",
+			"integrity": "sha512-8KR114CAYQ4/r5EIEsOmOMqQ9j0MRbJZR3aXD/KFA8RuKzyoUB4XrUCg+l8RUGqTVQgKNIgTpjaG8YHRPAbX2w=="
 		},
 		"elliptic": {
 			"version": "6.5.4",
@@ -40543,9 +38030,9 @@
 			}
 		},
 		"emittery": {
-			"version": "0.10.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/emittery/-/emittery-0.10.2.tgz",
-			"integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw=="
+			"version": "0.13.1",
+			"resolved": "http://localhost:4873/emittery/-/emittery-0.13.1.tgz",
+			"integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ=="
 		},
 		"emoji-regex": {
 			"version": "8.0.0",
@@ -40559,12 +38046,12 @@
 		},
 		"encodeurl": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/encodeurl/-/encodeurl-1.0.2.tgz",
+			"resolved": "http://localhost:4873/encodeurl/-/encodeurl-1.0.2.tgz",
 			"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
 		},
 		"encoding": {
 			"version": "0.1.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/encoding/-/encoding-0.1.13.tgz",
+			"resolved": "http://localhost:4873/encoding/-/encoding-0.1.13.tgz",
 			"integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
 			"dev": true,
 			"optional": true,
@@ -40574,7 +38061,7 @@
 			"dependencies": {
 				"iconv-lite": {
 					"version": "0.6.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/iconv-lite/-/iconv-lite-0.6.3.tgz",
+					"resolved": "http://localhost:4873/iconv-lite/-/iconv-lite-0.6.3.tgz",
 					"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
 					"dev": true,
 					"optional": true,
@@ -40620,19 +38107,19 @@
 			}
 		},
 		"entities": {
-			"version": "2.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/entities/-/entities-2.2.0.tgz",
-			"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
+			"version": "4.5.0",
+			"resolved": "http://localhost:4873/entities/-/entities-4.5.0.tgz",
+			"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
 		},
 		"env-paths": {
 			"version": "2.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/env-paths/-/env-paths-2.2.1.tgz",
+			"resolved": "http://localhost:4873/env-paths/-/env-paths-2.2.1.tgz",
 			"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
 			"dev": true
 		},
 		"err-code": {
 			"version": "2.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/err-code/-/err-code-2.0.3.tgz",
+			"resolved": "http://localhost:4873/err-code/-/err-code-2.0.3.tgz",
 			"integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
 			"dev": true
 		},
@@ -40647,7 +38134,7 @@
 		},
 		"error-ex": {
 			"version": "1.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/error-ex/-/error-ex-1.3.2.tgz",
+			"resolved": "http://localhost:4873/error-ex/-/error-ex-1.3.2.tgz",
 			"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
 			"requires": {
 				"is-arrayish": "^0.2.1"
@@ -40671,45 +38158,44 @@
 			}
 		},
 		"es-module-lexer": {
-			"version": "0.9.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
-			"integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="
+			"version": "1.3.1",
+			"resolved": "http://localhost:4873/es-module-lexer/-/es-module-lexer-1.3.1.tgz",
+			"integrity": "sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q=="
 		},
 		"esbuild": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/esbuild/-/esbuild-0.16.17.tgz",
-			"integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==",
-			"dev": true,
-			"optional": true,
-			"requires": {
-				"@esbuild/android-arm": "0.16.17",
-				"@esbuild/android-arm64": "0.16.17",
-				"@esbuild/android-x64": "0.16.17",
-				"@esbuild/darwin-arm64": "0.16.17",
-				"@esbuild/darwin-x64": "0.16.17",
-				"@esbuild/freebsd-arm64": "0.16.17",
-				"@esbuild/freebsd-x64": "0.16.17",
-				"@esbuild/linux-arm": "0.16.17",
-				"@esbuild/linux-arm64": "0.16.17",
-				"@esbuild/linux-ia32": "0.16.17",
-				"@esbuild/linux-loong64": "0.16.17",
-				"@esbuild/linux-mips64el": "0.16.17",
-				"@esbuild/linux-ppc64": "0.16.17",
-				"@esbuild/linux-riscv64": "0.16.17",
-				"@esbuild/linux-s390x": "0.16.17",
-				"@esbuild/linux-x64": "0.16.17",
-				"@esbuild/netbsd-x64": "0.16.17",
-				"@esbuild/openbsd-x64": "0.16.17",
-				"@esbuild/sunos-x64": "0.16.17",
-				"@esbuild/win32-arm64": "0.16.17",
-				"@esbuild/win32-ia32": "0.16.17",
-				"@esbuild/win32-x64": "0.16.17"
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/esbuild/-/esbuild-0.18.17.tgz",
+			"integrity": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==",
+			"dev": true,
+			"requires": {
+				"@esbuild/android-arm": "0.18.17",
+				"@esbuild/android-arm64": "0.18.17",
+				"@esbuild/android-x64": "0.18.17",
+				"@esbuild/darwin-arm64": "0.18.17",
+				"@esbuild/darwin-x64": "0.18.17",
+				"@esbuild/freebsd-arm64": "0.18.17",
+				"@esbuild/freebsd-x64": "0.18.17",
+				"@esbuild/linux-arm": "0.18.17",
+				"@esbuild/linux-arm64": "0.18.17",
+				"@esbuild/linux-ia32": "0.18.17",
+				"@esbuild/linux-loong64": "0.18.17",
+				"@esbuild/linux-mips64el": "0.18.17",
+				"@esbuild/linux-ppc64": "0.18.17",
+				"@esbuild/linux-riscv64": "0.18.17",
+				"@esbuild/linux-s390x": "0.18.17",
+				"@esbuild/linux-x64": "0.18.17",
+				"@esbuild/netbsd-x64": "0.18.17",
+				"@esbuild/openbsd-x64": "0.18.17",
+				"@esbuild/sunos-x64": "0.18.17",
+				"@esbuild/win32-arm64": "0.18.17",
+				"@esbuild/win32-ia32": "0.18.17",
+				"@esbuild/win32-x64": "0.18.17"
 			}
 		},
 		"esbuild-wasm": {
-			"version": "0.16.17",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/esbuild-wasm/-/esbuild-wasm-0.16.17.tgz",
-			"integrity": "sha512-Tn7NuMqRcM+T/qCOxbQRq0qrwWl1sUWp6ARfJRakE8Bepew6zata4qrKgH2YqovNC5e/2fcTa7o+VL/FAOZC1Q==",
+			"version": "0.18.17",
+			"resolved": "http://localhost:4873/esbuild-wasm/-/esbuild-wasm-0.18.17.tgz",
+			"integrity": "sha512-9OHGcuRzy+I8ziF9FzjfKLWAPbvi0e/metACVg9k6bK+SI4FFxeV6PcZsz8RIVaMD4YNehw+qj6UMR3+qj/EuQ==",
 			"dev": true
 		},
 		"escalade": {
@@ -40728,114 +38214,76 @@
 			"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
 		},
 		"escodegen": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escodegen/-/escodegen-2.0.0.tgz",
-			"integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
+			"version": "2.1.0",
+			"resolved": "http://localhost:4873/escodegen/-/escodegen-2.1.0.tgz",
+			"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
 			"dev": true,
 			"requires": {
 				"esprima": "^4.0.1",
 				"estraverse": "^5.2.0",
 				"esutils": "^2.0.2",
-				"optionator": "^0.8.1",
 				"source-map": "~0.6.1"
 			},
 			"dependencies": {
-				"levn": {
-					"version": "0.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/levn/-/levn-0.3.0.tgz",
-					"integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
-					"dev": true,
-					"requires": {
-						"prelude-ls": "~1.1.2",
-						"type-check": "~0.3.2"
-					}
-				},
-				"optionator": {
-					"version": "0.8.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/optionator/-/optionator-0.8.3.tgz",
-					"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
-					"dev": true,
-					"requires": {
-						"deep-is": "~0.1.3",
-						"fast-levenshtein": "~2.0.6",
-						"levn": "~0.3.0",
-						"prelude-ls": "~1.1.2",
-						"type-check": "~0.3.2",
-						"word-wrap": "~1.2.3"
-					}
-				},
-				"prelude-ls": {
-					"version": "1.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prelude-ls/-/prelude-ls-1.1.2.tgz",
-					"integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
-					"dev": true
-				},
 				"source-map": {
 					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+					"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 					"dev": true,
 					"optional": true
-				},
-				"type-check": {
-					"version": "0.3.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-check/-/type-check-0.3.2.tgz",
-					"integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
-					"dev": true,
-					"requires": {
-						"prelude-ls": "~1.1.2"
-					}
 				}
 			}
 		},
 		"eslint": {
-			"version": "8.15.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint/-/eslint-8.15.0.tgz",
-			"integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==",
-			"devOptional": true,
-			"requires": {
-				"@eslint/eslintrc": "^1.2.3",
-				"@humanwhocodes/config-array": "^0.9.2",
-				"ajv": "^6.10.0",
+			"version": "8.46.0",
+			"resolved": "http://localhost:4873/eslint/-/eslint-8.46.0.tgz",
+			"integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==",
+			"dev": true,
+			"requires": {
+				"@eslint-community/eslint-utils": "^4.2.0",
+				"@eslint-community/regexpp": "^4.6.1",
+				"@eslint/eslintrc": "^2.1.1",
+				"@eslint/js": "^8.46.0",
+				"@humanwhocodes/config-array": "^0.11.10",
+				"@humanwhocodes/module-importer": "^1.0.1",
+				"@nodelib/fs.walk": "^1.2.8",
+				"ajv": "^6.12.4",
 				"chalk": "^4.0.0",
 				"cross-spawn": "^7.0.2",
 				"debug": "^4.3.2",
 				"doctrine": "^3.0.0",
 				"escape-string-regexp": "^4.0.0",
-				"eslint-scope": "^7.1.1",
-				"eslint-utils": "^3.0.0",
-				"eslint-visitor-keys": "^3.3.0",
-				"espree": "^9.3.2",
-				"esquery": "^1.4.0",
+				"eslint-scope": "^7.2.2",
+				"eslint-visitor-keys": "^3.4.2",
+				"espree": "^9.6.1",
+				"esquery": "^1.4.2",
 				"esutils": "^2.0.2",
 				"fast-deep-equal": "^3.1.3",
 				"file-entry-cache": "^6.0.1",
-				"functional-red-black-tree": "^1.0.1",
-				"glob-parent": "^6.0.1",
-				"globals": "^13.6.0",
+				"find-up": "^5.0.0",
+				"glob-parent": "^6.0.2",
+				"globals": "^13.19.0",
+				"graphemer": "^1.4.0",
 				"ignore": "^5.2.0",
-				"import-fresh": "^3.0.0",
 				"imurmurhash": "^0.1.4",
 				"is-glob": "^4.0.0",
+				"is-path-inside": "^3.0.3",
 				"js-yaml": "^4.1.0",
 				"json-stable-stringify-without-jsonify": "^1.0.1",
 				"levn": "^0.4.1",
 				"lodash.merge": "^4.6.2",
 				"minimatch": "^3.1.2",
 				"natural-compare": "^1.4.0",
-				"optionator": "^0.9.1",
-				"regexpp": "^3.2.0",
+				"optionator": "^0.9.3",
 				"strip-ansi": "^6.0.1",
-				"strip-json-comments": "^3.1.0",
-				"text-table": "^0.2.0",
-				"v8-compile-cache": "^2.0.3"
+				"text-table": "^0.2.0"
 			},
 			"dependencies": {
 				"ajv": {
 					"version": "6.12.6",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
 					"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"fast-deep-equal": "^3.1.1",
 						"fast-json-stable-stringify": "^2.0.0",
@@ -40847,7 +38295,7 @@
 					"version": "4.3.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-convert": "^2.0.1"
 					}
@@ -40856,13 +38304,13 @@
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/argparse/-/argparse-2.0.1.tgz",
 					"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-					"devOptional": true
+					"dev": true
 				},
 				"chalk": {
 					"version": "4.1.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"ansi-styles": "^4.1.0",
 						"supports-color": "^7.1.0"
@@ -40872,7 +38320,7 @@
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-name": "~1.1.4"
 					}
@@ -40881,19 +38329,39 @@
 					"version": "1.1.4",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-					"devOptional": true
+					"dev": true
 				},
 				"escape-string-regexp": {
 					"version": "4.0.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
 					"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
-					"devOptional": true
+					"dev": true
+				},
+				"eslint-scope": {
+					"version": "7.2.2",
+					"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-7.2.2.tgz",
+					"integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
+					"dev": true,
+					"requires": {
+						"esrecurse": "^4.3.0",
+						"estraverse": "^5.2.0"
+					}
+				},
+				"find-up": {
+					"version": "5.0.0",
+					"resolved": "http://localhost:4873/find-up/-/find-up-5.0.0.tgz",
+					"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+					"dev": true,
+					"requires": {
+						"locate-path": "^6.0.0",
+						"path-exists": "^4.0.0"
+					}
 				},
 				"glob-parent": {
 					"version": "6.0.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-parent/-/glob-parent-6.0.2.tgz",
 					"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"is-glob": "^4.0.3"
 					}
@@ -40902,7 +38370,7 @@
 					"version": "13.20.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globals/-/globals-13.20.0.tgz",
 					"integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"type-fest": "^0.20.2"
 					}
@@ -40911,13 +38379,13 @@
 					"version": "4.0.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-					"devOptional": true
+					"dev": true
 				},
 				"js-yaml": {
 					"version": "4.1.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-yaml/-/js-yaml-4.1.0.tgz",
 					"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"argparse": "^2.0.1"
 					}
@@ -40926,22 +38394,40 @@
 					"version": "0.4.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 					"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-					"devOptional": true
+					"dev": true
+				},
+				"locate-path": {
+					"version": "6.0.0",
+					"resolved": "http://localhost:4873/locate-path/-/locate-path-6.0.0.tgz",
+					"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+					"dev": true,
+					"requires": {
+						"p-locate": "^5.0.0"
+					}
 				},
 				"minimatch": {
 					"version": "3.1.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"brace-expansion": "^1.1.7"
 					}
 				},
+				"p-locate": {
+					"version": "5.0.0",
+					"resolved": "http://localhost:4873/p-locate/-/p-locate-5.0.0.tgz",
+					"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+					"dev": true,
+					"requires": {
+						"p-limit": "^3.0.2"
+					}
+				},
 				"supports-color": {
 					"version": "7.2.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
@@ -40950,7 +38436,7 @@
 					"version": "0.20.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-fest/-/type-fest-0.20.2.tgz",
 					"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
-					"devOptional": true
+					"dev": true
 				}
 			}
 		},
@@ -40958,60 +38444,58 @@
 			"version": "8.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz",
 			"integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"eslint-plugin-cypress": {
-			"version": "2.11.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-plugin-cypress/-/eslint-plugin-cypress-2.11.3.tgz",
-			"integrity": "sha512-hOoAid+XNFtpvOzZSNWP5LDrQBEJwbZwjib4XJ1KcRYKjeVj0mAmPmucG4Egli4j/aruv+Ow/acacoloWWCl9Q==",
+			"version": "2.15.1",
+			"resolved": "http://localhost:4873/eslint-plugin-cypress/-/eslint-plugin-cypress-2.15.1.tgz",
+			"integrity": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==",
 			"dev": true,
 			"requires": {
-				"globals": "^11.12.0"
+				"globals": "^13.20.0"
+			},
+			"dependencies": {
+				"globals": {
+					"version": "13.23.0",
+					"resolved": "http://localhost:4873/globals/-/globals-13.23.0.tgz",
+					"integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==",
+					"dev": true,
+					"requires": {
+						"type-fest": "^0.20.2"
+					}
+				},
+				"type-fest": {
+					"version": "0.20.2",
+					"resolved": "http://localhost:4873/type-fest/-/type-fest-0.20.2.tgz",
+					"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+					"dev": true
+				}
 			}
 		},
 		"eslint-scope": {
 			"version": "7.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-7.1.1.tgz",
 			"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"esrecurse": "^4.3.0",
 				"estraverse": "^5.2.0"
 			}
 		},
-		"eslint-utils": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-utils/-/eslint-utils-3.0.0.tgz",
-			"integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
-			"devOptional": true,
-			"requires": {
-				"eslint-visitor-keys": "^2.0.0"
-			},
-			"dependencies": {
-				"eslint-visitor-keys": {
-					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
-					"integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
-					"devOptional": true
-				}
-			}
-		},
 		"eslint-visitor-keys": {
-			"version": "3.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz",
-			"integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==",
-			"devOptional": true
+			"version": "3.4.3",
+			"resolved": "http://localhost:4873/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+			"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="
 		},
 		"espree": {
-			"version": "9.5.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/espree/-/espree-9.5.1.tgz",
-			"integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==",
-			"devOptional": true,
+			"version": "9.6.1",
+			"resolved": "http://localhost:4873/espree/-/espree-9.6.1.tgz",
+			"integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
+			"dev": true,
 			"requires": {
-				"acorn": "^8.8.0",
+				"acorn": "^8.9.0",
 				"acorn-jsx": "^5.3.2",
-				"eslint-visitor-keys": "^3.4.0"
+				"eslint-visitor-keys": "^3.4.1"
 			}
 		},
 		"esprima": {
@@ -41047,12 +38531,12 @@
 		},
 		"etag": {
 			"version": "1.8.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/etag/-/etag-1.8.1.tgz",
+			"resolved": "http://localhost:4873/etag/-/etag-1.8.1.tgz",
 			"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
 		},
 		"eventemitter-asyncresource": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz",
+			"resolved": "http://localhost:4873/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz",
 			"integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==",
 			"dev": true
 		},
@@ -41060,11 +38544,11 @@
 			"version": "6.4.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eventemitter2/-/eventemitter2-6.4.7.tgz",
 			"integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==",
-			"devOptional": true
+			"dev": true
 		},
 		"eventemitter3": {
 			"version": "4.0.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eventemitter3/-/eventemitter3-4.0.7.tgz",
+			"resolved": "http://localhost:4873/eventemitter3/-/eventemitter3-4.0.7.tgz",
 			"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
 		},
 		"events": {
@@ -41086,7 +38570,7 @@
 			"version": "4.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-4.1.0.tgz",
 			"integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"cross-spawn": "^7.0.0",
 				"get-stream": "^5.0.0",
@@ -41103,14 +38587,14 @@
 			"version": "4.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/executable/-/executable-4.1.1.tgz",
 			"integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"pify": "^2.2.0"
 			}
 		},
 		"exit": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/exit/-/exit-0.1.2.tgz",
+			"resolved": "http://localhost:4873/exit/-/exit-0.1.2.tgz",
 			"integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ=="
 		},
 		"expand-brackets": {
@@ -41227,78 +38711,26 @@
 			}
 		},
 		"expect": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/expect/-/expect-28.1.3.tgz",
-			"integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/expect/-/expect-29.7.0.tgz",
+			"integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==",
 			"requires": {
-				"@jest/expect-utils": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"jest-matcher-utils": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3"
-			},
-			"dependencies": {
-				"ansi-styles": {
-					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"requires": {
-						"color-convert": "^2.0.1"
-					}
-				},
-				"chalk": {
-					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-					"requires": {
-						"ansi-styles": "^4.1.0",
-						"supports-color": "^7.1.0"
-					}
-				},
-				"color-convert": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"requires": {
-						"color-name": "~1.1.4"
-					}
-				},
-				"color-name": {
-					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
-				},
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
-				"supports-color": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-					"requires": {
-						"has-flag": "^4.0.0"
-					}
-				}
+				"@jest/expect-utils": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"jest-matcher-utils": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0"
 			}
 		},
+		"exponential-backoff": {
+			"version": "3.1.1",
+			"resolved": "http://localhost:4873/exponential-backoff/-/exponential-backoff-3.1.1.tgz",
+			"integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==",
+			"dev": true
+		},
 		"express": {
 			"version": "4.18.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/express/-/express-4.18.2.tgz",
+			"resolved": "http://localhost:4873/express/-/express-4.18.2.tgz",
 			"integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
 			"requires": {
 				"accepts": "~1.3.8",
@@ -41336,12 +38768,12 @@
 			"dependencies": {
 				"array-flatten": {
 					"version": "1.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/array-flatten/-/array-flatten-1.1.1.tgz",
+					"resolved": "http://localhost:4873/array-flatten/-/array-flatten-1.1.1.tgz",
 					"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
 				},
 				"debug": {
 					"version": "2.6.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+					"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 					"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 					"requires": {
 						"ms": "2.0.0"
@@ -41349,12 +38781,12 @@
 				},
 				"ms": {
 					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-					"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+					"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+					"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 				},
 				"qs": {
 					"version": "6.11.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/qs/-/qs-6.11.0.tgz",
+					"resolved": "http://localhost:4873/qs/-/qs-6.11.0.tgz",
 					"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
 					"requires": {
 						"side-channel": "^1.0.4"
@@ -41364,9 +38796,9 @@
 		},
 		"extend": {
 			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/extend/-/extend-3.0.2.tgz",
+			"resolved": "http://localhost:4873/extend/-/extend-3.0.2.tgz",
 			"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
-			"devOptional": true
+			"dev": true
 		},
 		"extend-shallow": {
 			"version": "3.0.2",
@@ -41446,7 +38878,7 @@
 			"version": "2.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/extract-zip/-/extract-zip-2.0.1.tgz",
 			"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"@types/yauzl": "^2.9.1",
 				"debug": "^4.1.1",
@@ -41456,9 +38888,9 @@
 		},
 		"extsprintf": {
 			"version": "1.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/extsprintf/-/extsprintf-1.3.0.tgz",
+			"resolved": "http://localhost:4873/extsprintf/-/extsprintf-1.3.0.tgz",
 			"integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
-			"devOptional": true
+			"dev": true
 		},
 		"fancy-log": {
 			"version": "2.0.0",
@@ -41475,9 +38907,9 @@
 			"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
 		},
 		"fast-glob": {
-			"version": "3.2.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.7.tgz",
-			"integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
+			"version": "3.3.1",
+			"resolved": "http://localhost:4873/fast-glob/-/fast-glob-3.3.1.tgz",
+			"integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
 			"requires": {
 				"@nodelib/fs.stat": "^2.0.2",
 				"@nodelib/fs.walk": "^1.2.3",
@@ -41493,9 +38925,9 @@
 		},
 		"fast-levenshtein": {
 			"version": "2.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+			"resolved": "http://localhost:4873/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
 			"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
-			"devOptional": true
+			"dev": true
 		},
 		"fastq": {
 			"version": "1.15.0",
@@ -41507,7 +38939,7 @@
 		},
 		"faye-websocket": {
 			"version": "0.11.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/faye-websocket/-/faye-websocket-0.11.4.tgz",
+			"resolved": "http://localhost:4873/faye-websocket/-/faye-websocket-0.11.4.tgz",
 			"integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==",
 			"requires": {
 				"websocket-driver": ">=0.5.1"
@@ -41515,7 +38947,7 @@
 		},
 		"fb-watchman": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fb-watchman/-/fb-watchman-2.0.2.tgz",
+			"resolved": "http://localhost:4873/fb-watchman/-/fb-watchman-2.0.2.tgz",
 			"integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
 			"requires": {
 				"bser": "2.1.1"
@@ -41525,7 +38957,7 @@
 			"version": "1.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fd-slicer/-/fd-slicer-1.1.0.tgz",
 			"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"pend": "~1.2.0"
 			}
@@ -41548,64 +38980,11 @@
 			"version": "6.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
 			"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"flat-cache": "^3.0.4"
 			}
 		},
-		"file-loader": {
-			"version": "6.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/file-loader/-/file-loader-6.2.0.tgz",
-			"integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
-			"requires": {
-				"loader-utils": "^2.0.0",
-				"schema-utils": "^3.0.0"
-			},
-			"dependencies": {
-				"ajv": {
-					"version": "6.12.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
-					"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-					"requires": {
-						"fast-deep-equal": "^3.1.1",
-						"fast-json-stable-stringify": "^2.0.0",
-						"json-schema-traverse": "^0.4.1",
-						"uri-js": "^4.2.2"
-					}
-				},
-				"ajv-keywords": {
-					"version": "3.5.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-					"requires": {}
-				},
-				"json-schema-traverse": {
-					"version": "0.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-					"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
-				},
-				"loader-utils": {
-					"version": "2.0.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/loader-utils/-/loader-utils-2.0.4.tgz",
-					"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
-					"requires": {
-						"big.js": "^5.2.2",
-						"emojis-list": "^3.0.0",
-						"json5": "^2.1.2"
-					}
-				},
-				"schema-utils": {
-					"version": "3.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-					"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
-					"requires": {
-						"@types/json-schema": "^7.0.8",
-						"ajv": "^6.12.5",
-						"ajv-keywords": "^3.5.2"
-					}
-				}
-			}
-		},
 		"file-saver": {
 			"version": "2.0.5",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/file-saver/-/file-saver-2.0.5.tgz",
@@ -41620,7 +38999,7 @@
 		},
 		"filelist": {
 			"version": "1.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/filelist/-/filelist-1.0.4.tgz",
+			"resolved": "http://localhost:4873/filelist/-/filelist-1.0.4.tgz",
 			"integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
 			"requires": {
 				"minimatch": "^5.0.1"
@@ -41628,7 +39007,7 @@
 			"dependencies": {
 				"brace-expansion": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
+					"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
 					"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
 					"requires": {
 						"balanced-match": "^1.0.0"
@@ -41636,7 +39015,7 @@
 				},
 				"minimatch": {
 					"version": "5.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-5.1.6.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-5.1.6.tgz",
 					"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
 					"requires": {
 						"brace-expansion": "^2.0.1"
@@ -41654,7 +39033,7 @@
 		},
 		"finalhandler": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/finalhandler/-/finalhandler-1.2.0.tgz",
+			"resolved": "http://localhost:4873/finalhandler/-/finalhandler-1.2.0.tgz",
 			"integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
 			"requires": {
 				"debug": "2.6.9",
@@ -41668,7 +39047,7 @@
 			"dependencies": {
 				"debug": {
 					"version": "2.6.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+					"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 					"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 					"requires": {
 						"ms": "2.0.0"
@@ -41676,8 +39055,8 @@
 				},
 				"ms": {
 					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-					"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+					"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+					"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 				}
 			}
 		},
@@ -41709,7 +39088,7 @@
 			"version": "3.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/flat-cache/-/flat-cache-3.0.4.tgz",
 			"integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"flatted": "^3.1.0",
 				"rimraf": "^3.0.2"
@@ -41719,7 +39098,7 @@
 			"version": "3.2.7",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/flatted/-/flatted-3.2.7.tgz",
 			"integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"flush-write-stream": {
 			"version": "1.1.1",
@@ -41789,15 +39168,33 @@
 			"integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==",
 			"dev": true
 		},
+		"foreground-child": {
+			"version": "3.1.1",
+			"resolved": "http://localhost:4873/foreground-child/-/foreground-child-3.1.1.tgz",
+			"integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
+			"dev": true,
+			"requires": {
+				"cross-spawn": "^7.0.0",
+				"signal-exit": "^4.0.1"
+			},
+			"dependencies": {
+				"signal-exit": {
+					"version": "4.1.0",
+					"resolved": "http://localhost:4873/signal-exit/-/signal-exit-4.1.0.tgz",
+					"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+					"dev": true
+				}
+			}
+		},
 		"forever-agent": {
 			"version": "0.6.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/forever-agent/-/forever-agent-0.6.1.tgz",
+			"resolved": "http://localhost:4873/forever-agent/-/forever-agent-0.6.1.tgz",
 			"integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
-			"devOptional": true
+			"dev": true
 		},
 		"fork-ts-checker-webpack-plugin": {
 			"version": "7.2.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz",
+			"resolved": "http://localhost:4873/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz",
 			"integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==",
 			"requires": {
 				"@babel/code-frame": "^7.16.7",
@@ -41816,7 +39213,7 @@
 			"dependencies": {
 				"ajv": {
 					"version": "6.12.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+					"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 					"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
 					"requires": {
 						"fast-deep-equal": "^3.1.1",
@@ -41827,13 +39224,12 @@
 				},
 				"ajv-keywords": {
 					"version": "3.5.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-					"requires": {}
+					"resolved": "http://localhost:4873/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
 				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -41841,7 +39237,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -41850,7 +39246,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -41858,12 +39254,12 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"cosmiconfig": {
 					"version": "7.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+					"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
 					"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
 					"requires": {
 						"@types/parse-json": "^4.0.0",
@@ -41875,7 +39271,7 @@
 				},
 				"fs-extra": {
 					"version": "10.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-extra/-/fs-extra-10.1.0.tgz",
+					"resolved": "http://localhost:4873/fs-extra/-/fs-extra-10.1.0.tgz",
 					"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
 					"requires": {
 						"graceful-fs": "^4.2.0",
@@ -41885,18 +39281,18 @@
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"json-schema-traverse": {
 					"version": "0.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+					"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 					"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
 				},
 				"schema-utils": {
-					"version": "3.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-					"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
+					"version": "3.3.0",
+					"resolved": "http://localhost:4873/schema-utils/-/schema-utils-3.3.0.tgz",
+					"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
 					"requires": {
 						"@types/json-schema": "^7.0.8",
 						"ajv": "^6.12.5",
@@ -41905,7 +39301,7 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -41915,9 +39311,9 @@
 		},
 		"form-data": {
 			"version": "2.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/form-data/-/form-data-2.3.3.tgz",
+			"resolved": "http://localhost:4873/form-data/-/form-data-2.3.3.tgz",
 			"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"asynckit": "^0.4.0",
 				"combined-stream": "^1.0.6",
@@ -41932,13 +39328,13 @@
 		},
 		"forwarded": {
 			"version": "0.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/forwarded/-/forwarded-0.2.0.tgz",
+			"resolved": "http://localhost:4873/forwarded/-/forwarded-0.2.0.tgz",
 			"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
 		},
 		"fraction.js": {
-			"version": "4.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fraction.js/-/fraction.js-4.2.0.tgz",
-			"integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="
+			"version": "4.3.7",
+			"resolved": "http://localhost:4873/fraction.js/-/fraction.js-4.3.7.tgz",
+			"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="
 		},
 		"fragment-cache": {
 			"version": "0.2.1",
@@ -41951,7 +39347,7 @@
 		},
 		"fresh": {
 			"version": "0.5.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fresh/-/fresh-0.5.2.tgz",
+			"resolved": "http://localhost:4873/fresh/-/fresh-0.5.2.tgz",
 			"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
 		},
 		"from2": {
@@ -42018,18 +39414,26 @@
 			}
 		},
 		"fs-minipass": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-minipass/-/fs-minipass-3.0.1.tgz",
-			"integrity": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==",
+			"version": "3.0.3",
+			"resolved": "http://localhost:4873/fs-minipass/-/fs-minipass-3.0.3.tgz",
+			"integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
 			"dev": true,
 			"requires": {
-				"minipass": "^4.0.0"
+				"minipass": "^7.0.3"
+			},
+			"dependencies": {
+				"minipass": {
+					"version": "7.0.4",
+					"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+					"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+					"dev": true
+				}
 			}
 		},
 		"fs-monkey": {
-			"version": "1.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-monkey/-/fs-monkey-1.0.3.tgz",
-			"integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q=="
+			"version": "1.0.5",
+			"resolved": "http://localhost:4873/fs-monkey/-/fs-monkey-1.0.5.tgz",
+			"integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew=="
 		},
 		"fs-write-stream-atomic": {
 			"version": "1.0.10",
@@ -42103,12 +39507,6 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/function-bind/-/function-bind-1.1.1.tgz",
 			"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
 		},
-		"functional-red-black-tree": {
-			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
-			"integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==",
-			"devOptional": true
-		},
 		"functions-have-names": {
 			"version": "1.2.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/functions-have-names/-/functions-have-names-1.2.3.tgz",
@@ -42117,7 +39515,7 @@
 		},
 		"gauge": {
 			"version": "4.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/gauge/-/gauge-4.0.4.tgz",
+			"resolved": "http://localhost:4873/gauge/-/gauge-4.0.4.tgz",
 			"integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
 			"dev": true,
 			"requires": {
@@ -42160,7 +39558,7 @@
 			"version": "5.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-5.2.0.tgz",
 			"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"pump": "^3.0.0"
 			}
@@ -42175,36 +39573,36 @@
 			"version": "3.2.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/getos/-/getos-3.2.1.tgz",
 			"integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"async": "^3.2.0"
 			}
 		},
 		"getpass": {
 			"version": "0.1.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/getpass/-/getpass-0.1.7.tgz",
+			"resolved": "http://localhost:4873/getpass/-/getpass-0.1.7.tgz",
 			"integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"assert-plus": "^1.0.0"
 			}
 		},
 		"glob": {
-			"version": "8.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-8.0.3.tgz",
-			"integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==",
+			"version": "10.3.10",
+			"resolved": "http://localhost:4873/glob/-/glob-10.3.10.tgz",
+			"integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
 			"dev": true,
 			"requires": {
-				"fs.realpath": "^1.0.0",
-				"inflight": "^1.0.4",
-				"inherits": "2",
-				"minimatch": "^5.0.1",
-				"once": "^1.3.0"
+				"foreground-child": "^3.1.0",
+				"jackspeak": "^2.3.5",
+				"minimatch": "^9.0.1",
+				"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
+				"path-scurry": "^1.10.1"
 			},
 			"dependencies": {
 				"brace-expansion": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
+					"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
 					"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
 					"dev": true,
 					"requires": {
@@ -42212,9 +39610,9 @@
 					}
 				},
 				"minimatch": {
-					"version": "5.1.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-5.1.6.tgz",
-					"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+					"version": "9.0.3",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-9.0.3.tgz",
+					"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
 					"dev": true,
 					"requires": {
 						"brace-expansion": "^2.0.1"
@@ -42232,14 +39630,14 @@
 		},
 		"glob-to-regexp": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+			"resolved": "http://localhost:4873/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
 			"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
 		},
 		"global-dirs": {
 			"version": "3.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/global-dirs/-/global-dirs-3.0.1.tgz",
 			"integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"ini": "2.0.0"
 			},
@@ -42248,7 +39646,7 @@
 					"version": "2.0.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ini/-/ini-2.0.0.tgz",
 					"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
-					"devOptional": true
+					"dev": true
 				}
 			}
 		},
@@ -42259,9 +39657,8 @@
 		},
 		"globby": {
 			"version": "11.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/globby/-/globby-11.1.0.tgz",
+			"resolved": "http://localhost:4873/globby/-/globby-11.1.0.tgz",
 			"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
-			"dev": true,
 			"requires": {
 				"array-union": "^2.1.0",
 				"dir-glob": "^3.0.1",
@@ -42269,21 +39666,6 @@
 				"ignore": "^5.2.0",
 				"merge2": "^1.4.1",
 				"slash": "^3.0.0"
-			},
-			"dependencies": {
-				"fast-glob": {
-					"version": "3.2.12",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.12.tgz",
-					"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
-					"dev": true,
-					"requires": {
-						"@nodelib/fs.stat": "^2.0.2",
-						"@nodelib/fs.walk": "^1.2.3",
-						"glob-parent": "^5.1.2",
-						"merge2": "^1.3.0",
-						"micromatch": "^4.0.4"
-					}
-				}
 			}
 		},
 		"gopd": {
@@ -42300,14 +39682,29 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/graceful-fs/-/graceful-fs-4.2.11.tgz",
 			"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
 		},
+		"graphemer": {
+			"version": "1.4.0",
+			"resolved": "http://localhost:4873/graphemer/-/graphemer-1.4.0.tgz",
+			"integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
+			"dev": true
+		},
+		"guess-parser": {
+			"version": "0.4.22",
+			"resolved": "http://localhost:4873/guess-parser/-/guess-parser-0.4.22.tgz",
+			"integrity": "sha512-KcUWZ5ACGaBM69SbqwVIuWGoSAgD+9iJnchR9j/IarVI1jHVeXv+bUXBIMeqVMSKt3zrn0Dgf9UpcOEpPBLbSg==",
+			"dev": true,
+			"requires": {
+				"@wessberg/ts-evaluator": "0.0.27"
+			}
+		},
 		"handle-thing": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/handle-thing/-/handle-thing-2.0.1.tgz",
+			"resolved": "http://localhost:4873/handle-thing/-/handle-thing-2.0.1.tgz",
 			"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="
 		},
 		"harmony-reflect": {
 			"version": "1.6.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
+			"resolved": "http://localhost:4873/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
 			"integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g=="
 		},
 		"has": {
@@ -42326,7 +39723,7 @@
 		},
 		"has-flag": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-3.0.0.tgz",
+			"resolved": "http://localhost:4873/has-flag/-/has-flag-3.0.0.tgz",
 			"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
 		},
 		"has-property-descriptors": {
@@ -42354,7 +39751,7 @@
 		},
 		"has-unicode": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-unicode/-/has-unicode-2.0.1.tgz",
+			"resolved": "http://localhost:4873/has-unicode/-/has-unicode-2.0.1.tgz",
 			"integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
 			"dev": true
 		},
@@ -42433,7 +39830,7 @@
 		},
 		"hdr-histogram-js": {
 			"version": "2.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz",
+			"resolved": "http://localhost:4873/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz",
 			"integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==",
 			"dev": true,
 			"requires": {
@@ -42444,15 +39841,10 @@
 		},
 		"hdr-histogram-percentiles-obj": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz",
+			"resolved": "http://localhost:4873/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz",
 			"integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==",
 			"dev": true
 		},
-		"he": {
-			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/he/-/he-1.2.0.tgz",
-			"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
-		},
 		"hmac-drbg": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
@@ -42466,7 +39858,7 @@
 		},
 		"hosted-git-info": {
 			"version": "6.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
+			"resolved": "http://localhost:4873/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
 			"integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==",
 			"dev": true,
 			"requires": {
@@ -42475,7 +39867,7 @@
 			"dependencies": {
 				"lru-cache": {
 					"version": "7.18.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 					"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 					"dev": true
 				}
@@ -42483,7 +39875,7 @@
 		},
 		"hpack.js": {
 			"version": "2.1.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/hpack.js/-/hpack.js-2.1.6.tgz",
+			"resolved": "http://localhost:4873/hpack.js/-/hpack.js-2.1.6.tgz",
 			"integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==",
 			"requires": {
 				"inherits": "^2.0.1",
@@ -42494,12 +39886,12 @@
 			"dependencies": {
 				"isarray": {
 					"version": "1.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/isarray/-/isarray-1.0.0.tgz",
+					"resolved": "http://localhost:4873/isarray/-/isarray-1.0.0.tgz",
 					"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
 				},
 				"readable-stream": {
 					"version": "2.3.8",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/readable-stream/-/readable-stream-2.3.8.tgz",
+					"resolved": "http://localhost:4873/readable-stream/-/readable-stream-2.3.8.tgz",
 					"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
 					"requires": {
 						"core-util-is": "~1.0.0",
@@ -42513,12 +39905,12 @@
 				},
 				"safe-buffer": {
 					"version": "5.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safe-buffer/-/safe-buffer-5.1.2.tgz",
+					"resolved": "http://localhost:4873/safe-buffer/-/safe-buffer-5.1.2.tgz",
 					"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
 				},
 				"string_decoder": {
 					"version": "1.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/string_decoder/-/string_decoder-1.1.1.tgz",
+					"resolved": "http://localhost:4873/string_decoder/-/string_decoder-1.1.1.tgz",
 					"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
 					"requires": {
 						"safe-buffer": "~5.1.0"
@@ -42527,37 +39919,50 @@
 			}
 		},
 		"html-encoding-sniffer": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz",
-			"integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==",
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
+			"integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
+			"dev": true,
 			"requires": {
-				"whatwg-encoding": "^2.0.0"
+				"whatwg-encoding": "^1.0.5"
 			}
 		},
 		"html-entities": {
-			"version": "2.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/html-entities/-/html-entities-2.3.3.tgz",
-			"integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA=="
+			"version": "2.4.0",
+			"resolved": "http://localhost:4873/html-entities/-/html-entities-2.4.0.tgz",
+			"integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ=="
 		},
 		"html-escaper": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/html-escaper/-/html-escaper-2.0.2.tgz",
+			"resolved": "http://localhost:4873/html-escaper/-/html-escaper-2.0.2.tgz",
 			"integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="
 		},
+		"htmlparser2": {
+			"version": "8.0.2",
+			"resolved": "http://localhost:4873/htmlparser2/-/htmlparser2-8.0.2.tgz",
+			"integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==",
+			"dev": true,
+			"requires": {
+				"domelementtype": "^2.3.0",
+				"domhandler": "^5.0.3",
+				"domutils": "^3.0.1",
+				"entities": "^4.4.0"
+			}
+		},
 		"http-cache-semantics": {
 			"version": "4.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
+			"resolved": "http://localhost:4873/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
 			"integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==",
 			"dev": true
 		},
 		"http-deceiver": {
 			"version": "1.2.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-deceiver/-/http-deceiver-1.2.7.tgz",
+			"resolved": "http://localhost:4873/http-deceiver/-/http-deceiver-1.2.7.tgz",
 			"integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw=="
 		},
 		"http-errors": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-errors/-/http-errors-2.0.0.tgz",
+			"resolved": "http://localhost:4873/http-errors/-/http-errors-2.0.0.tgz",
 			"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
 			"requires": {
 				"depd": "2.0.0",
@@ -42569,12 +39974,12 @@
 		},
 		"http-parser-js": {
 			"version": "0.5.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-parser-js/-/http-parser-js-0.5.8.tgz",
+			"resolved": "http://localhost:4873/http-parser-js/-/http-parser-js-0.5.8.tgz",
 			"integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q=="
 		},
 		"http-proxy": {
 			"version": "1.18.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-proxy/-/http-proxy-1.18.1.tgz",
+			"resolved": "http://localhost:4873/http-proxy/-/http-proxy-1.18.1.tgz",
 			"integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
 			"requires": {
 				"eventemitter3": "^4.0.0",
@@ -42595,7 +40000,7 @@
 		},
 		"http-proxy-middleware": {
 			"version": "2.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz",
+			"resolved": "http://localhost:4873/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz",
 			"integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==",
 			"requires": {
 				"@types/http-proxy": "^1.17.8",
@@ -42605,76 +40010,11 @@
 				"micromatch": "^4.0.2"
 			}
 		},
-		"http-server": {
-			"version": "14.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-server/-/http-server-14.1.1.tgz",
-			"integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==",
-			"requires": {
-				"basic-auth": "^2.0.1",
-				"chalk": "^4.1.2",
-				"corser": "^2.0.1",
-				"he": "^1.2.0",
-				"html-encoding-sniffer": "^3.0.0",
-				"http-proxy": "^1.18.1",
-				"mime": "^1.6.0",
-				"minimist": "^1.2.6",
-				"opener": "^1.5.1",
-				"portfinder": "^1.0.28",
-				"secure-compare": "3.0.1",
-				"union": "~0.5.0",
-				"url-join": "^4.0.1"
-			},
-			"dependencies": {
-				"ansi-styles": {
-					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"requires": {
-						"color-convert": "^2.0.1"
-					}
-				},
-				"chalk": {
-					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-					"requires": {
-						"ansi-styles": "^4.1.0",
-						"supports-color": "^7.1.0"
-					}
-				},
-				"color-convert": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"requires": {
-						"color-name": "~1.1.4"
-					}
-				},
-				"color-name": {
-					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
-				},
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
-				},
-				"supports-color": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-					"requires": {
-						"has-flag": "^4.0.0"
-					}
-				}
-			}
-		},
 		"http-signature": {
 			"version": "1.3.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-signature/-/http-signature-1.3.6.tgz",
+			"resolved": "http://localhost:4873/http-signature/-/http-signature-1.3.6.tgz",
 			"integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"assert-plus": "^1.0.0",
 				"jsprim": "^2.0.2",
@@ -42701,11 +40041,11 @@
 			"version": "1.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-1.1.1.tgz",
 			"integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
-			"devOptional": true
+			"dev": true
 		},
 		"humanize-ms": {
 			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/humanize-ms/-/humanize-ms-1.2.1.tgz",
+			"resolved": "http://localhost:4873/humanize-ms/-/humanize-ms-1.2.1.tgz",
 			"integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
 			"dev": true,
 			"requires": {
@@ -42722,13 +40062,12 @@
 		},
 		"icss-utils": {
 			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/icss-utils/-/icss-utils-5.1.0.tgz",
-			"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
-			"requires": {}
+			"resolved": "http://localhost:4873/icss-utils/-/icss-utils-5.1.0.tgz",
+			"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="
 		},
 		"identity-obj-proxy": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
+			"resolved": "http://localhost:4873/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
 			"integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==",
 			"requires": {
 				"harmony-reflect": "^1.4.6"
@@ -42751,17 +40090,17 @@
 			"integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ=="
 		},
 		"ignore-walk": {
-			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ignore-walk/-/ignore-walk-6.0.2.tgz",
-			"integrity": "sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==",
+			"version": "6.0.3",
+			"resolved": "http://localhost:4873/ignore-walk/-/ignore-walk-6.0.3.tgz",
+			"integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==",
 			"dev": true,
 			"requires": {
-				"minimatch": "^7.4.2"
+				"minimatch": "^9.0.0"
 			},
 			"dependencies": {
 				"brace-expansion": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
+					"resolved": "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.1.tgz",
 					"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
 					"dev": true,
 					"requires": {
@@ -42769,9 +40108,9 @@
 					}
 				},
 				"minimatch": {
-					"version": "7.4.5",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-7.4.5.tgz",
-					"integrity": "sha512-OzOamaOmNBJZUv2qqY1OSWa+++4YPpOkLgkc0w30Oov5ufKlWWXnFUl0l4dgmSv5Shq/zRVkEOXAe2NaqO4l5Q==",
+					"version": "9.0.3",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-9.0.3.tgz",
+					"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
 					"dev": true,
 					"requires": {
 						"brace-expansion": "^2.0.1"
@@ -42786,13 +40125,13 @@
 			"optional": true
 		},
 		"immutable": {
-			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/immutable/-/immutable-4.3.0.tgz",
-			"integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg=="
+			"version": "4.3.4",
+			"resolved": "http://localhost:4873/immutable/-/immutable-4.3.4.tgz",
+			"integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA=="
 		},
 		"import-fresh": {
 			"version": "3.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/import-fresh/-/import-fresh-3.3.0.tgz",
+			"resolved": "http://localhost:4873/import-fresh/-/import-fresh-3.3.0.tgz",
 			"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
 			"requires": {
 				"parent-module": "^1.0.0",
@@ -42801,14 +40140,14 @@
 			"dependencies": {
 				"resolve-from": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve-from/-/resolve-from-4.0.0.tgz",
+					"resolved": "http://localhost:4873/resolve-from/-/resolve-from-4.0.0.tgz",
 					"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
 				}
 			}
 		},
 		"import-local": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/import-local/-/import-local-3.1.0.tgz",
+			"resolved": "http://localhost:4873/import-local/-/import-local-3.1.0.tgz",
 			"integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
 			"dev": true,
 			"requires": {
@@ -42830,7 +40169,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/indent-string/-/indent-string-4.0.0.tgz",
 			"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
-			"devOptional": true
+			"dev": true
 		},
 		"infer-owner": {
 			"version": "1.0.4",
@@ -42853,9 +40192,9 @@
 			"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
 		},
 		"ini": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ini/-/ini-3.0.1.tgz",
-			"integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==",
+			"version": "4.1.1",
+			"resolved": "http://localhost:4873/ini/-/ini-4.1.1.tgz",
+			"integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
 			"dev": true
 		},
 		"inquirer": {
@@ -42950,9 +40289,9 @@
 			"dev": true
 		},
 		"ipaddr.js": {
-			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ipaddr.js/-/ipaddr.js-2.0.1.tgz",
-			"integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng=="
+			"version": "2.1.0",
+			"resolved": "http://localhost:4873/ipaddr.js/-/ipaddr.js-2.1.0.tgz",
+			"integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ=="
 		},
 		"is-accessor-descriptor": {
 			"version": "1.0.0",
@@ -42986,7 +40325,7 @@
 		},
 		"is-arrayish": {
 			"version": "0.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-arrayish/-/is-arrayish-0.2.1.tgz",
+			"resolved": "http://localhost:4873/is-arrayish/-/is-arrayish-0.2.1.tgz",
 			"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
 		},
 		"is-bigint": {
@@ -43032,7 +40371,7 @@
 			"version": "3.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-ci/-/is-ci-3.0.1.tgz",
 			"integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"ci-info": "^3.2.0"
 			}
@@ -43100,7 +40439,7 @@
 		},
 		"is-generator-fn": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
+			"resolved": "http://localhost:4873/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
 			"integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="
 		},
 		"is-glob": {
@@ -43115,7 +40454,7 @@
 			"version": "0.4.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
 			"integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"global-dirs": "^3.0.0",
 				"is-path-inside": "^3.0.2"
@@ -43128,7 +40467,7 @@
 		},
 		"is-lambda": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-lambda/-/is-lambda-1.0.1.tgz",
+			"resolved": "http://localhost:4873/is-lambda/-/is-lambda-1.0.1.tgz",
 			"integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
 			"dev": true
 		},
@@ -43156,11 +40495,11 @@
 			"version": "3.0.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-path-inside/-/is-path-inside-3.0.3.tgz",
 			"integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"is-plain-obj": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
+			"resolved": "http://localhost:4873/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
 			"integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="
 		},
 		"is-plain-object": {
@@ -43173,7 +40512,7 @@
 		},
 		"is-potential-custom-element-name": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+			"resolved": "http://localhost:4873/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
 			"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
 			"dev": true
 		},
@@ -43240,9 +40579,9 @@
 		},
 		"is-typedarray": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-typedarray/-/is-typedarray-1.0.0.tgz",
+			"resolved": "http://localhost:4873/is-typedarray/-/is-typedarray-1.0.0.tgz",
 			"integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
-			"devOptional": true
+			"dev": true
 		},
 		"is-unicode-supported": {
 			"version": "0.1.0",
@@ -43302,9 +40641,9 @@
 		},
 		"isstream": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/isstream/-/isstream-0.1.2.tgz",
+			"resolved": "http://localhost:4873/isstream/-/isstream-0.1.2.tgz",
 			"integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==",
-			"devOptional": true
+			"dev": true
 		},
 		"istanbul-lib-coverage": {
 			"version": "3.2.0",
@@ -43331,23 +40670,31 @@
 			}
 		},
 		"istanbul-lib-report": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
-			"integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
+			"integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
 			"requires": {
 				"istanbul-lib-coverage": "^3.0.0",
-				"make-dir": "^3.0.0",
+				"make-dir": "^4.0.0",
 				"supports-color": "^7.1.0"
 			},
 			"dependencies": {
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
+				"make-dir": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/make-dir/-/make-dir-4.0.0.tgz",
+					"integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
+					"requires": {
+						"semver": "^7.5.3"
+					}
+				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -43357,7 +40704,7 @@
 		},
 		"istanbul-lib-source-maps": {
 			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+			"resolved": "http://localhost:4873/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
 			"integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
 			"requires": {
 				"debug": "^4.1.1",
@@ -43367,34 +40714,44 @@
 			"dependencies": {
 				"source-map": {
 					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+					"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
 				}
 			}
 		},
 		"istanbul-reports": {
-			"version": "3.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/istanbul-reports/-/istanbul-reports-3.1.5.tgz",
-			"integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==",
+			"version": "3.1.6",
+			"resolved": "http://localhost:4873/istanbul-reports/-/istanbul-reports-3.1.6.tgz",
+			"integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==",
 			"requires": {
 				"html-escaper": "^2.0.0",
 				"istanbul-lib-report": "^3.0.0"
 			}
 		},
+		"jackspeak": {
+			"version": "2.3.6",
+			"resolved": "http://localhost:4873/jackspeak/-/jackspeak-2.3.6.tgz",
+			"integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
+			"dev": true,
+			"requires": {
+				"@isaacs/cliui": "^8.0.2",
+				"@pkgjs/parseargs": "^0.11.0"
+			}
+		},
 		"jake": {
-			"version": "10.8.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jake/-/jake-10.8.5.tgz",
-			"integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==",
+			"version": "10.8.7",
+			"resolved": "http://localhost:4873/jake/-/jake-10.8.7.tgz",
+			"integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==",
 			"requires": {
 				"async": "^3.2.3",
 				"chalk": "^4.0.2",
-				"filelist": "^1.0.1",
-				"minimatch": "^3.0.4"
+				"filelist": "^1.0.4",
+				"minimatch": "^3.1.2"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -43402,7 +40759,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -43411,7 +40768,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -43419,17 +40776,25 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
+				"minimatch": {
+					"version": "3.1.2",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
+					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+					"requires": {
+						"brace-expansion": "^1.1.7"
+					}
+				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -43447,30 +40812,31 @@
 			}
 		},
 		"jest": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest/-/jest-28.1.3.tgz",
-			"integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==",
+			"version": "29.4.3",
+			"resolved": "http://localhost:4873/jest/-/jest-29.4.3.tgz",
+			"integrity": "sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==",
 			"dev": true,
 			"requires": {
-				"@jest/core": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/core": "^29.4.3",
+				"@jest/types": "^29.4.3",
 				"import-local": "^3.0.2",
-				"jest-cli": "^28.1.3"
+				"jest-cli": "^29.4.3"
 			}
 		},
 		"jest-changed-files": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-changed-files/-/jest-changed-files-28.1.3.tgz",
-			"integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
+			"integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
 			"dev": true,
 			"requires": {
 				"execa": "^5.0.0",
+				"jest-util": "^29.7.0",
 				"p-limit": "^3.1.0"
 			},
 			"dependencies": {
 				"execa": {
 					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-5.1.1.tgz",
+					"resolved": "http://localhost:4873/execa/-/execa-5.1.1.tgz",
 					"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
 					"dev": true,
 					"requires": {
@@ -43487,58 +40853,48 @@
 				},
 				"get-stream": {
 					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-6.0.1.tgz",
+					"resolved": "http://localhost:4873/get-stream/-/get-stream-6.0.1.tgz",
 					"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
 					"dev": true
 				},
 				"human-signals": {
 					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-2.1.0.tgz",
+					"resolved": "http://localhost:4873/human-signals/-/human-signals-2.1.0.tgz",
 					"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
 					"dev": true
 				}
 			}
 		},
 		"jest-circus": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-circus/-/jest-circus-28.1.3.tgz",
-			"integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==",
-			"requires": {
-				"@jest/environment": "^28.1.3",
-				"@jest/expect": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/types": "^28.1.3",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-circus/-/jest-circus-29.7.0.tgz",
+			"integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
+			"requires": {
+				"@jest/environment": "^29.7.0",
+				"@jest/expect": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"co": "^4.6.0",
-				"dedent": "^0.7.0",
+				"dedent": "^1.0.0",
 				"is-generator-fn": "^2.0.0",
-				"jest-each": "^28.1.3",
-				"jest-matcher-utils": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-runtime": "^28.1.3",
-				"jest-snapshot": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-each": "^29.7.0",
+				"jest-matcher-utils": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-runtime": "^29.7.0",
+				"jest-snapshot": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"p-limit": "^3.1.0",
-				"pretty-format": "^28.1.3",
+				"pretty-format": "^29.7.0",
+				"pure-rand": "^6.0.0",
 				"slash": "^3.0.0",
 				"stack-utils": "^2.0.3"
 			},
 			"dependencies": {
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -43546,7 +40902,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -43555,7 +40911,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -43563,30 +40919,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -43595,40 +40938,27 @@
 			}
 		},
 		"jest-cli": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-cli/-/jest-cli-28.1.3.tgz",
-			"integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-cli/-/jest-cli-29.7.0.tgz",
+			"integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
 			"dev": true,
 			"requires": {
-				"@jest/core": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/core": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"chalk": "^4.0.0",
+				"create-jest": "^29.7.0",
 				"exit": "^0.1.2",
-				"graceful-fs": "^4.2.9",
 				"import-local": "^3.0.2",
-				"jest-config": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-validate": "^28.1.3",
-				"prompts": "^2.0.1",
+				"jest-config": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
 				"yargs": "^17.3.1"
 			},
 			"dependencies": {
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"dev": true,
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"dev": true,
 					"requires": {
@@ -43637,7 +40967,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"dev": true,
 					"requires": {
@@ -43647,7 +40977,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"dev": true,
 					"requires": {
@@ -43656,103 +40986,19 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
 					"dev": true
 				},
-				"glob": {
-					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
-					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
-					"dev": true,
-					"requires": {
-						"fs.realpath": "^1.0.0",
-						"inflight": "^1.0.4",
-						"inherits": "2",
-						"minimatch": "^3.1.1",
-						"once": "^1.3.0",
-						"path-is-absolute": "^1.0.0"
-					}
-				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
 					"dev": true
 				},
-				"jest-config": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-config/-/jest-config-28.1.3.tgz",
-					"integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==",
-					"dev": true,
-					"requires": {
-						"@babel/core": "^7.11.6",
-						"@jest/test-sequencer": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"babel-jest": "^28.1.3",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"deepmerge": "^4.2.2",
-						"glob": "^7.1.3",
-						"graceful-fs": "^4.2.9",
-						"jest-circus": "^28.1.3",
-						"jest-environment-node": "^28.1.3",
-						"jest-get-type": "^28.0.2",
-						"jest-regex-util": "^28.0.2",
-						"jest-resolve": "^28.1.3",
-						"jest-runner": "^28.1.3",
-						"jest-util": "^28.1.3",
-						"jest-validate": "^28.1.3",
-						"micromatch": "^4.0.4",
-						"parse-json": "^5.2.0",
-						"pretty-format": "^28.1.3",
-						"slash": "^3.0.0",
-						"strip-json-comments": "^3.1.1"
-					}
-				},
-				"jest-resolve": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-					"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-					"dev": true,
-					"requires": {
-						"chalk": "^4.0.0",
-						"graceful-fs": "^4.2.9",
-						"jest-haste-map": "^28.1.3",
-						"jest-pnp-resolver": "^1.2.2",
-						"jest-util": "^28.1.3",
-						"jest-validate": "^28.1.3",
-						"resolve": "^1.20.0",
-						"resolve.exports": "^1.1.0",
-						"slash": "^3.0.0"
-					}
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"dev": true,
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
-				"minimatch": {
-					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
-					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-					"dev": true,
-					"requires": {
-						"brace-expansion": "^1.1.7"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"dev": true,
 					"requires": {
@@ -43762,37 +41008,37 @@
 			}
 		},
 		"jest-config": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-config/-/jest-config-28.1.1.tgz",
-			"integrity": "sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-config/-/jest-config-29.7.0.tgz",
+			"integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
 			"requires": {
 				"@babel/core": "^7.11.6",
-				"@jest/test-sequencer": "^28.1.1",
-				"@jest/types": "^28.1.1",
-				"babel-jest": "^28.1.1",
+				"@jest/test-sequencer": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"babel-jest": "^29.7.0",
 				"chalk": "^4.0.0",
 				"ci-info": "^3.2.0",
 				"deepmerge": "^4.2.2",
 				"glob": "^7.1.3",
 				"graceful-fs": "^4.2.9",
-				"jest-circus": "^28.1.1",
-				"jest-environment-node": "^28.1.1",
-				"jest-get-type": "^28.0.2",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.1",
-				"jest-runner": "^28.1.1",
-				"jest-util": "^28.1.1",
-				"jest-validate": "^28.1.1",
+				"jest-circus": "^29.7.0",
+				"jest-environment-node": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"jest-regex-util": "^29.6.3",
+				"jest-resolve": "^29.7.0",
+				"jest-runner": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
 				"micromatch": "^4.0.4",
 				"parse-json": "^5.2.0",
-				"pretty-format": "^28.1.1",
+				"pretty-format": "^29.7.0",
 				"slash": "^3.0.0",
 				"strip-json-comments": "^3.1.1"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -43800,7 +41046,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -43809,7 +41055,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -43817,12 +41063,12 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"glob": {
 					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+					"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
 					"requires": {
 						"fs.realpath": "^1.0.0",
@@ -43835,12 +41081,12 @@
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"minimatch": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
 					"requires": {
 						"brace-expansion": "^1.1.7"
@@ -43848,7 +41094,7 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -43860,23 +41106,22 @@
 			"version": "2.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-createspyobj/-/jest-createspyobj-2.0.0.tgz",
 			"integrity": "sha512-mFSKaPwJ9n6uqZ6mJlxr+rzHWEl+nGCdBc9Pqi4Nd4I8qFmSAgeMF2BUgOVBzmV9DIMmlKz0pevIpKehunhuvg==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"jest-diff": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-diff/-/jest-diff-28.1.3.tgz",
-			"integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-diff/-/jest-diff-29.7.0.tgz",
+			"integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
 			"requires": {
 				"chalk": "^4.0.0",
-				"diff-sequences": "^28.1.1",
-				"jest-get-type": "^28.0.2",
-				"pretty-format": "^28.1.3"
+				"diff-sequences": "^29.6.3",
+				"jest-get-type": "^29.6.3",
+				"pretty-format": "^29.7.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -43884,7 +41129,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -43893,7 +41138,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -43901,17 +41146,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -43920,28 +41165,28 @@
 			}
 		},
 		"jest-docblock": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-docblock/-/jest-docblock-28.1.1.tgz",
-			"integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-docblock/-/jest-docblock-29.7.0.tgz",
+			"integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
 			"requires": {
 				"detect-newline": "^3.0.0"
 			}
 		},
 		"jest-each": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-each/-/jest-each-28.1.3.tgz",
-			"integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-each/-/jest-each-29.7.0.tgz",
+			"integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
 			"requires": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"chalk": "^4.0.0",
-				"jest-get-type": "^28.0.2",
-				"jest-util": "^28.1.3",
-				"pretty-format": "^28.1.3"
+				"jest-get-type": "^29.6.3",
+				"jest-util": "^29.7.0",
+				"pretty-format": "^29.7.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -43949,7 +41194,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -43958,7 +41203,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -43966,30 +41211,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -43998,172 +41230,218 @@
 			}
 		},
 		"jest-environment-jsdom": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-environment-jsdom/-/jest-environment-jsdom-28.1.1.tgz",
-			"integrity": "sha512-41ZvgSoPNcKG5q3LuuOcAczdBxRq9DbZkPe24okN6ZCmiZdAfFtPg3z+lOtsT1fM6OAERApKT+3m0MRDQH2zIA==",
+			"version": "29.4.3",
+			"resolved": "http://localhost:4873/jest-environment-jsdom/-/jest-environment-jsdom-29.4.3.tgz",
+			"integrity": "sha512-rFjf8JXrw3OjUzzmSE5l0XjMj0/MSVEUMCSXBGPDkfwb1T03HZI7iJSL0cGctZApPSyJxbjyKDVxkZuyhHkuTw==",
 			"dev": true,
 			"requires": {
-				"@jest/environment": "^28.1.1",
-				"@jest/fake-timers": "^28.1.1",
-				"@jest/types": "^28.1.1",
-				"@types/jsdom": "^16.2.4",
+				"@jest/environment": "^29.4.3",
+				"@jest/fake-timers": "^29.4.3",
+				"@jest/types": "^29.4.3",
+				"@types/jsdom": "^20.0.0",
 				"@types/node": "*",
-				"jest-mock": "^28.1.1",
-				"jest-util": "^28.1.1",
-				"jsdom": "^19.0.0"
-			}
-		},
-		"jest-environment-node": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-environment-node/-/jest-environment-node-28.1.3.tgz",
-			"integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==",
-			"requires": {
-				"@jest/environment": "^28.1.3",
-				"@jest/fake-timers": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/node": "*",
-				"jest-mock": "^28.1.3",
-				"jest-util": "^28.1.3"
+				"jest-mock": "^29.4.3",
+				"jest-util": "^29.4.3",
+				"jsdom": "^20.0.0"
 			},
 			"dependencies": {
-				"ansi-styles": {
-					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+				"acorn-globals": {
+					"version": "7.0.1",
+					"resolved": "http://localhost:4873/acorn-globals/-/acorn-globals-7.0.1.tgz",
+					"integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==",
+					"dev": true,
 					"requires": {
-						"color-convert": "^2.0.1"
+						"acorn": "^8.1.0",
+						"acorn-walk": "^8.0.2"
 					}
 				},
-				"chalk": {
-					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+				"acorn-walk": {
+					"version": "8.2.0",
+					"resolved": "http://localhost:4873/acorn-walk/-/acorn-walk-8.2.0.tgz",
+					"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
+					"dev": true
+				},
+				"cssom": {
+					"version": "0.5.0",
+					"resolved": "http://localhost:4873/cssom/-/cssom-0.5.0.tgz",
+					"integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==",
+					"dev": true
+				},
+				"data-urls": {
+					"version": "3.0.2",
+					"resolved": "http://localhost:4873/data-urls/-/data-urls-3.0.2.tgz",
+					"integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==",
+					"dev": true,
 					"requires": {
-						"ansi-styles": "^4.1.0",
-						"supports-color": "^7.1.0"
+						"abab": "^2.0.6",
+						"whatwg-mimetype": "^3.0.0",
+						"whatwg-url": "^11.0.0"
 					}
 				},
-				"color-convert": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+				"domexception": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/domexception/-/domexception-4.0.0.tgz",
+					"integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==",
+					"dev": true,
 					"requires": {
-						"color-name": "~1.1.4"
+						"webidl-conversions": "^7.0.0"
 					}
 				},
-				"color-name": {
-					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+				"form-data": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/form-data/-/form-data-4.0.0.tgz",
+					"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+					"dev": true,
+					"requires": {
+						"asynckit": "^0.4.0",
+						"combined-stream": "^1.0.8",
+						"mime-types": "^2.1.12"
+					}
 				},
-				"has-flag": {
+				"html-encoding-sniffer": {
+					"version": "3.0.0",
+					"resolved": "http://localhost:4873/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz",
+					"integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==",
+					"dev": true,
+					"requires": {
+						"whatwg-encoding": "^2.0.0"
+					}
+				},
+				"iconv-lite": {
+					"version": "0.6.3",
+					"resolved": "http://localhost:4873/iconv-lite/-/iconv-lite-0.6.3.tgz",
+					"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+					"dev": true,
+					"requires": {
+						"safer-buffer": ">= 2.1.2 < 3.0.0"
+					}
+				},
+				"jsdom": {
+					"version": "20.0.3",
+					"resolved": "http://localhost:4873/jsdom/-/jsdom-20.0.3.tgz",
+					"integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==",
+					"dev": true,
+					"requires": {
+						"abab": "^2.0.6",
+						"acorn": "^8.8.1",
+						"acorn-globals": "^7.0.0",
+						"cssom": "^0.5.0",
+						"cssstyle": "^2.3.0",
+						"data-urls": "^3.0.2",
+						"decimal.js": "^10.4.2",
+						"domexception": "^4.0.0",
+						"escodegen": "^2.0.0",
+						"form-data": "^4.0.0",
+						"html-encoding-sniffer": "^3.0.0",
+						"http-proxy-agent": "^5.0.0",
+						"https-proxy-agent": "^5.0.1",
+						"is-potential-custom-element-name": "^1.0.1",
+						"nwsapi": "^2.2.2",
+						"parse5": "^7.1.1",
+						"saxes": "^6.0.0",
+						"symbol-tree": "^3.2.4",
+						"tough-cookie": "^4.1.2",
+						"w3c-xmlserializer": "^4.0.0",
+						"webidl-conversions": "^7.0.0",
+						"whatwg-encoding": "^2.0.0",
+						"whatwg-mimetype": "^3.0.0",
+						"whatwg-url": "^11.0.0",
+						"ws": "^8.11.0",
+						"xml-name-validator": "^4.0.0"
+					}
+				},
+				"saxes": {
+					"version": "6.0.0",
+					"resolved": "http://localhost:4873/saxes/-/saxes-6.0.0.tgz",
+					"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
+					"dev": true,
+					"requires": {
+						"xmlchars": "^2.2.0"
+					}
+				},
+				"w3c-xmlserializer": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+					"resolved": "http://localhost:4873/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz",
+					"integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==",
+					"dev": true,
+					"requires": {
+						"xml-name-validator": "^4.0.0"
+					}
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
+				"whatwg-encoding": {
+					"version": "2.0.0",
+					"resolved": "http://localhost:4873/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz",
+					"integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
+					"dev": true,
 					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
+						"iconv-lite": "0.6.3"
 					}
 				},
-				"supports-color": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+				"whatwg-mimetype": {
+					"version": "3.0.0",
+					"resolved": "http://localhost:4873/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",
+					"integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==",
+					"dev": true
+				},
+				"whatwg-url": {
+					"version": "11.0.0",
+					"resolved": "http://localhost:4873/whatwg-url/-/whatwg-url-11.0.0.tgz",
+					"integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
+					"dev": true,
 					"requires": {
-						"has-flag": "^4.0.0"
+						"tr46": "^3.0.0",
+						"webidl-conversions": "^7.0.0"
 					}
+				},
+				"ws": {
+					"version": "8.14.2",
+					"resolved": "http://localhost:4873/ws/-/ws-8.14.2.tgz",
+					"integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==",
+					"dev": true
+				},
+				"xml-name-validator": {
+					"version": "4.0.0",
+					"resolved": "http://localhost:4873/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
+					"integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
+					"dev": true
 				}
 			}
 		},
+		"jest-environment-node": {
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-environment-node/-/jest-environment-node-29.7.0.tgz",
+			"integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
+			"requires": {
+				"@jest/environment": "^29.7.0",
+				"@jest/fake-timers": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"@types/node": "*",
+				"jest-mock": "^29.7.0",
+				"jest-util": "^29.7.0"
+			}
+		},
 		"jest-get-type": {
-			"version": "28.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-get-type/-/jest-get-type-28.0.2.tgz",
-			"integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA=="
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/jest-get-type/-/jest-get-type-29.6.3.tgz",
+			"integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw=="
 		},
 		"jest-haste-map": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-haste-map/-/jest-haste-map-28.1.3.tgz",
-			"integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
+			"integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
 			"requires": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"@types/graceful-fs": "^4.1.3",
 				"@types/node": "*",
 				"anymatch": "^3.0.3",
 				"fb-watchman": "^2.0.0",
 				"fsevents": "^2.3.2",
 				"graceful-fs": "^4.2.9",
-				"jest-regex-util": "^28.0.2",
-				"jest-util": "^28.1.3",
-				"jest-worker": "^28.1.3",
+				"jest-regex-util": "^29.6.3",
+				"jest-util": "^29.7.0",
+				"jest-worker": "^29.7.0",
 				"micromatch": "^4.0.4",
 				"walker": "^1.0.8"
-			},
-			"dependencies": {
-				"ansi-styles": {
-					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
-					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"requires": {
-						"color-convert": "^2.0.1"
-					}
-				},
-				"chalk": {
-					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
-					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-					"requires": {
-						"ansi-styles": "^4.1.0",
-						"supports-color": "^7.1.0"
-					}
-				},
-				"color-convert": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
-					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"requires": {
-						"color-name": "~1.1.4"
-					}
-				},
-				"color-name": {
-					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
-				},
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
-				"supports-color": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-					"requires": {
-						"has-flag": "^4.0.0"
-					}
-				}
 			}
 		},
 		"jest-junit": {
@@ -44179,35 +41457,34 @@
 			}
 		},
 		"jest-leak-detector": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz",
-			"integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
+			"integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
 			"requires": {
-				"jest-get-type": "^28.0.2",
-				"pretty-format": "^28.1.3"
+				"jest-get-type": "^29.6.3",
+				"pretty-format": "^29.7.0"
 			}
 		},
 		"jest-marbles": {
 			"version": "3.0.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-marbles/-/jest-marbles-3.0.3.tgz",
 			"integrity": "sha512-Ww6tInEuGzyQ2Y/czcXWbgtKQMjB1qFOMVsTBENoikUX9LthgERMlePQTjvTfGn2GYRZhXU+V88ZjlYZFBYbLw==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"jest-matcher-utils": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz",
-			"integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz",
+			"integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==",
 			"requires": {
 				"chalk": "^4.0.0",
-				"jest-diff": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"pretty-format": "^28.1.3"
+				"jest-diff": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"pretty-format": "^29.7.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44215,7 +41492,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44224,7 +41501,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44232,17 +41509,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44251,24 +41528,24 @@
 			}
 		},
 		"jest-message-util": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-message-util/-/jest-message-util-28.1.3.tgz",
-			"integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-message-util/-/jest-message-util-29.7.0.tgz",
+			"integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
 			"requires": {
 				"@babel/code-frame": "^7.12.13",
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"@types/stack-utils": "^2.0.0",
 				"chalk": "^4.0.0",
 				"graceful-fs": "^4.2.9",
 				"micromatch": "^4.0.4",
-				"pretty-format": "^28.1.3",
+				"pretty-format": "^29.7.0",
 				"slash": "^3.0.0",
 				"stack-utils": "^2.0.3"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44276,7 +41553,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44285,7 +41562,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44293,17 +41570,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44312,58 +41589,59 @@
 			}
 		},
 		"jest-mock": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-mock/-/jest-mock-28.1.3.tgz",
-			"integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-mock/-/jest-mock-29.7.0.tgz",
+			"integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==",
 			"requires": {
-				"@jest/types": "^28.1.3",
-				"@types/node": "*"
+				"@jest/types": "^29.6.3",
+				"@types/node": "*",
+				"jest-util": "^29.7.0"
 			}
 		},
 		"jest-pnp-resolver": {
 			"version": "1.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
-			"integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
-			"requires": {}
+			"resolved": "http://localhost:4873/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
+			"integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w=="
 		},
 		"jest-preset-angular": {
-			"version": "12.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-preset-angular/-/jest-preset-angular-12.2.3.tgz",
-			"integrity": "sha512-9vgawXuki/lg4IRPtl5k83krWLKADTal7BBm06xNAWOK09AbHK1foXqZdVOMObsWbaMDeQ1cjba60vS/aEVY4Q==",
+			"version": "13.1.2",
+			"resolved": "http://localhost:4873/jest-preset-angular/-/jest-preset-angular-13.1.2.tgz",
+			"integrity": "sha512-kuzuIch/YYTMaMnuGDaiZEu++Bjc5WskOAmMwqWO0Grpcd0SulqTOV70Gz6Q/ZOQuMye+LS4KPyIVfqnJr2e3g==",
 			"dev": true,
 			"requires": {
 				"bs-logger": "^0.2.6",
 				"esbuild": ">=0.13.8",
 				"esbuild-wasm": ">=0.13.8",
-				"jest-environment-jsdom": "^28.0.0",
-				"pretty-format": "^28.0.0",
-				"ts-jest": "^28.0.0"
+				"jest-environment-jsdom": "^29.0.0",
+				"jest-util": "^29.0.0",
+				"pretty-format": "^29.0.0",
+				"ts-jest": "^29.0.0"
 			}
 		},
 		"jest-regex-util": {
-			"version": "28.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-regex-util/-/jest-regex-util-28.0.2.tgz",
-			"integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw=="
+			"version": "29.6.3",
+			"resolved": "http://localhost:4873/jest-regex-util/-/jest-regex-util-29.6.3.tgz",
+			"integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg=="
 		},
 		"jest-resolve": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.1.tgz",
-			"integrity": "sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-resolve/-/jest-resolve-29.7.0.tgz",
+			"integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
 			"requires": {
 				"chalk": "^4.0.0",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.1",
+				"jest-haste-map": "^29.7.0",
 				"jest-pnp-resolver": "^1.2.2",
-				"jest-util": "^28.1.1",
-				"jest-validate": "^28.1.1",
+				"jest-util": "^29.7.0",
+				"jest-validate": "^29.7.0",
 				"resolve": "^1.20.0",
-				"resolve.exports": "^1.1.0",
+				"resolve.exports": "^2.0.0",
 				"slash": "^3.0.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44371,7 +41649,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44380,7 +41658,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44388,17 +41666,22 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
+				"resolve.exports": {
+					"version": "2.0.2",
+					"resolved": "http://localhost:4873/resolve.exports/-/resolve.exports-2.0.2.tgz",
+					"integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg=="
+				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44407,57 +41690,46 @@
 			}
 		},
 		"jest-resolve-dependencies": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz",
-			"integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
+			"integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
 			"dev": true,
 			"requires": {
-				"jest-regex-util": "^28.0.2",
-				"jest-snapshot": "^28.1.3"
+				"jest-regex-util": "^29.6.3",
+				"jest-snapshot": "^29.7.0"
 			}
 		},
 		"jest-runner": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-runner/-/jest-runner-28.1.3.tgz",
-			"integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==",
-			"requires": {
-				"@jest/console": "^28.1.3",
-				"@jest/environment": "^28.1.3",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-runner/-/jest-runner-29.7.0.tgz",
+			"integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
+			"requires": {
+				"@jest/console": "^29.7.0",
+				"@jest/environment": "^29.7.0",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
-				"emittery": "^0.10.2",
+				"emittery": "^0.13.1",
 				"graceful-fs": "^4.2.9",
-				"jest-docblock": "^28.1.1",
-				"jest-environment-node": "^28.1.3",
-				"jest-haste-map": "^28.1.3",
-				"jest-leak-detector": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-resolve": "^28.1.3",
-				"jest-runtime": "^28.1.3",
-				"jest-util": "^28.1.3",
-				"jest-watcher": "^28.1.3",
-				"jest-worker": "^28.1.3",
+				"jest-docblock": "^29.7.0",
+				"jest-environment-node": "^29.7.0",
+				"jest-haste-map": "^29.7.0",
+				"jest-leak-detector": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-resolve": "^29.7.0",
+				"jest-runtime": "^29.7.0",
+				"jest-util": "^29.7.0",
+				"jest-watcher": "^29.7.0",
+				"jest-worker": "^29.7.0",
 				"p-limit": "^3.1.0",
 				"source-map-support": "0.5.13"
 			},
 			"dependencies": {
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44465,7 +41737,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44474,7 +41746,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44482,51 +41754,22 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-resolve": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-					"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-					"requires": {
-						"chalk": "^4.0.0",
-						"graceful-fs": "^4.2.9",
-						"jest-haste-map": "^28.1.3",
-						"jest-pnp-resolver": "^1.2.2",
-						"jest-util": "^28.1.3",
-						"jest-validate": "^28.1.3",
-						"resolve": "^1.20.0",
-						"resolve.exports": "^1.1.0",
-						"slash": "^3.0.0"
-					}
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"source-map": {
 					"version": "0.6.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map/-/source-map-0.6.1.tgz",
+					"resolved": "http://localhost:4873/source-map/-/source-map-0.6.1.tgz",
 					"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
 				},
 				"source-map-support": {
 					"version": "0.5.13",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-support/-/source-map-support-0.5.13.tgz",
+					"resolved": "http://localhost:4873/source-map-support/-/source-map-support-0.5.13.tgz",
 					"integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
 					"requires": {
 						"buffer-from": "^1.0.0",
@@ -44535,7 +41778,7 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44544,48 +41787,37 @@
 			}
 		},
 		"jest-runtime": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-runtime/-/jest-runtime-28.1.3.tgz",
-			"integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==",
-			"requires": {
-				"@jest/environment": "^28.1.3",
-				"@jest/fake-timers": "^28.1.3",
-				"@jest/globals": "^28.1.3",
-				"@jest/source-map": "^28.1.2",
-				"@jest/test-result": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-runtime/-/jest-runtime-29.7.0.tgz",
+			"integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
+			"requires": {
+				"@jest/environment": "^29.7.0",
+				"@jest/fake-timers": "^29.7.0",
+				"@jest/globals": "^29.7.0",
+				"@jest/source-map": "^29.6.3",
+				"@jest/test-result": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
+				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"cjs-module-lexer": "^1.0.0",
 				"collect-v8-coverage": "^1.0.0",
-				"execa": "^5.0.0",
 				"glob": "^7.1.3",
 				"graceful-fs": "^4.2.9",
-				"jest-haste-map": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-mock": "^28.1.3",
-				"jest-regex-util": "^28.0.2",
-				"jest-resolve": "^28.1.3",
-				"jest-snapshot": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-haste-map": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-mock": "^29.7.0",
+				"jest-regex-util": "^29.6.3",
+				"jest-resolve": "^29.7.0",
+				"jest-snapshot": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"slash": "^3.0.0",
 				"strip-bom": "^4.0.0"
 			},
 			"dependencies": {
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44593,7 +41825,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44602,7 +41834,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44610,33 +41842,12 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
-				"execa": {
-					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/execa/-/execa-5.1.1.tgz",
-					"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
-					"requires": {
-						"cross-spawn": "^7.0.3",
-						"get-stream": "^6.0.0",
-						"human-signals": "^2.1.0",
-						"is-stream": "^2.0.0",
-						"merge-stream": "^2.0.0",
-						"npm-run-path": "^4.0.1",
-						"onetime": "^5.1.2",
-						"signal-exit": "^3.0.3",
-						"strip-final-newline": "^2.0.0"
-					}
-				},
-				"get-stream": {
-					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/get-stream/-/get-stream-6.0.1.tgz",
-					"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
-				},
 				"glob": {
 					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+					"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
 					"requires": {
 						"fs.realpath": "^1.0.0",
@@ -44649,46 +41860,12 @@
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"human-signals": {
-					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/human-signals/-/human-signals-2.1.0.tgz",
-					"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
-				},
-				"jest-resolve": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-resolve/-/jest-resolve-28.1.3.tgz",
-					"integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
-					"requires": {
-						"chalk": "^4.0.0",
-						"graceful-fs": "^4.2.9",
-						"jest-haste-map": "^28.1.3",
-						"jest-pnp-resolver": "^1.2.2",
-						"jest-util": "^28.1.3",
-						"jest-validate": "^28.1.3",
-						"resolve": "^1.20.0",
-						"resolve.exports": "^1.1.0",
-						"slash": "^3.0.0"
-					}
-				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"minimatch": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
 					"requires": {
 						"brace-expansion": "^1.1.7"
@@ -44696,7 +41873,7 @@
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44705,38 +41882,35 @@
 			}
 		},
 		"jest-snapshot": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-snapshot/-/jest-snapshot-28.1.3.tgz",
-			"integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
+			"integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
 			"requires": {
 				"@babel/core": "^7.11.6",
 				"@babel/generator": "^7.7.2",
+				"@babel/plugin-syntax-jsx": "^7.7.2",
 				"@babel/plugin-syntax-typescript": "^7.7.2",
-				"@babel/traverse": "^7.7.2",
 				"@babel/types": "^7.3.3",
-				"@jest/expect-utils": "^28.1.3",
-				"@jest/transform": "^28.1.3",
-				"@jest/types": "^28.1.3",
-				"@types/babel__traverse": "^7.0.6",
-				"@types/prettier": "^2.1.5",
+				"@jest/expect-utils": "^29.7.0",
+				"@jest/transform": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"babel-preset-current-node-syntax": "^1.0.0",
 				"chalk": "^4.0.0",
-				"expect": "^28.1.3",
+				"expect": "^29.7.0",
 				"graceful-fs": "^4.2.9",
-				"jest-diff": "^28.1.3",
-				"jest-get-type": "^28.0.2",
-				"jest-haste-map": "^28.1.3",
-				"jest-matcher-utils": "^28.1.3",
-				"jest-message-util": "^28.1.3",
-				"jest-util": "^28.1.3",
+				"jest-diff": "^29.7.0",
+				"jest-get-type": "^29.6.3",
+				"jest-matcher-utils": "^29.7.0",
+				"jest-message-util": "^29.7.0",
+				"jest-util": "^29.7.0",
 				"natural-compare": "^1.4.0",
-				"pretty-format": "^28.1.3",
-				"semver": "^7.3.5"
+				"pretty-format": "^29.7.0",
+				"semver": "^7.5.3"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44744,7 +41918,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44753,7 +41927,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44761,30 +41935,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44802,11 +41963,11 @@
 			}
 		},
 		"jest-util": {
-			"version": "28.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.1.tgz",
-			"integrity": "sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-util/-/jest-util-29.7.0.tgz",
+			"integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
 			"requires": {
-				"@jest/types": "^28.1.1",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"chalk": "^4.0.0",
 				"ci-info": "^3.2.0",
@@ -44816,7 +41977,7 @@
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44824,7 +41985,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44833,7 +41994,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44841,17 +42002,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44860,21 +42021,21 @@
 			}
 		},
 		"jest-validate": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-validate/-/jest-validate-28.1.3.tgz",
-			"integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-validate/-/jest-validate-29.7.0.tgz",
+			"integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==",
 			"requires": {
-				"@jest/types": "^28.1.3",
+				"@jest/types": "^29.6.3",
 				"camelcase": "^6.2.0",
 				"chalk": "^4.0.0",
-				"jest-get-type": "^28.0.2",
+				"jest-get-type": "^29.6.3",
 				"leven": "^3.1.0",
-				"pretty-format": "^28.1.3"
+				"pretty-format": "^29.7.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44882,12 +42043,12 @@
 				},
 				"camelcase": {
 					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/camelcase/-/camelcase-6.3.0.tgz",
+					"resolved": "http://localhost:4873/camelcase/-/camelcase-6.3.0.tgz",
 					"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44896,7 +42057,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44904,17 +42065,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -44923,34 +42084,23 @@
 			}
 		},
 		"jest-watcher": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-watcher/-/jest-watcher-28.1.3.tgz",
-			"integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-watcher/-/jest-watcher-29.7.0.tgz",
+			"integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
 			"requires": {
-				"@jest/test-result": "^28.1.3",
-				"@jest/types": "^28.1.3",
+				"@jest/test-result": "^29.7.0",
+				"@jest/types": "^29.6.3",
 				"@types/node": "*",
 				"ansi-escapes": "^4.2.1",
 				"chalk": "^4.0.0",
-				"emittery": "^0.10.2",
-				"jest-util": "^28.1.3",
+				"emittery": "^0.13.1",
+				"jest-util": "^29.7.0",
 				"string-length": "^4.0.1"
 			},
 			"dependencies": {
-				"@jest/test-result": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@jest/test-result/-/test-result-28.1.3.tgz",
-					"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
-					"requires": {
-						"@jest/console": "^28.1.3",
-						"@jest/types": "^28.1.3",
-						"@types/istanbul-lib-coverage": "^2.0.0",
-						"collect-v8-coverage": "^1.0.0"
-					}
-				},
 				"ansi-styles": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 					"requires": {
 						"color-convert": "^2.0.1"
@@ -44958,7 +42108,7 @@
 				},
 				"chalk": {
 					"version": "4.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
+					"resolved": "http://localhost:4873/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
 					"requires": {
 						"ansi-styles": "^4.1.0",
@@ -44967,7 +42117,7 @@
 				},
 				"color-convert": {
 					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
 					"requires": {
 						"color-name": "~1.1.4"
@@ -44975,30 +42125,17 @@
 				},
 				"color-name": {
 					"version": "1.1.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
-				"jest-util": {
-					"version": "28.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-util/-/jest-util-28.1.3.tgz",
-					"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
-					"requires": {
-						"@jest/types": "^28.1.3",
-						"@types/node": "*",
-						"chalk": "^4.0.0",
-						"ci-info": "^3.2.0",
-						"graceful-fs": "^4.2.9",
-						"picomatch": "^2.2.3"
-					}
-				},
 				"supports-color": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -45007,23 +42144,24 @@
 			}
 		},
 		"jest-worker": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-worker/-/jest-worker-28.1.3.tgz",
-			"integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/jest-worker/-/jest-worker-29.7.0.tgz",
+			"integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
 			"requires": {
 				"@types/node": "*",
+				"jest-util": "^29.7.0",
 				"merge-stream": "^2.0.0",
 				"supports-color": "^8.0.0"
 			},
 			"dependencies": {
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"supports-color": {
 					"version": "8.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-8.1.1.tgz",
 					"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
 					"requires": {
 						"has-flag": "^4.0.0"
@@ -45031,6 +42169,12 @@
 				}
 			}
 		},
+		"jiti": {
+			"version": "1.20.0",
+			"resolved": "http://localhost:4873/jiti/-/jiti-1.20.0.tgz",
+			"integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==",
+			"dev": true
+		},
 		"js-base64": {
 			"version": "3.7.5",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-base64/-/js-base64-3.7.5.tgz",
@@ -45052,28 +42196,28 @@
 		},
 		"jsbn": {
 			"version": "0.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsbn/-/jsbn-0.1.1.tgz",
+			"resolved": "http://localhost:4873/jsbn/-/jsbn-0.1.1.tgz",
 			"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
-			"devOptional": true
+			"dev": true
 		},
 		"jsdom": {
-			"version": "19.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsdom/-/jsdom-19.0.0.tgz",
-			"integrity": "sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==",
+			"version": "16.7.0",
+			"resolved": "http://localhost:4873/jsdom/-/jsdom-16.7.0.tgz",
+			"integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
 			"dev": true,
 			"requires": {
 				"abab": "^2.0.5",
-				"acorn": "^8.5.0",
+				"acorn": "^8.2.4",
 				"acorn-globals": "^6.0.0",
-				"cssom": "^0.5.0",
+				"cssom": "^0.4.4",
 				"cssstyle": "^2.3.0",
-				"data-urls": "^3.0.1",
-				"decimal.js": "^10.3.1",
-				"domexception": "^4.0.0",
+				"data-urls": "^2.0.0",
+				"decimal.js": "^10.2.1",
+				"domexception": "^2.0.1",
 				"escodegen": "^2.0.0",
-				"form-data": "^4.0.0",
-				"html-encoding-sniffer": "^3.0.0",
-				"http-proxy-agent": "^5.0.0",
+				"form-data": "^3.0.0",
+				"html-encoding-sniffer": "^2.0.1",
+				"http-proxy-agent": "^4.0.1",
 				"https-proxy-agent": "^5.0.0",
 				"is-potential-custom-element-name": "^1.0.1",
 				"nwsapi": "^2.2.0",
@@ -45082,19 +42226,25 @@
 				"symbol-tree": "^3.2.4",
 				"tough-cookie": "^4.0.0",
 				"w3c-hr-time": "^1.0.2",
-				"w3c-xmlserializer": "^3.0.0",
-				"webidl-conversions": "^7.0.0",
-				"whatwg-encoding": "^2.0.0",
-				"whatwg-mimetype": "^3.0.0",
-				"whatwg-url": "^10.0.0",
-				"ws": "^8.2.3",
-				"xml-name-validator": "^4.0.0"
+				"w3c-xmlserializer": "^2.0.0",
+				"webidl-conversions": "^6.1.0",
+				"whatwg-encoding": "^1.0.5",
+				"whatwg-mimetype": "^2.3.0",
+				"whatwg-url": "^8.5.0",
+				"ws": "^7.4.6",
+				"xml-name-validator": "^3.0.0"
 			},
 			"dependencies": {
+				"@tootallnate/once": {
+					"version": "1.1.2",
+					"resolved": "http://localhost:4873/@tootallnate/once/-/once-1.1.2.tgz",
+					"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+					"dev": true
+				},
 				"form-data": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/form-data/-/form-data-4.0.0.tgz",
-					"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+					"version": "3.0.1",
+					"resolved": "http://localhost:4873/form-data/-/form-data-3.0.1.tgz",
+					"integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
 					"dev": true,
 					"requires": {
 						"asynckit": "^0.4.0",
@@ -45102,11 +42252,28 @@
 						"mime-types": "^2.1.12"
 					}
 				},
+				"http-proxy-agent": {
+					"version": "4.0.1",
+					"resolved": "http://localhost:4873/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+					"integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+					"dev": true,
+					"requires": {
+						"@tootallnate/once": "1",
+						"agent-base": "6",
+						"debug": "4"
+					}
+				},
 				"parse5": {
 					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
+					"resolved": "http://localhost:4873/parse5/-/parse5-6.0.1.tgz",
 					"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
 					"dev": true
+				},
+				"webidl-conversions": {
+					"version": "6.1.0",
+					"resolved": "http://localhost:4873/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+					"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
+					"dev": true
 				}
 			}
 		},
@@ -45123,14 +42290,14 @@
 		},
 		"json-parse-even-better-errors": {
 			"version": "2.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+			"resolved": "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
 			"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
 		},
 		"json-schema": {
 			"version": "0.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema/-/json-schema-0.4.0.tgz",
+			"resolved": "http://localhost:4873/json-schema/-/json-schema-0.4.0.tgz",
 			"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
-			"devOptional": true
+			"dev": true
 		},
 		"json-schema-traverse": {
 			"version": "1.0.0",
@@ -45141,19 +42308,31 @@
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
 			"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
-			"devOptional": true
+			"dev": true
 		},
 		"json-stringify-safe": {
 			"version": "5.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
 			"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
-			"devOptional": true
+			"dev": true
 		},
 		"json5": {
 			"version": "2.2.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json5/-/json5-2.2.3.tgz",
 			"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="
 		},
+		"jsonc-eslint-parser": {
+			"version": "2.4.0",
+			"resolved": "http://localhost:4873/jsonc-eslint-parser/-/jsonc-eslint-parser-2.4.0.tgz",
+			"integrity": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==",
+			"dev": true,
+			"requires": {
+				"acorn": "^8.5.0",
+				"eslint-visitor-keys": "^3.0.0",
+				"espree": "^9.0.0",
+				"semver": "^7.3.5"
+			}
+		},
 		"jsonc-parser": {
 			"version": "3.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsonc-parser/-/jsonc-parser-3.2.0.tgz",
@@ -45170,15 +42349,15 @@
 		},
 		"jsonparse": {
 			"version": "1.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsonparse/-/jsonparse-1.3.1.tgz",
+			"resolved": "http://localhost:4873/jsonparse/-/jsonparse-1.3.1.tgz",
 			"integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
 			"dev": true
 		},
 		"jsprim": {
 			"version": "2.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jsprim/-/jsprim-2.0.2.tgz",
+			"resolved": "http://localhost:4873/jsprim/-/jsprim-2.0.2.tgz",
 			"integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"assert-plus": "1.0.0",
 				"extsprintf": "1.3.0",
@@ -45207,7 +42386,7 @@
 		},
 		"kleur": {
 			"version": "3.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/kleur/-/kleur-3.0.3.tgz",
+			"resolved": "http://localhost:4873/kleur/-/kleur-3.0.3.tgz",
 			"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
 			"dev": true
 		},
@@ -45216,11 +42395,20 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/klona/-/klona-2.0.6.tgz",
 			"integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="
 		},
+		"launch-editor": {
+			"version": "2.6.1",
+			"resolved": "http://localhost:4873/launch-editor/-/launch-editor-2.6.1.tgz",
+			"integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==",
+			"requires": {
+				"picocolors": "^1.0.0",
+				"shell-quote": "^1.8.1"
+			}
+		},
 		"lazy-ass": {
 			"version": "1.6.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lazy-ass/-/lazy-ass-1.6.0.tgz",
 			"integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==",
-			"devOptional": true
+			"dev": true
 		},
 		"less": {
 			"version": "4.1.3",
@@ -45279,14 +42467,14 @@
 		},
 		"leven": {
 			"version": "3.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/leven/-/leven-3.1.0.tgz",
+			"resolved": "http://localhost:4873/leven/-/leven-3.1.0.tgz",
 			"integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="
 		},
 		"levn": {
 			"version": "0.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/levn/-/levn-0.4.1.tgz",
+			"resolved": "http://localhost:4873/levn/-/levn-0.4.1.tgz",
 			"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"prelude-ls": "^1.2.1",
 				"type-check": "~0.4.0"
@@ -45302,7 +42490,7 @@
 		},
 		"lilconfig": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lilconfig/-/lilconfig-2.1.0.tgz",
+			"resolved": "http://localhost:4873/lilconfig/-/lilconfig-2.1.0.tgz",
 			"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="
 		},
 		"lines-and-columns": {
@@ -45314,7 +42502,7 @@
 			"version": "3.14.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/listr2/-/listr2-3.14.0.tgz",
 			"integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"cli-truncate": "^2.1.0",
 				"colorette": "^2.0.16",
@@ -45328,7 +42516,7 @@
 		},
 		"loader-runner": {
 			"version": "4.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/loader-runner/-/loader-runner-4.3.0.tgz",
+			"resolved": "http://localhost:4873/loader-runner/-/loader-runner-4.3.0.tgz",
 			"integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg=="
 		},
 		"loader-utils": {
@@ -45348,7 +42536,8 @@
 		"lodash": {
 			"version": "4.17.21",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash/-/lodash-4.17.21.tgz",
-			"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
+			"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+			"dev": true
 		},
 		"lodash-es": {
 			"version": "4.17.21",
@@ -45357,7 +42546,7 @@
 		},
 		"lodash.debounce": {
 			"version": "4.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+			"resolved": "http://localhost:4873/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
 			"integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
 		},
 		"lodash.isempty": {
@@ -45386,24 +42575,24 @@
 		},
 		"lodash.memoize": {
 			"version": "4.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+			"resolved": "http://localhost:4873/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
 			"integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="
 		},
 		"lodash.merge": {
 			"version": "4.6.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.merge/-/lodash.merge-4.6.2.tgz",
 			"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"lodash.once": {
 			"version": "4.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.once/-/lodash.once-4.1.1.tgz",
 			"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
-			"devOptional": true
+			"dev": true
 		},
 		"lodash.uniq": {
 			"version": "4.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+			"resolved": "http://localhost:4873/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
 			"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
 		},
 		"log-symbols": {
@@ -45464,7 +42653,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/log-update/-/log-update-4.0.0.tgz",
 			"integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"ansi-escapes": "^4.3.0",
 				"cli-cursor": "^3.1.0",
@@ -45476,7 +42665,7 @@
 					"version": "4.3.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-convert": "^2.0.1"
 					}
@@ -45485,7 +42674,7 @@
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-name": "~1.1.4"
 					}
@@ -45494,13 +42683,13 @@
 					"version": "1.1.4",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-					"devOptional": true
+					"dev": true
 				},
 				"slice-ansi": {
 					"version": "4.0.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slice-ansi/-/slice-ansi-4.0.0.tgz",
 					"integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"ansi-styles": "^4.0.0",
 						"astral-regex": "^2.0.0",
@@ -45511,7 +42700,7 @@
 					"version": "6.2.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
 					"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"ansi-styles": "^4.0.0",
 						"string-width": "^4.1.0",
@@ -45537,14 +42726,6 @@
 				"yallist": "^3.0.2"
 			}
 		},
-		"magic-string": {
-			"version": "0.27.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/magic-string/-/magic-string-0.27.0.tgz",
-			"integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
-			"requires": {
-				"@jridgewell/sourcemap-codec": "^1.4.13"
-			}
-		},
 		"make-dir": {
 			"version": "3.1.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-dir/-/make-dir-3.1.0.tgz",
@@ -45566,127 +42747,39 @@
 			"integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
 		},
 		"make-fetch-happen": {
-			"version": "10.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz",
-			"integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==",
+			"version": "11.1.1",
+			"resolved": "http://localhost:4873/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz",
+			"integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==",
 			"dev": true,
 			"requires": {
 				"agentkeepalive": "^4.2.1",
-				"cacache": "^16.1.0",
-				"http-cache-semantics": "^4.1.0",
+				"cacache": "^17.0.0",
+				"http-cache-semantics": "^4.1.1",
 				"http-proxy-agent": "^5.0.0",
 				"https-proxy-agent": "^5.0.0",
 				"is-lambda": "^1.0.1",
 				"lru-cache": "^7.7.1",
-				"minipass": "^3.1.6",
-				"minipass-collect": "^1.0.2",
-				"minipass-fetch": "^2.0.3",
+				"minipass": "^5.0.0",
+				"minipass-fetch": "^3.0.0",
 				"minipass-flush": "^1.0.5",
 				"minipass-pipeline": "^1.2.4",
 				"negotiator": "^0.6.3",
 				"promise-retry": "^2.0.1",
 				"socks-proxy-agent": "^7.0.0",
-				"ssri": "^9.0.0"
+				"ssri": "^10.0.0"
 			},
 			"dependencies": {
-				"@npmcli/fs": {
-					"version": "2.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/@npmcli/fs/-/fs-2.1.2.tgz",
-					"integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==",
-					"dev": true,
-					"requires": {
-						"@gar/promisify": "^1.1.3",
-						"semver": "^7.3.5"
-					}
-				},
-				"cacache": {
-					"version": "16.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cacache/-/cacache-16.1.3.tgz",
-					"integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==",
-					"dev": true,
-					"requires": {
-						"@npmcli/fs": "^2.1.0",
-						"@npmcli/move-file": "^2.0.0",
-						"chownr": "^2.0.0",
-						"fs-minipass": "^2.1.0",
-						"glob": "^8.0.1",
-						"infer-owner": "^1.0.4",
-						"lru-cache": "^7.7.1",
-						"minipass": "^3.1.6",
-						"minipass-collect": "^1.0.2",
-						"minipass-flush": "^1.0.5",
-						"minipass-pipeline": "^1.2.4",
-						"mkdirp": "^1.0.4",
-						"p-map": "^4.0.0",
-						"promise-inflight": "^1.0.1",
-						"rimraf": "^3.0.2",
-						"ssri": "^9.0.0",
-						"tar": "^6.1.11",
-						"unique-filename": "^2.0.0"
-					}
-				},
-				"fs-minipass": {
-					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-minipass/-/fs-minipass-2.1.0.tgz",
-					"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
-					"dev": true,
-					"requires": {
-						"minipass": "^3.0.0"
-					}
-				},
 				"lru-cache": {
 					"version": "7.18.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-7.18.3.tgz",
 					"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
 					"dev": true
-				},
-				"minipass": {
-					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
-					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
-					"dev": true,
-					"requires": {
-						"yallist": "^4.0.0"
-					}
-				},
-				"ssri": {
-					"version": "9.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ssri/-/ssri-9.0.1.tgz",
-					"integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==",
-					"dev": true,
-					"requires": {
-						"minipass": "^3.1.1"
-					}
-				},
-				"unique-filename": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-filename/-/unique-filename-2.0.1.tgz",
-					"integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==",
-					"dev": true,
-					"requires": {
-						"unique-slug": "^3.0.0"
-					}
-				},
-				"unique-slug": {
-					"version": "3.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-slug/-/unique-slug-3.0.0.tgz",
-					"integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==",
-					"dev": true,
-					"requires": {
-						"imurmurhash": "^0.1.4"
-					}
-				},
-				"yallist": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-					"dev": true
 				}
 			}
 		},
 		"makeerror": {
 			"version": "1.0.12",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/makeerror/-/makeerror-1.0.12.tgz",
+			"resolved": "http://localhost:4873/makeerror/-/makeerror-1.0.12.tgz",
 			"integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
 			"requires": {
 				"tmpl": "1.0.5"
@@ -45719,21 +42812,21 @@
 			}
 		},
 		"mdn-data": {
-			"version": "2.0.14",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mdn-data/-/mdn-data-2.0.14.tgz",
-			"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
+			"version": "2.0.30",
+			"resolved": "http://localhost:4873/mdn-data/-/mdn-data-2.0.30.tgz",
+			"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
 		},
 		"media-typer": {
 			"version": "0.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/media-typer/-/media-typer-0.3.0.tgz",
+			"resolved": "http://localhost:4873/media-typer/-/media-typer-0.3.0.tgz",
 			"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
 		},
 		"memfs": {
-			"version": "3.4.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/memfs/-/memfs-3.4.13.tgz",
-			"integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==",
+			"version": "3.5.3",
+			"resolved": "http://localhost:4873/memfs/-/memfs-3.5.3.tgz",
+			"integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
 			"requires": {
-				"fs-monkey": "^1.0.3"
+				"fs-monkey": "^1.0.4"
 			}
 		},
 		"memory-fs": {
@@ -45793,7 +42886,7 @@
 		},
 		"merge-descriptors": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+			"resolved": "http://localhost:4873/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
 			"integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
 		},
 		"merge-stream": {
@@ -45808,7 +42901,7 @@
 		},
 		"methods": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/methods/-/methods-1.1.2.tgz",
+			"resolved": "http://localhost:4873/methods/-/methods-1.1.2.tgz",
 			"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="
 		},
 		"micromatch": {
@@ -45868,9 +42961,9 @@
 			"dev": true
 		},
 		"mini-css-extract-plugin": {
-			"version": "2.7.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz",
-			"integrity": "sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==",
+			"version": "2.7.6",
+			"resolved": "http://localhost:4873/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz",
+			"integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==",
 			"dev": true,
 			"requires": {
 				"schema-utils": "^4.0.0"
@@ -45901,14 +42994,14 @@
 			"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
 		},
 		"minipass": {
-			"version": "4.2.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-4.2.5.tgz",
-			"integrity": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==",
+			"version": "5.0.0",
+			"resolved": "http://localhost:4873/minipass/-/minipass-5.0.0.tgz",
+			"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
 			"dev": true
 		},
 		"minipass-collect": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-collect/-/minipass-collect-1.0.2.tgz",
+			"resolved": "http://localhost:4873/minipass-collect/-/minipass-collect-1.0.2.tgz",
 			"integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
 			"dev": true,
 			"requires": {
@@ -45917,7 +43010,7 @@
 			"dependencies": {
 				"minipass": {
 					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+					"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 					"dev": true,
 					"requires": {
@@ -45926,44 +43019,35 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
 			}
 		},
 		"minipass-fetch": {
-			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-fetch/-/minipass-fetch-2.1.2.tgz",
-			"integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==",
+			"version": "3.0.4",
+			"resolved": "http://localhost:4873/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
+			"integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
 			"dev": true,
 			"requires": {
 				"encoding": "^0.1.13",
-				"minipass": "^3.1.6",
+				"minipass": "^7.0.3",
 				"minipass-sized": "^1.0.3",
 				"minizlib": "^2.1.2"
 			},
 			"dependencies": {
 				"minipass": {
-					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
-					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
-					"dev": true,
-					"requires": {
-						"yallist": "^4.0.0"
-					}
-				},
-				"yallist": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
-					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+					"version": "7.0.4",
+					"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+					"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
 					"dev": true
 				}
 			}
 		},
 		"minipass-flush": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-flush/-/minipass-flush-1.0.5.tgz",
+			"resolved": "http://localhost:4873/minipass-flush/-/minipass-flush-1.0.5.tgz",
 			"integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
 			"dev": true,
 			"requires": {
@@ -45972,7 +43056,7 @@
 			"dependencies": {
 				"minipass": {
 					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+					"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 					"dev": true,
 					"requires": {
@@ -45981,7 +43065,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
@@ -45989,7 +43073,7 @@
 		},
 		"minipass-json-stream": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
+			"resolved": "http://localhost:4873/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
 			"integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==",
 			"dev": true,
 			"requires": {
@@ -45999,7 +43083,7 @@
 			"dependencies": {
 				"minipass": {
 					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+					"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 					"dev": true,
 					"requires": {
@@ -46008,7 +43092,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
@@ -46016,7 +43100,7 @@
 		},
 		"minipass-pipeline": {
 			"version": "1.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+			"resolved": "http://localhost:4873/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
 			"integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
 			"dev": true,
 			"requires": {
@@ -46025,7 +43109,7 @@
 			"dependencies": {
 				"minipass": {
 					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+					"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 					"dev": true,
 					"requires": {
@@ -46034,7 +43118,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
@@ -46042,7 +43126,7 @@
 		},
 		"minipass-sized": {
 			"version": "1.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-sized/-/minipass-sized-1.0.3.tgz",
+			"resolved": "http://localhost:4873/minipass-sized/-/minipass-sized-1.0.3.tgz",
 			"integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
 			"dev": true,
 			"requires": {
@@ -46051,7 +43135,7 @@
 			"dependencies": {
 				"minipass": {
 					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+					"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 					"dev": true,
 					"requires": {
@@ -46060,7 +43144,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
@@ -46068,7 +43152,7 @@
 		},
 		"minizlib": {
 			"version": "2.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minizlib/-/minizlib-2.1.2.tgz",
+			"resolved": "http://localhost:4873/minizlib/-/minizlib-2.1.2.tgz",
 			"integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
 			"dev": true,
 			"requires": {
@@ -46078,7 +43162,7 @@
 			"dependencies": {
 				"minipass": {
 					"version": "3.3.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+					"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 					"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 					"dev": true,
 					"requires": {
@@ -46087,7 +43171,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
@@ -46124,207 +43208,8 @@
 		"mkdirp": {
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mkdirp/-/mkdirp-1.0.4.tgz",
-			"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
-		},
-		"mocha": {
-			"version": "10.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mocha/-/mocha-10.2.0.tgz",
-			"integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==",
-			"dev": true,
-			"peer": true,
-			"requires": {
-				"ansi-colors": "4.1.1",
-				"browser-stdout": "1.3.1",
-				"chokidar": "3.5.3",
-				"debug": "4.3.4",
-				"diff": "5.0.0",
-				"escape-string-regexp": "4.0.0",
-				"find-up": "5.0.0",
-				"glob": "7.2.0",
-				"he": "1.2.0",
-				"js-yaml": "4.1.0",
-				"log-symbols": "4.1.0",
-				"minimatch": "5.0.1",
-				"ms": "2.1.3",
-				"nanoid": "3.3.3",
-				"serialize-javascript": "6.0.0",
-				"strip-json-comments": "3.1.1",
-				"supports-color": "8.1.1",
-				"workerpool": "6.2.1",
-				"yargs": "16.2.0",
-				"yargs-parser": "20.2.4",
-				"yargs-unparser": "2.0.0"
-			},
-			"dependencies": {
-				"ansi-colors": {
-					"version": "4.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-colors/-/ansi-colors-4.1.1.tgz",
-					"integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
-					"dev": true,
-					"peer": true
-				},
-				"argparse": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/argparse/-/argparse-2.0.1.tgz",
-					"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-					"dev": true,
-					"peer": true
-				},
-				"escape-string-regexp": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
-					"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
-					"dev": true,
-					"peer": true
-				},
-				"find-up": {
-					"version": "5.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/find-up/-/find-up-5.0.0.tgz",
-					"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"locate-path": "^6.0.0",
-						"path-exists": "^4.0.0"
-					}
-				},
-				"glob": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.0.tgz",
-					"integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"fs.realpath": "^1.0.0",
-						"inflight": "^1.0.4",
-						"inherits": "2",
-						"minimatch": "^3.0.4",
-						"once": "^1.3.0",
-						"path-is-absolute": "^1.0.0"
-					},
-					"dependencies": {
-						"minimatch": {
-							"version": "3.1.2",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
-							"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
-							"dev": true,
-							"peer": true,
-							"requires": {
-								"brace-expansion": "^1.1.7"
-							}
-						}
-					}
-				},
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-					"dev": true,
-					"peer": true
-				},
-				"js-yaml": {
-					"version": "4.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/js-yaml/-/js-yaml-4.1.0.tgz",
-					"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"argparse": "^2.0.1"
-					}
-				},
-				"locate-path": {
-					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/locate-path/-/locate-path-6.0.0.tgz",
-					"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"p-locate": "^5.0.0"
-					}
-				},
-				"minimatch": {
-					"version": "5.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-5.0.1.tgz",
-					"integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"brace-expansion": "^2.0.1"
-					},
-					"dependencies": {
-						"brace-expansion": {
-							"version": "2.0.1",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
-							"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
-							"dev": true,
-							"peer": true,
-							"requires": {
-								"balanced-match": "^1.0.0"
-							}
-						}
-					}
-				},
-				"ms": {
-					"version": "2.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.1.3.tgz",
-					"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
-					"dev": true,
-					"peer": true
-				},
-				"p-locate": {
-					"version": "5.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/p-locate/-/p-locate-5.0.0.tgz",
-					"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"p-limit": "^3.0.2"
-					}
-				},
-				"serialize-javascript": {
-					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
-					"integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"randombytes": "^2.1.0"
-					}
-				},
-				"supports-color": {
-					"version": "8.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
-					"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"has-flag": "^4.0.0"
-					}
-				},
-				"yargs": {
-					"version": "16.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs/-/yargs-16.2.0.tgz",
-					"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
-					"dev": true,
-					"peer": true,
-					"requires": {
-						"cliui": "^7.0.2",
-						"escalade": "^3.1.1",
-						"get-caller-file": "^2.0.5",
-						"require-directory": "^2.1.1",
-						"string-width": "^4.2.0",
-						"y18n": "^5.0.5",
-						"yargs-parser": "^20.2.2"
-					}
-				},
-				"yargs-parser": {
-					"version": "20.2.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs-parser/-/yargs-parser-20.2.4.tgz",
-					"integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
-					"dev": true,
-					"peer": true
-				}
-			}
+			"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+			"dev": true
 		},
 		"mochawesome": {
 			"version": "7.1.3",
@@ -46724,6 +43609,12 @@
 				}
 			}
 		},
+		"mrmime": {
+			"version": "1.0.1",
+			"resolved": "http://localhost:4873/mrmime/-/mrmime-1.0.1.tgz",
+			"integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==",
+			"dev": true
+		},
 		"ms": {
 			"version": "2.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.1.2.tgz",
@@ -46731,7 +43622,7 @@
 		},
 		"multicast-dns": {
 			"version": "7.2.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/multicast-dns/-/multicast-dns-7.2.5.tgz",
+			"resolved": "http://localhost:4873/multicast-dns/-/multicast-dns-7.2.5.tgz",
 			"integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==",
 			"requires": {
 				"dns-packet": "^5.2.2",
@@ -46751,13 +43642,6 @@
 			"dev": true,
 			"optional": true
 		},
-		"nanoid": {
-			"version": "3.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nanoid/-/nanoid-3.3.3.tgz",
-			"integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==",
-			"dev": true,
-			"peer": true
-		},
 		"nanomatch": {
 			"version": "1.2.13",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nanomatch/-/nanomatch-1.2.13.tgz",
@@ -46777,12 +43661,6 @@
 				"to-regex": "^3.0.1"
 			}
 		},
-		"native-request": {
-			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/native-request/-/native-request-1.1.0.tgz",
-			"integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==",
-			"optional": true
-		},
 		"natural-compare": {
 			"version": "1.4.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/natural-compare/-/natural-compare-1.4.0.tgz",
@@ -46839,12 +43717,11 @@
 			"version": "14.11.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ng-mocks/-/ng-mocks-14.11.0.tgz",
 			"integrity": "sha512-6h0TafPogU7iEbWKGQt5npfEtI7IjThsqqnDboMIZ4AJyUY7VHUmhFa39Zkd2e4oOLDLb/6sVnfDIaWCp3oFgQ==",
-			"dev": true,
-			"requires": {}
+			"dev": true
 		},
 		"nice-napi": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nice-napi/-/nice-napi-1.0.2.tgz",
+			"resolved": "http://localhost:4873/nice-napi/-/nice-napi-1.0.2.tgz",
 			"integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==",
 			"dev": true,
 			"optional": true,
@@ -46855,7 +43732,7 @@
 		},
 		"node-abort-controller": {
 			"version": "3.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
+			"resolved": "http://localhost:4873/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
 			"integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ=="
 		},
 		"node-addon-api": {
@@ -46871,19 +43748,20 @@
 		},
 		"node-forge": {
 			"version": "1.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-forge/-/node-forge-1.3.1.tgz",
+			"resolved": "http://localhost:4873/node-forge/-/node-forge-1.3.1.tgz",
 			"integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="
 		},
 		"node-gyp": {
-			"version": "9.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-gyp/-/node-gyp-9.3.1.tgz",
-			"integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==",
+			"version": "9.4.0",
+			"resolved": "http://localhost:4873/node-gyp/-/node-gyp-9.4.0.tgz",
+			"integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==",
 			"dev": true,
 			"requires": {
 				"env-paths": "^2.2.0",
+				"exponential-backoff": "^3.1.1",
 				"glob": "^7.1.4",
 				"graceful-fs": "^4.2.6",
-				"make-fetch-happen": "^10.0.3",
+				"make-fetch-happen": "^11.0.3",
 				"nopt": "^6.0.0",
 				"npmlog": "^6.0.0",
 				"rimraf": "^3.0.2",
@@ -46894,7 +43772,7 @@
 			"dependencies": {
 				"glob": {
 					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+					"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
 					"dev": true,
 					"requires": {
@@ -46908,7 +43786,7 @@
 				},
 				"minimatch": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
 					"dev": true,
 					"requires": {
@@ -46924,7 +43802,7 @@
 		},
 		"node-int64": {
 			"version": "0.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-int64/-/node-int64-0.4.0.tgz",
+			"resolved": "http://localhost:4873/node-int64/-/node-int64-0.4.0.tgz",
 			"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
 		},
 		"node-libs-browser": {
@@ -47013,14 +43891,19 @@
 				}
 			}
 		},
+		"node-machine-id": {
+			"version": "1.1.12",
+			"resolved": "http://localhost:4873/node-machine-id/-/node-machine-id-1.1.12.tgz",
+			"integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ=="
+		},
 		"node-releases": {
-			"version": "2.0.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/node-releases/-/node-releases-2.0.10.tgz",
-			"integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="
+			"version": "2.0.13",
+			"resolved": "http://localhost:4873/node-releases/-/node-releases-2.0.13.tgz",
+			"integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="
 		},
 		"nopt": {
 			"version": "6.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nopt/-/nopt-6.0.0.tgz",
+			"resolved": "http://localhost:4873/nopt/-/nopt-6.0.0.tgz",
 			"integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==",
 			"dev": true,
 			"requires": {
@@ -47029,7 +43912,7 @@
 		},
 		"normalize-package-data": {
 			"version": "5.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
+			"resolved": "http://localhost:4873/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
 			"integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==",
 			"dev": true,
 			"requires": {
@@ -47046,17 +43929,12 @@
 		},
 		"normalize-range": {
 			"version": "0.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/normalize-range/-/normalize-range-0.1.2.tgz",
+			"resolved": "http://localhost:4873/normalize-range/-/normalize-range-0.1.2.tgz",
 			"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="
 		},
-		"normalize-url": {
-			"version": "6.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/normalize-url/-/normalize-url-6.1.0.tgz",
-			"integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="
-		},
 		"npm-bundled": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-bundled/-/npm-bundled-3.0.0.tgz",
+			"resolved": "http://localhost:4873/npm-bundled/-/npm-bundled-3.0.0.tgz",
 			"integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==",
 			"dev": true,
 			"requires": {
@@ -47064,23 +43942,23 @@
 			}
 		},
 		"npm-install-checks": {
-			"version": "6.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-install-checks/-/npm-install-checks-6.1.0.tgz",
-			"integrity": "sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==",
+			"version": "6.3.0",
+			"resolved": "http://localhost:4873/npm-install-checks/-/npm-install-checks-6.3.0.tgz",
+			"integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==",
 			"dev": true,
 			"requires": {
 				"semver": "^7.1.1"
 			}
 		},
 		"npm-normalize-package-bin": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz",
-			"integrity": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==",
+			"version": "3.0.1",
+			"resolved": "http://localhost:4873/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
+			"integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==",
 			"dev": true
 		},
 		"npm-package-arg": {
 			"version": "10.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
+			"resolved": "http://localhost:4873/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
 			"integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==",
 			"dev": true,
 			"requires": {
@@ -47092,7 +43970,7 @@
 		},
 		"npm-packlist": {
 			"version": "7.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-packlist/-/npm-packlist-7.0.4.tgz",
+			"resolved": "http://localhost:4873/npm-packlist/-/npm-packlist-7.0.4.tgz",
 			"integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==",
 			"dev": true,
 			"requires": {
@@ -47101,7 +43979,7 @@
 		},
 		"npm-pick-manifest": {
 			"version": "8.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz",
+			"resolved": "http://localhost:4873/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz",
 			"integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==",
 			"dev": true,
 			"requires": {
@@ -47112,61 +43990,18 @@
 			}
 		},
 		"npm-registry-fetch": {
-			"version": "14.0.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npm-registry-fetch/-/npm-registry-fetch-14.0.3.tgz",
-			"integrity": "sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==",
+			"version": "14.0.5",
+			"resolved": "http://localhost:4873/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz",
+			"integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==",
 			"dev": true,
 			"requires": {
 				"make-fetch-happen": "^11.0.0",
-				"minipass": "^4.0.0",
+				"minipass": "^5.0.0",
 				"minipass-fetch": "^3.0.0",
 				"minipass-json-stream": "^1.0.1",
 				"minizlib": "^2.1.2",
 				"npm-package-arg": "^10.0.0",
 				"proc-log": "^3.0.0"
-			},
-			"dependencies": {
-				"lru-cache": {
-					"version": "7.18.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
-					"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
-					"dev": true
-				},
-				"make-fetch-happen": {
-					"version": "11.0.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz",
-					"integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==",
-					"dev": true,
-					"requires": {
-						"agentkeepalive": "^4.2.1",
-						"cacache": "^17.0.0",
-						"http-cache-semantics": "^4.1.1",
-						"http-proxy-agent": "^5.0.0",
-						"https-proxy-agent": "^5.0.0",
-						"is-lambda": "^1.0.1",
-						"lru-cache": "^7.7.1",
-						"minipass": "^4.0.0",
-						"minipass-fetch": "^3.0.0",
-						"minipass-flush": "^1.0.5",
-						"minipass-pipeline": "^1.2.4",
-						"negotiator": "^0.6.3",
-						"promise-retry": "^2.0.1",
-						"socks-proxy-agent": "^7.0.0",
-						"ssri": "^10.0.0"
-					}
-				},
-				"minipass-fetch": {
-					"version": "3.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass-fetch/-/minipass-fetch-3.0.1.tgz",
-					"integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==",
-					"dev": true,
-					"requires": {
-						"encoding": "^0.1.13",
-						"minipass": "^4.0.0",
-						"minipass-sized": "^1.0.3",
-						"minizlib": "^2.1.2"
-					}
-				}
 			}
 		},
 		"npm-run-path": {
@@ -47179,7 +44014,7 @@
 		},
 		"npmlog": {
 			"version": "6.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/npmlog/-/npmlog-6.0.2.tgz",
+			"resolved": "http://localhost:4873/npmlog/-/npmlog-6.0.2.tgz",
 			"integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
 			"dev": true,
 			"requires": {
@@ -47191,49 +44026,60 @@
 		},
 		"nth-check": {
 			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nth-check/-/nth-check-2.1.1.tgz",
+			"resolved": "http://localhost:4873/nth-check/-/nth-check-2.1.1.tgz",
 			"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
 			"requires": {
 				"boolbase": "^1.0.0"
 			}
 		},
 		"nwsapi": {
-			"version": "2.2.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nwsapi/-/nwsapi-2.2.2.tgz",
-			"integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==",
+			"version": "2.2.7",
+			"resolved": "http://localhost:4873/nwsapi/-/nwsapi-2.2.7.tgz",
+			"integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==",
 			"dev": true
 		},
 		"nx": {
-			"version": "15.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/nx/-/nx-15.6.3.tgz",
-			"integrity": "sha512-3t0A0GPLNen1yPAyE+VGZ3nkAzZYb5nfXtAcx8SHBlKq4u42yBY3khBmP1y4Og3jhIwFIj7J7Npeh8ZKrthmYQ==",
-			"requires": {
-				"@nrwl/cli": "15.6.3",
-				"@nrwl/tao": "15.6.3",
+			"version": "16.10.0",
+			"resolved": "http://localhost:4873/nx/-/nx-16.10.0.tgz",
+			"integrity": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==",
+			"requires": {
+				"@nrwl/tao": "16.10.0",
+				"@nx/nx-darwin-arm64": "16.10.0",
+				"@nx/nx-darwin-x64": "16.10.0",
+				"@nx/nx-freebsd-x64": "16.10.0",
+				"@nx/nx-linux-arm-gnueabihf": "16.10.0",
+				"@nx/nx-linux-arm64-gnu": "16.10.0",
+				"@nx/nx-linux-arm64-musl": "16.10.0",
+				"@nx/nx-linux-x64-gnu": "16.10.0",
+				"@nx/nx-linux-x64-musl": "16.10.0",
+				"@nx/nx-win32-arm64-msvc": "16.10.0",
+				"@nx/nx-win32-x64-msvc": "16.10.0",
 				"@parcel/watcher": "2.0.4",
 				"@yarnpkg/lockfile": "^1.1.0",
-				"@yarnpkg/parsers": "^3.0.0-rc.18",
+				"@yarnpkg/parsers": "3.0.0-rc.46",
 				"@zkochan/js-yaml": "0.0.6",
 				"axios": "^1.0.0",
 				"chalk": "^4.1.0",
 				"cli-cursor": "3.1.0",
 				"cli-spinners": "2.6.1",
-				"cliui": "^7.0.2",
-				"dotenv": "~10.0.0",
+				"cliui": "^8.0.1",
+				"dotenv": "~16.3.1",
+				"dotenv-expand": "~10.0.0",
 				"enquirer": "~2.3.6",
-				"fast-glob": "3.2.7",
 				"figures": "3.2.0",
 				"flat": "^5.0.2",
 				"fs-extra": "^11.1.0",
 				"glob": "7.1.4",
 				"ignore": "^5.0.4",
+				"jest-diff": "^29.4.1",
 				"js-yaml": "4.1.0",
 				"jsonc-parser": "3.2.0",
 				"lines-and-columns": "~2.0.3",
 				"minimatch": "3.0.5",
+				"node-machine-id": "1.1.12",
 				"npm-run-path": "^4.0.1",
 				"open": "^8.4.0",
-				"semver": "7.3.4",
+				"semver": "7.5.3",
 				"string-width": "^4.2.3",
 				"strong-log-transformer": "^2.1.0",
 				"tar-stream": "~2.2.0",
@@ -47267,6 +44113,16 @@
 						"supports-color": "^7.1.0"
 					}
 				},
+				"cliui": {
+					"version": "8.0.1",
+					"resolved": "http://localhost:4873/cliui/-/cliui-8.0.1.tgz",
+					"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+					"requires": {
+						"string-width": "^4.2.0",
+						"strip-ansi": "^6.0.1",
+						"wrap-ansi": "^7.0.0"
+					}
+				},
 				"color-convert": {
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
@@ -47308,16 +44164,16 @@
 				},
 				"lru-cache": {
 					"version": "6.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-6.0.0.tgz",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-6.0.0.tgz",
 					"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
 					"requires": {
 						"yallist": "^4.0.0"
 					}
 				},
 				"semver": {
-					"version": "7.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.4.tgz",
-					"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+					"version": "7.5.3",
+					"resolved": "http://localhost:4873/semver/-/semver-7.5.3.tgz",
+					"integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==",
 					"requires": {
 						"lru-cache": "^6.0.0"
 					}
@@ -47332,7 +44188,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
 				}
 			}
@@ -47432,6 +44288,12 @@
 			"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
 			"dev": true
 		},
+		"object-path": {
+			"version": "0.11.8",
+			"resolved": "http://localhost:4873/object-path/-/object-path-0.11.8.tgz",
+			"integrity": "sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==",
+			"dev": true
+		},
 		"object-visit": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/object-visit/-/object-visit-1.0.1.tgz",
@@ -47464,12 +44326,12 @@
 		},
 		"obuf": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/obuf/-/obuf-1.1.2.tgz",
+			"resolved": "http://localhost:4873/obuf/-/obuf-1.1.2.tgz",
 			"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="
 		},
 		"on-finished": {
 			"version": "2.4.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/on-finished/-/on-finished-2.4.1.tgz",
+			"resolved": "http://localhost:4873/on-finished/-/on-finished-2.4.1.tgz",
 			"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
 			"requires": {
 				"ee-first": "1.1.1"
@@ -47477,7 +44339,7 @@
 		},
 		"on-headers": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/on-headers/-/on-headers-1.0.2.tgz",
+			"resolved": "http://localhost:4873/on-headers/-/on-headers-1.0.2.tgz",
 			"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
 		},
 		"once": {
@@ -47497,9 +44359,9 @@
 			}
 		},
 		"open": {
-			"version": "8.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/open/-/open-8.4.0.tgz",
-			"integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
+			"version": "8.4.2",
+			"resolved": "http://localhost:4873/open/-/open-8.4.2.tgz",
+			"integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
 			"requires": {
 				"define-lazy-prop": "^2.0.0",
 				"is-docker": "^2.1.1",
@@ -47509,26 +44371,28 @@
 		"opener": {
 			"version": "1.5.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/opener/-/opener-1.5.2.tgz",
-			"integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A=="
+			"integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==",
+			"dev": true
 		},
 		"optionator": {
-			"version": "0.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/optionator/-/optionator-0.9.1.tgz",
-			"integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
-			"devOptional": true,
+			"version": "0.9.3",
+			"resolved": "http://localhost:4873/optionator/-/optionator-0.9.3.tgz",
+			"integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
+			"dev": true,
 			"requires": {
+				"@aashutoshrathi/word-wrap": "^1.2.3",
 				"deep-is": "^0.1.3",
 				"fast-levenshtein": "^2.0.6",
 				"levn": "^0.4.1",
 				"prelude-ls": "^1.2.1",
-				"type-check": "^0.4.0",
-				"word-wrap": "^1.2.3"
+				"type-check": "^0.4.0"
 			}
 		},
 		"ora": {
 			"version": "5.4.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ora/-/ora-5.4.1.tgz",
 			"integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+			"dev": true,
 			"requires": {
 				"bl": "^4.1.0",
 				"chalk": "^4.1.0",
@@ -47545,6 +44409,7 @@
 					"version": "4.3.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+					"dev": true,
 					"requires": {
 						"color-convert": "^2.0.1"
 					}
@@ -47553,6 +44418,7 @@
 					"version": "4.1.2",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/chalk/-/chalk-4.1.2.tgz",
 					"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+					"dev": true,
 					"requires": {
 						"ansi-styles": "^4.1.0",
 						"supports-color": "^7.1.0"
@@ -47562,6 +44428,7 @@
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+					"dev": true,
 					"requires": {
 						"color-name": "~1.1.4"
 					}
@@ -47569,17 +44436,20 @@
 				"color-name": {
 					"version": "1.1.4",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
-					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+					"dev": true
 				},
 				"has-flag": {
 					"version": "4.0.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+					"dev": true
 				},
 				"supports-color": {
 					"version": "7.2.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
 					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+					"dev": true,
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
@@ -47602,7 +44472,7 @@
 			"version": "1.2.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ospath/-/ospath-1.2.2.tgz",
 			"integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==",
-			"devOptional": true
+			"dev": true
 		},
 		"p-limit": {
 			"version": "3.1.0",
@@ -47634,14 +44504,14 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/p-map/-/p-map-4.0.0.tgz",
 			"integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"aggregate-error": "^3.0.0"
 			}
 		},
 		"p-retry": {
 			"version": "4.6.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/p-retry/-/p-retry-4.6.2.tgz",
+			"resolved": "http://localhost:4873/p-retry/-/p-retry-4.6.2.tgz",
 			"integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
 			"requires": {
 				"@types/retry": "0.12.0",
@@ -47650,7 +44520,7 @@
 			"dependencies": {
 				"retry": {
 					"version": "0.13.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/retry/-/retry-0.13.1.tgz",
+					"resolved": "http://localhost:4873/retry/-/retry-0.13.1.tgz",
 					"integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="
 				}
 			}
@@ -47661,9 +44531,9 @@
 			"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
 		},
 		"pacote": {
-			"version": "15.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pacote/-/pacote-15.0.8.tgz",
-			"integrity": "sha512-UlcumB/XS6xyyIMwg/WwMAyUmga+RivB5KgkRwA1hZNtrx+0Bt41KxHCvg1kr0pZ/ZeD8qjhW4fph6VaYRCbLw==",
+			"version": "15.2.0",
+			"resolved": "http://localhost:4873/pacote/-/pacote-15.2.0.tgz",
+			"integrity": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==",
 			"dev": true,
 			"requires": {
 				"@npmcli/git": "^4.0.0",
@@ -47672,7 +44542,7 @@
 				"@npmcli/run-script": "^6.0.0",
 				"cacache": "^17.0.0",
 				"fs-minipass": "^3.0.0",
-				"minipass": "^4.0.0",
+				"minipass": "^5.0.0",
 				"npm-package-arg": "^10.0.0",
 				"npm-packlist": "^7.0.0",
 				"npm-pick-manifest": "^8.0.0",
@@ -47681,6 +44551,7 @@
 				"promise-retry": "^2.0.1",
 				"read-package-json": "^6.0.0",
 				"read-package-json-fast": "^3.0.0",
+				"sigstore": "^1.3.0",
 				"ssri": "^10.0.0",
 				"tar": "^6.1.11"
 			}
@@ -47742,7 +44613,7 @@
 		},
 		"parent-module": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parent-module/-/parent-module-1.0.1.tgz",
+			"resolved": "http://localhost:4873/parent-module/-/parent-module-1.0.1.tgz",
 			"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
 			"requires": {
 				"callsites": "^3.0.0"
@@ -47763,7 +44634,7 @@
 		},
 		"parse-json": {
 			"version": "5.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse-json/-/parse-json-5.2.0.tgz",
+			"resolved": "http://localhost:4873/parse-json/-/parse-json-5.2.0.tgz",
 			"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
 			"requires": {
 				"@babel/code-frame": "^7.0.0",
@@ -47774,7 +44645,7 @@
 			"dependencies": {
 				"lines-and-columns": {
 					"version": "1.2.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+					"resolved": "http://localhost:4873/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
 					"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
 				}
 			}
@@ -47788,70 +44659,34 @@
 			"version": "7.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-7.1.2.tgz",
 			"integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==",
-			"optional": true,
+			"devOptional": true,
 			"requires": {
 				"entities": "^4.4.0"
-			},
-			"dependencies": {
-				"entities": {
-					"version": "4.4.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/entities/-/entities-4.4.0.tgz",
-					"integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==",
-					"optional": true
-				}
 			}
 		},
 		"parse5-html-rewriting-stream": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz",
-			"integrity": "sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==",
-			"requires": {
-				"parse5": "^6.0.1",
-				"parse5-sax-parser": "^6.0.1"
-			},
-			"dependencies": {
-				"parse5": {
-					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-					"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
-				}
-			}
-		},
-		"parse5-htmlparser2-tree-adapter": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
-			"integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
+			"version": "7.0.0",
+			"resolved": "http://localhost:4873/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz",
+			"integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==",
 			"dev": true,
 			"requires": {
-				"parse5": "^6.0.1"
-			},
-			"dependencies": {
-				"parse5": {
-					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-					"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-					"dev": true
-				}
+				"entities": "^4.3.0",
+				"parse5": "^7.0.0",
+				"parse5-sax-parser": "^7.0.0"
 			}
 		},
 		"parse5-sax-parser": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz",
-			"integrity": "sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==",
+			"version": "7.0.0",
+			"resolved": "http://localhost:4873/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz",
+			"integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==",
+			"dev": true,
 			"requires": {
-				"parse5": "^6.0.1"
-			},
-			"dependencies": {
-				"parse5": {
-					"version": "6.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parse5/-/parse5-6.0.1.tgz",
-					"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
-				}
+				"parse5": "^7.0.0"
 			}
 		},
 		"parseurl": {
 			"version": "1.3.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/parseurl/-/parseurl-1.3.3.tgz",
+			"resolved": "http://localhost:4873/parseurl/-/parseurl-1.3.3.tgz",
 			"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
 		},
 		"pascalcase": {
@@ -47894,26 +44729,26 @@
 			"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
 		},
 		"path-scurry": {
-			"version": "1.6.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/path-scurry/-/path-scurry-1.6.3.tgz",
-			"integrity": "sha512-RAmB+n30SlN+HnNx6EbcpoDy9nwdpcGPnEKrJnu6GZoDWBdIjo1UQMVtW2ybtC7LC2oKLcMq8y5g8WnKLiod9g==",
+			"version": "1.10.1",
+			"resolved": "http://localhost:4873/path-scurry/-/path-scurry-1.10.1.tgz",
+			"integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
 			"dev": true,
 			"requires": {
-				"lru-cache": "^7.14.1",
-				"minipass": "^4.0.2"
+				"lru-cache": "^9.1.1 || ^10.0.0",
+				"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
 			},
 			"dependencies": {
 				"lru-cache": {
-					"version": "7.18.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/lru-cache/-/lru-cache-7.18.3.tgz",
-					"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
+					"version": "10.0.1",
+					"resolved": "http://localhost:4873/lru-cache/-/lru-cache-10.0.1.tgz",
+					"integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
 					"dev": true
 				}
 			}
 		},
 		"path-to-regexp": {
 			"version": "0.1.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+			"resolved": "http://localhost:4873/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
 			"integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
 		},
 		"path-type": {
@@ -47938,13 +44773,13 @@
 			"version": "1.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pend/-/pend-1.2.0.tgz",
 			"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
-			"devOptional": true
+			"dev": true
 		},
 		"performance-now": {
 			"version": "2.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/performance-now/-/performance-now-2.1.0.tgz",
+			"resolved": "http://localhost:4873/performance-now/-/performance-now-2.1.0.tgz",
 			"integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==",
-			"devOptional": true
+			"dev": true
 		},
 		"picocolors": {
 			"version": "1.0.0",
@@ -47962,14 +44797,14 @@
 			"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="
 		},
 		"pirates": {
-			"version": "4.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pirates/-/pirates-4.0.5.tgz",
-			"integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="
+			"version": "4.0.6",
+			"resolved": "http://localhost:4873/pirates/-/pirates-4.0.6.tgz",
+			"integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="
 		},
 		"piscina": {
-			"version": "3.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/piscina/-/piscina-3.2.0.tgz",
-			"integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==",
+			"version": "4.0.0",
+			"resolved": "http://localhost:4873/piscina/-/piscina-4.0.0.tgz",
+			"integrity": "sha512-641nAmJS4k4iqpNUqfggqUBUMmlw0ZoM5VZKdQkV2e970Inn3Tk9kroCc1wpsYLD07vCwpys5iY0d3xI/9WkTg==",
 			"dev": true,
 			"requires": {
 				"eventemitter-asyncresource": "^1.0.0",
@@ -47995,42 +44830,6 @@
 				"ts-pnp": "^1.1.6"
 			}
 		},
-		"portfinder": {
-			"version": "1.0.32",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/portfinder/-/portfinder-1.0.32.tgz",
-			"integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==",
-			"requires": {
-				"async": "^2.6.4",
-				"debug": "^3.2.7",
-				"mkdirp": "^0.5.6"
-			},
-			"dependencies": {
-				"async": {
-					"version": "2.6.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/async/-/async-2.6.4.tgz",
-					"integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
-					"requires": {
-						"lodash": "^4.17.14"
-					}
-				},
-				"debug": {
-					"version": "3.2.7",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-3.2.7.tgz",
-					"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
-					"requires": {
-						"ms": "^2.1.1"
-					}
-				},
-				"mkdirp": {
-					"version": "0.5.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/mkdirp/-/mkdirp-0.5.6.tgz",
-					"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
-					"requires": {
-						"minimist": "^1.2.6"
-					}
-				}
-			}
-		},
 		"posix-character-classes": {
 			"version": "0.1.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
@@ -48038,11 +44837,11 @@
 			"dev": true
 		},
 		"postcss": {
-			"version": "8.4.21",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss/-/postcss-8.4.21.tgz",
-			"integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==",
+			"version": "8.4.31",
+			"resolved": "http://localhost:4873/postcss/-/postcss-8.4.31.tgz",
+			"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
 			"requires": {
-				"nanoid": "^3.3.4",
+				"nanoid": "^3.3.6",
 				"picocolors": "^1.0.0",
 				"source-map-js": "^1.0.2"
 			},
@@ -48055,18 +44854,18 @@
 			}
 		},
 		"postcss-calc": {
-			"version": "8.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-calc/-/postcss-calc-8.2.4.tgz",
-			"integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
+			"version": "9.0.1",
+			"resolved": "http://localhost:4873/postcss-calc/-/postcss-calc-9.0.1.tgz",
+			"integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==",
 			"requires": {
-				"postcss-selector-parser": "^6.0.9",
+				"postcss-selector-parser": "^6.0.11",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-colormin": {
-			"version": "5.3.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-colormin/-/postcss-colormin-5.3.1.tgz",
-			"integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-colormin/-/postcss-colormin-6.0.0.tgz",
+			"integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==",
 			"requires": {
 				"browserslist": "^4.21.4",
 				"caniuse-api": "^3.0.0",
@@ -48075,41 +44874,37 @@
 			}
 		},
 		"postcss-convert-values": {
-			"version": "5.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz",
-			"integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz",
+			"integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==",
 			"requires": {
 				"browserslist": "^4.21.4",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-discard-comments": {
-			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz",
-			"integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==",
-			"requires": {}
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz",
+			"integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw=="
 		},
 		"postcss-discard-duplicates": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz",
-			"integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==",
-			"requires": {}
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz",
+			"integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA=="
 		},
 		"postcss-discard-empty": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz",
-			"integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==",
-			"requires": {}
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz",
+			"integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ=="
 		},
 		"postcss-discard-overridden": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz",
-			"integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==",
-			"requires": {}
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz",
+			"integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw=="
 		},
 		"postcss-import": {
 			"version": "14.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-import/-/postcss-import-14.1.0.tgz",
+			"resolved": "http://localhost:4873/postcss-import/-/postcss-import-14.1.0.tgz",
 			"integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==",
 			"requires": {
 				"postcss-value-parser": "^4.0.0",
@@ -48118,97 +44913,110 @@
 			}
 		},
 		"postcss-loader": {
-			"version": "7.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-loader/-/postcss-loader-7.0.2.tgz",
-			"integrity": "sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==",
+			"version": "7.3.3",
+			"resolved": "http://localhost:4873/postcss-loader/-/postcss-loader-7.3.3.tgz",
+			"integrity": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==",
 			"dev": true,
 			"requires": {
-				"cosmiconfig": "^7.0.0",
-				"klona": "^2.0.5",
+				"cosmiconfig": "^8.2.0",
+				"jiti": "^1.18.2",
 				"semver": "^7.3.8"
 			},
 			"dependencies": {
+				"argparse": {
+					"version": "2.0.1",
+					"resolved": "http://localhost:4873/argparse/-/argparse-2.0.1.tgz",
+					"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+					"dev": true
+				},
 				"cosmiconfig": {
-					"version": "7.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
-					"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+					"version": "8.3.6",
+					"resolved": "http://localhost:4873/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
+					"integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
 					"dev": true,
 					"requires": {
-						"@types/parse-json": "^4.0.0",
-						"import-fresh": "^3.2.1",
-						"parse-json": "^5.0.0",
-						"path-type": "^4.0.0",
-						"yaml": "^1.10.0"
+						"import-fresh": "^3.3.0",
+						"js-yaml": "^4.1.0",
+						"parse-json": "^5.2.0",
+						"path-type": "^4.0.0"
+					}
+				},
+				"js-yaml": {
+					"version": "4.1.0",
+					"resolved": "http://localhost:4873/js-yaml/-/js-yaml-4.1.0.tgz",
+					"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+					"dev": true,
+					"requires": {
+						"argparse": "^2.0.1"
 					}
 				}
 			}
 		},
 		"postcss-merge-longhand": {
-			"version": "5.1.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz",
-			"integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz",
+			"integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0",
-				"stylehacks": "^5.1.1"
+				"stylehacks": "^6.0.0"
 			}
 		},
 		"postcss-merge-rules": {
-			"version": "5.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz",
-			"integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==",
+			"version": "6.0.1",
+			"resolved": "http://localhost:4873/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz",
+			"integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==",
 			"requires": {
 				"browserslist": "^4.21.4",
 				"caniuse-api": "^3.0.0",
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-selector-parser": "^6.0.5"
 			}
 		},
 		"postcss-minify-font-values": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz",
-			"integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz",
+			"integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-minify-gradients": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz",
-			"integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz",
+			"integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==",
 			"requires": {
 				"colord": "^2.9.1",
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-minify-params": {
-			"version": "5.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz",
-			"integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz",
+			"integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==",
 			"requires": {
 				"browserslist": "^4.21.4",
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-minify-selectors": {
-			"version": "5.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz",
-			"integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz",
+			"integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==",
 			"requires": {
 				"postcss-selector-parser": "^6.0.5"
 			}
 		},
 		"postcss-modules-extract-imports": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
-			"integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==",
-			"requires": {}
+			"resolved": "http://localhost:4873/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
+			"integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw=="
 		},
 		"postcss-modules-local-by-default": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz",
-			"integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==",
+			"version": "4.0.3",
+			"resolved": "http://localhost:4873/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz",
+			"integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==",
 			"requires": {
 				"icss-utils": "^5.0.0",
 				"postcss-selector-parser": "^6.0.2",
@@ -48217,7 +45025,7 @@
 		},
 		"postcss-modules-scope": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
+			"resolved": "http://localhost:4873/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
 			"integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
 			"requires": {
 				"postcss-selector-parser": "^6.0.4"
@@ -48225,173 +45033,170 @@
 		},
 		"postcss-modules-values": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
+			"resolved": "http://localhost:4873/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
 			"integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
 			"requires": {
 				"icss-utils": "^5.0.0"
 			}
 		},
 		"postcss-normalize-charset": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz",
-			"integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==",
-			"requires": {}
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz",
+			"integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ=="
 		},
 		"postcss-normalize-display-values": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz",
-			"integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz",
+			"integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-positions": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz",
-			"integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz",
+			"integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-repeat-style": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz",
-			"integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz",
+			"integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-string": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz",
-			"integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz",
+			"integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-timing-functions": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz",
-			"integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz",
+			"integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-unicode": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz",
-			"integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz",
+			"integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==",
 			"requires": {
 				"browserslist": "^4.21.4",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-url": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz",
-			"integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz",
+			"integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==",
 			"requires": {
-				"normalize-url": "^6.0.1",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-normalize-whitespace": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz",
-			"integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz",
+			"integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-ordered-values": {
-			"version": "5.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz",
-			"integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz",
+			"integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==",
 			"requires": {
-				"cssnano-utils": "^3.1.0",
+				"cssnano-utils": "^4.0.0",
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-reduce-initial": {
-			"version": "5.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz",
-			"integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz",
+			"integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==",
 			"requires": {
 				"browserslist": "^4.21.4",
 				"caniuse-api": "^3.0.0"
 			}
 		},
 		"postcss-reduce-transforms": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz",
-			"integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz",
+			"integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0"
 			}
 		},
 		"postcss-selector-parser": {
-			"version": "6.0.11",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz",
-			"integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==",
+			"version": "6.0.13",
+			"resolved": "http://localhost:4873/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz",
+			"integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==",
 			"requires": {
 				"cssesc": "^3.0.0",
 				"util-deprecate": "^1.0.2"
 			}
 		},
 		"postcss-svgo": {
-			"version": "5.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-svgo/-/postcss-svgo-5.1.0.tgz",
-			"integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-svgo/-/postcss-svgo-6.0.0.tgz",
+			"integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==",
 			"requires": {
 				"postcss-value-parser": "^4.2.0",
-				"svgo": "^2.7.0"
+				"svgo": "^3.0.2"
 			}
 		},
 		"postcss-unique-selectors": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz",
-			"integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz",
+			"integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==",
 			"requires": {
 				"postcss-selector-parser": "^6.0.5"
 			}
 		},
 		"postcss-value-parser": {
 			"version": "4.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+			"resolved": "http://localhost:4873/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
 			"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
 		},
 		"prelude-ls": {
 			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prelude-ls/-/prelude-ls-1.2.1.tgz",
+			"resolved": "http://localhost:4873/prelude-ls/-/prelude-ls-1.2.1.tgz",
 			"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
-			"devOptional": true
+			"dev": true
 		},
 		"prettier": {
 			"version": "2.7.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prettier/-/prettier-2.7.1.tgz",
 			"integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==",
-			"devOptional": true
+			"dev": true
 		},
 		"pretty-bytes": {
 			"version": "5.6.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
 			"integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
-			"devOptional": true
+			"dev": true
 		},
 		"pretty-format": {
-			"version": "28.1.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pretty-format/-/pretty-format-28.1.3.tgz",
-			"integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==",
+			"version": "29.7.0",
+			"resolved": "http://localhost:4873/pretty-format/-/pretty-format-29.7.0.tgz",
+			"integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
 			"requires": {
-				"@jest/schemas": "^28.1.3",
-				"ansi-regex": "^5.0.1",
+				"@jest/schemas": "^29.6.3",
 				"ansi-styles": "^5.0.0",
 				"react-is": "^18.0.0"
 			},
 			"dependencies": {
 				"ansi-styles": {
 					"version": "5.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-5.2.0.tgz",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-5.2.0.tgz",
 					"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="
 				}
 			}
@@ -48399,14 +45204,13 @@
 		"proc-log": {
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/proc-log/-/proc-log-3.0.0.tgz",
-			"integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==",
-			"dev": true
+			"integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A=="
 		},
 		"process": {
 			"version": "0.11.10",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/process/-/process-0.11.10.tgz",
 			"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
-			"devOptional": true
+			"dev": true
 		},
 		"process-nextick-args": {
 			"version": "2.0.1",
@@ -48427,7 +45231,7 @@
 		},
 		"promise-retry": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/promise-retry/-/promise-retry-2.0.1.tgz",
+			"resolved": "http://localhost:4873/promise-retry/-/promise-retry-2.0.1.tgz",
 			"integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
 			"dev": true,
 			"requires": {
@@ -48437,7 +45241,7 @@
 		},
 		"prompts": {
 			"version": "2.4.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/prompts/-/prompts-2.4.2.tgz",
+			"resolved": "http://localhost:4873/prompts/-/prompts-2.4.2.tgz",
 			"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
 			"dev": true,
 			"requires": {
@@ -48466,7 +45270,7 @@
 		},
 		"proxy-addr": {
 			"version": "2.0.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/proxy-addr/-/proxy-addr-2.0.7.tgz",
+			"resolved": "http://localhost:4873/proxy-addr/-/proxy-addr-2.0.7.tgz",
 			"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
 			"requires": {
 				"forwarded": "0.2.0",
@@ -48475,7 +45279,7 @@
 			"dependencies": {
 				"ipaddr.js": {
 					"version": "1.9.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+					"resolved": "http://localhost:4873/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
 					"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
 				}
 			}
@@ -48484,7 +45288,7 @@
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/proxy-from-env/-/proxy-from-env-1.0.0.tgz",
 			"integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==",
-			"devOptional": true
+			"dev": true
 		},
 		"prr": {
 			"version": "1.0.1",
@@ -48496,7 +45300,7 @@
 			"version": "1.9.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/psl/-/psl-1.9.0.tgz",
 			"integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==",
-			"devOptional": true
+			"dev": true
 		},
 		"public-encrypt": {
 			"version": "4.0.3",
@@ -48524,7 +45328,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/pump/-/pump-3.0.0.tgz",
 			"integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"end-of-stream": "^1.1.0",
 				"once": "^1.3.1"
@@ -48558,10 +45362,16 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/punycode/-/punycode-2.3.0.tgz",
 			"integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA=="
 		},
+		"pure-rand": {
+			"version": "6.0.4",
+			"resolved": "http://localhost:4873/pure-rand/-/pure-rand-6.0.4.tgz",
+			"integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA=="
+		},
 		"qs": {
 			"version": "6.10.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/qs/-/qs-6.10.4.tgz",
+			"resolved": "http://localhost:4873/qs/-/qs-6.10.4.tgz",
 			"integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==",
+			"dev": true,
 			"requires": {
 				"side-channel": "^1.0.4"
 			}
@@ -48582,7 +45392,7 @@
 			"version": "2.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/querystringify/-/querystringify-2.2.0.tgz",
 			"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
-			"devOptional": true
+			"dev": true
 		},
 		"queue-microtask": {
 			"version": "1.2.3",
@@ -48609,12 +45419,12 @@
 		},
 		"range-parser": {
 			"version": "1.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/range-parser/-/range-parser-1.2.1.tgz",
+			"resolved": "http://localhost:4873/range-parser/-/range-parser-1.2.1.tgz",
 			"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
 		},
 		"raw-body": {
 			"version": "2.5.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/raw-body/-/raw-body-2.5.1.tgz",
+			"resolved": "http://localhost:4873/raw-body/-/raw-body-2.5.1.tgz",
 			"integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
 			"requires": {
 				"bytes": "3.1.2",
@@ -48625,77 +45435,47 @@
 			"dependencies": {
 				"bytes": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/bytes/-/bytes-3.1.2.tgz",
+					"resolved": "http://localhost:4873/bytes/-/bytes-3.1.2.tgz",
 					"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
 				}
 			}
 		},
 		"react-is": {
 			"version": "18.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/react-is/-/react-is-18.2.0.tgz",
+			"resolved": "http://localhost:4873/react-is/-/react-is-18.2.0.tgz",
 			"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
 		},
 		"read-cache": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/read-cache/-/read-cache-1.0.0.tgz",
+			"resolved": "http://localhost:4873/read-cache/-/read-cache-1.0.0.tgz",
 			"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
 			"requires": {
 				"pify": "^2.3.0"
 			}
 		},
 		"read-package-json": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/read-package-json/-/read-package-json-6.0.1.tgz",
-			"integrity": "sha512-AaHqXxfAVa+fNL07x8iAghfKOds/XXsu7zoouIVsbm7PEbQ3nMWXlvjcbrNLjElnUHWQtAo4QEa0RXuvD4XlpA==",
+			"version": "6.0.4",
+			"resolved": "http://localhost:4873/read-package-json/-/read-package-json-6.0.4.tgz",
+			"integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==",
 			"dev": true,
 			"requires": {
-				"glob": "^9.3.0",
+				"glob": "^10.2.2",
 				"json-parse-even-better-errors": "^3.0.0",
 				"normalize-package-data": "^5.0.0",
 				"npm-normalize-package-bin": "^3.0.0"
 			},
 			"dependencies": {
-				"brace-expansion": {
-					"version": "2.0.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/brace-expansion/-/brace-expansion-2.0.1.tgz",
-					"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
-					"dev": true,
-					"requires": {
-						"balanced-match": "^1.0.0"
-					}
-				},
-				"glob": {
-					"version": "9.3.4",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-9.3.4.tgz",
-					"integrity": "sha512-qaSc49hojMOv1EPM4EuyITjDSgSKI0rthoHnvE81tcOi1SCVndHko7auqxdQ14eiQG2NDBJBE86+2xIrbIvrbA==",
-					"dev": true,
-					"requires": {
-						"fs.realpath": "^1.0.0",
-						"minimatch": "^8.0.2",
-						"minipass": "^4.2.4",
-						"path-scurry": "^1.6.1"
-					}
-				},
 				"json-parse-even-better-errors": {
 					"version": "3.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
+					"resolved": "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
 					"integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==",
 					"dev": true
-				},
-				"minimatch": {
-					"version": "8.0.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-8.0.3.tgz",
-					"integrity": "sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==",
-					"dev": true,
-					"requires": {
-						"brace-expansion": "^2.0.1"
-					}
 				}
 			}
 		},
 		"read-package-json-fast": {
 			"version": "3.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz",
+			"resolved": "http://localhost:4873/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz",
 			"integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==",
 			"dev": true,
 			"requires": {
@@ -48705,7 +45485,7 @@
 			"dependencies": {
 				"json-parse-even-better-errors": {
 					"version": "3.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
+					"resolved": "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
 					"integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==",
 					"dev": true
 				}
@@ -48764,9 +45544,9 @@
 			"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
 		},
 		"regenerator-transform": {
-			"version": "0.15.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
-			"integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
+			"version": "0.15.2",
+			"resolved": "http://localhost:4873/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
+			"integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
 			"requires": {
 				"@babel/runtime": "^7.8.4"
 			}
@@ -48798,12 +45578,6 @@
 				"functions-have-names": "^1.2.2"
 			}
 		},
-		"regexpp": {
-			"version": "3.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/regexpp/-/regexpp-3.2.0.tgz",
-			"integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
-			"devOptional": true
-		},
 		"regexpu-core": {
 			"version": "5.3.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/regexpu-core/-/regexpu-core-5.3.2.tgz",
@@ -48855,7 +45629,7 @@
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/request-progress/-/request-progress-3.0.0.tgz",
 			"integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"throttleit": "^1.0.0"
 			}
@@ -48882,18 +45656,18 @@
 			"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
 		},
 		"resolve": {
-			"version": "1.22.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve/-/resolve-1.22.1.tgz",
-			"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
+			"version": "1.22.2",
+			"resolved": "http://localhost:4873/resolve/-/resolve-1.22.2.tgz",
+			"integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
 			"requires": {
-				"is-core-module": "^2.9.0",
+				"is-core-module": "^2.11.0",
 				"path-parse": "^1.0.7",
 				"supports-preserve-symlinks-flag": "^1.0.0"
 			}
 		},
 		"resolve-cwd": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+			"resolved": "http://localhost:4873/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
 			"integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
 			"dev": true,
 			"requires": {
@@ -48945,7 +45719,7 @@
 		},
 		"resolve.exports": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/resolve.exports/-/resolve.exports-1.1.0.tgz",
+			"resolved": "http://localhost:4873/resolve.exports/-/resolve.exports-1.1.0.tgz",
 			"integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ=="
 		},
 		"restore-cursor": {
@@ -48965,8 +45739,8 @@
 		},
 		"retry": {
 			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/retry/-/retry-0.12.0.tgz",
-			"integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
+			"resolved": "http://localhost:4873/retry/-/retry-0.12.0.tgz",
+			"integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
 			"dev": true
 		},
 		"reusify": {
@@ -48978,7 +45752,7 @@
 			"version": "1.3.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/rfdc/-/rfdc-1.3.0.tgz",
 			"integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==",
-			"devOptional": true
+			"dev": true
 		},
 		"rimraf": {
 			"version": "3.0.2",
@@ -49021,6 +45795,15 @@
 				"inherits": "^2.0.1"
 			}
 		},
+		"rollup": {
+			"version": "3.29.4",
+			"resolved": "http://localhost:4873/rollup/-/rollup-3.29.4.tgz",
+			"integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
+			"dev": true,
+			"requires": {
+				"fsevents": "~2.3.2"
+			}
+		},
 		"run-async": {
 			"version": "2.4.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/run-async/-/run-async-2.4.1.tgz",
@@ -49081,7 +45864,7 @@
 		},
 		"safevalues": {
 			"version": "0.3.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/safevalues/-/safevalues-0.3.4.tgz",
+			"resolved": "http://localhost:4873/safevalues/-/safevalues-0.3.4.tgz",
 			"integrity": "sha512-LRneZZRXNgjzwG4bDQdOTSbze3fHm1EAKN/8bePxnlEZiBmkYEDggaHbuvHI9/hoqHbGfsEA7tWS9GhYHZBBsw=="
 		},
 		"sanitize-filename-ts": {
@@ -49103,9 +45886,9 @@
 			}
 		},
 		"sass": {
-			"version": "1.57.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sass/-/sass-1.57.1.tgz",
-			"integrity": "sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==",
+			"version": "1.64.1",
+			"resolved": "http://localhost:4873/sass/-/sass-1.64.1.tgz",
+			"integrity": "sha512-16rRACSOFEE8VN7SCgBu1MpYCyN7urj9At898tyzdXFhC+a+yOX5dXwAR7L8/IdPJ1NB8OYoXmD55DM30B2kEQ==",
 			"requires": {
 				"chokidar": ">=3.0.0 <4.0.0",
 				"immutable": "^4.0.0",
@@ -49113,12 +45896,11 @@
 			}
 		},
 		"sass-loader": {
-			"version": "13.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sass-loader/-/sass-loader-13.2.0.tgz",
-			"integrity": "sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==",
+			"version": "13.3.2",
+			"resolved": "http://localhost:4873/sass-loader/-/sass-loader-13.3.2.tgz",
+			"integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==",
 			"dev": true,
 			"requires": {
-				"klona": "^2.0.4",
 				"neo-async": "^2.6.2"
 			}
 		},
@@ -49129,7 +45911,7 @@
 		},
 		"saxes": {
 			"version": "5.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/saxes/-/saxes-5.0.1.tgz",
+			"resolved": "http://localhost:4873/saxes/-/saxes-5.0.1.tgz",
 			"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
 			"dev": true,
 			"requires": {
@@ -49147,28 +45929,23 @@
 				"ajv-keywords": "^5.0.0"
 			}
 		},
-		"secure-compare": {
-			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/secure-compare/-/secure-compare-3.0.1.tgz",
-			"integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw=="
-		},
 		"select-hose": {
 			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/select-hose/-/select-hose-2.0.0.tgz",
+			"resolved": "http://localhost:4873/select-hose/-/select-hose-2.0.0.tgz",
 			"integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg=="
 		},
 		"selfsigned": {
 			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/selfsigned/-/selfsigned-2.1.1.tgz",
+			"resolved": "http://localhost:4873/selfsigned/-/selfsigned-2.1.1.tgz",
 			"integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==",
 			"requires": {
 				"node-forge": "^1"
 			}
 		},
 		"semver": {
-			"version": "7.3.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-7.3.8.tgz",
-			"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
+			"version": "7.5.4",
+			"resolved": "http://localhost:4873/semver/-/semver-7.5.4.tgz",
+			"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
 			"requires": {
 				"lru-cache": "^6.0.0"
 			},
@@ -49190,7 +45967,7 @@
 		},
 		"send": {
 			"version": "0.18.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/send/-/send-0.18.0.tgz",
+			"resolved": "http://localhost:4873/send/-/send-0.18.0.tgz",
 			"integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
 			"requires": {
 				"debug": "2.6.9",
@@ -49210,7 +45987,7 @@
 			"dependencies": {
 				"debug": {
 					"version": "2.6.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+					"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 					"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 					"requires": {
 						"ms": "2.0.0"
@@ -49218,14 +45995,14 @@
 					"dependencies": {
 						"ms": {
 							"version": "2.0.0",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-							"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+							"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+							"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 						}
 					}
 				},
 				"ms": {
 					"version": "2.1.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.1.3.tgz",
+					"resolved": "http://localhost:4873/ms/-/ms-2.1.3.tgz",
 					"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
 				}
 			}
@@ -49240,7 +46017,7 @@
 		},
 		"serve-index": {
 			"version": "1.9.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/serve-index/-/serve-index-1.9.1.tgz",
+			"resolved": "http://localhost:4873/serve-index/-/serve-index-1.9.1.tgz",
 			"integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==",
 			"requires": {
 				"accepts": "~1.3.4",
@@ -49254,7 +46031,7 @@
 			"dependencies": {
 				"debug": {
 					"version": "2.6.9",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-2.6.9.tgz",
+					"resolved": "http://localhost:4873/debug/-/debug-2.6.9.tgz",
 					"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 					"requires": {
 						"ms": "2.0.0"
@@ -49262,12 +46039,12 @@
 				},
 				"depd": {
 					"version": "1.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/depd/-/depd-1.1.2.tgz",
+					"resolved": "http://localhost:4873/depd/-/depd-1.1.2.tgz",
 					"integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="
 				},
 				"http-errors": {
 					"version": "1.6.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/http-errors/-/http-errors-1.6.3.tgz",
+					"resolved": "http://localhost:4873/http-errors/-/http-errors-1.6.3.tgz",
 					"integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==",
 					"requires": {
 						"depd": "~1.1.2",
@@ -49278,29 +46055,29 @@
 				},
 				"inherits": {
 					"version": "2.0.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/inherits/-/inherits-2.0.3.tgz",
+					"resolved": "http://localhost:4873/inherits/-/inherits-2.0.3.tgz",
 					"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
 				},
 				"ms": {
 					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-					"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+					"resolved": "http://localhost:4873/ms/-/ms-2.0.0.tgz",
+					"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
 				},
 				"setprototypeof": {
 					"version": "1.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/setprototypeof/-/setprototypeof-1.1.0.tgz",
+					"resolved": "http://localhost:4873/setprototypeof/-/setprototypeof-1.1.0.tgz",
 					"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
 				},
 				"statuses": {
 					"version": "1.5.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/statuses/-/statuses-1.5.0.tgz",
+					"resolved": "http://localhost:4873/statuses/-/statuses-1.5.0.tgz",
 					"integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="
 				}
 			}
 		},
 		"serve-static": {
 			"version": "1.15.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/serve-static/-/serve-static-1.15.0.tgz",
+			"resolved": "http://localhost:4873/serve-static/-/serve-static-1.15.0.tgz",
 			"integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
 			"requires": {
 				"encodeurl": "~1.0.2",
@@ -49352,7 +46129,7 @@
 		},
 		"setprototypeof": {
 			"version": "1.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/setprototypeof/-/setprototypeof-1.2.0.tgz",
+			"resolved": "http://localhost:4873/setprototypeof/-/setprototypeof-1.2.0.tgz",
 			"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
 		},
 		"sha.js": {
@@ -49367,7 +46144,7 @@
 		},
 		"shallow-clone": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/shallow-clone/-/shallow-clone-3.0.1.tgz",
+			"resolved": "http://localhost:4873/shallow-clone/-/shallow-clone-3.0.1.tgz",
 			"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
 			"requires": {
 				"kind-of": "^6.0.2"
@@ -49386,6 +46163,11 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/shebang-regex/-/shebang-regex-3.0.0.tgz",
 			"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
 		},
+		"shell-quote": {
+			"version": "1.8.1",
+			"resolved": "http://localhost:4873/shell-quote/-/shell-quote-1.8.1.tgz",
+			"integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA=="
+		},
 		"side-channel": {
 			"version": "1.0.4",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/side-channel/-/side-channel-1.0.4.tgz",
@@ -49401,22 +46183,35 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/signal-exit/-/signal-exit-3.0.7.tgz",
 			"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
 		},
+		"sigstore": {
+			"version": "1.9.0",
+			"resolved": "http://localhost:4873/sigstore/-/sigstore-1.9.0.tgz",
+			"integrity": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==",
+			"dev": true,
+			"requires": {
+				"@sigstore/bundle": "^1.1.0",
+				"@sigstore/protobuf-specs": "^0.2.0",
+				"@sigstore/sign": "^1.0.0",
+				"@sigstore/tuf": "^1.0.3",
+				"make-fetch-happen": "^11.0.1"
+			}
+		},
 		"sisteransi": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sisteransi/-/sisteransi-1.0.5.tgz",
+			"resolved": "http://localhost:4873/sisteransi/-/sisteransi-1.0.5.tgz",
 			"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
 			"dev": true
 		},
 		"slash": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slash/-/slash-3.0.0.tgz",
+			"resolved": "http://localhost:4873/slash/-/slash-3.0.0.tgz",
 			"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
 		},
 		"slice-ansi": {
 			"version": "3.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/slice-ansi/-/slice-ansi-3.0.0.tgz",
 			"integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"ansi-styles": "^4.0.0",
 				"astral-regex": "^2.0.0",
@@ -49427,7 +46222,7 @@
 					"version": "4.3.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ansi-styles/-/ansi-styles-4.3.0.tgz",
 					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-convert": "^2.0.1"
 					}
@@ -49436,7 +46231,7 @@
 					"version": "2.0.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-convert/-/color-convert-2.0.1.tgz",
 					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-					"devOptional": true,
+					"dev": true,
 					"requires": {
 						"color-name": "~1.1.4"
 					}
@@ -49445,7 +46240,7 @@
 					"version": "1.1.4",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/color-name/-/color-name-1.1.4.tgz",
 					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-					"devOptional": true
+					"dev": true
 				}
 			}
 		},
@@ -49638,7 +46433,7 @@
 		},
 		"sockjs": {
 			"version": "0.3.24",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sockjs/-/sockjs-0.3.24.tgz",
+			"resolved": "http://localhost:4873/sockjs/-/sockjs-0.3.24.tgz",
 			"integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==",
 			"requires": {
 				"faye-websocket": "^0.11.3",
@@ -49658,7 +46453,7 @@
 		},
 		"socks-proxy-agent": {
 			"version": "7.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
+			"resolved": "http://localhost:4873/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
 			"integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==",
 			"dev": true,
 			"requires": {
@@ -49751,6 +46546,7 @@
 			"version": "0.6.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/source-map-resolve/-/source-map-resolve-0.6.0.tgz",
 			"integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==",
+			"dev": true,
 			"requires": {
 				"atob": "^2.1.2",
 				"decode-uri-component": "^0.2.0"
@@ -49778,11 +46574,6 @@
 			"integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
 			"dev": true
 		},
-		"sourcemap-codec": {
-			"version": "1.4.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
-			"integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="
-		},
 		"sparse-bitfield": {
 			"version": "3.0.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
@@ -49795,7 +46586,7 @@
 		},
 		"spdx-correct": {
 			"version": "3.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-correct/-/spdx-correct-3.2.0.tgz",
+			"resolved": "http://localhost:4873/spdx-correct/-/spdx-correct-3.2.0.tgz",
 			"integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
 			"dev": true,
 			"requires": {
@@ -49805,13 +46596,13 @@
 		},
 		"spdx-exceptions": {
 			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+			"resolved": "http://localhost:4873/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
 			"integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
 			"dev": true
 		},
 		"spdx-expression-parse": {
 			"version": "3.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+			"resolved": "http://localhost:4873/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
 			"integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
 			"dev": true,
 			"requires": {
@@ -49820,14 +46611,14 @@
 			}
 		},
 		"spdx-license-ids": {
-			"version": "3.0.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz",
-			"integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==",
+			"version": "3.0.16",
+			"resolved": "http://localhost:4873/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz",
+			"integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==",
 			"dev": true
 		},
 		"spdy": {
 			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdy/-/spdy-4.0.2.tgz",
+			"resolved": "http://localhost:4873/spdy/-/spdy-4.0.2.tgz",
 			"integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
 			"requires": {
 				"debug": "^4.1.0",
@@ -49839,7 +46630,7 @@
 		},
 		"spdy-transport": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/spdy-transport/-/spdy-transport-3.0.0.tgz",
+			"resolved": "http://localhost:4873/spdy-transport/-/spdy-transport-3.0.0.tgz",
 			"integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
 			"requires": {
 				"debug": "^4.1.0",
@@ -49865,10 +46656,10 @@
 			"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
 		},
 		"sshpk": {
-			"version": "1.17.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/sshpk/-/sshpk-1.17.0.tgz",
-			"integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==",
-			"devOptional": true,
+			"version": "1.18.0",
+			"resolved": "http://localhost:4873/sshpk/-/sshpk-1.18.0.tgz",
+			"integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
+			"dev": true,
 			"requires": {
 				"asn1": "~0.2.3",
 				"assert-plus": "^1.0.0",
@@ -49882,22 +46673,25 @@
 			}
 		},
 		"ssri": {
-			"version": "10.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ssri/-/ssri-10.0.2.tgz",
-			"integrity": "sha512-LWMXUSh7fEfCXNBq4UnRzC4Qc5Y1PPg5ogmb+6HX837i2cKzjB133aYmQ4lgO0shVTcTQHquKp3v5bn898q3Sw==",
+			"version": "10.0.5",
+			"resolved": "http://localhost:4873/ssri/-/ssri-10.0.5.tgz",
+			"integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
 			"dev": true,
 			"requires": {
-				"minipass": "^4.0.0"
+				"minipass": "^7.0.3"
+			},
+			"dependencies": {
+				"minipass": {
+					"version": "7.0.4",
+					"resolved": "http://localhost:4873/minipass/-/minipass-7.0.4.tgz",
+					"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+					"dev": true
+				}
 			}
 		},
-		"stable": {
-			"version": "0.1.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stable/-/stable-0.1.8.tgz",
-			"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
-		},
 		"stack-utils": {
 			"version": "2.0.6",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stack-utils/-/stack-utils-2.0.6.tgz",
+			"resolved": "http://localhost:4873/stack-utils/-/stack-utils-2.0.6.tgz",
 			"integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
 			"requires": {
 				"escape-string-regexp": "^2.0.0"
@@ -49905,7 +46699,7 @@
 			"dependencies": {
 				"escape-string-regexp": {
 					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+					"resolved": "http://localhost:4873/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
 					"integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="
 				}
 			}
@@ -49990,7 +46784,7 @@
 		},
 		"statuses": {
 			"version": "2.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/statuses/-/statuses-2.0.1.tgz",
+			"resolved": "http://localhost:4873/statuses/-/statuses-2.0.1.tgz",
 			"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
 		},
 		"stop-iteration-iterator": {
@@ -50127,7 +46921,7 @@
 		},
 		"string-length": {
 			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/string-length/-/string-length-4.0.2.tgz",
+			"resolved": "http://localhost:4873/string-length/-/string-length-4.0.2.tgz",
 			"integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
 			"requires": {
 				"char-regex": "^1.0.2",
@@ -50144,6 +46938,17 @@
 				"strip-ansi": "^6.0.1"
 			}
 		},
+		"string-width-cjs": {
+			"version": "npm:string-width@4.2.3",
+			"resolved": "http://localhost:4873/string-width/-/string-width-4.2.3.tgz",
+			"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+			"dev": true,
+			"requires": {
+				"emoji-regex": "^8.0.0",
+				"is-fullwidth-code-point": "^3.0.0",
+				"strip-ansi": "^6.0.1"
+			}
+		},
 		"strip-ansi": {
 			"version": "6.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/strip-ansi/-/strip-ansi-6.0.1.tgz",
@@ -50152,9 +46957,18 @@
 				"ansi-regex": "^5.0.1"
 			}
 		},
+		"strip-ansi-cjs": {
+			"version": "npm:strip-ansi@6.0.1",
+			"resolved": "http://localhost:4873/strip-ansi/-/strip-ansi-6.0.1.tgz",
+			"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+			"dev": true,
+			"requires": {
+				"ansi-regex": "^5.0.1"
+			}
+		},
 		"strip-bom": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/strip-bom/-/strip-bom-4.0.0.tgz",
+			"resolved": "http://localhost:4873/strip-bom/-/strip-bom-4.0.0.tgz",
 			"integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="
 		},
 		"strip-final-newline": {
@@ -50187,46 +47001,34 @@
 			}
 		},
 		"style-loader": {
-			"version": "3.3.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/style-loader/-/style-loader-3.3.2.tgz",
-			"integrity": "sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==",
-			"requires": {}
+			"version": "3.3.3",
+			"resolved": "http://localhost:4873/style-loader/-/style-loader-3.3.3.tgz",
+			"integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw=="
 		},
 		"stylehacks": {
-			"version": "5.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stylehacks/-/stylehacks-5.1.1.tgz",
-			"integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==",
+			"version": "6.0.0",
+			"resolved": "http://localhost:4873/stylehacks/-/stylehacks-6.0.0.tgz",
+			"integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==",
 			"requires": {
 				"browserslist": "^4.21.4",
 				"postcss-selector-parser": "^6.0.4"
 			}
 		},
 		"stylus": {
-			"version": "0.55.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stylus/-/stylus-0.55.0.tgz",
-			"integrity": "sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==",
+			"version": "0.59.0",
+			"resolved": "http://localhost:4873/stylus/-/stylus-0.59.0.tgz",
+			"integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==",
 			"requires": {
-				"css": "^3.0.0",
-				"debug": "~3.1.0",
+				"@adobe/css-tools": "^4.0.1",
+				"debug": "^4.3.2",
 				"glob": "^7.1.6",
-				"mkdirp": "~1.0.4",
-				"safer-buffer": "^2.1.2",
 				"sax": "~1.2.4",
-				"semver": "^6.3.0",
 				"source-map": "^0.7.3"
 			},
 			"dependencies": {
-				"debug": {
-					"version": "3.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/debug/-/debug-3.1.0.tgz",
-					"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
-					"requires": {
-						"ms": "2.0.0"
-					}
-				},
 				"glob": {
 					"version": "7.2.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/glob/-/glob-7.2.3.tgz",
+					"resolved": "http://localhost:4873/glob/-/glob-7.2.3.tgz",
 					"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
 					"requires": {
 						"fs.realpath": "^1.0.0",
@@ -50239,102 +47041,52 @@
 				},
 				"minimatch": {
 					"version": "3.1.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minimatch/-/minimatch-3.1.2.tgz",
+					"resolved": "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz",
 					"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
 					"requires": {
 						"brace-expansion": "^1.1.7"
 					}
-				},
-				"ms": {
-					"version": "2.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ms/-/ms-2.0.0.tgz",
-					"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-				},
-				"semver": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/semver/-/semver-6.3.0.tgz",
-					"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
 				}
 			}
 		},
 		"stylus-loader": {
-			"version": "7.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/stylus-loader/-/stylus-loader-7.1.0.tgz",
-			"integrity": "sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==",
+			"version": "7.1.3",
+			"resolved": "http://localhost:4873/stylus-loader/-/stylus-loader-7.1.3.tgz",
+			"integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==",
 			"requires": {
 				"fast-glob": "^3.2.12",
-				"klona": "^2.0.5",
 				"normalize-path": "^3.0.0"
-			},
-			"dependencies": {
-				"fast-glob": {
-					"version": "3.2.12",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fast-glob/-/fast-glob-3.2.12.tgz",
-					"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
-					"requires": {
-						"@nodelib/fs.stat": "^2.0.2",
-						"@nodelib/fs.walk": "^1.2.3",
-						"glob-parent": "^5.1.2",
-						"merge2": "^1.3.0",
-						"micromatch": "^4.0.4"
-					}
-				}
 			}
 		},
 		"supports-color": {
 			"version": "5.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-5.5.0.tgz",
+			"resolved": "http://localhost:4873/supports-color/-/supports-color-5.5.0.tgz",
 			"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
 			"requires": {
 				"has-flag": "^3.0.0"
 			}
 		},
-		"supports-hyperlinks": {
-			"version": "2.3.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
-			"integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
-			"requires": {
-				"has-flag": "^4.0.0",
-				"supports-color": "^7.0.0"
-			},
-			"dependencies": {
-				"has-flag": {
-					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
-					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
-				},
-				"supports-color": {
-					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-7.2.0.tgz",
-					"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-					"requires": {
-						"has-flag": "^4.0.0"
-					}
-				}
-			}
-		},
 		"supports-preserve-symlinks-flag": {
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
 			"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
 		},
 		"svgo": {
-			"version": "2.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/svgo/-/svgo-2.8.0.tgz",
-			"integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
+			"version": "3.0.2",
+			"resolved": "http://localhost:4873/svgo/-/svgo-3.0.2.tgz",
+			"integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==",
 			"requires": {
 				"@trysound/sax": "0.2.0",
 				"commander": "^7.2.0",
-				"css-select": "^4.1.3",
-				"css-tree": "^1.1.3",
-				"csso": "^4.2.0",
-				"picocolors": "^1.0.0",
-				"stable": "^0.1.8"
+				"css-select": "^5.1.0",
+				"css-tree": "^2.2.1",
+				"csso": "^5.0.5",
+				"picocolors": "^1.0.0"
 			},
 			"dependencies": {
 				"commander": {
 					"version": "7.2.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-7.2.0.tgz",
+					"resolved": "http://localhost:4873/commander/-/commander-7.2.0.tgz",
 					"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
 				}
 			}
@@ -50347,7 +47099,7 @@
 		},
 		"symbol-tree": {
 			"version": "3.2.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/symbol-tree/-/symbol-tree-3.2.4.tgz",
+			"resolved": "http://localhost:4873/symbol-tree/-/symbol-tree-3.2.4.tgz",
 			"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
 			"dev": true
 		},
@@ -50357,14 +47109,14 @@
 			"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="
 		},
 		"tar": {
-			"version": "6.1.13",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tar/-/tar-6.1.13.tgz",
-			"integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==",
+			"version": "6.2.0",
+			"resolved": "http://localhost:4873/tar/-/tar-6.2.0.tgz",
+			"integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==",
 			"dev": true,
 			"requires": {
 				"chownr": "^2.0.0",
 				"fs-minipass": "^2.0.0",
-				"minipass": "^4.0.0",
+				"minipass": "^5.0.0",
 				"minizlib": "^2.1.1",
 				"mkdirp": "^1.0.3",
 				"yallist": "^4.0.0"
@@ -50372,7 +47124,7 @@
 			"dependencies": {
 				"fs-minipass": {
 					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/fs-minipass/-/fs-minipass-2.1.0.tgz",
+					"resolved": "http://localhost:4873/fs-minipass/-/fs-minipass-2.1.0.tgz",
 					"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
 					"dev": true,
 					"requires": {
@@ -50381,7 +47133,7 @@
 					"dependencies": {
 						"minipass": {
 							"version": "3.3.6",
-							"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/minipass/-/minipass-3.3.6.tgz",
+							"resolved": "http://localhost:4873/minipass/-/minipass-3.3.6.tgz",
 							"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
 							"dev": true,
 							"requires": {
@@ -50392,7 +47144,7 @@
 				},
 				"yallist": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yallist/-/yallist-4.0.0.tgz",
+					"resolved": "http://localhost:4873/yallist/-/yallist-4.0.0.tgz",
 					"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
 					"dev": true
 				}
@@ -50425,50 +47177,39 @@
 				"tcomb": "^3.0.0"
 			}
 		},
-		"terminal-link": {
-			"version": "2.1.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terminal-link/-/terminal-link-2.1.1.tgz",
-			"integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
-			"requires": {
-				"ansi-escapes": "^4.2.1",
-				"supports-hyperlinks": "^2.0.0"
-			}
-		},
 		"terser": {
-			"version": "5.16.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terser/-/terser-5.16.1.tgz",
-			"integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
-			"dev": true,
+			"version": "5.19.2",
+			"resolved": "http://localhost:4873/terser/-/terser-5.19.2.tgz",
+			"integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==",
 			"requires": {
-				"@jridgewell/source-map": "^0.3.2",
-				"acorn": "^8.5.0",
+				"@jridgewell/source-map": "^0.3.3",
+				"acorn": "^8.8.2",
 				"commander": "^2.20.0",
 				"source-map-support": "~0.5.20"
 			},
 			"dependencies": {
 				"commander": {
 					"version": "2.20.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-2.20.3.tgz",
-					"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
-					"dev": true
+					"resolved": "http://localhost:4873/commander/-/commander-2.20.3.tgz",
+					"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
 				}
 			}
 		},
 		"terser-webpack-plugin": {
-			"version": "5.3.7",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz",
-			"integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==",
+			"version": "5.3.9",
+			"resolved": "http://localhost:4873/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz",
+			"integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==",
 			"requires": {
 				"@jridgewell/trace-mapping": "^0.3.17",
 				"jest-worker": "^27.4.5",
 				"schema-utils": "^3.1.1",
 				"serialize-javascript": "^6.0.1",
-				"terser": "^5.16.5"
+				"terser": "^5.16.8"
 			},
 			"dependencies": {
 				"ajv": {
 					"version": "6.12.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+					"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 					"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
 					"requires": {
 						"fast-deep-equal": "^3.1.1",
@@ -50479,23 +47220,17 @@
 				},
 				"ajv-keywords": {
 					"version": "3.5.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-					"requires": {}
-				},
-				"commander": {
-					"version": "2.20.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/commander/-/commander-2.20.3.tgz",
-					"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+					"resolved": "http://localhost:4873/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
 				},
 				"has-flag": {
 					"version": "4.0.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/has-flag/-/has-flag-4.0.0.tgz",
+					"resolved": "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz",
 					"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
 				},
 				"jest-worker": {
 					"version": "27.5.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/jest-worker/-/jest-worker-27.5.1.tgz",
+					"resolved": "http://localhost:4873/jest-worker/-/jest-worker-27.5.1.tgz",
 					"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
 					"requires": {
 						"@types/node": "*",
@@ -50505,13 +47240,13 @@
 				},
 				"json-schema-traverse": {
 					"version": "0.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+					"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 					"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
 				},
 				"schema-utils": {
-					"version": "3.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-					"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
+					"version": "3.3.0",
+					"resolved": "http://localhost:4873/schema-utils/-/schema-utils-3.3.0.tgz",
+					"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
 					"requires": {
 						"@types/json-schema": "^7.0.8",
 						"ajv": "^6.12.5",
@@ -50520,22 +47255,11 @@
 				},
 				"supports-color": {
 					"version": "8.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/supports-color/-/supports-color-8.1.1.tgz",
+					"resolved": "http://localhost:4873/supports-color/-/supports-color-8.1.1.tgz",
 					"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
 					"requires": {
 						"has-flag": "^4.0.0"
 					}
-				},
-				"terser": {
-					"version": "5.16.8",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/terser/-/terser-5.16.8.tgz",
-					"integrity": "sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==",
-					"requires": {
-						"@jridgewell/source-map": "^0.3.2",
-						"acorn": "^8.5.0",
-						"commander": "^2.20.0",
-						"source-map-support": "~0.5.20"
-					}
 				}
 			}
 		},
@@ -50576,13 +47300,13 @@
 			"version": "0.2.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/text-table/-/text-table-0.2.0.tgz",
 			"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
-			"devOptional": true
+			"dev": true
 		},
 		"throttleit": {
 			"version": "1.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/throttleit/-/throttleit-1.0.0.tgz",
 			"integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==",
-			"devOptional": true
+			"dev": true
 		},
 		"through": {
 			"version": "2.3.8",
@@ -50639,7 +47363,7 @@
 		},
 		"thunky": {
 			"version": "1.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/thunky/-/thunky-1.1.0.tgz",
+			"resolved": "http://localhost:4873/thunky/-/thunky-1.1.0.tgz",
 			"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="
 		},
 		"timers-browserify": {
@@ -50661,7 +47385,7 @@
 		},
 		"tmpl": {
 			"version": "1.0.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tmpl/-/tmpl-1.0.5.tgz",
+			"resolved": "http://localhost:4873/tmpl/-/tmpl-1.0.5.tgz",
 			"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
 		},
 		"to-arraybuffer": {
@@ -50717,14 +47441,14 @@
 		},
 		"toidentifier": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/toidentifier/-/toidentifier-1.0.1.tgz",
+			"resolved": "http://localhost:4873/toidentifier/-/toidentifier-1.0.1.tgz",
 			"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
 		},
 		"tough-cookie": {
 			"version": "4.1.3",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tough-cookie/-/tough-cookie-4.1.3.tgz",
 			"integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"psl": "^1.1.33",
 				"punycode": "^2.1.1",
@@ -50736,7 +47460,7 @@
 					"version": "0.2.0",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/universalify/-/universalify-0.2.0.tgz",
 					"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
-					"devOptional": true
+					"dev": true
 				}
 			}
 		},
@@ -50752,7 +47476,8 @@
 		"tree-kill": {
 			"version": "1.2.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tree-kill/-/tree-kill-1.2.2.tgz",
-			"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A=="
+			"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
+			"dev": true
 		},
 		"truncate-utf8-bytes": {
 			"version": "1.0.2",
@@ -50763,18 +47488,18 @@
 			}
 		},
 		"ts-jest": {
-			"version": "28.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ts-jest/-/ts-jest-28.0.8.tgz",
-			"integrity": "sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==",
+			"version": "29.1.1",
+			"resolved": "http://localhost:4873/ts-jest/-/ts-jest-29.1.1.tgz",
+			"integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==",
 			"dev": true,
 			"requires": {
 				"bs-logger": "0.x",
 				"fast-json-stable-stringify": "2.x",
-				"jest-util": "^28.0.0",
-				"json5": "^2.2.1",
+				"jest-util": "^29.0.0",
+				"json5": "^2.2.3",
 				"lodash.memoize": "4.x",
 				"make-error": "1.x",
-				"semver": "7.x",
+				"semver": "^7.5.3",
 				"yargs-parser": "^21.0.1"
 			}
 		},
@@ -51034,15 +47759,14 @@
 			}
 		},
 		"tslib": {
-			"version": "2.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-2.5.0.tgz",
-			"integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
+			"version": "2.6.1",
+			"resolved": "http://localhost:4873/tslib/-/tslib-2.6.1.tgz",
+			"integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig=="
 		},
 		"tsutils": {
 			"version": "3.21.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tsutils/-/tsutils-3.21.0.tgz",
 			"integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
-			"dev": true,
 			"requires": {
 				"tslib": "^1.8.1"
 			},
@@ -51050,8 +47774,7 @@
 				"tslib": {
 					"version": "1.14.1",
 					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tslib/-/tslib-1.14.1.tgz",
-					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
-					"dev": true
+					"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
 				}
 			}
 		},
@@ -51061,33 +47784,44 @@
 			"integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==",
 			"dev": true
 		},
+		"tuf-js": {
+			"version": "1.1.7",
+			"resolved": "http://localhost:4873/tuf-js/-/tuf-js-1.1.7.tgz",
+			"integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==",
+			"dev": true,
+			"requires": {
+				"@tufjs/models": "1.0.4",
+				"debug": "^4.3.4",
+				"make-fetch-happen": "^11.1.1"
+			}
+		},
 		"tunnel-agent": {
 			"version": "0.6.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+			"resolved": "http://localhost:4873/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
 			"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"safe-buffer": "^5.0.1"
 			}
 		},
 		"tweetnacl": {
 			"version": "0.14.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/tweetnacl/-/tweetnacl-0.14.5.tgz",
+			"resolved": "http://localhost:4873/tweetnacl/-/tweetnacl-0.14.5.tgz",
 			"integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
-			"devOptional": true
+			"dev": true
 		},
 		"type-check": {
 			"version": "0.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-check/-/type-check-0.4.0.tgz",
+			"resolved": "http://localhost:4873/type-check/-/type-check-0.4.0.tgz",
 			"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"prelude-ls": "^1.2.1"
 			}
 		},
 		"type-detect": {
 			"version": "4.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-detect/-/type-detect-4.0.8.tgz",
+			"resolved": "http://localhost:4873/type-detect/-/type-detect-4.0.8.tgz",
 			"integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="
 		},
 		"type-fest": {
@@ -51097,7 +47831,7 @@
 		},
 		"type-is": {
 			"version": "1.6.18",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/type-is/-/type-is-1.6.18.tgz",
+			"resolved": "http://localhost:4873/type-is/-/type-is-1.6.18.tgz",
 			"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
 			"requires": {
 				"media-typer": "0.3.0",
@@ -51121,9 +47855,15 @@
 			"integrity": "sha512-YXvbd3a1QTREoD+FJoEkl0VQNJoEjewR2H11IjVv4bp6ahuIcw0yyw/3udC4vJkHw3T3cUh85FTg8eWef3pSaw=="
 		},
 		"typescript": {
-			"version": "4.8.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/typescript/-/typescript-4.8.4.tgz",
-			"integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="
+			"version": "5.1.6",
+			"resolved": "http://localhost:4873/typescript/-/typescript-5.1.6.tgz",
+			"integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA=="
+		},
+		"undici-types": {
+			"version": "5.26.5",
+			"resolved": "http://localhost:4873/undici-types/-/undici-types-5.26.5.tgz",
+			"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
+			"dev": true
 		},
 		"unicode-canonical-property-names-ecmascript": {
 			"version": "2.0.0",
@@ -51149,14 +47889,6 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
 			"integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="
 		},
-		"union": {
-			"version": "0.5.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/union/-/union-0.5.0.tgz",
-			"integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==",
-			"requires": {
-				"qs": "^6.4.0"
-			}
-		},
 		"union-value": {
 			"version": "1.0.1",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/union-value/-/union-value-1.0.1.tgz",
@@ -51179,7 +47911,7 @@
 		},
 		"unique-filename": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-filename/-/unique-filename-3.0.0.tgz",
+			"resolved": "http://localhost:4873/unique-filename/-/unique-filename-3.0.0.tgz",
 			"integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==",
 			"dev": true,
 			"requires": {
@@ -51188,7 +47920,7 @@
 		},
 		"unique-slug": {
 			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unique-slug/-/unique-slug-4.0.0.tgz",
+			"resolved": "http://localhost:4873/unique-slug/-/unique-slug-4.0.0.tgz",
 			"integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==",
 			"dev": true,
 			"requires": {
@@ -51202,7 +47934,7 @@
 		},
 		"unpipe": {
 			"version": "1.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/unpipe/-/unpipe-1.0.0.tgz",
+			"resolved": "http://localhost:4873/unpipe/-/unpipe-1.0.0.tgz",
 			"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
 		},
 		"unset-value": {
@@ -51255,7 +47987,7 @@
 			"version": "4.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/untildify/-/untildify-4.0.0.tgz",
 			"integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
-			"devOptional": true
+			"dev": true
 		},
 		"upath": {
 			"version": "1.2.0",
@@ -51265,9 +47997,9 @@
 			"optional": true
 		},
 		"update-browserslist-db": {
-			"version": "1.0.10",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
-			"integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
+			"version": "1.0.13",
+			"resolved": "http://localhost:4873/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
+			"integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
 			"requires": {
 				"escalade": "^3.1.1",
 				"picocolors": "^1.0.0"
@@ -51305,16 +48037,11 @@
 				}
 			}
 		},
-		"url-join": {
-			"version": "4.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/url-join/-/url-join-4.0.1.tgz",
-			"integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=="
-		},
 		"url-parse": {
 			"version": "1.5.10",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/url-parse/-/url-parse-1.5.10.tgz",
 			"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"querystringify": "^2.1.1",
 				"requires-port": "^1.0.0"
@@ -51355,7 +48082,7 @@
 		},
 		"utils-merge": {
 			"version": "1.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/utils-merge/-/utils-merge-1.0.1.tgz",
+			"resolved": "http://localhost:4873/utils-merge/-/utils-merge-1.0.1.tgz",
 			"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="
 		},
 		"uuid": {
@@ -51374,18 +48101,25 @@
 			"integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg=="
 		},
 		"v8-to-istanbul": {
-			"version": "9.1.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz",
-			"integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==",
+			"version": "9.1.3",
+			"resolved": "http://localhost:4873/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz",
+			"integrity": "sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==",
 			"requires": {
 				"@jridgewell/trace-mapping": "^0.3.12",
 				"@types/istanbul-lib-coverage": "^2.0.1",
-				"convert-source-map": "^1.6.0"
+				"convert-source-map": "^2.0.0"
+			},
+			"dependencies": {
+				"convert-source-map": {
+					"version": "2.0.0",
+					"resolved": "http://localhost:4873/convert-source-map/-/convert-source-map-2.0.0.tgz",
+					"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+				}
 			}
 		},
 		"validate-npm-package-license": {
 			"version": "3.0.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+			"resolved": "http://localhost:4873/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
 			"integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
 			"dev": true,
 			"requires": {
@@ -51397,7 +48131,6 @@
 			"version": "5.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
 			"integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
-			"dev": true,
 			"requires": {
 				"builtins": "^5.0.0"
 			}
@@ -51410,20 +48143,32 @@
 		},
 		"vary": {
 			"version": "1.1.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/vary/-/vary-1.1.2.tgz",
+			"resolved": "http://localhost:4873/vary/-/vary-1.1.2.tgz",
 			"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
 		},
 		"verror": {
 			"version": "1.10.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/verror/-/verror-1.10.0.tgz",
+			"resolved": "http://localhost:4873/verror/-/verror-1.10.0.tgz",
 			"integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"assert-plus": "^1.0.0",
 				"core-util-is": "1.0.2",
 				"extsprintf": "^1.2.0"
 			}
 		},
+		"vite": {
+			"version": "4.4.7",
+			"resolved": "http://localhost:4873/vite/-/vite-4.4.7.tgz",
+			"integrity": "sha512-6pYf9QJ1mHylfVh39HpuSfMPojPSKVxZvnclX1K1FyZ1PXDOcLBibdq5t1qxJSnL63ca8Wf4zts6mD8u8oc9Fw==",
+			"dev": true,
+			"requires": {
+				"esbuild": "^0.18.10",
+				"fsevents": "~2.3.2",
+				"postcss": "^8.4.26",
+				"rollup": "^3.25.2"
+			}
+		},
 		"vm-browserify": {
 			"version": "1.1.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/vm-browserify/-/vm-browserify-1.1.2.tgz",
@@ -51432,7 +48177,7 @@
 		},
 		"w3c-hr-time": {
 			"version": "1.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+			"resolved": "http://localhost:4873/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
 			"integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
 			"dev": true,
 			"requires": {
@@ -51440,17 +48185,17 @@
 			}
 		},
 		"w3c-xmlserializer": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz",
-			"integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==",
+			"version": "2.0.0",
+			"resolved": "http://localhost:4873/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
+			"integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
 			"dev": true,
 			"requires": {
-				"xml-name-validator": "^4.0.0"
+				"xml-name-validator": "^3.0.0"
 			}
 		},
 		"walker": {
 			"version": "1.0.8",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/walker/-/walker-1.0.8.tgz",
+			"resolved": "http://localhost:4873/walker/-/walker-1.0.8.tgz",
 			"integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
 			"requires": {
 				"makeerror": "1.0.12"
@@ -51458,7 +48203,7 @@
 		},
 		"watchpack": {
 			"version": "2.4.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/watchpack/-/watchpack-2.4.0.tgz",
+			"resolved": "http://localhost:4873/watchpack/-/watchpack-2.4.0.tgz",
 			"integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
 			"requires": {
 				"glob-to-regexp": "^0.4.1",
@@ -51744,7 +48489,7 @@
 		},
 		"wbuf": {
 			"version": "1.7.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wbuf/-/wbuf-1.7.3.tgz",
+			"resolved": "http://localhost:4873/wbuf/-/wbuf-1.7.3.tgz",
 			"integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
 			"requires": {
 				"minimalistic-assert": "^1.0.0"
@@ -51765,21 +48510,21 @@
 			"dev": true
 		},
 		"webpack": {
-			"version": "5.78.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack/-/webpack-5.78.0.tgz",
-			"integrity": "sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==",
+			"version": "5.88.2",
+			"resolved": "http://localhost:4873/webpack/-/webpack-5.88.2.tgz",
+			"integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==",
 			"requires": {
 				"@types/eslint-scope": "^3.7.3",
-				"@types/estree": "^0.0.51",
-				"@webassemblyjs/ast": "1.11.1",
-				"@webassemblyjs/wasm-edit": "1.11.1",
-				"@webassemblyjs/wasm-parser": "1.11.1",
+				"@types/estree": "^1.0.0",
+				"@webassemblyjs/ast": "^1.11.5",
+				"@webassemblyjs/wasm-edit": "^1.11.5",
+				"@webassemblyjs/wasm-parser": "^1.11.5",
 				"acorn": "^8.7.1",
-				"acorn-import-assertions": "^1.7.6",
+				"acorn-import-assertions": "^1.9.0",
 				"browserslist": "^4.14.5",
 				"chrome-trace-event": "^1.0.2",
-				"enhanced-resolve": "^5.10.0",
-				"es-module-lexer": "^0.9.0",
+				"enhanced-resolve": "^5.15.0",
+				"es-module-lexer": "^1.2.1",
 				"eslint-scope": "5.1.1",
 				"events": "^3.2.0",
 				"glob-to-regexp": "^0.4.1",
@@ -51788,16 +48533,16 @@
 				"loader-runner": "^4.2.0",
 				"mime-types": "^2.1.27",
 				"neo-async": "^2.6.2",
-				"schema-utils": "^3.1.0",
+				"schema-utils": "^3.2.0",
 				"tapable": "^2.1.1",
-				"terser-webpack-plugin": "^5.1.3",
+				"terser-webpack-plugin": "^5.3.7",
 				"watchpack": "^2.4.0",
 				"webpack-sources": "^3.2.3"
 			},
 			"dependencies": {
 				"ajv": {
 					"version": "6.12.6",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv/-/ajv-6.12.6.tgz",
+					"resolved": "http://localhost:4873/ajv/-/ajv-6.12.6.tgz",
 					"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
 					"requires": {
 						"fast-deep-equal": "^3.1.1",
@@ -51808,14 +48553,13 @@
 				},
 				"ajv-keywords": {
 					"version": "3.5.2",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-					"requires": {}
+					"resolved": "http://localhost:4873/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+					"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
 				},
 				"enhanced-resolve": {
-					"version": "5.12.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
-					"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
+					"version": "5.15.0",
+					"resolved": "http://localhost:4873/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
+					"integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
 					"requires": {
 						"graceful-fs": "^4.2.4",
 						"tapable": "^2.2.0"
@@ -51823,7 +48567,7 @@
 				},
 				"eslint-scope": {
 					"version": "5.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/eslint-scope/-/eslint-scope-5.1.1.tgz",
+					"resolved": "http://localhost:4873/eslint-scope/-/eslint-scope-5.1.1.tgz",
 					"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
 					"requires": {
 						"esrecurse": "^4.3.0",
@@ -51832,18 +48576,18 @@
 				},
 				"estraverse": {
 					"version": "4.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/estraverse/-/estraverse-4.3.0.tgz",
+					"resolved": "http://localhost:4873/estraverse/-/estraverse-4.3.0.tgz",
 					"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
 				},
 				"json-schema-traverse": {
 					"version": "0.4.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+					"resolved": "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 					"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
 				},
 				"schema-utils": {
-					"version": "3.1.1",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/schema-utils/-/schema-utils-3.1.1.tgz",
-					"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
+					"version": "3.3.0",
+					"resolved": "http://localhost:4873/schema-utils/-/schema-utils-3.3.0.tgz",
+					"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
 					"requires": {
 						"@types/json-schema": "^7.0.8",
 						"ajv": "^6.12.5",
@@ -51853,9 +48597,9 @@
 			}
 		},
 		"webpack-dev-middleware": {
-			"version": "6.0.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-dev-middleware/-/webpack-dev-middleware-6.0.1.tgz",
-			"integrity": "sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==",
+			"version": "6.1.1",
+			"resolved": "http://localhost:4873/webpack-dev-middleware/-/webpack-dev-middleware-6.1.1.tgz",
+			"integrity": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==",
 			"dev": true,
 			"requires": {
 				"colorette": "^2.0.10",
@@ -51866,9 +48610,9 @@
 			}
 		},
 		"webpack-dev-server": {
-			"version": "4.11.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz",
-			"integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==",
+			"version": "4.15.1",
+			"resolved": "http://localhost:4873/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz",
+			"integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==",
 			"requires": {
 				"@types/bonjour": "^3.5.9",
 				"@types/connect-history-api-fallback": "^1.3.5",
@@ -51876,7 +48620,7 @@
 				"@types/serve-index": "^1.9.1",
 				"@types/serve-static": "^1.13.10",
 				"@types/sockjs": "^0.3.33",
-				"@types/ws": "^8.5.1",
+				"@types/ws": "^8.5.5",
 				"ansi-html-community": "^0.0.8",
 				"bonjour-service": "^1.0.11",
 				"chokidar": "^3.5.3",
@@ -51889,6 +48633,7 @@
 				"html-entities": "^2.3.2",
 				"http-proxy-middleware": "^2.0.3",
 				"ipaddr.js": "^2.0.1",
+				"launch-editor": "^2.6.0",
 				"open": "^8.0.9",
 				"p-retry": "^4.5.0",
 				"rimraf": "^3.0.2",
@@ -51898,12 +48643,12 @@
 				"sockjs": "^0.3.24",
 				"spdy": "^4.0.2",
 				"webpack-dev-middleware": "^5.3.1",
-				"ws": "^8.4.2"
+				"ws": "^8.13.0"
 			},
 			"dependencies": {
 				"webpack-dev-middleware": {
 					"version": "5.3.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz",
+					"resolved": "http://localhost:4873/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz",
 					"integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==",
 					"requires": {
 						"colorette": "^2.0.10",
@@ -51912,13 +48657,18 @@
 						"range-parser": "^1.2.1",
 						"schema-utils": "^4.0.0"
 					}
+				},
+				"ws": {
+					"version": "8.14.2",
+					"resolved": "http://localhost:4873/ws/-/ws-8.14.2.tgz",
+					"integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g=="
 				}
 			}
 		},
 		"webpack-merge": {
-			"version": "5.8.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-merge/-/webpack-merge-5.8.0.tgz",
-			"integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==",
+			"version": "5.9.0",
+			"resolved": "http://localhost:4873/webpack-merge/-/webpack-merge-5.9.0.tgz",
+			"integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==",
 			"requires": {
 				"clone-deep": "^4.0.1",
 				"wildcard": "^2.0.0"
@@ -51926,7 +48676,7 @@
 		},
 		"webpack-node-externals": {
 			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz",
+			"resolved": "http://localhost:4873/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz",
 			"integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ=="
 		},
 		"webpack-sources": {
@@ -51944,7 +48694,7 @@
 		},
 		"websocket-driver": {
 			"version": "0.7.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/websocket-driver/-/websocket-driver-0.7.4.tgz",
+			"resolved": "http://localhost:4873/websocket-driver/-/websocket-driver-0.7.4.tgz",
 			"integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==",
 			"requires": {
 				"http-parser-js": ">=0.5.1",
@@ -51954,41 +48704,50 @@
 		},
 		"websocket-extensions": {
 			"version": "0.1.4",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
+			"resolved": "http://localhost:4873/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
 			"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="
 		},
 		"whatwg-encoding": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz",
-			"integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
+			"version": "1.0.5",
+			"resolved": "http://localhost:4873/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+			"integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
+			"dev": true,
 			"requires": {
-				"iconv-lite": "0.6.3"
-			},
-			"dependencies": {
-				"iconv-lite": {
-					"version": "0.6.3",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/iconv-lite/-/iconv-lite-0.6.3.tgz",
-					"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
-					"requires": {
-						"safer-buffer": ">= 2.1.2 < 3.0.0"
-					}
-				}
+				"iconv-lite": "0.4.24"
 			}
 		},
 		"whatwg-mimetype": {
-			"version": "3.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",
-			"integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==",
+			"version": "2.3.0",
+			"resolved": "http://localhost:4873/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+			"integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
 			"dev": true
 		},
 		"whatwg-url": {
-			"version": "10.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/whatwg-url/-/whatwg-url-10.0.0.tgz",
-			"integrity": "sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==",
+			"version": "8.7.0",
+			"resolved": "http://localhost:4873/whatwg-url/-/whatwg-url-8.7.0.tgz",
+			"integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
 			"dev": true,
 			"requires": {
-				"tr46": "^3.0.0",
-				"webidl-conversions": "^7.0.0"
+				"lodash": "^4.7.0",
+				"tr46": "^2.1.0",
+				"webidl-conversions": "^6.1.0"
+			},
+			"dependencies": {
+				"tr46": {
+					"version": "2.1.0",
+					"resolved": "http://localhost:4873/tr46/-/tr46-2.1.0.tgz",
+					"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
+					"dev": true,
+					"requires": {
+						"punycode": "^2.1.1"
+					}
+				},
+				"webidl-conversions": {
+					"version": "6.1.0",
+					"resolved": "http://localhost:4873/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+					"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
+					"dev": true
+				}
 			}
 		},
 		"which": {
@@ -52046,7 +48805,7 @@
 		},
 		"wide-align": {
 			"version": "1.1.5",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wide-align/-/wide-align-1.1.5.tgz",
+			"resolved": "http://localhost:4873/wide-align/-/wide-align-1.1.5.tgz",
 			"integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
 			"dev": true,
 			"requires": {
@@ -52054,15 +48813,9 @@
 			}
 		},
 		"wildcard": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wildcard/-/wildcard-2.0.0.tgz",
-			"integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw=="
-		},
-		"word-wrap": {
-			"version": "1.2.3",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/word-wrap/-/word-wrap-1.2.3.tgz",
-			"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
-			"devOptional": true
+			"version": "2.0.1",
+			"resolved": "http://localhost:4873/wildcard/-/wildcard-2.0.1.tgz",
+			"integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ=="
 		},
 		"worker-farm": {
 			"version": "1.7.0",
@@ -52073,13 +48826,6 @@
 				"errno": "~0.1.7"
 			}
 		},
-		"workerpool": {
-			"version": "6.2.1",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/workerpool/-/workerpool-6.2.1.tgz",
-			"integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==",
-			"dev": true,
-			"peer": true
-		},
 		"wrap-ansi": {
 			"version": "7.0.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
@@ -52113,6 +48859,43 @@
 				}
 			}
 		},
+		"wrap-ansi-cjs": {
+			"version": "npm:wrap-ansi@7.0.0",
+			"resolved": "http://localhost:4873/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+			"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+			"dev": true,
+			"requires": {
+				"ansi-styles": "^4.0.0",
+				"string-width": "^4.1.0",
+				"strip-ansi": "^6.0.0"
+			},
+			"dependencies": {
+				"ansi-styles": {
+					"version": "4.3.0",
+					"resolved": "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz",
+					"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+					"dev": true,
+					"requires": {
+						"color-convert": "^2.0.1"
+					}
+				},
+				"color-convert": {
+					"version": "2.0.1",
+					"resolved": "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz",
+					"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+					"dev": true,
+					"requires": {
+						"color-name": "~1.1.4"
+					}
+				},
+				"color-name": {
+					"version": "1.1.4",
+					"resolved": "http://localhost:4873/color-name/-/color-name-1.1.4.tgz",
+					"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+					"dev": true
+				}
+			}
+		},
 		"wrappy": {
 			"version": "1.0.2",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/wrappy/-/wrappy-1.0.2.tgz",
@@ -52120,7 +48903,7 @@
 		},
 		"write-file-atomic": {
 			"version": "4.0.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
+			"resolved": "http://localhost:4873/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
 			"integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
 			"requires": {
 				"imurmurhash": "^0.1.4",
@@ -52128,10 +48911,10 @@
 			}
 		},
 		"ws": {
-			"version": "8.13.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/ws/-/ws-8.13.0.tgz",
-			"integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
-			"requires": {}
+			"version": "7.5.9",
+			"resolved": "http://localhost:4873/ws/-/ws-7.5.9.tgz",
+			"integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
+			"dev": true
 		},
 		"xml": {
 			"version": "1.0.1",
@@ -52140,14 +48923,14 @@
 			"dev": true
 		},
 		"xml-name-validator": {
-			"version": "4.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
-			"integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
+			"version": "3.0.0",
+			"resolved": "http://localhost:4873/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+			"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
 			"dev": true
 		},
 		"xmlchars": {
 			"version": "2.2.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/xmlchars/-/xmlchars-2.2.0.tgz",
+			"resolved": "http://localhost:4873/xmlchars/-/xmlchars-2.2.0.tgz",
 			"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
 			"dev": true
 		},
@@ -52169,13 +48952,13 @@
 		},
 		"yaml": {
 			"version": "1.10.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yaml/-/yaml-1.10.2.tgz",
+			"resolved": "http://localhost:4873/yaml/-/yaml-1.10.2.tgz",
 			"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="
 		},
 		"yargs": {
-			"version": "17.6.2",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs/-/yargs-17.6.2.tgz",
-			"integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==",
+			"version": "17.7.2",
+			"resolved": "http://localhost:4873/yargs/-/yargs-17.7.2.tgz",
+			"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
 			"requires": {
 				"cliui": "^8.0.1",
 				"escalade": "^3.1.1",
@@ -52203,40 +48986,11 @@
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs-parser/-/yargs-parser-21.1.1.tgz",
 			"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
 		},
-		"yargs-unparser": {
-			"version": "2.0.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
-			"integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
-			"dev": true,
-			"peer": true,
-			"requires": {
-				"camelcase": "^6.0.0",
-				"decamelize": "^4.0.0",
-				"flat": "^5.0.2",
-				"is-plain-obj": "^2.1.0"
-			},
-			"dependencies": {
-				"camelcase": {
-					"version": "6.3.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/camelcase/-/camelcase-6.3.0.tgz",
-					"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
-					"dev": true,
-					"peer": true
-				},
-				"is-plain-obj": {
-					"version": "2.1.0",
-					"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
-					"integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
-					"dev": true,
-					"peer": true
-				}
-			}
-		},
 		"yauzl": {
 			"version": "2.10.0",
 			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/yauzl/-/yauzl-2.10.0.tgz",
 			"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
-			"devOptional": true,
+			"dev": true,
 			"requires": {
 				"buffer-crc32": "~0.2.3",
 				"fd-slicer": "~1.1.0"
@@ -52253,9 +49007,9 @@
 			"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
 		},
 		"zone.js": {
-			"version": "0.12.0",
-			"resolved": "http://nexus.ozg-sh.de/repository/npm-proxy/zone.js/-/zone.js-0.12.0.tgz",
-			"integrity": "sha512-XtC+I5dXU14HrzidAKBNMqneIVUykLEAA1x+v4KVrd6AUPWlwYORF8KgsVqvgdHiKZ4BkxxjvYi/ksEixTPR0Q==",
+			"version": "0.13.3",
+			"resolved": "http://localhost:4873/zone.js/-/zone.js-0.13.3.tgz",
+			"integrity": "sha512-MKPbmZie6fASC/ps4dkmIhaT5eonHkEt6eAy80K42tAm0G2W+AahLJjbfi6X9NPdciOE9GRFTTM8u2IiF6O3ww==",
 			"requires": {
 				"tslib": "^2.3.0"
 			}
diff --git a/goofy-client/package.json b/goofy-client/package.json
index 0eccd787840c4f816483f44c73406bbaa626d8fc..3332823600869aac4938ec1c620f9a3ccd687aab 100644
--- a/goofy-client/package.json
+++ b/goofy-client/package.json
@@ -3,19 +3,19 @@
 	"version": "0.0.0",
 	"license": "MIT",
 	"scripts": {
-		"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main --first-only --create-ivy-entry-points",
-		"start": "nx serve --port 4300 --disable-host-check",
-		"start:debug": "nx serve --port 4300 --disable-host-check --verbose",
-		"start-for-screenreader": "nx serve --host 192.168.178.20 --port 4300 --disable-host-check --verbose",
-		"start:devbe": "nx serve --port 4300 --disable-host-check --proxy-config proxy.dev.conf.json --verbose",
+		"postinstall": "node ./decorate-angular-cli.js",
+		"start": "nx serve --port=4300 --disable-host-check",
+		"start:debug": "nx serve --port=4300 --disable-host-check --verbose",
+		"start-for-screenreader": "nx serve --host=192.168.178.20 --port=4300 --disable-host-check --verbose",
+		"start:devbe": "nx serve --port=4300 --disable-host-check --proxy-config=proxy.dev.conf.json --verbose",
 		"build": "nx build",
-		"test": "node ./node_modules/.bin/nx run-many --target=test --all --parallel --maxParallel 8 --runInBand",
+		"test": "nx run-many --target=test --all --parallel --maxParallel 8 --runInBand --update-snapshot",
 		"test:cov": "jest --coverage",
 		"test:lib": "nx test ${npm_config_lib} --watchAll",
 		"test:debug:lib": "nx test ${npm_config_lib} --detectOpenHandles --watchAll",
 		"ci-build": "nx build --outputHashing=all",
 		"ci-prodBuild": "nx build --outputHashing=all --configuration production",
-		"ci-test": "node ./node_modules/.bin/nx run-many --target=test --all --parallel --maxParallel 2 --runInBand --ci --testResultsProcessor='jest-sonar-reporter' --coverage",
+		"ci-test": "nx run-many --target=test --all --parallel --maxParallel 2 --runInBand --ci --testResultsProcessor='jest-sonar-reporter' --coverage",
 		"ci-sonar": "sonar-scanner",
 		"lint": "nx workspace-lint && nx lint",
 		"affected:apps": "nx affected:apps",
@@ -29,7 +29,7 @@
 		"format": "nx format:write",
 		"format:write": "nx format:write",
 		"format:check": "nx format:check",
-		"update": "nx update @nrwl/workspace",
+		"update": "nx update @nx/workspace",
 		"dep-graph": "nx dep-graph",
 		"help": "nx help",
 		"favicon": "real-favicon generate favicon/faviconDescription.json favicon/faviconData.json src/favicon",
@@ -44,24 +44,23 @@
 	},
 	"private": true,
 	"dependencies": {
-		"@angular/animations": "15.1.4",
-		"@angular/cdk": "15.1.4",
-		"@angular/common": "15.1.4",
-		"@angular/compiler": "15.1.4",
-		"@angular/core": "15.1.4",
-		"@angular/forms": "15.1.4",
-		"@angular/material": "15.1.4",
-		"@angular/material-date-fns-adapter": "15.1.4",
-		"@angular/platform-browser": "15.1.4",
-		"@angular/platform-browser-dynamic": "15.1.4",
-		"@angular/router": "15.1.4",
-		"@ngrx/component-store": "15.0.0",
-		"@ngrx/effects": "15.0.0",
-		"@ngrx/entity": "15.0.0",
-		"@ngrx/router-store": "15.0.0",
-		"@ngrx/store": "15.0.0",
+		"@angular/animations": "16.2.11",
+		"@angular/cdk": "16.2.10",
+		"@angular/common": "16.2.11",
+		"@angular/compiler": "16.2.11",
+		"@angular/core": "16.2.11",
+		"@angular/forms": "16.2.11",
+		"@angular/material": "16.2.10",
+		"@angular/material-date-fns-adapter": "16.2.10",
+		"@angular/platform-browser": "16.2.11",
+		"@angular/platform-browser-dynamic": "16.2.11",
+		"@angular/router": "16.2.11",
+		"@ngrx/component-store": "16.0.1",
+		"@ngrx/effects": "16.0.1",
+		"@ngrx/entity": "16.0.1",
+		"@ngrx/router-store": "16.0.1",
+		"@ngrx/store": "16.0.1",
 		"@ngxp/rest": "8.0.0",
-		"@nrwl/angular": "15.6.3",
 		"angular-oauth2-oidc": "15.0.1",
 		"angular-oauth2-oidc-jwks": "15.0.1",
 		"date-fns": "^2.29.3",
@@ -73,58 +72,61 @@
 		"sanitize-filename-ts": "^1.0.2",
 		"tslib": "^2.3.0",
 		"typeface-roboto": "1.1.13",
-		"zone.js": "~0.12.0"
+		"zone.js": "0.13.3",
+		"@nx/angular": "16.10.0"
 	},
 	"devDependencies": {
-		"@angular-devkit/build-angular": "15.1.5",
-		"@angular-eslint/eslint-plugin": "15.0.0",
-		"@angular-eslint/eslint-plugin-template": "15.0.0",
-		"@angular-eslint/template-parser": "15.0.0",
-		"@angular/cli": "~15.1.0",
-		"@angular/compiler-cli": "15.1.4",
-		"@angular/language-service": "15.1.4",
+		"@angular-devkit/build-angular": "16.2.8",
+		"@angular-devkit/core": "16.2.8",
+		"@angular-devkit/schematics": "16.2.8",
+		"@angular-eslint/eslint-plugin": "16.0.3",
+		"@angular-eslint/eslint-plugin-template": "16.0.3",
+		"@angular-eslint/template-parser": "16.0.3",
+		"@angular/cli": "~16.2.0",
+		"@angular/compiler-cli": "16.2.11",
+		"@angular/language-service": "16.2.11",
 		"@bahmutov/cypress-extends": "1.1.0",
 		"@cypress/webpack-batteries-included-preprocessor": "^2.4.1",
 		"@cypress/webpack-preprocessor": "^5.17.1",
 		"@faker-js/faker": "^6.3.1",
-		"@ngrx/schematics": "15.0.0",
-		"@ngrx/store-devtools": "15.0.0",
-		"@nrwl/cli": "15.6.3",
-		"@nrwl/cypress": "15.6.3",
-		"@nrwl/eslint-plugin-nx": "15.6.3",
-		"@nrwl/jest": "15.6.3",
-		"@nrwl/linter": "15.6.3",
-		"@nrwl/workspace": "15.6.3",
+		"@ngrx/schematics": "16.0.1",
+		"@ngrx/store-devtools": "16.0.1",
+		"@nx/cypress": "16.10.0",
+		"@nx/eslint-plugin": "16.10.0",
+		"@nx/jest": "16.10.0",
+		"@nx/linter": "16.10.0",
+		"@nx/workspace": "16.10.0",
+		"@schematics/angular": "16.2.8",
 		"@testing-library/jest-dom": "5.16.4",
 		"@types/file-saver": "2.0.6",
-		"@types/jest": "28.1.8",
+		"@types/jest": "29.4.4",
 		"@types/lodash-es": "4.17.10",
 		"@types/node": "^16.18.1",
-		"@typescript-eslint/eslint-plugin": "5.44.0",
-		"@typescript-eslint/parser": "5.44.0",
-		"cypress": "^12.17.4",
+		"@typescript-eslint/eslint-plugin": "5.62.0",
+		"@typescript-eslint/parser": "5.62.0",
+		"cypress": "^13.0.0",
 		"cypress-file-upload": "5.0.8",
 		"cypress-mochawesome-reporter": "3.6.0",
 		"cypress-real-events": "^1.10.3",
 		"cypress-timestamps": "^1.2.3",
-		"eslint": "8.15.0",
+		"eslint": "8.46.0",
 		"eslint-config-prettier": "8.3.0",
-		"eslint-plugin-cypress": "2.11.3",
+		"eslint-plugin-cypress": "2.15.1",
 		"jasmine-marbles": "~0.9.2",
-		"jest": "28.1.3",
+		"jest": "29.4.3",
 		"jest-createspyobj": "^2.0.0",
-		"jest-environment-jsdom": "28.1.1",
+		"jest-environment-jsdom": "29.4.3",
 		"jest-junit": "^14.0.0",
 		"jest-marbles": "3.0.3",
-		"jest-preset-angular": "12.2.3",
+		"jest-preset-angular": "13.1.2",
 		"jest-sonar-reporter": "^2.0.0",
 		"mongodb": "4.5.0",
 		"ng-mocks": "^14.11.0",
-		"nx": "15.6.3",
+		"nx": "16.10.0",
 		"prettier": "2.7.1",
 		"sonarqube-scanner": "3.1.0",
-		"ts-jest": "28.0.8",
+		"ts-jest": "29.1.1",
 		"ts-node": "10.9.1",
-		"typescript": "4.8.4"
+		"typescript": "5.1.6"
 	}
 }
diff --git a/goofy-client/tools/generators/.gitkeep b/goofy-client/tools/generators/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000