@graphitation/supermassive 0.2.0 → 0.4.2

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 (66) hide show
  1. package/.eslintcache +1 -1
  2. package/CHANGELOG.json +155 -0
  3. package/CHANGELOG.md +34 -2
  4. package/NOTICE +27 -0
  5. package/README.md +179 -5
  6. package/lib/ast/addTypesToRequestDocument.mjs +3 -1
  7. package/lib/benchmarks/index.mjs +16 -14
  8. package/lib/benchmarks/nice-benchmark.mjs +6 -3
  9. package/lib/benchmarks/swapi-schema/index.mjs +3 -2
  10. package/lib/benchmarks/swapi-schema/models.mjs +1 -0
  11. package/lib/benchmarks/swapi-schema/resolvers.mjs +23 -24
  12. package/lib/bin/supermassive.d.ts.map +1 -1
  13. package/lib/bin/supermassive.mjs +3 -1
  14. package/lib/collectFields.mjs +1 -0
  15. package/lib/executeWithSchema.d.ts.map +1 -1
  16. package/lib/executeWithSchema.js +8 -8
  17. package/lib/executeWithSchema.mjs +6 -4
  18. package/lib/executeWithoutSchema.mjs +15 -17
  19. package/lib/extractImplicitTypesRuntime.mjs +1 -0
  20. package/lib/extractImplicitTypesToTypescript.mjs +2 -1
  21. package/lib/index.d.ts +1 -1
  22. package/lib/index.d.ts.map +1 -1
  23. package/lib/index.js +0 -2
  24. package/lib/index.mjs +7 -8
  25. package/lib/jsutils/Path.mjs +1 -0
  26. package/lib/jsutils/devAssert.mjs +1 -0
  27. package/lib/jsutils/didYouMean.mjs +2 -1
  28. package/lib/jsutils/identityFunc.mjs +1 -0
  29. package/lib/jsutils/inspect.mjs +3 -2
  30. package/lib/jsutils/instanceOf.mjs +3 -2
  31. package/lib/jsutils/invariant.mjs +1 -0
  32. package/lib/jsutils/isAsyncIterable.mjs +1 -0
  33. package/lib/jsutils/isIterableObject.mjs +1 -0
  34. package/lib/jsutils/isObjectLike.mjs +1 -0
  35. package/lib/jsutils/isPromise.mjs +1 -0
  36. package/lib/jsutils/keyMap.mjs +1 -0
  37. package/lib/jsutils/keyValMap.mjs +1 -0
  38. package/lib/jsutils/mapValue.mjs +1 -0
  39. package/lib/jsutils/memoize3.mjs +1 -0
  40. package/lib/jsutils/naturalCompare.mjs +3 -2
  41. package/lib/jsutils/printPathArray.mjs +1 -0
  42. package/lib/jsutils/promiseForObject.mjs +1 -0
  43. package/lib/jsutils/promiseReduce.mjs +2 -1
  44. package/lib/jsutils/suggestionList.mjs +4 -3
  45. package/lib/jsutils/toObjMap.mjs +1 -0
  46. package/lib/transforms/annotateDocumentGraphQLTransform.mjs +3 -2
  47. package/lib/transforms/transformerTestUtils.mjs +14 -8
  48. package/lib/utilities/typeNameFromAST.mjs +1 -0
  49. package/lib/values.mjs +5 -4
  50. package/package.json +13 -3
  51. package/starwars.json +1 -0
  52. package/graphitation-supermassive-0.1.3-1.tgz +0 -0
  53. package/graphitation-supermassive-0.1.3-2.tgz +0 -0
  54. package/graphitation-supermassive-0.1.3.tgz +0 -0
  55. package/lib/bin/typeDefsToImplicitResolvers.d.ts +0 -3
  56. package/lib/bin/typeDefsToImplicitResolvers.d.ts.map +0 -1
  57. package/lib/bin/typeDefsToImplicitResolvers.js +0 -82
  58. package/lib/bin/typeDefsToImplicitResolvers.mjs +0 -59
  59. package/lib/execute.d.ts +0 -128
  60. package/lib/execute.d.ts.map +0 -1
  61. package/lib/execute.js +0 -376
  62. package/lib/execute.mjs +0 -365
  63. package/lib/extractImplicitTypes.d.ts +0 -6
  64. package/lib/extractImplicitTypes.d.ts.map +0 -1
  65. package/lib/extractImplicitTypes.js +0 -246
  66. package/lib/extractImplicitTypes.mjs +0 -233
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@graphitation/supermassive",
3
3
  "license": "MIT",
