chore: fix build dependencies and frontend config

- Bump Docker SDK, downgrade otel deps for Go 1.24 compatibility
- Fix duplicate i18n import in InstanceCard
- Fix SvelteKit prerender/strict config for SPA build
- Update Dockerfile with GOTOOLCHAIN=auto
- Generate package-lock.json and go.sum

WIP: still resolving Go 1.24 vs otel transitive dep versions
This commit is contained in:
2026-03-28 00:38:18 +03:00
parent 1f81ca9eb0
commit f0b52c6ab7
1849 changed files with 994396 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
Copyright (c) 2023-2025 [these people](https://github.com/sveltejs/esrap/graphs/contributors)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+161
View File
@@ -0,0 +1,161 @@
# esrap
Parse in reverse. AST goes in, code comes out.
## Usage
```js
import { print } from 'esrap';
import ts from 'esrap/languages/ts';
const ast = {
type: 'Program',
body: [
{
type: 'ExpressionStatement',
expression: {
callee: {
type: 'Identifier',
name: 'alert'
},
arguments: [
{
type: 'Literal',
value: 'hello world!'
}
]
}
}
]
};
const { code, map } = print(ast, ts());
console.log(code); // alert('hello world!');
```
If the nodes of the input AST have `loc` properties (e.g. the AST was generated with [`acorn`](https://github.com/acornjs/acorn/tree/master/acorn/#interface) with the `locations` option set), sourcemap mappings will be created.
## Built-in languages
`esrap` ships with two built-in languages — `ts()` and `tsx()` (considered experimental at present!) — which can print ASTs conforming to [`@typescript-eslint/types`](https://www.npmjs.com/package/@typescript-eslint/types) (which extends [ESTree](https://github.com/estree/estree)):
```js
import ts from 'esrap/languages/ts';
import tsx from 'esrap/languages/tsx'; // experimental!
```
Both languages accept an options object:
```js
const { code, map } = print(
ast,
ts({
// how string literals should be quoted — `single` (the default) or `double`
quotes: 'single',
// an array of `{ type: 'Line' | 'Block', value: string, loc: { start, end } }` objects
comments: [],
// a pair of functions for inserting additional comments before or after a given node.
// returns `Array<{ type: 'Line' | 'Block', value: string }>` or `undefined`
getLeadingComments: (node) => [{ type: 'Line', value: ' a comment before the node' }],
getTrailingComments: (node) => [{ type: 'Block', value: ' a comment after the node' }]
})
);
```
You can generate the `comments` array by, for example, using [Acorn's](https://github.com/acornjs/acorn/tree/master/acorn/#interface) `onComment` option.
## Custom languages
You can also create your own languages:
```ts
import { print, type Visitors } from 'esrap';
const language: Visitors<MyNodeType> = {
_(node, context, visit) {
// the `_` visitor handles any node type
context.write('[');
visit(node);
context.write(']');
},
List(node, context) {
// node.type === 'List'
for (const child of node.children) {
context.visit(child);
}
},
Foo(node, context) {
// node.type === 'Foo'
context.write('foo');
},
Bar(node, context) {
// node.type === 'Bar'
context.write('bar');
}
};
const ast: MyNodeType = {
type: 'List',
children: [{ type: 'Foo' }, { type: 'Bar' }]
};
const { code, map } = print(ast, language);
code; // `[[foo][bar]]`
```
The `context` API has several methods:
- `context.write(data: string, node?: BaseNode)` — add a string. If `node` is provided and has a standard `loc` property (with `start` and `end` properties each with a `line` and `column`), a sourcemap mapping will be created
- `context.indent()` — increase the indentation level, typically before adding a newline
- `context.newline()` — self-explanatory
- `context.space()` — adds a space character, if it doesn't immediately follow a newline
- `context.margin()` — causes the next newline to be repeated (consecutive newlines are otherwise merged into one)
- `context.dedent()` — decrease the indentation level (again, typically before adding a newline)
- `context.visit(node: BaseNode)` — calls the visitor corresponding to `node.type`
- `context.location(line: number, column: number)` — insert a sourcemap mapping _without_ calling `context.write(...)`
- `context.measure()` — returns the number of characters contained in `context`
- `context.empty()` — returns true if the context has no content
- `context.new()` — creates a child context
- `context.append(child)` — appends a child context
In addition, `context.multiline` is `true` if the context has multiline content. (This is useful for knowing, for example, when to insert newlines between nodes.)
To understand how to wield these methods effectively, read the source code for the built-in languages.
## Options
You can pass the following options:
```js
const { code, map } = print(ast, ts(), {
// Populate the `sources` field of the resulting sourcemap
// (note that the AST is assumed to come from a single file)
sourceMapSource: 'input.js',
// Populate the `sourcesContent` field of the resulting sourcemap
sourceMapContent: fs.readFileSync('input.js', 'utf-8'),
// Whether to encode the `mappings` field of the resulting sourcemap
// as a VLQ string, rather than an unencoded array. Defaults to `true`
sourceMapEncodeMappings: false,
// String to use for indentation — defaults to '\t'
indent: ' '
});
```
## Why not just use Prettier?
Because it's ginormous.
## Developing
This repo uses [pnpm](https://pnpm.io). Once it's installed, do `pnpm install` to install dependencies, and `pnpm test` to run the tests.
## License
[MIT](LICENSE)
+59
View File
@@ -0,0 +1,59 @@
{
"name": "esrap",
"version": "2.2.4",
"description": "Parse in reverse",
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/esrap.git"
},
"type": "module",
"files": [
"src",
"types"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./languages/ts": {
"types": "./types/index.d.ts",
"default": "./src/languages/ts/index.js"
},
"./languages/tsx": {
"types": "./types/index.d.ts",
"default": "./src/languages/tsx/index.js"
}
},
"types": "./types/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@sveltejs/acorn-typescript": "^1.0.5",
"@vitest/ui": "^2.1.1",
"acorn": "^8.15.0",
"dts-buddy": "^0.6.2",
"oxc-parser": "^0.95.0",
"prettier": "^3.0.3",
"typescript": "^5.7.2",
"vitest": "^2.1.1",
"zimmerframe": "^1.0.0"
},
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15",
"@typescript-eslint/types": "^8.2.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"check": "tsc",
"sandbox": "node test/sandbox/index.js",
"test": "vitest --run",
"test:ui": "vitest --ui",
"format": "pnpm lint --write",
"lint": "prettier --check . --ignore-path .gitignore --ignore-path .prettierignore"
}
}
+163
View File
@@ -0,0 +1,163 @@
/** @import { BaseNode, Command, Visitors } from './types' */
export const margin = 0;
export const newline = 1;
export const indent = 2;
export const dedent = 3;
export const space = 4;
export class Context {
#visitors;
#commands;
#has_newline = false;
multiline = false;
/**
*
* @param {Visitors} visitors
* @param {Command[]} commands
*/
constructor(visitors, commands = []) {
this.#visitors = visitors;
this.#commands = commands;
}
indent() {
this.#commands.push(indent);
}
dedent() {
this.#commands.push(dedent);
}
margin() {
this.#commands.push(margin);
}
newline() {
this.#has_newline = true;
this.#commands.push(newline);
}
space() {
this.#commands.push(space);
}
/**
* @param {Context} context
*/
append(context) {
this.#commands.push(context.#commands);
if (this.#has_newline || context.multiline) {
this.multiline = true;
}
}
/**
*
* @param {string} content
* @param {BaseNode} [node]
*/
write(content, node) {
if (node?.loc) {
this.location(node.loc.start.line, node.loc.start.column);
this.#commands.push(content);
this.location(node.loc.end.line, node.loc.end.column);
} else {
this.#commands.push(content);
}
if (this.#has_newline) {
this.multiline = true;
}
}
/**
*
* @param {number} line
* @param {number} column
*/
location(line, column) {
this.#commands.push({ type: 'Location', line, column });
}
/**
* @param {{ type: string }} node
*/
visit(node) {
const visitor = this.#visitors[node.type];
if (!visitor) {
let message = `Not implemented: ${node.type}`;
if (node.type.includes('TS')) {
message += ` (consider using 'esrap/languages/ts')`;
}
if (node.type.includes('JSX')) {
message += ` (consider using 'esrap/languages/tsx')`;
}
throw new Error(message);
}
if (this.#visitors._) {
// @ts-ignore
this.#visitors._(node, this, (node) => visitor(node, this));
} else {
// @ts-ignore
visitor(node, this);
}
}
empty() {
return !this.#commands.some(has_content);
}
measure() {
return measure(this.#commands);
}
new() {
return new Context(this.#visitors);
}
}
/**
*
* @param {Command[]} commands
* @param {number} [from]
* @param {number} [to]
*/
function measure(commands, from = 0, to = commands.length) {
let total = 0;
for (let i = from; i < to; i += 1) {
const command = commands[i];
if (typeof command === 'string') {
total += command.length;
} else if (Array.isArray(command)) {
total += measure(command);
}
}
return total;
}
/**
* @param {Command} command
*/
function has_content(command) {
if (Array.isArray(command)) {
return command.some(has_content);
}
if (typeof command === 'string') {
return command.length > 0;
}
return false;
}
+165
View File
@@ -0,0 +1,165 @@
/** @import { BaseNode, Command, Visitors, PrintOptions } from './types' */
import { encode } from '@jridgewell/sourcemap-codec';
import { Context, dedent, indent, margin, newline, space } from './context.js';
/** @type {(str: string) => string} str */
let btoa = () => {
throw new Error('Unsupported environment: `window.btoa` or `Buffer` should be supported.');
};
if (typeof window !== 'undefined' && typeof window.btoa === 'function') {
btoa = (str) => window.btoa(unescape(encodeURIComponent(str)));
} else if (typeof Buffer === 'function') {
btoa = (str) => Buffer.from(str, 'utf-8').toString('base64');
}
class SourceMap {
version = 3;
/** @type {string[]} */
names = [];
/**
* @param {[number, number, number, number][][]} mappings
* @param {PrintOptions} opts
*/
constructor(mappings, opts) {
this.sources = [opts.sourceMapSource || null];
this.sourcesContent = [opts.sourceMapContent || null];
this.mappings = opts.sourceMapEncodeMappings === false ? mappings : encode(mappings);
}
/**
* Returns a JSON representation suitable for saving as a `*.map` file
*/
toString() {
return JSON.stringify(this);
}
/**
* Returns a base64-encoded JSON representation suitable for inlining at the bottom of a file with `//# sourceMappingURL={...}`
*/
toUrl() {
return 'data:application/json;charset=utf-8;base64,' + btoa(this.toString());
}
}
/**
* @template {BaseNode} [T=BaseNode]
* @param {T} node
* @param {Visitors<T>} visitors
* @param {PrintOptions} opts
* @returns {{ code: string, map: any }} // TODO
*/
export function print(node, visitors, opts = {}) {
/** @type {Command[]} */
const commands = [];
// @ts-expect-error some nonsense I don't understand
const context = new Context(visitors, commands);
context.visit(node);
/** @typedef {[number, number, number, number]} Segment */
let code = '';
let current_column = 0;
/** @type {Segment[][]} */
let mappings = [];
/** @type {Segment[]} */
let current_line = [];
/** @param {string} str */
function append(str) {
code += str;
for (let i = 0; i < str.length; i += 1) {
if (str[i] === '\n') {
mappings.push(current_line);
current_line = [];
current_column = 0;
} else {
current_column += 1;
}
}
}
let current_newline = '\n';
const indent_str = opts.indent ?? '\t';
let needs_newline = false;
let needs_margin = false;
let needs_space = false;
/** @param {Command} command */
function run(command) {
if (Array.isArray(command)) {
for (let i = 0; i < command.length; i += 1) {
run(command[i]);
}
return;
}
if (typeof command === 'number') {
if (command === newline) {
needs_newline = true;
} else if (command === margin) {
needs_margin = true;
} else if (command === space) {
needs_space = true;
} else if (command === indent) {
current_newline += indent_str;
} else if (command === dedent) {
current_newline = current_newline.slice(0, -indent_str.length);
}
return;
}
if (needs_newline) {
append(needs_margin ? '\n' + current_newline : current_newline);
} else if (needs_space) {
append(' ');
}
needs_margin = needs_newline = needs_space = false;
if (typeof command === 'string') {
append(command);
return;
}
if (command.type === 'Location') {
current_line.push([
current_column,
0, // source index is always zero
command.line - 1,
command.column
]);
}
}
for (let i = 0; i < commands.length; i += 1) {
run(commands[i]);
}
mappings.push(current_line);
/** @type {SourceMap} */
let map;
return {
code,
// create sourcemap lazily in case we don't need it
get map() {
return (map ??= new SourceMap(mappings, opts));
}
};
}
// it sucks that we have to export the class rather than just
// re-exporting it via public.d.ts, but otherwise TypeScript
// gets confused about private fields because it is really dumb!
export { Context };
+2255
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -0,0 +1,2 @@
export * from './index';
export type { BaseComment, Comment } from '../types';
+137
View File
@@ -0,0 +1,137 @@
/** @import { TSESTree } from '@typescript-eslint/types' */
/** @import { Visitors } from '../../types.js' */
/** @import { TSOptions } from '../types.js' */
import ts from '../ts/index.js';
/**
* @param {TSOptions} [options]
* @returns {Visitors<TSESTree.Node>}
*/
export default (options) => ({
...ts(options),
JSXElement(node, context) {
context.visit(node.openingElement);
if (node.children.length > 0) {
context.indent();
}
for (const child of node.children) {
context.visit(child);
}
if (node.children.length > 0) {
context.dedent();
}
if (node.closingElement) {
context.visit(node.closingElement);
}
},
JSXOpeningElement(node, context) {
context.write('<');
context.visit(node.name);
for (const attribute of node.attributes) {
context.write(' ');
context.visit(attribute);
}
if (node.selfClosing) {
context.write(' /');
}
context.write('>');
},
JSXClosingElement(node, context) {
context.write('</');
context.visit(node.name);
context.write('>');
},
JSXNamespacedName(node, context) {
context.visit(node.namespace);
context.write(':');
context.visit(node.name);
},
JSXIdentifier(node, context) {
context.write(node.name, node);
},
JSXMemberExpression(node, context) {
context.visit(node.object);
context.write('.');
context.visit(node.property);
},
JSXText(node, context) {
context.write(node.value, node);
},
JSXAttribute(node, context) {
context.visit(node.name);
if (node.value) {
context.write('=');
context.visit(node.value);
}
},
JSXEmptyExpression(node, context) {},
JSXFragment(node, context) {
context.visit(node.openingFragment);
if (node.children.length > 0) {
context.indent();
}
for (const child of node.children) {
context.visit(child);
}
if (node.children.length > 0) {
context.dedent();
}
context.visit(node.closingFragment);
},
JSXOpeningFragment(node, context) {
context.write('<>');
},
JSXClosingFragment(node, context) {
context.write('</>');
},
JSXExpressionContainer(node, context) {
context.write('{');
context.visit(node.expression);
context.write('}');
},
JSXSpreadChild(node, context) {
context.write('{...');
context.visit(node.expression);
context.write('}');
},
JSXSpreadAttribute(node, context) {
context.write('{...');
context.visit(node.argument);
context.write('}');
}
});
+2
View File
@@ -0,0 +1,2 @@
export * from './index';
export type { BaseComment, Comment } from '../types';
+29
View File
@@ -0,0 +1,29 @@
import type { BaseNode } from '../types';
export type TSOptions = {
quotes?: 'double' | 'single';
comments?: Comment[];
getLeadingComments?: (node: BaseNode) => BaseComment[] | undefined;
getTrailingComments?: (node: BaseNode) => BaseComment[] | undefined;
};
interface Position {
line: number;
column: number;
}
// this exists in TSESTree but because of the inanity around enums
// it's easier to do this ourselves
export interface BaseComment {
type: 'Line' | 'Block';
value: string;
start?: number;
end?: number;
}
export interface Comment extends BaseComment {
loc: {
start: Position;
end: Position;
};
}
+2
View File
@@ -0,0 +1,2 @@
export type { PrintOptions, Visitors } from './types';
export * from './index';
+48
View File
@@ -0,0 +1,48 @@
import type { Context } from 'esrap';
export type BaseNode = {
type: string;
loc?: null | {
start: { line: number; column: number };
end: { line: number; column: number };
};
};
type NodeOf<T extends string, X> = X extends { type: T } ? X : never;
type SpecialisedVisitors<T extends BaseNode> = {
[K in T['type']]?: Visitor<NodeOf<K, T>>;
};
export type Visitor<T> = (node: T, context: Context) => void;
export type Visitors<T extends BaseNode = BaseNode> = T['type'] extends '_'
? never
: SpecialisedVisitors<T> & { _?: (node: T, context: Context, visit: (node: T) => void) => void };
export { Context };
type TSExpressionWithTypeArguments = {
type: 'TSExpressionWithTypeArguments';
expression: any;
};
export interface Location {
type: 'Location';
line: number;
column: number;
}
export interface IndentChange {
type: 'IndentChange';
offset: number;
}
export type Command = string | number | Location | Command[];
export interface PrintOptions {
sourceMapSource?: string;
sourceMapContent?: string;
sourceMapEncodeMappings?: boolean; // default true
indent?: string; // default tab
}
+181
View File
@@ -0,0 +1,181 @@
declare module 'esrap' {
type BaseNode = {
type: string;
loc?: null | {
start: { line: number; column: number };
end: { line: number; column: number };
};
};
type NodeOf<T extends string, X> = X extends { type: T } ? X : never;
type SpecialisedVisitors<T extends BaseNode> = {
[K in T['type']]?: Visitor<NodeOf<K, T>>;
};
type Visitor<T> = (node: T, context: Context) => void;
export type Visitors<T extends BaseNode = BaseNode> = T['type'] extends '_'
? never
: SpecialisedVisitors<T> & { _?: (node: T, context: Context, visit: (node: T) => void) => void };
interface Location {
type: 'Location';
line: number;
column: number;
}
type Command = string | number | Location | Command[];
export interface PrintOptions {
sourceMapSource?: string;
sourceMapContent?: string;
sourceMapEncodeMappings?: boolean; // default true
indent?: string; // default tab
}
/**
* @returns // TODO
*/
export function print<T extends BaseNode = BaseNode>(node: T, visitors: Visitors<T>, opts?: PrintOptions): {
code: string;
map: any;
};
export class Context {
constructor(visitors: Visitors, commands?: Command[]);
multiline: boolean;
indent(): void;
dedent(): void;
margin(): void;
newline(): void;
space(): void;
append(context: Context): void;
write(content: string, node?: BaseNode): void;
location(line: number, column: number): void;
visit(node: {
type: string;
}): void;
empty(): boolean;
measure(): number;
"new"(): Context;
#private;
}
export {};
}
declare module 'esrap/languages/ts' {
import type { TSESTree } from '@typescript-eslint/types';
import type { Context } from 'esrap';
export const EXPRESSIONS_PRECEDENCE: Record<TSESTree.Expression["type"] | "Super" | "RestElement", number>;
export default function _default(options?: TSOptions): Visitors<TSESTree.Node>;
export type Node = TSESTree.Node;
type TSOptions = {
quotes?: 'double' | 'single';
comments?: Comment[];
getLeadingComments?: (node: BaseNode) => BaseComment[] | undefined;
getTrailingComments?: (node: BaseNode) => BaseComment[] | undefined;
};
interface Position {
line: number;
column: number;
}
// this exists in TSESTree but because of the inanity around enums
// it's easier to do this ourselves
export interface BaseComment {
type: 'Line' | 'Block';
value: string;
start?: number;
end?: number;
}
export interface Comment extends BaseComment {
loc: {
start: Position;
end: Position;
};
}
type BaseNode = {
type: string;
loc?: null | {
start: { line: number; column: number };
end: { line: number; column: number };
};
};
type NodeOf<T extends string, X> = X extends { type: T } ? X : never;
type SpecialisedVisitors<T extends BaseNode> = {
[K in T['type']]?: Visitor<NodeOf<K, T>>;
};
type Visitor<T> = (node: T, context: Context) => void;
type Visitors<T extends BaseNode = BaseNode> = T['type'] extends '_'
? never
: SpecialisedVisitors<T> & { _?: (node: T, context: Context, visit: (node: T) => void) => void };
export {};
}
declare module 'esrap/languages/tsx' {
import type { TSESTree } from '@typescript-eslint/types';
import type { Context } from 'esrap';
export default function _default(options?: TSOptions): Visitors<TSESTree.Node>;
type TSOptions = {
quotes?: 'double' | 'single';
comments?: Comment[];
getLeadingComments?: (node: BaseNode) => BaseComment[] | undefined;
getTrailingComments?: (node: BaseNode) => BaseComment[] | undefined;
};
interface Position {
line: number;
column: number;
}
// this exists in TSESTree but because of the inanity around enums
// it's easier to do this ourselves
export interface BaseComment {
type: 'Line' | 'Block';
value: string;
start?: number;
end?: number;
}
export interface Comment extends BaseComment {
loc: {
start: Position;
end: Position;
};
}
type BaseNode = {
type: string;
loc?: null | {
start: { line: number; column: number };
end: { line: number; column: number };
};
};
type NodeOf<T extends string, X> = X extends { type: T } ? X : never;
type SpecialisedVisitors<T extends BaseNode> = {
[K in T['type']]?: Visitor<NodeOf<K, T>>;
};
type Visitor<T> = (node: T, context: Context) => void;
type Visitors<T extends BaseNode = BaseNode> = T['type'] extends '_'
? never
: SpecialisedVisitors<T> & { _?: (node: T, context: Context, visit: (node: T) => void) => void };
export {};
}
//# sourceMappingURL=index.d.ts.map
+38
View File
@@ -0,0 +1,38 @@
{
"version": 3,
"file": "index.d.ts",
"names": [
"BaseNode",
"NodeOf",
"SpecialisedVisitors",
"Visitor",
"Visitors",
"Location",
"Command",
"PrintOptions",
"print",
"Context",
"EXPRESSIONS_PRECEDENCE",
"Node",
"TSOptions",
"Position",
"BaseComment",
"Comment"
],
"sources": [
"../src/types.d.ts",
"../src/index.js",
"../src/context.js",
"../src/languages/ts/index.js",
"../src/languages/types.d.ts"
],
"sourcesContent": [
null,
null,
null,
null,
null
],
"mappings": ";MAEYA,QAAQA;;;;;;;;MAQfC,MAAMA;;MAENC,mBAAmBA;;;;MAIZC,OAAOA;;aAEPC,QAAQA;;;;WAWHC,QAAQA;;;;;;MAWbC,OAAOA;;kBAEFC,YAAYA;;;;;;;;;iBCWbC,KAAKA;;;;cC7CRC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCAPC,sBAAsBA;;aAHZC,IAAIA;MCHfC,SAASA;;;;;;;WAOXC,QAAQA;;;;;;;kBAODC,WAAWA;;;;;;;kBAOXC,OAAOA;;;;;;MJrBZf,QAAQA;;;;;;;;MAQfC,MAAMA;;MAENC,mBAAmBA;;;;MAIZC,OAAOA;;MAEPC,QAAQA;;;;;;;;;;;MIhBRQ,SAASA;;;;;;;WAOXC,QAAQA;;;;;;;kBAODC,WAAWA;;;;;;;kBAOXC,OAAOA;;;;;;MJrBZf,QAAQA;;;;;;;;MAQfC,MAAMA;;MAENC,mBAAmBA;;;;MAIZC,OAAOA;;MAEPC,QAAQA",
"ignoreList": []
}