@powerlines/nx 0.11.253 → 0.11.255

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.
Files changed (44) hide show
  1. package/dist/src/base/base-executor.js +1 -1
  2. package/dist/src/base/base-executor.mjs +1 -1
  3. package/dist/src/base/base-executor.untyped.d.mts +1 -1
  4. package/dist/src/base/base-executor.untyped.d.ts +1 -1
  5. package/dist/src/base/index.d.mts +1 -1
  6. package/dist/src/base/index.js +1 -1
  7. package/dist/src/base/index.mjs +1 -1
  8. package/dist/src/{base-executor-C6v5AHYW.mjs → base-executor-C5zOSF8G.mjs} +14 -10
  9. package/dist/src/base-executor-C5zOSF8G.mjs.map +1 -0
  10. package/dist/src/base-executor-CDMeDnfo.d.mts.map +1 -1
  11. package/dist/src/{base-executor-Dw-fhsUi.mjs → base-executor-DkPqPuGO.mjs} +14 -10
  12. package/dist/src/base-executor-DkPqPuGO.mjs.map +1 -0
  13. package/dist/src/{base-executor-BWwpclQE.js → base-executor-DqLkQwd_.js} +13 -9
  14. package/dist/src/{base-executor-DpQbYOg0.js → base-executor-tq_hb0zU.js} +13 -9
  15. package/dist/src/base-executor.untyped-DBccuF6E.d.ts +7 -0
  16. package/dist/src/base-executor.untyped-DBccuF6E.d.ts.map +1 -0
  17. package/dist/src/executors/build/executor.js +1 -1
  18. package/dist/src/executors/build/executor.mjs +1 -1
  19. package/dist/src/executors/build/untyped.d.ts +2 -2
  20. package/dist/src/executors/clean/executor.js +1 -1
  21. package/dist/src/executors/clean/executor.mjs +1 -1
  22. package/dist/src/executors/clean/untyped.d.mts +2 -2
  23. package/dist/src/executors/clean/untyped.d.ts +2 -2
  24. package/dist/src/executors/docs/executor.js +1 -1
  25. package/dist/src/executors/docs/executor.mjs +1 -1
  26. package/dist/src/executors/docs/untyped.d.mts +2 -2
  27. package/dist/src/executors/lint/executor.js +1 -1
  28. package/dist/src/executors/lint/executor.mjs +1 -1
  29. package/dist/src/executors/lint/untyped.d.mts +2 -2
  30. package/dist/src/executors/lint/untyped.d.ts +2 -2
  31. package/dist/src/executors/prepare/executor.js +1 -1
  32. package/dist/src/executors/prepare/executor.mjs +1 -1
  33. package/dist/src/executors/prepare/untyped.d.mts +2 -2
  34. package/dist/src/generators/sync/untyped.d.mts +2 -2
  35. package/dist/src/index.d.mts +1 -1
  36. package/dist/src/index.js +1 -1
  37. package/dist/src/index.mjs +1 -1
  38. package/package.json +3 -3
  39. package/dist/src/base-executor-C6v5AHYW.mjs.map +0 -1
  40. package/dist/src/base-executor-Dw-fhsUi.mjs.map +0 -1
  41. package/dist/src/base-executor.untyped-B24q82iI.d.ts +0 -7
  42. package/dist/src/base-executor.untyped-B24q82iI.d.ts.map +0 -1
  43. package/dist/src/base-executor.untyped-BgwzwrUY.d.mts +0 -7
  44. package/dist/src/base-executor.untyped-BgwzwrUY.d.mts.map +0 -1
@@ -84,7 +84,7 @@ let node_path = require("node:path");
84
84
  require("unplugin");
85
85
 
86
86
  //#region ../powerlines/package.json
87
- var version = "0.40.12";
87
+ var version = "0.40.13";
88
88
 
89
89
  //#endregion
90
90
  //#region ../powerlines/src/typescript/ts-morph.ts
