@golemio/playgrounds 1.0.3-dev.486002309 → 1.0.3

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 (110) hide show
  1. package/db/example/.config.json +3 -0
  2. package/db/example/00_truncate_tables.sql +6 -0
  3. package/db/example/01_playgrounds.sql +30 -0
  4. package/db/migrations/postgresql/.config.json +3 -0
  5. package/db/migrations/postgresql/20220223135414-playgrounds-to-postgres.js +53 -0
  6. package/db/migrations/postgresql/package.json +3 -0
  7. package/db/migrations/postgresql/sqls/20220223135414-playgrounds-to-postgres-down.sql +3 -0
  8. package/db/migrations/postgresql/sqls/20220223135414-playgrounds-to-postgres-up.sql +52 -0
  9. package/db/migrations/postgresql/sqls/package.json +3 -0
  10. package/dist/index.d.ts +0 -1
  11. package/dist/index.js +1 -2
  12. package/dist/index.js.map +1 -1
  13. package/dist/integration-engine/PlaygroundsDataSource.d.ts +5 -0
  14. package/dist/integration-engine/PlaygroundsDataSource.js +21 -0
  15. package/dist/integration-engine/PlaygroundsDataSource.js.map +1 -0
  16. package/dist/integration-engine/PlaygroundsTransformation.d.ts +6 -1
  17. package/dist/integration-engine/PlaygroundsTransformation.js +35 -27
  18. package/dist/integration-engine/PlaygroundsTransformation.js.map +1 -1
  19. package/dist/integration-engine/PlaygroundsWorker.d.ts +7 -1
  20. package/dist/integration-engine/PlaygroundsWorker.js +114 -81
  21. package/dist/integration-engine/PlaygroundsWorker.js.map +1 -1
  22. package/dist/integration-engine/helpers/AddressHelper.d.ts +11 -0
  23. package/dist/integration-engine/helpers/AddressHelper.js +68 -0
  24. package/dist/integration-engine/helpers/AddressHelper.js.map +1 -0
  25. package/dist/integration-engine/models/CityDistrictsModel.d.ts +4 -0
  26. package/dist/integration-engine/models/CityDistrictsModel.js +22 -0
  27. package/dist/integration-engine/models/CityDistrictsModel.js.map +1 -0
  28. package/dist/integration-engine/models/PlaygroundPropertyModel.d.ts +4 -0
  29. package/dist/integration-engine/models/PlaygroundPropertyModel.js +21 -0
  30. package/dist/integration-engine/models/PlaygroundPropertyModel.js.map +1 -0
  31. package/dist/integration-engine/models/PlaygroundsModel.d.ts +12 -0
  32. package/dist/integration-engine/models/PlaygroundsModel.js +47 -0
  33. package/dist/integration-engine/models/PlaygroundsModel.js.map +1 -0
  34. package/dist/integration-engine/models/PropertyModel.d.ts +4 -0
  35. package/dist/integration-engine/models/PropertyModel.js +21 -0
  36. package/dist/integration-engine/models/PropertyModel.js.map +1 -0
  37. package/dist/integration-engine/queueDefinitions.js +3 -3
  38. package/dist/integration-engine/queueDefinitions.js.map +1 -1
  39. package/dist/output-gateway/PlaygroundsRouter.d.ts +2 -1
  40. package/dist/output-gateway/PlaygroundsRouter.js +6 -4
  41. package/dist/output-gateway/PlaygroundsRouter.js.map +1 -1
  42. package/dist/output-gateway/index.d.ts +1 -1
  43. package/dist/output-gateway/index.js +1 -1
  44. package/dist/output-gateway/index.js.map +1 -1
  45. package/dist/output-gateway/models/FilterHelper.d.ts +8 -0
  46. package/dist/output-gateway/models/FilterHelper.js +49 -0
  47. package/dist/output-gateway/models/FilterHelper.js.map +1 -0
  48. package/dist/output-gateway/models/PlaygroundPropertyModel.d.ts +6 -0
  49. package/dist/output-gateway/models/PlaygroundPropertyModel.js +22 -0
  50. package/dist/output-gateway/models/PlaygroundPropertyModel.js.map +1 -0
  51. package/dist/output-gateway/models/PlaygroundsModel.d.ts +15 -0
  52. package/dist/output-gateway/models/PlaygroundsModel.js +87 -0
  53. package/dist/output-gateway/models/PlaygroundsModel.js.map +1 -0
  54. package/dist/output-gateway/models/PropertyModel.d.ts +6 -0
  55. package/dist/output-gateway/models/PropertyModel.js +22 -0
  56. package/dist/output-gateway/models/PropertyModel.js.map +1 -0
  57. package/dist/schema-definitions/PlaygroundSchemaTables.d.ts +5 -0
  58. package/dist/schema-definitions/PlaygroundSchemaTables.js +10 -0
  59. package/dist/schema-definitions/PlaygroundSchemaTables.js.map +1 -0
  60. package/dist/schema-definitions/PlaygroundsInfo.d.ts +12 -0
  61. package/dist/schema-definitions/PlaygroundsInfo.js +41 -0
  62. package/dist/schema-definitions/PlaygroundsInfo.js.map +1 -0
  63. package/dist/schema-definitions/json-schema/OutputSchemaProvider.d.ts +9 -0
  64. package/dist/schema-definitions/json-schema/OutputSchemaProvider.js +58 -0
  65. package/dist/schema-definitions/json-schema/OutputSchemaProvider.js.map +1 -0
  66. package/dist/schema-definitions/json-schema/SourceSchemaProvider.d.ts +5 -0
  67. package/dist/schema-definitions/json-schema/SourceSchemaProvider.js +48 -0
  68. package/dist/schema-definitions/json-schema/SourceSchemaProvider.js.map +1 -0
  69. package/dist/schema-definitions/json-schema/interfaces/ISourcePlayground.d.ts +14 -0
  70. package/dist/schema-definitions/json-schema/interfaces/ISourcePlayground.js +3 -0
  71. package/dist/schema-definitions/json-schema/interfaces/ISourcePlayground.js.map +1 -0
  72. package/dist/schema-definitions/json-schema/interfaces/ISourcePlaygroundCategory.d.ts +4 -0
  73. package/dist/schema-definitions/json-schema/interfaces/ISourcePlaygroundCategory.js +3 -0
  74. package/dist/schema-definitions/json-schema/interfaces/ISourcePlaygroundCategory.js.map +1 -0
  75. package/dist/schema-definitions/json-schema/interfaces/ISourceResponse.d.ts +8 -0
  76. package/dist/schema-definitions/json-schema/interfaces/ISourceResponse.js +3 -0
  77. package/dist/schema-definitions/json-schema/interfaces/ISourceResponse.js.map +1 -0
  78. package/dist/schema-definitions/output/IOutputPlaygroundProperties.d.ts +24 -0
  79. package/dist/schema-definitions/output/IOutputPlaygroundProperties.js +3 -0
  80. package/dist/schema-definitions/output/IOutputPlaygroundProperties.js.map +1 -0
  81. package/dist/schema-definitions/output/OutputPlayground.d.ts +9 -0
  82. package/dist/schema-definitions/output/OutputPlayground.js +38 -0
  83. package/dist/schema-definitions/output/OutputPlayground.js.map +1 -0
  84. package/dist/schema-definitions/sequelize-models/Playground.d.ts +24 -0
  85. package/dist/schema-definitions/sequelize-models/Playground.js +30 -0
  86. package/dist/schema-definitions/sequelize-models/Playground.js.map +1 -0
  87. package/dist/schema-definitions/sequelize-models/PlaygroundProperty.d.ts +7 -0
  88. package/dist/schema-definitions/sequelize-models/PlaygroundProperty.js +27 -0
  89. package/dist/schema-definitions/sequelize-models/PlaygroundProperty.js.map +1 -0
  90. package/dist/schema-definitions/sequelize-models/Property.d.ts +7 -0
  91. package/dist/schema-definitions/sequelize-models/Property.js +12 -0
  92. package/dist/schema-definitions/sequelize-models/Property.js.map +1 -0
  93. package/dist/schema-definitions/sequelize-models/interfaces/IPlayground.d.ts +20 -0
  94. package/dist/schema-definitions/sequelize-models/interfaces/IPlayground.js +3 -0
  95. package/dist/schema-definitions/sequelize-models/interfaces/IPlayground.js.map +1 -0
  96. package/dist/schema-definitions/sequelize-models/interfaces/IPlaygroundProperty.d.ts +4 -0
  97. package/dist/schema-definitions/sequelize-models/interfaces/IPlaygroundProperty.js +3 -0
  98. package/dist/schema-definitions/sequelize-models/interfaces/IPlaygroundProperty.js.map +1 -0
  99. package/dist/schema-definitions/sequelize-models/interfaces/IProperty.d.ts +4 -0
  100. package/dist/schema-definitions/sequelize-models/interfaces/IProperty.js +3 -0
  101. package/dist/schema-definitions/sequelize-models/interfaces/IProperty.js.map +1 -0
  102. package/package.json +65 -63
  103. package/db/example/mongo_data/dataplatform/playgrounds.bson +0 -0
  104. package/db/example/mongo_data/dataplatform/playgrounds.metadata.json +0 -1
  105. package/dist/output-gateway/PlaygroundsModel.d.ts +0 -7
  106. package/dist/output-gateway/PlaygroundsModel.js +0 -17
  107. package/dist/output-gateway/PlaygroundsModel.js.map +0 -1
  108. package/dist/schema-definitions/index.d.ts +0 -12
  109. package/dist/schema-definitions/index.js +0 -66
  110. package/dist/schema-definitions/index.js.map +0 -1
