@difizen/libro-cofine-editor 0.1.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.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/es/editor-contribution.d.ts +10 -0
- package/es/editor-contribution.d.ts.map +1 -0
- package/es/editor-contribution.js +31 -0
- package/es/index.d.ts +7 -0
- package/es/index.d.ts.map +1 -0
- package/es/index.js +6 -0
- package/es/index.less +32 -0
- package/es/language/lsp/completion-provider.d.ts +13 -0
- package/es/language/lsp/completion-provider.d.ts.map +1 -0
- package/es/language/lsp/completion-provider.js +290 -0
- package/es/language/lsp/diagnostic-provider.d.ts +22 -0
- package/es/language/lsp/diagnostic-provider.d.ts.map +1 -0
- package/es/language/lsp/diagnostic-provider.js +161 -0
- package/es/language/lsp/format-provider.d.ts +9 -0
- package/es/language/lsp/format-provider.d.ts.map +1 -0
- package/es/language/lsp/format-provider.js +139 -0
- package/es/language/lsp/hover-provider.d.ts +8 -0
- package/es/language/lsp/hover-provider.d.ts.map +1 -0
- package/es/language/lsp/hover-provider.js +136 -0
- package/es/language/lsp/language-feature-provider.d.ts +17 -0
- package/es/language/lsp/language-feature-provider.d.ts.map +1 -0
- package/es/language/lsp/language-feature-provider.js +89 -0
- package/es/language/lsp/lsp-contribution.d.ts +25 -0
- package/es/language/lsp/lsp-contribution.d.ts.map +1 -0
- package/es/language/lsp/lsp-contribution.js +213 -0
- package/es/language/lsp/module.d.ts +2 -0
- package/es/language/lsp/module.d.ts.map +1 -0
- package/es/language/lsp/module.js +3 -0
- package/es/language/lsp/semantic-highlight-provider.d.ts +9 -0
- package/es/language/lsp/semantic-highlight-provider.d.ts.map +1 -0
- package/es/language/lsp/semantic-highlight-provider.js +41 -0
- package/es/language/lsp/signature-help-provider.d.ts +8 -0
- package/es/language/lsp/signature-help-provider.d.ts.map +1 -0
- package/es/language/lsp/signature-help-provider.js +108 -0
- package/es/language/lsp/type-concerters.d.ts +7 -0
- package/es/language/lsp/type-concerters.d.ts.map +1 -0
- package/es/language/lsp/type-concerters.js +37 -0
- package/es/language/python/data/MagicPython.tmLanguage.json +4213 -0
- package/es/language/python/data/MagicRegExp.tmLanguage.json +497 -0
- package/es/language/python/data/configurations/python.json +135 -0
- package/es/language/python/data/snippets/python.snippets.json +223 -0
- package/es/language/python/module.d.ts +2 -0
- package/es/language/python/module.d.ts.map +1 -0
- package/es/language/python/module.js +3 -0
- package/es/language/python/python-builtin.d.ts +86 -0
- package/es/language/python/python-builtin.d.ts.map +1 -0
- package/es/language/python/python-builtin.js +569 -0
- package/es/language/python/python-language-feature.d.ts +26 -0
- package/es/language/python/python-language-feature.d.ts.map +1 -0
- package/es/language/python/python-language-feature.js +174 -0
- package/es/language-specs.d.ts +33 -0
- package/es/language-specs.d.ts.map +1 -0
- package/es/language-specs.js +115 -0
- package/es/libro-e2-editor.d.ts +277 -0
- package/es/libro-e2-editor.d.ts.map +1 -0
- package/es/libro-e2-editor.js +720 -0
- package/es/libro-e2-preload.d.ts +5 -0
- package/es/libro-e2-preload.d.ts.map +1 -0
- package/es/libro-e2-preload.js +57 -0
- package/es/libro-sql-api.d.ts +8 -0
- package/es/libro-sql-api.d.ts.map +1 -0
- package/es/libro-sql-api.js +26 -0
- package/es/module.d.ts +3 -0
- package/es/module.d.ts.map +1 -0
- package/es/module.js +44 -0
- package/es/placeholder.d.ts +31 -0
- package/es/placeholder.d.ts.map +1 -0
- package/es/placeholder.js +101 -0
- package/es/theme/data/jupyter_dark.json +406 -0
- package/es/theme/data/jupyter_hc_dark.json +385 -0
- package/es/theme/data/jupyter_hc_light.json +386 -0
- package/es/theme/data/jupyter_light.json +386 -0
- package/es/theme/data/libro_dark.json +186 -0
- package/es/theme/data/libro_light.json +170 -0
- package/es/theme/libro-python-theme-contribution.d.ts +6 -0
- package/es/theme/libro-python-theme-contribution.d.ts.map +1 -0
- package/es/theme/libro-python-theme-contribution.js +49 -0
- package/es/theme/module.d.ts +2 -0
- package/es/theme/module.d.ts.map +1 -0
- package/es/theme/module.js +3 -0
- package/es/types.d.ts +10 -0
- package/es/types.d.ts.map +1 -0
- package/es/types.js +3 -0
- package/package.json +67 -0
- package/src/editor-contribution.ts +30 -0
- package/src/index.less +32 -0
- package/src/index.spec.ts +8 -0
- package/src/index.ts +6 -0
- package/src/language/lsp/completion-provider.ts +214 -0
- package/src/language/lsp/diagnostic-provider.ts +148 -0
- package/src/language/lsp/format-provider.ts +87 -0
- package/src/language/lsp/hover-provider.ts +98 -0
- package/src/language/lsp/language-feature-provider.ts +69 -0
- package/src/language/lsp/lsp-contribution.ts +159 -0
- package/src/language/lsp/module.ts +5 -0
- package/src/language/lsp/semantic-highlight-provider.ts +26 -0
- package/src/language/lsp/signature-help-provider.ts +65 -0
- package/src/language/lsp/type-concerters.ts +72 -0
- package/src/language/python/data/MagicPython.tmLanguage.json +4213 -0
- package/src/language/python/data/MagicRegExp.tmLanguage.json +497 -0
- package/src/language/python/data/configurations/python.json +135 -0
- package/src/language/python/data/snippets/python.snippets.json +223 -0
- package/src/language/python/module.ts +5 -0
- package/src/language/python/python-builtin.ts +891 -0
- package/src/language/python/python-language-feature.ts +163 -0
- package/src/language-specs.ts +99 -0
- package/src/libro-e2-editor.ts +922 -0
- package/src/libro-e2-preload.ts +23 -0
- package/src/libro-sql-api.ts +20 -0
- package/src/module.ts +44 -0
- package/src/placeholder.ts +100 -0
- package/src/theme/data/jupyter_dark.json +406 -0
- package/src/theme/data/jupyter_hc_dark.json +385 -0
- package/src/theme/data/jupyter_hc_light.json +386 -0
- package/src/theme/data/jupyter_light.json +386 -0
- package/src/theme/data/libro_dark.json +186 -0
- package/src/theme/data/libro_light.json +170 -0
- package/src/theme/libro-python-theme-contribution.ts +36 -0
- package/src/theme/module.ts +5 -0
- package/src/types.ts +11 -0
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
{
|
|
2
|
+
"if": {
|
|
3
|
+
"scope": "python",
|
|
4
|
+
"prefix": "if",
|
|
5
|
+
"body": ["if ${1:expression}:", "\t${2:pass}"],
|
|
6
|
+
"description": "Code snippet for an if statement"
|
|
7
|
+
},
|
|
8
|
+
"if/else": {
|
|
9
|
+
"scope": "python",
|
|
10
|
+
"prefix": "if/else",
|
|
11
|
+
"body": ["if ${1:condition}:", "\t${2:pass}", "else:", "\t${3:pass}"],
|
|
12
|
+
"description": "Code snippet for an if statement with else"
|
|
13
|
+
},
|
|
14
|
+
"elif": {
|
|
15
|
+
"scope": "python",
|
|
16
|
+
"prefix": "elif",
|
|
17
|
+
"body": ["elif ${1:expression}:", "\t${2:pass}"],
|
|
18
|
+
"description": "Code snippet for an elif"
|
|
19
|
+
},
|
|
20
|
+
"else": {
|
|
21
|
+
"scope": "python",
|
|
22
|
+
"prefix": "else",
|
|
23
|
+
"body": ["else:", "\t${1:pass}"],
|
|
24
|
+
"description": "Code snippet for an else"
|
|
25
|
+
},
|
|
26
|
+
"while": {
|
|
27
|
+
"scope": "python",
|
|
28
|
+
"prefix": "while",
|
|
29
|
+
"body": ["while ${1:expression}:", "\t${2:pass}"],
|
|
30
|
+
"description": "Code snippet for a while loop"
|
|
31
|
+
},
|
|
32
|
+
"while/else": {
|
|
33
|
+
"scope": "python",
|
|
34
|
+
"prefix": "while/else",
|
|
35
|
+
"body": ["while ${1:expression}:", "\t${2:pass}", "else:", "\t${3:pass}"],
|
|
36
|
+
"description": "Code snippet for a while loop with else"
|
|
37
|
+
},
|
|
38
|
+
"for": {
|
|
39
|
+
"scope": "python",
|
|
40
|
+
"prefix": "for",
|
|
41
|
+
"body": ["for ${1:target_list} in ${2:expression_list}:", "\t${3:pass}"],
|
|
42
|
+
"description": "Code snippet for a for loop"
|
|
43
|
+
},
|
|
44
|
+
"for/else": {
|
|
45
|
+
"scope": "python",
|
|
46
|
+
"prefix": "for/else",
|
|
47
|
+
"body": [
|
|
48
|
+
"for ${1:target_list} in ${2:expression_list}:",
|
|
49
|
+
"\t${3:pass}",
|
|
50
|
+
"else:",
|
|
51
|
+
"\t${4:pass}"
|
|
52
|
+
],
|
|
53
|
+
"description": "Code snippet for a for loop with else"
|
|
54
|
+
},
|
|
55
|
+
"try/except": {
|
|
56
|
+
"scope": "python",
|
|
57
|
+
"prefix": "try/except",
|
|
58
|
+
"body": [
|
|
59
|
+
"try:",
|
|
60
|
+
"\t${1:pass}",
|
|
61
|
+
"except ${2:expression} as ${3:identifier}:",
|
|
62
|
+
"\t${4:pass}"
|
|
63
|
+
],
|
|
64
|
+
"description": "Code snippet for a try/except statement"
|
|
65
|
+
},
|
|
66
|
+
"try/finally": {
|
|
67
|
+
"scope": "python",
|
|
68
|
+
"prefix": "try/finally",
|
|
69
|
+
"body": ["try:", "\t${1:pass}", "finally:", "\t${2:pass}"],
|
|
70
|
+
"description": "Code snippet for a try/finally statement"
|
|
71
|
+
},
|
|
72
|
+
"try/except/else": {
|
|
73
|
+
"scope": "python",
|
|
74
|
+
"prefix": "try/except/else",
|
|
75
|
+
"body": [
|
|
76
|
+
"try:",
|
|
77
|
+
"\t${1:pass}",
|
|
78
|
+
"except ${2:expression} as ${3:identifier}:",
|
|
79
|
+
"\t${4:pass}",
|
|
80
|
+
"else:",
|
|
81
|
+
"\t${5:pass}"
|
|
82
|
+
],
|
|
83
|
+
"description": "Code snippet for a try/except/else statement"
|
|
84
|
+
},
|
|
85
|
+
"try/except/finally": {
|
|
86
|
+
"scope": "python",
|
|
87
|
+
"prefix": "try/except/finally",
|
|
88
|
+
"body": [
|
|
89
|
+
"try:",
|
|
90
|
+
"\t${1:pass}",
|
|
91
|
+
"except ${2:expression} as ${3:identifier}:",
|
|
92
|
+
"\t${4:pass}",
|
|
93
|
+
"finally:",
|
|
94
|
+
"\t${5:pass}"
|
|
95
|
+
],
|
|
96
|
+
"description": "Code snippet for a try/except/finally statement"
|
|
97
|
+
},
|
|
98
|
+
"try/except/else/finally": {
|
|
99
|
+
"scope": "python",
|
|
100
|
+
"prefix": "try/except/else/finally",
|
|
101
|
+
"body": [
|
|
102
|
+
"try:",
|
|
103
|
+
"\t${1:pass}",
|
|
104
|
+
"except ${2:expression} as ${3:identifier}:",
|
|
105
|
+
"\t${4:pass}",
|
|
106
|
+
"else:",
|
|
107
|
+
"\t${5:pass}",
|
|
108
|
+
"finally:",
|
|
109
|
+
"\t${6:pass}"
|
|
110
|
+
],
|
|
111
|
+
"description": "Code snippet for a try/except/else/finally statement"
|
|
112
|
+
},
|
|
113
|
+
"with": {
|
|
114
|
+
"scope": "python",
|
|
115
|
+
"prefix": "with",
|
|
116
|
+
"body": ["with ${1:expression} as ${2:target}:", "\t${3:pass}"],
|
|
117
|
+
"description": "Code snippet for a with statement"
|
|
118
|
+
},
|
|
119
|
+
"def": {
|
|
120
|
+
"scope": "python",
|
|
121
|
+
"prefix": "def",
|
|
122
|
+
"body": ["def ${1:funcname}(${2:parameter_list}):", "\t${3:pass}"],
|
|
123
|
+
"description": "Code snippet for a function definition"
|
|
124
|
+
},
|
|
125
|
+
"def(class method)": {
|
|
126
|
+
"scope": "python",
|
|
127
|
+
"prefix": "def(class method)",
|
|
128
|
+
"body": ["def ${1:funcname}(self, ${2:parameter_list}):", "\t${3:pass}"],
|
|
129
|
+
"description": "Code snippet for a class method"
|
|
130
|
+
},
|
|
131
|
+
"def(static class method)": {
|
|
132
|
+
"scope": "python",
|
|
133
|
+
"prefix": "def(static class method)",
|
|
134
|
+
"body": ["@staticmethod", "def ${1:funcname}(${2:parameter_list}):", "\t${3:pass}"],
|
|
135
|
+
"description": "Code snippet for a static class method"
|
|
136
|
+
},
|
|
137
|
+
"def(abstract class method)": {
|
|
138
|
+
"scope": "python",
|
|
139
|
+
"prefix": "def(abstract class method)",
|
|
140
|
+
"body": [
|
|
141
|
+
"def ${1:funcname}(self, ${2:parameter_list}):",
|
|
142
|
+
"\traise NotImplementedError"
|
|
143
|
+
],
|
|
144
|
+
"description": "Code snippet for an abstract class method"
|
|
145
|
+
},
|
|
146
|
+
"class": {
|
|
147
|
+
"scope": "python",
|
|
148
|
+
"prefix": "class",
|
|
149
|
+
"body": ["class ${1:classname}(${2:object}):", "\t${3:pass}"],
|
|
150
|
+
"description": "Code snippet for a class definition"
|
|
151
|
+
},
|
|
152
|
+
"lambda": {
|
|
153
|
+
"scope": "python",
|
|
154
|
+
"prefix": "lambda",
|
|
155
|
+
"body": ["lambda ${1:parameter_list}: ${2:expression}"],
|
|
156
|
+
"description": "Code snippet for a lambda statement"
|
|
157
|
+
},
|
|
158
|
+
"if(main)": {
|
|
159
|
+
"scope": "python",
|
|
160
|
+
"prefix": "__main__",
|
|
161
|
+
"body": ["if __name__ == \"__main__\":", " ${1:pass}"],
|
|
162
|
+
"description": "Code snippet for a `if __name__ == \"__main__\": ...` block"
|
|
163
|
+
},
|
|
164
|
+
"async/def": {
|
|
165
|
+
"scope": "python",
|
|
166
|
+
"prefix": "async/def",
|
|
167
|
+
"body": ["async def ${1:funcname}(${2:parameter_list}):", "\t${3:pass}"],
|
|
168
|
+
"description": "Code snippet for an async statement"
|
|
169
|
+
},
|
|
170
|
+
"async/for": {
|
|
171
|
+
"scope": "python",
|
|
172
|
+
"prefix": "async/for",
|
|
173
|
+
"body": ["async for ${1:target} in ${2:iter}:", "\t${3:block}"],
|
|
174
|
+
"description": "Code snippet for an async for statement"
|
|
175
|
+
},
|
|
176
|
+
"async/for/else": {
|
|
177
|
+
"scope": "python",
|
|
178
|
+
"prefix": "async/for/else",
|
|
179
|
+
"body": [
|
|
180
|
+
"async for ${1:target} in ${2:iter}:",
|
|
181
|
+
"\t${3:block}",
|
|
182
|
+
"else:",
|
|
183
|
+
"\t${4:block}"
|
|
184
|
+
],
|
|
185
|
+
"description": "Code snippet for an async for statement with else"
|
|
186
|
+
},
|
|
187
|
+
"async/with": {
|
|
188
|
+
"scope": "python",
|
|
189
|
+
"prefix": "async/with",
|
|
190
|
+
"body": ["async with ${1:expr} as ${2:var}:", "\t${3:block}"],
|
|
191
|
+
"description": "Code snippet for an async with statement"
|
|
192
|
+
},
|
|
193
|
+
"ipdb": {
|
|
194
|
+
"scope": "python",
|
|
195
|
+
"prefix": "ipdb",
|
|
196
|
+
"body": ["import ipdb; ipdb.set_trace()"],
|
|
197
|
+
"description": "Code snippet for ipdb debug"
|
|
198
|
+
},
|
|
199
|
+
"pdb": {
|
|
200
|
+
"scope": "python",
|
|
201
|
+
"prefix": "pdb",
|
|
202
|
+
"body": ["import pdb; pdb.set_trace()"],
|
|
203
|
+
"description": "Code snippet for pdb debug"
|
|
204
|
+
},
|
|
205
|
+
"pudb": {
|
|
206
|
+
"scope": "python",
|
|
207
|
+
"prefix": "pudb",
|
|
208
|
+
"body": ["import pudb; pudb.set_trace()"],
|
|
209
|
+
"description": "Code snippet for pudb debug"
|
|
210
|
+
},
|
|
211
|
+
"add/new/cell": {
|
|
212
|
+
"scope": "python",
|
|
213
|
+
"prefix": "add/new/cell",
|
|
214
|
+
"body": ["# %%"],
|
|
215
|
+
"description": "Code snippet to add a new cell"
|
|
216
|
+
},
|
|
217
|
+
"mark/markdown": {
|
|
218
|
+
"scope": "python",
|
|
219
|
+
"prefix": "mark/markdown",
|
|
220
|
+
"body": ["# %% [markdown]"],
|
|
221
|
+
"description": "Code snippet to add a new markdown cell"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/language/python/module.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,qBAAqB,uFAAwC,CAAC"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type monaco from '@difizen/monaco-editor-core';
|
|
2
|
+
import { languages } from '@difizen/monaco-editor-core';
|
|
3
|
+
export declare const BuiltinFunctionList: string[];
|
|
4
|
+
export declare enum BuiltinFunctions {
|
|
5
|
+
abs = "abs",
|
|
6
|
+
delattr = "delattr",
|
|
7
|
+
hash = "hash",
|
|
8
|
+
memoryview = "memoryview",
|
|
9
|
+
set = "set",
|
|
10
|
+
all = "all",
|
|
11
|
+
dict = "dict",
|
|
12
|
+
help = "help",
|
|
13
|
+
min = "min",
|
|
14
|
+
setattr = "setattr",
|
|
15
|
+
any = "any",
|
|
16
|
+
dir = "dir",
|
|
17
|
+
hex = "hex",
|
|
18
|
+
next = "next",
|
|
19
|
+
slice = "slice",
|
|
20
|
+
ascii = "ascii",
|
|
21
|
+
divmod = "divmod",
|
|
22
|
+
id = "id",
|
|
23
|
+
object = "object",
|
|
24
|
+
sorted = "sorted",
|
|
25
|
+
bin = "bin",
|
|
26
|
+
enumerate = "enumerate",
|
|
27
|
+
input = "input",
|
|
28
|
+
oct = "oct",
|
|
29
|
+
staticmethod = "staticmethod",
|
|
30
|
+
bool = "bool",
|
|
31
|
+
eval = "eval",
|
|
32
|
+
int = "int",
|
|
33
|
+
open = "open",
|
|
34
|
+
str = "str",
|
|
35
|
+
exec = "exec",
|
|
36
|
+
isinstance = "isinstance",
|
|
37
|
+
ord = "ord",
|
|
38
|
+
sum = "sum",
|
|
39
|
+
bytearray = "bytearray",
|
|
40
|
+
filter = "filter",
|
|
41
|
+
issubclass = "issubclass",
|
|
42
|
+
pow = "pow",
|
|
43
|
+
super = "super",
|
|
44
|
+
bytes = "bytes",
|
|
45
|
+
float = "float",
|
|
46
|
+
iter = "iter",
|
|
47
|
+
print = "print",
|
|
48
|
+
tuple = "tuple",
|
|
49
|
+
callable = "callable",
|
|
50
|
+
format = "format",
|
|
51
|
+
len = "len",
|
|
52
|
+
property = "property",
|
|
53
|
+
type = "type",
|
|
54
|
+
chr = "chr",
|
|
55
|
+
frozenset = "frozenset",
|
|
56
|
+
list = "list",
|
|
57
|
+
range = "range",
|
|
58
|
+
vars = "vars",
|
|
59
|
+
classmethod = "classmethod",
|
|
60
|
+
getattr = "getattr",
|
|
61
|
+
locals = "locals",
|
|
62
|
+
repr = "repr",
|
|
63
|
+
zip = "zip",
|
|
64
|
+
compile = "compile",
|
|
65
|
+
globals = "globals",
|
|
66
|
+
map = "map",
|
|
67
|
+
reversed = "reversed",
|
|
68
|
+
__import__ = "__import__",
|
|
69
|
+
complex = "complex",
|
|
70
|
+
hasattr = "hasattr",
|
|
71
|
+
max = "max",
|
|
72
|
+
round = "round"
|
|
73
|
+
}
|
|
74
|
+
export interface BuiltinOption {
|
|
75
|
+
completionKind: languages.CompletionItemKind;
|
|
76
|
+
documentation: string;
|
|
77
|
+
hover?: MarkedString[];
|
|
78
|
+
}
|
|
79
|
+
export interface MarkedCode {
|
|
80
|
+
language: string;
|
|
81
|
+
value: string;
|
|
82
|
+
}
|
|
83
|
+
export type MarkedString = string | MarkedCode;
|
|
84
|
+
export declare function asMarkdownString(content: MarkedString): monaco.IMarkdownString;
|
|
85
|
+
export declare const BuiltinFunctionOptions: Record<BuiltinFunctions, BuiltinOption>;
|
|
86
|
+
//# sourceMappingURL=python-builtin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"python-builtin.d.ts","sourceRoot":"","sources":["../../../src/language/python/python-builtin.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAExD,eAAO,MAAM,mBAAmB,UAqE/B,CAAC;AACF,oBAAY,gBAAgB;IAC1B,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,KAAK,UAAU;IACf,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,EAAE,OAAO;IACT,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,YAAY,iBAAiB;IAC7B,IAAI,SAAS;IACb,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,KAAK,UAAU;IACf,KAAK,UAAU;IACf,IAAI,SAAS;IACb,KAAK,UAAU;IACf,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,KAAK,UAAU;CAChB;AAED,MAAM,WAAW,aAAa;IAC5B,cAAc,EAAE,SAAS,CAAC,kBAAkB,CAAC;IAC7C,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,YAAY,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACf;AACD,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,UAAU,CAAC;AAE/C,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,YAAY,GAAG,MAAM,CAAC,eAAe,CAQ9E;AACD,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAotB1E,CAAC"}
|