4
- "version": "0.2.0",
5
- "main": "./lib/index",
4
+ "version": "0.4.2",
5
+ "bin": {
6
+ "supermassive": "./bin/supermassive.js"
7
+ },
8
+ "main": "./lib/index.js",
6
9
  "scripts": {
7
10
  "build": "monorepo-scripts build",
8
11
  "lint": "monorepo-scripts lint",
@@ -32,5 +35,12 @@
32
35
  "graphql": "^15.6.1",
33
36
  "typescript": "4.4.3"
34
37
  },
35
- "types": "./lib/index.d.ts"
38
+ "types": "./lib/index.d.ts",
39
+ "module": "./lib/index.mjs",
40
+ "exports": {
41
+ ".": {
42
+ "import": "./lib/index.mjs",
43
+ "require": "./lib/index.js"
44
+ }
45
+ }
36
46
  }
package/starwars.json ADDED
@@ -0,0 +1 @@
1
+ {}
Binary file
@@ -1,3 +0,0 @@
1
- import { Command } from "commander";
2
- export declare function typeDefsToImplicitResolvers(): Command;
3
- //# sourceMappingURL=typeDefsToImplicitResolvers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeDefsToImplicitResolvers.d.ts","sourceRoot":"","sources":["../../src/bin/typeDefsToImplicitResolvers.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAIpC,wBAAgB,2BAA2B,IAAI,OAAO,CAOrD"}
@@ -1,82 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getProtoOf = Object.getPrototypeOf;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
- var __markAsModule = (target) => __defProp(target, "__esModule", {value: true});
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, {get: all[name], enumerable: true});
11
- };
12
- var __reExport = (target, module2, desc) => {
13
- if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
- for (let key of __getOwnPropNames(module2))
15
- if (!__hasOwnProp.call(target, key) && key !== "default")
16
- __defProp(target, key, {get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable});
17
- }
18
- return target;
19
- };
20
- var __toModule = (module2) => {
21
- return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? {get: () => module2.default, enumerable: true} : {value: module2, enumerable: true})), module2);
22
- };
23
- var __async = (__this, __arguments, generator) => {
24
- return new Promise((resolve, reject) => {
25
- var fulfilled = (value) => {
26
- try {
27
- step(generator.next(value));
28
- } catch (e) {
29
- reject(e);
30
- }
31
- };
32
- var rejected = (value) => {
33
- try {
34
- step(generator.throw(value));
35
- } catch (e) {
36
- reject(e);
37
- }
38
- };
39
- var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
40
- step((generator = generator.apply(__this, __arguments)).next());
41
- });
42
- };
43
- __markAsModule(exports);
44
- __export(exports, {
45
- typeDefsToImplicitResolvers: () => typeDefsToImplicitResolvers
46
- });
47
- var import_path = __toModule(require("path"));
48
- var import_promises = __toModule(require("fs/promises"));
49
- var import_typescript = __toModule(require("typescript"));
50
- var import_commander = __toModule(require("commander"));
51
- var import_extractImplicitTypes = __toModule(require("../extractImplicitTypes"));
52
- var import_graphql = __toModule(require("graphql"));
53
- function typeDefsToImplicitResolvers() {
54
- const program = new import_commander.Command();
55
- return program.argument("<files...>", "graphql typedef files to convert").action((files) => __async(this, null, function* () {
56
- yield typeDefsToImplicitResolversImpl(files);
57
- }));
58
- }
59
- function typeDefsToImplicitResolversImpl(files) {
60
- return __async(this, null, function* () {
61
- for (const file of files) {
62
- let fullPath;
63
- if (import_path.default.isAbsolute(file)) {
64
- fullPath = file;
65
- } else {
66
- fullPath = import_path.default.join(process.cwd(), file);
67
- }
68
- const stat = yield import_promises.default.stat(fullPath);
69
- if (!stat.isFile) {
70
- throw new Error(`Invalid file ${file}`);
71
- }
72
- const content = yield import_promises.default.readFile(fullPath, {encoding: "utf-8"});
73
- const document = (0, import_graphql.parse)(content);
74
- const tsContents = (0, import_extractImplicitTypes.extractImplicitTypesToTypescript)(document);
75
- const tsDir = import_path.default.join(import_path.default.dirname(fullPath), "__generated__");
76
- yield import_promises.default.mkdir(tsDir, {recursive: true});
77
- const tsFileName = import_path.default.join(tsDir, import_path.default.basename(fullPath, import_path.default.extname(fullPath)) + ".ts");
78
- const printer = import_typescript.default.createPrinter();
79
- yield import_promises.default.writeFile(tsFileName, printer.printNode(import_typescript.default.EmitHint.SourceFile, tsContents, tsContents), {encoding: "utf-8"});
80
- }
81
- });
82
- }
@@ -1,59 +0,0 @@
1
- var __async = (__this, __arguments, generator) => {
2
- return new Promise((resolve, reject) => {
3
- var fulfilled = (value) => {
4
- try {
5
- step(generator.next(value));
6
- } catch (e) {
7
- reject(e);
8
- }
9
- };
10
- var rejected = (value) => {
11
- try {
12
- step(generator.throw(value));
13
- } catch (e) {
14
- reject(e);
15
- }
16
- };
17
- var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
18
- step((generator = generator.apply(__this, __arguments)).next());
19
- });
20
- };
21
- import path from "path";
22
- import fs from "fs/promises";
23
- import ts from "typescript";
24
- import {Command} from "commander";
25
- import {extractImplicitTypesToTypescript} from "../extractImplicitTypes";
26
- import {parse} from "graphql";
27
- function typeDefsToImplicitResolvers() {
28
- const program = new Command();
29
- return program.argument("<files...>", "graphql typedef files to convert").action((files) => __async(this, null, function* () {
30
- yield typeDefsToImplicitResolversImpl(files);
31
- }));
32
- }
33
- function typeDefsToImplicitResolversImpl(files) {
34
- return __async(this, null, function* () {
35
- for (const file of files) {
36
- let fullPath;
37
- if (path.isAbsolute(file)) {
38
- fullPath = file;
39
- } else {
40
- fullPath = path.join(process.cwd(), file);
41
- }
42
- const stat = yield fs.stat(fullPath);
43
- if (!stat.isFile) {
44
- throw new Error(`Invalid file ${file}`);
45
- }
46
- const content = yield fs.readFile(fullPath, {encoding: "utf-8"});
47
- const document = parse(content);
48
- const tsContents = extractImplicitTypesToTypescript(document);
49
- const tsDir = path.join(path.dirname(fullPath), "__generated__");
50
- yield fs.mkdir(tsDir, {recursive: true});
51
- const tsFileName = path.join(tsDir, path.basename(fullPath, path.extname(fullPath)) + ".ts");
52
- const printer = ts.createPrinter();
53
- yield fs.writeFile(tsFileName, printer.printNode(ts.EmitHint.SourceFile, tsContents, tsContents), {encoding: "utf-8"});
54
- }
55
- });
56
- }
57
- export {
58
- typeDefsToImplicitResolvers
59
- };
package/lib/execute.d.ts DELETED
@@ -1,128 +0,0 @@
1
- import { GraphQLError, GraphQLFormattedError } from "graphql";
2
- import { DocumentNode, FieldNode, FragmentDefinitionNode, OperationDefinitionNode, TypeNode } from "./ast/TypedAST";
3
- import type { Maybe } from "./jsutils/Maybe";
4
- import type { ObjMap } from "./jsutils/ObjMap";
5
- import type { Path } from "./jsutils/Path";
6
- import type { PromiseOrValue } from "./jsutils/PromiseOrValue";
7
- import { FieldResolver, ResolveInfo, Resolvers, TypeResolver } from "./types";
8
- /**
9
- * Terminology
10
- *
11
- * "Definitions" are the generic name for top-level statements in the document.
12
- * Examples of this include:
13
- * 1) Operations (such as a query)
14
- * 2) Fragments
15
- *
16
- * "Operations" are a generic name for requests in the document.
17
- * Examples of this include:
18
- * 1) query,
19
- * 2) mutation
20
- *
21
- * "Selections" are the definitions that can appear legally and at
22
- * single level of the query. These include:
23
- * 1) field references e.g "a"
24
- * 2) fragment "spreads" e.g. "...c"
25
- * 3) inline fragment "spreads" e.g. "...on Type { a }"
26
- */
27
- /**
28
- * Data that must be available at all points during query execution.
29
- *
30
- * Namely, schema of the type system that is currently executing,
31
- * and the fragments defined in the query document
32
- */
33
- export interface ExecutionContext {
34
- resolvers: Resolvers;
35
- fragments: ObjMap<FragmentDefinitionNode>;
36
- rootValue: unknown;
37
- contextValue: unknown;
38
- operation: OperationDefinitionNode;
39
- variableValues: {
40
- [variable: string]: unknown;
41
- };
42
- fieldResolver: FieldResolver<any, any>;
43
- typeResolver: TypeResolver<any, any>;
44
- errors: Array<GraphQLError>;
45
- }
46
- /**
47
- * The result of GraphQL execution.
48
- *
49
- * - `errors` is included when any errors occurred as a non-empty array.
50
- * - `data` is the result of a successful execution of the query.
51
- * - `extensions` is reserved for adding non-standard properties.
52
- */
53
- export interface ExecutionResult<TData = ObjMap<unknown>, TExtensions = ObjMap<unknown>> {
54
- errors?: Array<GraphQLError>;
55
- data?: TData | null;
56
- extensions?: TExtensions;
57
- }
58
- export interface FormattedExecutionResult<TData = ObjMap<unknown>, TExtensions = ObjMap<unknown>> {
59
- errors?: Array<GraphQLFormattedError>;
60
- data?: TData | null;
61
- extensions?: TExtensions;
62
- }
63
- export interface ExecutionArgs {
64
- resolvers: Resolvers;
65
- document: DocumentNode;
66
- rootValue?: unknown;
67
- contextValue?: unknown;
68
- variableValues?: Maybe<{
69
- [variable: string]: unknown;
70
- }>;
71
- operationName?: Maybe<string>;
72
- fieldResolver?: Maybe<FieldResolver<any, any>>;
73
- typeResolver?: Maybe<TypeResolver<any, any>>;
74
- }
75
- /**
76
- * Implements the "Executing requests" section of the GraphQL specification.
77
- *
78
- * Returns either a synchronous ExecutionResult (if all encountered resolvers
79
- * are synchronous), or a Promise of an ExecutionResult that will eventually be
80
- * resolved and never rejected.
81
- *
82
- * If the arguments to this function do not result in a legal execution context,
83
- * a GraphQLError will be thrown immediately explaining the invalid input.
84
- */
85
- export declare function execute(args: ExecutionArgs): PromiseOrValue<ExecutionResult>;
86
- /**
87
- * Essential assertions before executing to provide developer feedback for
88
- * improper use of the GraphQL library.
89
- *
90
- * @internal
91
- */
92
- export declare function assertValidExecutionArguments(document: DocumentNode, rawVariableValues: Maybe<{
93
- [variable: string]: unknown;
94
- }>): void;
95
- /**
96
- * Constructs a ExecutionContext object from the arguments passed to
97
- * execute, which we will pass throughout the other execution methods.
98
- *
99
- * Throws a GraphQLError if a valid execution context cannot be created.
100
- *
101
- * @internal
102
- */
103
- export declare function buildExecutionContext(resolvers: Resolvers, document: DocumentNode, rootValue: unknown, contextValue: unknown, rawVariableValues: Maybe<{
104
- [variable: string]: unknown;
105
- }>, operationName: Maybe<string>, fieldResolver: Maybe<FieldResolver<unknown, unknown>>, typeResolver?: Maybe<TypeResolver<unknown, unknown>>): Array<GraphQLError> | ExecutionContext;
106
- /**
107
- * @internal
108
- */
109
- export declare function buildResolveInfo(exeContext: ExecutionContext, fieldName: string, fieldNodes: Array<FieldNode>, parentTypeName: string, returnTypeName: string, returnTypeNode: TypeNode, path: Path): ResolveInfo;
110
- /**
111
- * If a resolveType function is not given, then a default resolve behavior is
112
- * used which attempts two strategies:
113
- *
114
- * First, See if the provided value has a `__typename` field defined, if so, use
115
- * that value as name of the resolved type.
116
- *
117
- * Otherwise, test each possible type for the abstract type by calling
118
- * isTypeOf for the object being coerced, returning the first type that matches.
119
- */
120
- export declare const defaultTypeResolver: TypeResolver<unknown, unknown>;
121
- /**
122
- * If a resolve function is not given, then a default resolve behavior is used
123
- * which takes the property of the source object of the same name as the field
124
- * and returns it as the result, or if it's a function, returns the result
125
- * of calling that function while passing along args and context value.
126
- */
127
- export declare const defaultFieldResolver: FieldResolver<unknown, unknown>;
128
- //# sourceMappingURL=execute.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"execute.d.ts","sourceRoot":"","sources":["../src/execute.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EACZ,qBAAqB,EAQtB,MAAM,SAAS,CAAC;AAEjB,OAAO,EACL,YAAY,EACZ,SAAS,EACT,sBAAsB,EACtB,uBAAuB,EAEvB,QAAQ,EACT,MAAM,gBAAgB,CAAC;AAQxB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAG3C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE/D,OAAO,EACL,aAAa,EAGb,WAAW,EAEX,SAAS,EACT,YAAY,EAEb,MAAM,SAAS,CAAC;AAQjB;;;;;;;;;;;;;;;;;;GAkBG;AAEH;;;;;GAKG;AACH,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC,sBAAsB,CAAC,CAAC;IAC1C,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,OAAO,CAAC;IACtB,SAAS,EAAE,uBAAuB,CAAC;IACnC,cAAc,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAChD,aAAa,EAAE,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IACvC,YAAY,EAAE,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IACrC,MAAM,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CAC7B;AAED;;;;;;GAMG;AACH,MAAM,WAAW,eAAe,CAC9B,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,EACvB,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC;IAE7B,MAAM,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAC7B,IAAI,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,WAAW,CAAC;CAC1B;AAED,MAAM,WAAW,wBAAwB,CACvC,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,EACvB,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC;IAE7B,MAAM,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,CAAC;IACtC,IAAI,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,WAAW,CAAC;CAC1B;AAED,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,EAAE,YAAY,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,KAAK,CAAC;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC,CAAC;IACxD,aAAa,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC9B,aAAa,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;IAC/C,YAAY,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;CAC9C;AAED;;;;;;;;;GASG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,aAAa,GAAG,cAAc,CAAC,eAAe,CAAC,CA0C5E;AAoBD;;;;;GAKG;AACH,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,YAAY,EACtB,iBAAiB,EAAE,KAAK,CAAC;IAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,CAAC,GACxD,IAAI,CAQN;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CACnC,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,YAAY,EACtB,SAAS,EAAE,OAAO,EAClB,YAAY,EAAE,OAAO,EACrB,iBAAiB,EAAE,KAAK,CAAC;IAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,CAAC,EACzD,aAAa,EAAE,KAAK,CAAC,MAAM,CAAC,EAC5B,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,EACrD,YAAY,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,GACnD,KAAK,CAAC,YAAY,CAAC,GAAG,gBAAgB,CAyDxC;AAgPD;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,UAAU,EAAE,gBAAgB,EAC5B,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,EAC5B,cAAc,EAAE,MAAM,EACtB,cAAc,EAAE,MAAM,EACtB,cAAc,EAAE,QAAQ,EACxB,IAAI,EAAE,IAAI,GACT,WAAW,CAeb;AAoWD;;;;;;;;;GASG;AACH,eAAO,MAAM,mBAAmB,EAAE,YAAY,CAAC,OAAO,EAAE,OAAO,CAM9D,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,aAAa,CAAC,OAAO,EAAE,OAAO,CAchE,CAAC"}