package/package.json CHANGED
@@ -1,65 +1,67 @@
1
1
  {
2
- "name": "@golemio/playgrounds",
3
- "version": "1.0.3-dev.486002309",
4
- "description": "Golemio Playgrounds Module",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "scripts": {
8
- "build": "rimraf ./dist && ttsc -p ./tsconfig.build.json",
9
- "build-minimal": "run-s 'build --sourceMap false --declaration false'",
10
- "build-watch": "run-s 'build --watch --preserveWatchOutput'",
11
- "pretest": "golemio-import-test-data",
12
- "test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config 'test/**/*.test.ts'",
13
- "test-debug": "run-s 'test --inspect-brk=9230'",
14
- "code-coverage": "nyc run-s 'test -r source-map-support/register'",
15
- "generate-docs": "typedoc --out docs/typedoc src",
16
- "lint": "eslint '{src,test}/**/*.ts'"
17
- },
18
- "keywords": [
19
- "golemio"
20
- ],
21
- "author": "Operator ICT, a.s.",
22
- "license": "MIT",
23
- "repository": {
24
- "type": "git",
25
- "url": "https://gitlab.com/operator-ict/golemio/code/modules/playgrounds"
26
- },
27
- "devDependencies": {
28
- "@commitlint/cli": "^11.0.0",
29
- "@commitlint/config-conventional": "^11.0.0",
30
- "@golemio/core": "1.1.6",
31
- "@golemio/eslint-config": "^1.0.2",
32
- "@types/chai": "4.2.3",
33
- "@types/chai-as-promised": "7.1.2",
34
- "@types/mocha": "^8.2.0",
35
- "@types/node": "^14.14.20",
36
- "@types/sinon": "^9.0.10",
37
- "@types/supertest": "^2.0.10",
38
- "@zerollup/ts-transform-paths": "^1.7.18",
39
- "chai": "4.2.0",
40
- "chai-as-promised": "7.1.1",
41
- "cross-env": "^7.0.3",
42
- "dotenv": "^8.2.0",
43
- "eslint": "^7.17.0",
44
- "husky": "^4.3.7",
45
- "mocha": "^8.2.1",
46
- "npm-run-all": "^4.1.5",
47
- "nyc": "^15.1.0",
48
- "prettier": "^2.2.1",
49
- "pretty-quick": "^3.1.0",
50
- "rimraf": "^3.0.2",
51
- "sinon": "^9.2.3",
52
- "source-map-support": "0.5.19",
53
- "supertest": "^6.0.1",
54
- "ts-node": "^9.1.1",
55
- "ttypescript": "^1.5.12",
56
- "typedoc": "^0.20.28",
57
- "typescript": "^4.1.3"
58
- },
59
- "peerDependencies": {
60
- "@golemio/core": "^1.0.0"
61
- },
62
- "dependencies": {
63
- "@golemio/city-districts": "1.0.2"
64
- }
2
+ "name": "@golemio/playgrounds",
3
+ "version": "1.0.3",
4
+ "description": "Golemio Playgrounds Module",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "rimraf ./dist && ttsc -p ./tsconfig.build.json",
9
+ "build-minimal": "run-s 'build --sourceMap false --declaration false'",
10
+ "build-watch": "run-s 'build --watch --preserveWatchOutput'",
11
+ "pretest": "golemio import-db-data --postgres",
12
+ "test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config 'test/**/*.test.ts'",
13
+ "test-debug": "run-s 'test --inspect-brk=9230'",
14
+ "code-coverage": "nyc run-s 'test -r source-map-support/register'",
15
+ "generate-docs": "typedoc --out docs/typedoc src",
16
+ "lint": "eslint \"{src,test}/**/*.ts\""
17
+ },
18
+ "keywords": [
19
+ "golemio"
20
+ ],
21
+ "author": "Operator ICT, a.s.",
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://gitlab.com/operator-ict/golemio/code/modules/playgrounds"
26
+ },
27
+ "devDependencies": {
28
+ "@commitlint/cli": "^11.0.0",
29
+ "@commitlint/config-conventional": "^11.0.0",
30
+ "@golemio/cli": "1.2.1",
31
+ "@golemio/core": "1.2.3",
32
+ "@golemio/eslint-config": "^1.1.0",
33
+ "@types/chai": "4.2.3",
34
+ "@types/chai-as-promised": "7.1.2",
35
+ "@types/geojson": "^7946.0.8",
36
+ "@types/mocha": "^9.1.0",
37
+ "@types/node": "^14.14.20",
38
+ "@types/sinon": "^9.0.10",
39
+ "@types/supertest": "^2.0.10",
40
+ "@zerollup/ts-transform-paths": "^1.7.18",
41
+ "chai": "4.2.0",
42
+ "chai-as-promised": "7.1.1",
43
+ "cross-env": "^7.0.3",
44
+ "dotenv": "^8.2.0",
45
+ "eslint": "^8.1.1",
46
+ "husky": "^4.3.7",
47
+ "mocha": "^9.1.2",
48
+ "npm-run-all": "^4.1.5",
49
+ "nyc": "^15.1.0",
50
+ "prettier": "^2.5.1",
51
+ "pretty-quick": "^3.1.0",
52
+ "rimraf": "^3.0.2",
53
+ "sinon": "^9.2.3",
54
+ "source-map-support": "0.5.19",
55
+ "supertest": "^6.0.1",
56
+ "ts-node": "^9.1.1",
57
+ "ttypescript": "^1.5.13",
58
+ "typedoc": "^0.22.13",
59
+ "typescript": "4.4.4"
60
+ },
61
+ "peerDependencies": {
62
+ "@golemio/core": "^1.0.0"
63
+ },
64
+ "dependencies": {
65
+ "@golemio/city-districts": "1.0.2"
66
+ }
65
67
  }