@@ -2019,7 +2019,7 @@ var VirtualFileSystem = class VirtualFileSystem {
2019
2019
  let path = id;
2020
2020
  if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
2021
2021
  if (options.skipAlias !== true) path = this.resolveAlias(path);
2022
- if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
2022
+ if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !await this.isDirectory(path))) return path;
2023
2023
  const resolverCacheKey = (0, __stryke_hash.murmurhash)({
2024
2024
  path: this.#normalizeId(path),
2025
2025
  importer,
@@ -2034,9 +2034,11 @@ var VirtualFileSystem = class VirtualFileSystem {
2034
2034
  if (!result) {
2035
2035
  const paths = options.paths ?? [];
2036
2036
  if (importer && !paths.includes(importer)) paths.push(importer);
2037
- paths.push(this.#context.workspaceConfig.workspaceRoot);
2038
- paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2039
- paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2037
+ if (!importer) {
2038
+ paths.push(this.#context.workspaceConfig.workspaceRoot);
2039
+ paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2040
+ paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2041
+ }
2040
2042
  paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
2041
2043
  for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
2042
2044
  const { relativeKey, adapter } = this.#getStorage(combination);
@@ -2075,7 +2077,7 @@ var VirtualFileSystem = class VirtualFileSystem {
2075
2077
  let path = id;
2076
2078
  if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
2077
2079
  if (options.skipAlias !== true) path = this.resolveAlias(path);
2078
- if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
2080
+ if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !this.isDirectorySync(path))) return path;
2079
2081
  let result;
2080
2082
  if (!this.#context.config.skipCache) {
2081
2083
  result = this.resolverCache.get(this.#normalizeId(path));
@@ -2085,9 +2087,11 @@ var VirtualFileSystem = class VirtualFileSystem {
2085
2087
  if (!result) {
2086
2088
  const paths = options.paths ?? [];
2087
2089
  if (importer && !paths.includes(importer)) paths.push(importer);
2088
- paths.push(this.#context.workspaceConfig.workspaceRoot);
2089
- paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2090
- paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2090
+ if (!importer) {
2091
+ paths.push(this.#context.workspaceConfig.workspaceRoot);
2092
+ paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2093
+ paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2094
+ }
2091
2095
  paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
2092
2096
  for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
2093
2097
  const { relativeKey, adapter } = this.#getStorage(combination);
@@ -84,7 +84,7 @@ let node_path = require("node:path");
84
84
  require("unplugin");
85
85
 
86
86
  //#region ../powerlines/package.json
87
- var version = "0.40.11";
87
+ var version = "0.40.14";
88
88
 
89
89
  //#endregion
90
90
  //#region ../powerlines/src/typescript/ts-morph.ts
@@ -2019,7 +2019,7 @@ var VirtualFileSystem = class VirtualFileSystem {
2019
2019
  let path = id;
2020
2020
  if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
2021
2021
  if (options.skipAlias !== true) path = this.resolveAlias(path);
2022
- if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
2022
+ if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !await this.isDirectory(path))) return path;
2023
2023
  const resolverCacheKey = (0, __stryke_hash.murmurhash)({
2024
2024
  path: this.#normalizeId(path),
2025
2025
  importer,
@@ -2034,9 +2034,11 @@ var VirtualFileSystem = class VirtualFileSystem {
2034
2034
  if (!result) {
2035
2035
  const paths = options.paths ?? [];
2036
2036
  if (importer && !paths.includes(importer)) paths.push(importer);
2037
- paths.push(this.#context.workspaceConfig.workspaceRoot);
2038
- paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2039
- paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2037
+ if (!importer) {
2038
+ paths.push(this.#context.workspaceConfig.workspaceRoot);
2039
+ paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2040
+ paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2041
+ }
2040
2042
  paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
2041
2043
  for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
2042
2044
  const { relativeKey, adapter } = this.#getStorage(combination);
@@ -2075,7 +2077,7 @@ var VirtualFileSystem = class VirtualFileSystem {
2075
2077
  let path = id;
2076
2078
  if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
2077
2079
  if (options.skipAlias !== true) path = this.resolveAlias(path);
2078
- if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
2080
+ if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !this.isDirectorySync(path))) return path;
2079
2081
  let result;
2080
2082
  if (!this.#context.config.skipCache) {
2081
2083
  result = this.resolverCache.get(this.#normalizeId(path));
@@ -2085,9 +2087,11 @@ var VirtualFileSystem = class VirtualFileSystem {
2085
2087
  if (!result) {
2086
2088
  const paths = options.paths ?? [];
2087
2089
  if (importer && !paths.includes(importer)) paths.push(importer);
2088
- paths.push(this.#context.workspaceConfig.workspaceRoot);
2089
- paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2090
- paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2090
+ if (!importer) {
2091
+ paths.push(this.#context.workspaceConfig.workspaceRoot);
2092
+ paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
2093
+ paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
2094
+ }
2091
2095
  paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
2092
2096
  for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
2093
2097
  const { relativeKey, adapter } = this.#getStorage(combination);
@@ -0,0 +1,7 @@
1
+ import * as untyped1 from "untyped";
2
+
3
+ //#region src/base/base-executor.untyped.d.ts
4
+ declare const _default: untyped1.SchemaDefinition;
5
+ //#endregion
6
+ export { _default as t };
7
+ //# sourceMappingURL=base-executor.untyped-DBccuF6E.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-executor.untyped-DBccuF6E.d.ts","names":[],"sources":["../../src/base/base-executor.untyped.ts"],"sourcesContent":[],"mappings":""}
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  const require_config = require('../../config-CGQhS8tm.js');
3
- const require_base_executor = require('../../base-executor-BWwpclQE.js');
3
+ const require_base_executor = require('../../base-executor-tq_hb0zU.js');
4
4
  let defu = require("defu");
5
5
  defu = require_config.__toESM(defu);
6
6
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-Dw-fhsUi.mjs";
1
+ import { t as withExecutor } from "../../base-executor-C5zOSF8G.mjs";
2
2
  import "../../config-LoR-NIJg.mjs";
3
3
  import defu$1 from "defu";
4
4
 
@@ -1,6 +1,6 @@
1
- import * as untyped0 from "untyped";
1
+ import * as untyped2 from "untyped";
2
2
 
3
3
  //#region src/executors/build/untyped.d.ts
4
- declare const _default: untyped0.SchemaDefinition;
4
+ declare const _default: untyped2.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('../../config-CGQhS8tm.js');
3
- const require_base_executor = require('../../base-executor-BWwpclQE.js');
3
+ const require_base_executor = require('../../base-executor-tq_hb0zU.js');
4
4
 
5
5
  //#region src/executors/clean/executor.ts
6
6
  async function executorFn(context, api) {
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-Dw-fhsUi.mjs";
1
+ import { t as withExecutor } from "../../base-executor-C5zOSF8G.mjs";
2
2
  import "../../config-LoR-NIJg.mjs";
3
3
 
4
4
  //#region src/executors/clean/executor.ts
@@ -1,7 +1,7 @@
1
- import * as untyped5 from "untyped";
1
+ import * as untyped1 from "untyped";
2
2
 
3
3
  //#region src/executors/clean/untyped.d.ts
4
- declare const _default: untyped5.SchemaDefinition;
4
+ declare const _default: untyped1.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped0 from "untyped";
1
+ import * as untyped4 from "untyped";
2
2
 
3
3
  //#region src/executors/clean/untyped.d.ts
4
- declare const _default: untyped0.SchemaDefinition;
4
+ declare const _default: untyped4.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('../../config-CGQhS8tm.js');
3
- const require_base_executor = require('../../base-executor-BWwpclQE.js');
3
+ const require_base_executor = require('../../base-executor-tq_hb0zU.js');
4
4
 
5
5
  //#region src/executors/docs/executor.ts
6
6
  async function executorFn(context, api) {
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-Dw-fhsUi.mjs";
1
+ import { t as withExecutor } from "../../base-executor-C5zOSF8G.mjs";
2
2
  import "../../config-LoR-NIJg.mjs";
3
3
 
4
4
  //#region src/executors/docs/executor.ts
@@ -1,7 +1,7 @@
1
- import * as untyped0 from "untyped";
1
+ import * as untyped2 from "untyped";
2
2
 
3
3
  //#region src/executors/docs/untyped.d.ts
4
- declare const _default: untyped0.SchemaDefinition;
4
+ declare const _default: untyped2.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('../../config-CGQhS8tm.js');
3
- const require_base_executor = require('../../base-executor-BWwpclQE.js');
3
+ const require_base_executor = require('../../base-executor-tq_hb0zU.js');
4
4
 
5
5
  //#region src/executors/lint/executor.ts
6
6
  async function executorFn(context, api) {
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-Dw-fhsUi.mjs";
1
+ import { t as withExecutor } from "../../base-executor-C5zOSF8G.mjs";
2
2
  import "../../config-LoR-NIJg.mjs";
3
3
 
4
4
  //#region src/executors/lint/executor.ts
@@ -1,7 +1,7 @@
1
- import * as untyped1 from "untyped";
1
+ import * as untyped3 from "untyped";
2
2
 
3
3
  //#region src/executors/lint/untyped.d.ts
4
- declare const _default: untyped1.SchemaDefinition;
4
+ declare const _default: untyped3.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped2 from "untyped";
1
+ import * as untyped0 from "untyped";
2
2
 
3
3
  //#region src/executors/lint/untyped.d.ts
4
- declare const _default: untyped2.SchemaDefinition;
4
+ declare const _default: untyped0.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  const require_config = require('../../config-CGQhS8tm.js');
3
- const require_base_executor = require('../../base-executor-BWwpclQE.js');
3
+ const require_base_executor = require('../../base-executor-tq_hb0zU.js');
4
4
  let defu = require("defu");
5
5
  defu = require_config.__toESM(defu);
6
6
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-Dw-fhsUi.mjs";
1
+ import { t as withExecutor } from "../../base-executor-C5zOSF8G.mjs";
2
2
  import "../../config-LoR-NIJg.mjs";
3
3
  import defu$1 from "defu";
4
4
 
@@ -1,7 +1,7 @@
1
- import * as untyped3 from "untyped";
1
+ import * as untyped4 from "untyped";
2
2
 
3
3
  //#region src/executors/prepare/untyped.d.ts
4
- declare const _default: untyped3.SchemaDefinition;
4
+ declare const _default: untyped4.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,7 +1,7 @@
1
- import * as untyped4 from "untyped";
1
+ import * as untyped5 from "untyped";
2
2
 
3
3
  //#region src/generators/sync/untyped.d.ts
4
- declare const _default: untyped4.SchemaDefinition;
4
+ declare const _default: untyped5.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,5 +1,5 @@
1
1
  import { n as withExecutor, t as PowerlinesExecutorContext } from "./base-executor-CDMeDnfo.mjs";
2
- import "./base-executor.untyped-BgwzwrUY.mjs";
2
+ import "./base-executor.untyped-imww7Gm9.mjs";
3
3
  import "./index-LhFpnU-f.mjs";
4
4
  import { t as CONFIG_INPUTS } from "./constants-ByputsG8.mjs";
5
5
  import { t as NxPluginOptions } from "./plugin-DIj3oU64.mjs";
package/dist/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  require('./config-CGQhS8tm.js');
2
- const require_base_executor = require('./base-executor-BWwpclQE.js');
2
+ const require_base_executor = require('./base-executor-tq_hb0zU.js');
3
3
  require('./base-executor.untyped-Cz1Zw_02.js');
4
4
  require('./base-B7jekb-W.js');
5
5
  const require_constants = require('./constants-CKuImMYn.js');
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "./base-executor-Dw-fhsUi.mjs";
1
+ import { t as withExecutor } from "./base-executor-C5zOSF8G.mjs";
2
2
  import "./config-LoR-NIJg.mjs";
3
3
  import "./base-executor.untyped-C1pQETnQ.mjs";
4
4
  import "./base-BRSa-clf.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.11.253",
3
+ "version": "0.11.255",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
@@ -196,7 +196,7 @@
196
196
  "eslint-flat-config-utils": "^2.1.4",
197
197
  "jsonc-eslint-parser": "^2.4.2",
198
198
  "nx": "22.5.2",
199
- "powerlines": "^0.40.12",
199
+ "powerlines": "^0.40.14",
200
200
  "untyped": "^1.5.2"
201
201
  },
202
202
  "peerDependencies": { "nx": ">=22.5.0", "powerlines": ">=0.39.2" },
@@ -207,5 +207,5 @@
207
207
  "publishConfig": { "access": "public" },
208
208
  "executors": "./executors.json",
209
209
  "generators": "./generators.json",
210
- "gitHead": "ad0d94ce83dcae97d5d345318f5910942ce54e6c"
210
+ "gitHead": "b46efba9e26b5ffdad2143baf6079762363d8a27"
211
211
  }