@opensumi/ide-components 3.0.5-next-1717640331.0 → 3.1.1-next-1717744383.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -6225,7 +6225,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
|
|
|
6225
6225
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
6226
6226
|
|
|
6227
6227
|
"use strict";
|
|
6228
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.ReporterService = exports.DefaultReporter = void 0;\nconst tslib_1 = __webpack_require__(/*! tslib */ \"../../node_modules/tslib/tslib.es6.mjs\");\nconst di_1 = __webpack_require__(/*! @opensumi/di */ \"../../node_modules/@opensumi/di/dist/index.js\");\nconst log_1 = __webpack_require__(/*! ./log */ \"../core-common/lib/log.js\");\nconst reporter_1 = __webpack_require__(/*! ./types/reporter */ \"../core-common/lib/types/reporter.js\");\nclass ReporterTimer {\n constructor(name, reporter, metadata) {\n this.name = name;\n this.reporter = reporter;\n this.metadata = metadata;\n this.now = Date.now();\n }\n timeEnd(msg, extra) {\n const duration =
|
|
6228
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.ReporterService = exports.DefaultReporter = void 0;\nconst tslib_1 = __webpack_require__(/*! tslib */ \"../../node_modules/tslib/tslib.es6.mjs\");\nconst di_1 = __webpack_require__(/*! @opensumi/di */ \"../../node_modules/@opensumi/di/dist/index.js\");\nconst log_1 = __webpack_require__(/*! ./log */ \"../core-common/lib/log.js\");\nconst reporter_1 = __webpack_require__(/*! ./types/reporter */ \"../core-common/lib/types/reporter.js\");\nclass ReporterTimer {\n constructor(name, reporter, metadata) {\n this.name = name;\n this.reporter = reporter;\n this.metadata = metadata;\n this.now = Date.now();\n }\n getElapsedTime() {\n return Date.now() - this.now;\n }\n timeEnd(msg, extra, options) {\n const duration = this.getElapsedTime();\n if ((options === null || options === void 0 ? void 0 : options.minimumReportThresholdTime) && duration < options.minimumReportThresholdTime) {\n // 不满足最小时间要求,不上报\n return duration;\n }\n this.reporter.performance(this.name, {\n duration,\n metadata: this.metadata,\n msg,\n extra,\n });\n return duration;\n }\n}\nlet DefaultReporter = class DefaultReporter {\n constructor() {\n this.logger = (0, log_1.getDebugLogger)();\n }\n performance(name, data) {\n this.logger.log(name, data);\n }\n point(name, data) {\n this.logger.log(name, data);\n }\n};\nDefaultReporter = tslib_1.__decorate([\n (0, di_1.Injectable)()\n], DefaultReporter);\nexports.DefaultReporter = DefaultReporter;\nlet ReporterService = class ReporterService {\n constructor(reporter, metadata) {\n this.reporter = reporter;\n this.metadata = metadata;\n }\n time(name) {\n return new ReporterTimer(name, this.reporter, this.metadata);\n }\n point(name, msg, extra) {\n this.reporter.point(name, {\n metadata: this.metadata,\n msg,\n extra,\n });\n }\n dispose() { }\n};\nReporterService = tslib_1.__decorate([\n (0, di_1.Injectable)(),\n tslib_1.__param(0, (0, di_1.Inject)(reporter_1.IReporter)),\n tslib_1.__param(1, (0, di_1.Inject)(reporter_1.ReporterMetadata)),\n tslib_1.__metadata(\"design:paramtypes\", [Object, Object])\n], ReporterService);\nexports.ReporterService = ReporterService;\n//# sourceMappingURL=reporter.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/reporter.js?");
|
|
6229
6229
|
|
|
6230
6230
|
/***/ }),
|
|
6231
6231
|
|
|
@@ -6522,7 +6522,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
|
|
|
6522
6522
|
/***/ ((__unused_webpack_module, exports) => {
|
|
6523
6523
|
|
|
6524
6524
|
"use strict";
|
|
6525
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.IReporter = exports.IReporterService = exports.ReporterMetadata = exports.REPORT_TYPE = exports.REPORT_HOST = exports.REPORT_NAME = void 0;\nvar REPORT_NAME;\n(function (REPORT_NAME) {\n REPORT_NAME[\"ACTIVE_EXTENSION\"] = \"activateExtension\";\n REPORT_NAME[\"RUNTIME_ERROR_EXTENSION\"] = \"runtimeErrorExtension\";\n REPORT_NAME[\"LOAD_EXTENSION_MAIN\"] = \"loadExtensionMain\";\n REPORT_NAME[\"PROVIDE_COMPLETION_ITEMS\"] = \"provideCompletionItems\";\n REPORT_NAME[\"RESOLVE_COMPLETION_ITEM\"] = \"resolveCompletionItem\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_FORMATTING_EDITS\"] = \"provideDocumentFormattingEdits\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_RANGE_FORMATTING_EDITS\"] = \"provideDocumentRangeFormattingEdits\";\n REPORT_NAME[\"EDITOR_REACTIVE\"] = \"editorReactive\";\n REPORT_NAME[\"CHANNEL_RECONNECT\"] = \"channelReconnect\";\n REPORT_NAME[\"MEASURE\"] = \"measure\";\n REPORT_NAME[\"FORMAT_ON_SAVE_TIMEOUT_ERROR\"] = \"formatOnSaveTimeoutError\";\n REPORT_NAME[\"FORMAT_ON_SAVE\"] = \"formatOnSave\";\n REPORT_NAME[\"NOT_FOUND_COMMAND\"] = \"notFoundCommand\";\n REPORT_NAME[\"INSTALL_EXTENSION_ERROR\"] = \"installExtensionError\";\n REPORT_NAME[\"EXTENSION_CRASH\"] = \"extensionCrash\";\n REPORT_NAME[\"EXTENSION_NOT_EXIST\"] = \"extensionNotExist\";\n REPORT_NAME[\"THEME_LOAD\"] = \"themeLoad\";\n REPORT_NAME[\"PROVIDE_HOVER\"] = \"provideHover\";\n REPORT_NAME[\"PROVIDE_DEFINITION\"] = \"provideDefinition\";\n REPORT_NAME[\"PROVIDE_TYPE_DEFINITION\"] = \"provideTypeDefinition\";\n REPORT_NAME[\"PROVIDE_FOLDING_RANGES\"] = \"provideFoldingRanges\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_COLORS\"] = \"provideDocumentColors\";\n REPORT_NAME[\"PROVIDE_COLOR_PRESENTATIONS\"] = \"provideColorPresentations\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_HIGHLIGHTS\"] = \"provideDocumentHighlights\";\n REPORT_NAME[\"PROVIDE_LINKS\"] = \"provideLinks\";\n REPORT_NAME[\"PROVIDE_REFERENCES\"] = \"provideReferences\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_SYMBOLS\"] = \"provideDocumentSymbols\";\n REPORT_NAME[\"PROVIDE_IMPLEMENTATION\"] = \"provideImplementation\";\n REPORT_NAME[\"PROVIDE_CODE_ACTIONS\"] = \"provideCodeActions\";\n REPORT_NAME[\"PROVIDE_RENAME_EDITS\"] = \"provideRenameEdits\";\n REPORT_NAME[\"PROVIDE_NEW_SYMBOL_NAMES\"] = \"provideNewSymbolNames\";\n REPORT_NAME[\"PROVIDE_SIGNATURE_HELP\"] = \"provideSignatureHelp\";\n REPORT_NAME[\"PROVIDE_CODE_LENSES\"] = \"provideCodeLenses\";\n REPORT_NAME[\"RESOLVE_CODE_LENS\"] = \"resolveCodeLens\";\n REPORT_NAME[\"PROVIDE_ON_TYPE_FORMATTING_EDITS\"] = \"provideOnTypeFormattingEdits\";\n REPORT_NAME[\"PROVIDE_SELECTION_RANGES\"] = \"provideSelectionRanges\";\n REPORT_NAME[\"TERMINAL_MEASURE\"] = \"terminalMeasure\";\n REPORT_NAME[\"SEARCH_MEASURE\"] = \"searchMeasure\";\n REPORT_NAME[\"QUICK_OPEN_MEASURE\"] = \"quickOpenMeasure\";\n})(REPORT_NAME = exports.REPORT_NAME || (exports.REPORT_NAME = {}));\nvar REPORT_HOST;\n(function (REPORT_HOST) {\n REPORT_HOST[\"BROWSER\"] = \"browser\";\n REPORT_HOST[\"NODE\"] = \"node\";\n REPORT_HOST[\"WORKER\"] = \"worker\";\n REPORT_HOST[\"EXTENSION\"] = \"extension\";\n})(REPORT_HOST = exports.REPORT_HOST || (exports.REPORT_HOST = {}));\nvar REPORT_TYPE;\n(function (REPORT_TYPE) {\n REPORT_TYPE[\"PERFORMANCE\"] = \"performance\";\n REPORT_TYPE[\"POINT\"] = \"point\";\n})(REPORT_TYPE = exports.REPORT_TYPE || (exports.REPORT_TYPE = {}));\nexports.ReporterMetadata = Symbol('ReporterMetadata');\nexports.IReporterService = Symbol('IReporterService');\n// 集成方实现\n// 前端和后端各有一套实现\nexports.IReporter = Symbol('IReporter');\n//# sourceMappingURL=reporter.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/types/reporter.js?");
|
|
6525
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.IReporter = exports.IReporterService = exports.ReporterMetadata = exports.REPORT_TYPE = exports.REPORT_HOST = exports.REPORT_NAME = void 0;\nvar REPORT_NAME;\n(function (REPORT_NAME) {\n REPORT_NAME[\"ACTIVE_EXTENSION\"] = \"activateExtension\";\n REPORT_NAME[\"RUNTIME_ERROR_EXTENSION\"] = \"runtimeErrorExtension\";\n REPORT_NAME[\"LOAD_EXTENSION_MAIN\"] = \"loadExtensionMain\";\n REPORT_NAME[\"PROVIDE_COMPLETION_ITEMS\"] = \"provideCompletionItems\";\n REPORT_NAME[\"RESOLVE_COMPLETION_ITEM\"] = \"resolveCompletionItem\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_FORMATTING_EDITS\"] = \"provideDocumentFormattingEdits\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_RANGE_FORMATTING_EDITS\"] = \"provideDocumentRangeFormattingEdits\";\n REPORT_NAME[\"EDITOR_REACTIVE\"] = \"editorReactive\";\n REPORT_NAME[\"CHANNEL_RECONNECT\"] = \"channelReconnect\";\n REPORT_NAME[\"MEASURE\"] = \"measure\";\n REPORT_NAME[\"FORMAT_ON_SAVE_TIMEOUT_ERROR\"] = \"formatOnSaveTimeoutError\";\n REPORT_NAME[\"FORMAT_ON_SAVE\"] = \"formatOnSave\";\n REPORT_NAME[\"NOT_FOUND_COMMAND\"] = \"notFoundCommand\";\n REPORT_NAME[\"INSTALL_EXTENSION_ERROR\"] = \"installExtensionError\";\n REPORT_NAME[\"EXTENSION_CRASH\"] = \"extensionCrash\";\n REPORT_NAME[\"EXTENSION_NOT_EXIST\"] = \"extensionNotExist\";\n REPORT_NAME[\"THEME_LOAD\"] = \"themeLoad\";\n REPORT_NAME[\"PROVIDE_HOVER\"] = \"provideHover\";\n REPORT_NAME[\"PROVIDE_DEFINITION\"] = \"provideDefinition\";\n REPORT_NAME[\"PROVIDE_TYPE_DEFINITION\"] = \"provideTypeDefinition\";\n REPORT_NAME[\"PROVIDE_FOLDING_RANGES\"] = \"provideFoldingRanges\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_COLORS\"] = \"provideDocumentColors\";\n REPORT_NAME[\"PROVIDE_COLOR_PRESENTATIONS\"] = \"provideColorPresentations\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_HIGHLIGHTS\"] = \"provideDocumentHighlights\";\n REPORT_NAME[\"PROVIDE_LINKS\"] = \"provideLinks\";\n REPORT_NAME[\"PROVIDE_REFERENCES\"] = \"provideReferences\";\n REPORT_NAME[\"PROVIDE_DOCUMENT_SYMBOLS\"] = \"provideDocumentSymbols\";\n REPORT_NAME[\"PROVIDE_IMPLEMENTATION\"] = \"provideImplementation\";\n REPORT_NAME[\"PROVIDE_CODE_ACTIONS\"] = \"provideCodeActions\";\n REPORT_NAME[\"PROVIDE_RENAME_EDITS\"] = \"provideRenameEdits\";\n REPORT_NAME[\"PROVIDE_NEW_SYMBOL_NAMES\"] = \"provideNewSymbolNames\";\n REPORT_NAME[\"PROVIDE_SIGNATURE_HELP\"] = \"provideSignatureHelp\";\n REPORT_NAME[\"PROVIDE_CODE_LENSES\"] = \"provideCodeLenses\";\n REPORT_NAME[\"RESOLVE_CODE_LENS\"] = \"resolveCodeLens\";\n REPORT_NAME[\"PROVIDE_ON_TYPE_FORMATTING_EDITS\"] = \"provideOnTypeFormattingEdits\";\n REPORT_NAME[\"PROVIDE_SELECTION_RANGES\"] = \"provideSelectionRanges\";\n REPORT_NAME[\"TERMINAL_MEASURE\"] = \"terminalMeasure\";\n REPORT_NAME[\"SEARCH_MEASURE\"] = \"searchMeasure\";\n REPORT_NAME[\"QUICK_OPEN_MEASURE\"] = \"quickOpenMeasure\";\n REPORT_NAME[\"RPC_TIMMING_MEASURE\"] = \"rpcTimingMeasure\";\n})(REPORT_NAME = exports.REPORT_NAME || (exports.REPORT_NAME = {}));\nvar REPORT_HOST;\n(function (REPORT_HOST) {\n REPORT_HOST[\"BROWSER\"] = \"browser\";\n REPORT_HOST[\"NODE\"] = \"node\";\n REPORT_HOST[\"WORKER\"] = \"worker\";\n REPORT_HOST[\"EXTENSION\"] = \"extension\";\n})(REPORT_HOST = exports.REPORT_HOST || (exports.REPORT_HOST = {}));\nvar REPORT_TYPE;\n(function (REPORT_TYPE) {\n REPORT_TYPE[\"PERFORMANCE\"] = \"performance\";\n REPORT_TYPE[\"POINT\"] = \"point\";\n})(REPORT_TYPE = exports.REPORT_TYPE || (exports.REPORT_TYPE = {}));\nexports.ReporterMetadata = Symbol('ReporterMetadata');\nexports.IReporterService = Symbol('IReporterService');\n// 集成方实现\n// 前端和后端各有一套实现\nexports.IReporter = Symbol('IReporter');\n//# sourceMappingURL=reporter.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/types/reporter.js?");
|
|
6526
6526
|
|
|
6527
6527
|
/***/ }),
|
|
6528
6528
|
|
|
@@ -6764,7 +6764,7 @@ eval("\n/* ---------------------------------------------------------------------
|
|
|
6764
6764
|
/***/ ((__unused_webpack_module, exports) => {
|
|
6765
6765
|
|
|
6766
6766
|
"use strict";
|
|
6767
|
-
eval("\n/* ---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.findFirstTruthy = exports.diffSets = exports.removeObjectFromArray = exports.once = void 0;\nfunction once(fn) {\n const _this = this;\n let didCall = false;\n let result;\n return function () {\n if (didCall) {\n return result;\n }\n didCall = true;\n result = fn.apply(_this, arguments);\n return result;\n };\n}\nexports.once = once;\nfunction removeObjectFromArray(array, object, comparator) {\n let index = -1;\n if (comparator) {\n index = array.findIndex((o) => comparator(o, object));\n }\n else {\n index = array.indexOf(object);\n }\n if (index !== -1) {\n array.splice(index, 1);\n }\n}\nexports.removeObjectFromArray = removeObjectFromArray;\nfunction diffSets(before, after) {\n const removed = [];\n const added = [];\n for (const element of before) {\n if (!after.has(element)) {\n removed.push(element);\n }\n }\n for (const element of after) {\n if (!before.has(element)) {\n added.push(element);\n }\n }\n return { removed, added };\n}\nexports.diffSets = diffSets;\nfunction findFirstTruthy(...sources) {\n for (let i = 0; i
|
|
6767
|
+
eval("\n/* ---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.findFirstTruthy = exports.diffSets = exports.removeObjectFromArray = exports.once = void 0;\nfunction once(fn) {\n const _this = this;\n let didCall = false;\n let result;\n return function () {\n if (didCall) {\n return result;\n }\n didCall = true;\n result = fn.apply(_this, arguments);\n return result;\n };\n}\nexports.once = once;\nfunction removeObjectFromArray(array, object, comparator) {\n let index = -1;\n if (comparator) {\n index = array.findIndex((o) => comparator(o, object));\n }\n else {\n index = array.indexOf(object);\n }\n if (index !== -1) {\n array.splice(index, 1);\n }\n}\nexports.removeObjectFromArray = removeObjectFromArray;\nfunction diffSets(before, after) {\n const removed = [];\n const added = [];\n for (const element of before) {\n if (!after.has(element)) {\n removed.push(element);\n }\n }\n for (const element of after) {\n if (!before.has(element)) {\n added.push(element);\n }\n }\n return { removed, added };\n}\nexports.diffSets = diffSets;\nfunction findFirstTruthy(...sources) {\n for (let i = 0; i <= sources.length - 1; i++) {\n const result = check(sources[i]);\n if (result) {\n return result;\n }\n }\n return undefined;\n function check(value) {\n if (typeof value === 'function') {\n return value();\n }\n return value;\n }\n}\nexports.findFirstTruthy = findFirstTruthy;\n//# sourceMappingURL=functional.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/functional.js?");
|
|
6768
6768
|
|
|
6769
6769
|
/***/ }),
|
|
6770
6770
|
|
|
@@ -6951,7 +6951,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
|
|
|
6951
6951
|
/***/ ((__unused_webpack_module, exports) => {
|
|
6952
6952
|
|
|
6953
6953
|
"use strict";
|
|
6954
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.pSeries = exports.Deferred = void 0;\n/**\n * Simple implementation of the deferred pattern.\n * An object that exposes a promise and functions to resolve and reject it.\n */\nclass Deferred {\n constructor() {\n this.promise = new Promise((resolve, reject) => {\n this.resolve = resolve;\n this.reject = reject;\n });\n }\n}\nexports.Deferred = Deferred;\nasync function pSeries(tasks) {\n const results = [];\n for (const task of tasks) {\n results.push(await task());\n }\n return results;\n}\nexports.pSeries = pSeries;\n//# sourceMappingURL=promises.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/promises.js?");
|
|
6954
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.PromiseTasks = exports.pSeries = exports.Deferred = void 0;\n/**\n * Simple implementation of the deferred pattern.\n * An object that exposes a promise and functions to resolve and reject it.\n */\nclass Deferred {\n constructor() {\n this.promise = new Promise((resolve, reject) => {\n this.resolve = resolve;\n this.reject = reject;\n });\n }\n}\nexports.Deferred = Deferred;\nasync function pSeries(tasks) {\n const results = [];\n for (const task of tasks) {\n results.push(await task());\n }\n return results;\n}\nexports.pSeries = pSeries;\nclass PromiseTasks {\n constructor() {\n this.tasks = [];\n }\n add(task) {\n this.tasks.push(task);\n }\n addPromise(task) {\n this.tasks.push(() => task);\n }\n promisify() {\n return this.tasks.map((task) => task());\n }\n async allSettled() {\n return Promise.allSettled(this.promisify());\n }\n async all() {\n return Promise.all(this.promisify());\n }\n async race() {\n return Promise.race(this.promisify());\n }\n /**\n * This returned promise fulfills when any of the input's promises fulfills, with this first fulfillment value.\n * It return `undefined` when all of the input's promises reject (including when an empty iterable is passed).\n */\n async any() {\n try {\n return await Promise.any(this.promisify());\n }\n catch (error) {\n return undefined;\n }\n }\n}\nexports.PromiseTasks = PromiseTasks;\n//# sourceMappingURL=promises.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/promises.js?");
|
|
6955
6955
|
|
|
6956
6956
|
/***/ }),
|
|
6957
6957
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1-next-1717744383.0",
|
|
4
4
|
"description": "@opensumi/ide-components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@ant-design/icons": "^4.6.4",
|
|
19
|
-
"@opensumi/ide-utils": "3.
|
|
19
|
+
"@opensumi/ide-utils": "3.1.1-next-1717744383.0",
|
|
20
20
|
"fuzzy": "^0.1.3",
|
|
21
21
|
"lodash": "^4.17.21",
|
|
22
22
|
"marked": "4.0.10",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"react-window": "^1.8.5"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@opensumi/ide-dev-tool": "3.
|
|
39
|
+
"@opensumi/ide-dev-tool": "3.1.1-next-1717744383.0",
|
|
40
40
|
"@types/marked": "^4.0.7",
|
|
41
41
|
"@types/react-window": "^1.8.5",
|
|
42
42
|
"prop-types": "^15.8.1"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "bd1010d5209211ec39a48b60c4b38dfad4fd08a2"
|
|
45
45
|
}
|