@@ -1 +0,0 @@
1
- {"options":{},"indexes":[{"v":2,"key":{"_id":1},"name":"_id_","ns":"dataplatform.playgrounds"},{"v":2,"key":{"properties.id":1},"name":"properties.id_1","ns":"dataplatform.playgrounds"},{"v":2,"key":{"geometry":"2dsphere"},"name":"geometry_2dsphere","ns":"dataplatform.playgrounds","2dsphereIndexVersion":3}],"uuid":"2760730cd2a6492aafaa712054d1a883"}
@@ -1,7 +0,0 @@
1
- import { GeoJsonModel } from "@golemio/core/dist/output-gateway/models";
2
- export declare class PlaygroundsModel extends GeoJsonModel {
3
- /**
4
- * Instantiates the model according to the given schema.
5
- */
6
- constructor();
7
- }
@@ -1,17 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PlaygroundsModel = void 0;
4
- const models_1 = require("@golemio/core/dist/output-gateway/models");
5
- const index_1 = require("../schema-definitions/index");
6
- class PlaygroundsModel extends models_1.GeoJsonModel {
7
- /**
8
- * Instantiates the model according to the given schema.
9
- */
10
- constructor() {
11
- super(index_1.Playgrounds.name, index_1.Playgrounds.outputMongooseSchemaObject, index_1.Playgrounds.mongoCollectionName);
12
- // Set model-specific indexes
13
- this.schema.index({ "properties.name": "text" });
14
- }
15
- }
16
- exports.PlaygroundsModel = PlaygroundsModel;
17
- //# sourceMappingURL=PlaygroundsModel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PlaygroundsModel.js","sourceRoot":"","sources":["../../src/output-gateway/PlaygroundsModel.ts"],"names":[],"mappings":";;;AAAA,qEAAwE;AACxE,uDAAyC;AAEzC,MAAa,gBAAiB,SAAQ,qBAAY;IAC9C;;OAEG;IACH;QACI,KAAK,CAAC,mBAAW,CAAC,IAAI,EAAE,mBAAW,CAAC,0BAA0B,EAAE,mBAAW,CAAC,mBAAmB,CAAC,CAAC;QAEjG,6BAA6B;QAC7B,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,iBAAiB,EAAE,MAAM,EAAE,CAAC,CAAC;IACrD,CAAC;CACJ;AAVD,4CAUC"}
@@ -1,12 +0,0 @@
1
- /// <reference types="mongoose" />
2
- declare const forExport: {
3
- datasourceMongooseSchemaObject: {
4
- [path: string]: any | typeof import("mongoose").SchemaType | import("mongoose").Schema<any, any, any, any> | import("mongoose").Schema<any, any, any, any>[] | readonly import("mongoose").Schema<any, any, any, any>[] | Function[] | import("mongoose").SchemaTypeOptions<any> | import("mongoose").SchemaTypeOptions<any>[] | readonly import("mongoose").SchemaTypeOptions<any>[] | any[] | readonly any[];
5
- };
6
- mongoCollectionName: string;
7
- name: string;
8
- outputMongooseSchemaObject: {
9
- [path: string]: any | typeof import("mongoose").SchemaType | import("mongoose").Schema<any, any, any, any> | import("mongoose").Schema<any, any, any, any>[] | readonly import("mongoose").Schema<any, any, any, any>[] | Function[] | import("mongoose").SchemaTypeOptions<any> | import("mongoose").SchemaTypeOptions<any>[] | readonly import("mongoose").SchemaTypeOptions<any>[] | any[] | readonly any[];
10
- };
11
- };
12
- export { forExport as Playgrounds };
@@ -1,66 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Playgrounds = void 0;
4
- // MSO = Mongoose SchemaObject
5
- const datasourceMSO = {
6
- category: [
7
- {
8
- id: { type: Number },
9
- nazev: { type: String },
10
- },
11
- ],
12
- content: { type: String, required: true },
13
- geometry: {
14
- coordinates: { type: Array, required: true },
15
- type: { type: String, required: true },
16
- },
17
- image: {
18
- originalUrl: { type: String },
19
- },
20
- itemId: { type: Number, required: true },
21
- perex: { type: String },
22
- title: { type: String, required: true },
23
- url: { type: String, required: true },
24
- };
25
- const outputMSO = {
26
- geometry: {
27
- coordinates: { type: Array, required: true },
28
- type: { type: String, required: true },
29
- },
30
- properties: {
31
- address: {
32
- address_country: { type: String },
33
- address_formatted: { type: String },
34
- address_locality: { type: String },
35
- address_region: { type: String },
36
- postal_code: { type: String },
37
- street_address: { type: String },
38
- },
39
- content: { type: String, required: true },
40
- district: { type: String },
41
- id: { type: Number, required: true },
42
- image: {
43
- url: { type: String },
44
- },
45
- name: { type: String, required: true },
46
- perex: { type: String },
47
- properties: [
48
- {
49
- _id: false,
50
- description: { type: String },
51
- id: { type: Number, required: true },
52
- },
53
- ],
54
- updated_at: { type: Number, required: true },
55
- url: { type: String, required: true },
56
- },
57
- type: { type: String, required: true },
58
- };
59
- const forExport = {
60
- datasourceMongooseSchemaObject: datasourceMSO,
61
- mongoCollectionName: "playgrounds",
62
- name: "Playgrounds",
63
- outputMongooseSchemaObject: outputMSO,
64
- };
65
- exports.Playgrounds = forExport;
66
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schema-definitions/index.ts"],"names":[],"mappings":";;;AAEA,8BAA8B;AAE9B,MAAM,aAAa,GAAqB;IACpC,QAAQ,EAAE;QACN;YACI,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;YACpB,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;SAC1B;KACJ;IACD,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;IACzC,QAAQ,EAAE;QACN,WAAW,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE;QAC5C,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;KACzC;IACD,KAAK,EAAE;QACH,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;KAChC;IACD,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;IACxC,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;IACvB,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;IACvC,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;CACxC,CAAC;AAEF,MAAM,SAAS,GAAqB;IAChC,QAAQ,EAAE;QACN,WAAW,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE;QAC5C,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;KACzC;IACD,UAAU,EAAE;QACR,OAAO,EAAE;YACL,eAAe,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;YACjC,iBAAiB,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;YACnC,gBAAgB,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;YAClC,cAAc,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;YAChC,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;YAC7B,cAAc,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;SACnC;QACD,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;QACzC,QAAQ,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;QAC1B,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;QACpC,KAAK,EAAE;YACH,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;SACxB;QACD,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;QACtC,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;QACvB,UAAU,EAAE;YACR;gBACI,GAAG,EAAE,KAAK;gBACV,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;gBAC7B,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;aACvC;SACJ;QACD,UAAU,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;QAC5C,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;KACxC;IACD,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;CACzC,CAAC;AAEF,MAAM,SAAS,GAAG;IACd,8BAA8B,EAAE,aAAa;IAC7C,mBAAmB,EAAE,aAAa;IAClC,IAAI,EAAE,aAAa;IACnB,0BAA0B,EAAE,SAAS;CACxC,CAAC;AAEoB,gCAAW"}