yapp 4.0.119 → 4.0.121
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/example.js +6969 -9844
- package/lib/div/gutter.js +49 -60
- package/lib/div/lineNumbers.js +44 -55
- package/lib/div/overlay.js +50 -61
- package/lib/div/syntax.js +44 -55
- package/lib/example/div/sizeable/left.js +32 -32
- package/lib/example/div/sizeable/middle.js +32 -32
- package/lib/example/div/sizeable/right.js +32 -32
- package/lib/example/div/sizeable/top.js +32 -32
- package/lib/example/input.js +6 -6
- package/lib/example/subHeading.js +6 -6
- package/lib/example/textarea/bnf.js +29 -29
- package/lib/example/textarea/lexicalEntries.js +29 -29
- package/lib/example/textarea/parseTree.js +29 -29
- package/lib/example/textarea/tokens.js +29 -29
- package/lib/example/textarea.js +6 -6
- package/lib/example/view/javascript.js +31 -31
- package/lib/example/view/json.js +31 -31
- package/lib/example/view/plainText.js +31 -31
- package/lib/example/view/xml.js +31 -31
- package/lib/example/view.js +64 -75
- package/lib/example/yapp.js +31 -31
- package/lib/example.js +6 -6
- package/lib/index.js +6 -6
- package/lib/lexer/javascript.js +41 -41
- package/lib/lexer/json.js +41 -41
- package/lib/lexer/plainText.js +41 -41
- package/lib/lexer/xml.js +41 -41
- package/lib/parser/javascript.js +33 -33
- package/lib/parser/json.js +31 -31
- package/lib/parser/plainText.js +31 -31
- package/lib/parser/xml.js +31 -31
- package/lib/plugin/javascript.js +46 -57
- package/lib/plugin/json.js +46 -57
- package/lib/plugin/plainText.js +46 -57
- package/lib/plugin/xml.js +46 -57
- package/lib/plugin.js +5 -5
- package/lib/prettyPrinter.js +53 -64
- package/lib/processor/javascript.js +35 -35
- package/lib/processor/json.js +27 -27
- package/lib/processor/plainText.js +27 -27
- package/lib/processor/xml.js +33 -33
- package/lib/processor.js +9 -9
- package/lib/renderYappStyles.js +6 -6
- package/lib/richTextarea.js +41 -41
- package/lib/style/syntax.js +6 -6
- package/lib/token/significant/argument.js +28 -28
- package/lib/token/significant/attribute.js +28 -28
- package/lib/token/significant/comment.js +28 -28
- package/lib/token/significant/error.js +28 -28
- package/lib/token/significant/jsx/attributeName.js +28 -28
- package/lib/token/significant/jsx/tagName.js +28 -28
- package/lib/token/significant/name.js +28 -28
- package/lib/token/significant/string.js +29 -29
- package/lib/token/significant/variable.js +28 -28
- package/lib/utilities/plugin.js +6 -6
- package/lib/yapp.js +49 -60
- package/package.json +6 -6
package/lib/div/gutter.js
CHANGED
|
@@ -8,43 +8,32 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _easy = require("easy");
|
|
13
|
-
var _lineNumbers = /*#__PURE__*/
|
|
14
|
-
function
|
|
13
|
+
var _lineNumbers = /*#__PURE__*/ _interop_require_default(require("../div/lineNumbers"));
|
|
14
|
+
function _assert_this_initialized(self) {
|
|
15
15
|
if (self === void 0) {
|
|
16
16
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
17
|
}
|
|
18
18
|
return self;
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function _class_call_check(instance, Constructor) {
|
|
21
21
|
if (!(instance instanceof Constructor)) {
|
|
22
22
|
throw new TypeError("Cannot call a class as a function");
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
function isNativeReflectConstruct() {
|
|
26
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
27
|
-
if (Reflect.construct.sham) return false;
|
|
28
|
-
if (typeof Proxy === "function") return true;
|
|
29
|
-
try {
|
|
30
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
31
|
-
return true;
|
|
32
|
-
} catch (e) {
|
|
33
|
-
return false;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
25
|
function _construct(Parent, args, Class) {
|
|
37
|
-
if (
|
|
26
|
+
if (_is_native_reflect_construct()) {
|
|
38
27
|
_construct = Reflect.construct;
|
|
39
28
|
} else {
|
|
40
|
-
_construct = function
|
|
29
|
+
_construct = function construct(Parent, args, Class) {
|
|
41
30
|
var a = [
|
|
42
31
|
null
|
|
43
32
|
];
|
|
44
33
|
a.push.apply(a, args);
|
|
45
34
|
var Constructor = Function.bind.apply(Parent, a);
|
|
46
35
|
var instance = new Constructor();
|
|
47
|
-
if (Class)
|
|
36
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
48
37
|
return instance;
|
|
49
38
|
};
|
|
50
39
|
}
|
|
@@ -59,12 +48,12 @@ function _defineProperties(target, props) {
|
|
|
59
48
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
60
49
|
}
|
|
61
50
|
}
|
|
62
|
-
function
|
|
51
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
63
52
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
64
53
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
65
54
|
return Constructor;
|
|
66
55
|
}
|
|
67
|
-
function
|
|
56
|
+
function _define_property(obj, key, value) {
|
|
68
57
|
if (key in obj) {
|
|
69
58
|
Object.defineProperty(obj, key, {
|
|
70
59
|
value: value,
|
|
@@ -77,11 +66,11 @@ function _defineProperty(obj, key, value) {
|
|
|
77
66
|
}
|
|
78
67
|
return obj;
|
|
79
68
|
}
|
|
80
|
-
function
|
|
81
|
-
|
|
69
|
+
function _get_prototype_of(o) {
|
|
70
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
82
71
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
83
72
|
};
|
|
84
|
-
return
|
|
73
|
+
return _get_prototype_of(o);
|
|
85
74
|
}
|
|
86
75
|
function _inherits(subClass, superClass) {
|
|
87
76
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -94,17 +83,17 @@ function _inherits(subClass, superClass) {
|
|
|
94
83
|
configurable: true
|
|
95
84
|
}
|
|
96
85
|
});
|
|
97
|
-
if (superClass)
|
|
86
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
98
87
|
}
|
|
99
|
-
function
|
|
88
|
+
function _interop_require_default(obj) {
|
|
100
89
|
return obj && obj.__esModule ? obj : {
|
|
101
90
|
default: obj
|
|
102
91
|
};
|
|
103
92
|
}
|
|
104
|
-
function
|
|
93
|
+
function _is_native_function(fn) {
|
|
105
94
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
106
95
|
}
|
|
107
|
-
function
|
|
96
|
+
function _object_spread(target) {
|
|
108
97
|
for(var i = 1; i < arguments.length; i++){
|
|
109
98
|
var source = arguments[i] != null ? arguments[i] : {};
|
|
110
99
|
var ownKeys = Object.keys(source);
|
|
@@ -114,7 +103,7 @@ function _objectSpread(target) {
|
|
|
114
103
|
}));
|
|
115
104
|
}
|
|
116
105
|
ownKeys.forEach(function(key) {
|
|
117
|
-
|
|
106
|
+
_define_property(target, key, source[key]);
|
|
118
107
|
});
|
|
119
108
|
}
|
|
120
109
|
return target;
|
|
@@ -132,7 +121,7 @@ function ownKeys(object, enumerableOnly) {
|
|
|
132
121
|
}
|
|
133
122
|
return keys;
|
|
134
123
|
}
|
|
135
|
-
function
|
|
124
|
+
function _object_spread_props(target, source) {
|
|
136
125
|
source = source != null ? source : {};
|
|
137
126
|
if (Object.getOwnPropertyDescriptors) {
|
|
138
127
|
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
@@ -143,20 +132,20 @@ function _objectSpreadProps(target, source) {
|
|
|
143
132
|
}
|
|
144
133
|
return target;
|
|
145
134
|
}
|
|
146
|
-
function
|
|
147
|
-
if (call && (
|
|
135
|
+
function _possible_constructor_return(self, call) {
|
|
136
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
148
137
|
return call;
|
|
149
138
|
}
|
|
150
|
-
return
|
|
139
|
+
return _assert_this_initialized(self);
|
|
151
140
|
}
|
|
152
|
-
function
|
|
153
|
-
|
|
141
|
+
function _set_prototype_of(o, p) {
|
|
142
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
154
143
|
o.__proto__ = p;
|
|
155
144
|
return o;
|
|
156
145
|
};
|
|
157
|
-
return
|
|
146
|
+
return _set_prototype_of(o, p);
|
|
158
147
|
}
|
|
159
|
-
function
|
|
148
|
+
function _tagged_template_literal(strings, raw) {
|
|
160
149
|
if (!raw) {
|
|
161
150
|
raw = strings.slice(0);
|
|
162
151
|
}
|
|
@@ -166,14 +155,14 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
166
155
|
}
|
|
167
156
|
}));
|
|
168
157
|
}
|
|
169
|
-
|
|
158
|
+
function _type_of(obj) {
|
|
170
159
|
"@swc/helpers - typeof";
|
|
171
160
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
172
|
-
}
|
|
173
|
-
function
|
|
161
|
+
}
|
|
162
|
+
function _wrap_native_super(Class) {
|
|
174
163
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
175
|
-
|
|
176
|
-
if (Class === null || !
|
|
164
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
165
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
177
166
|
if (typeof Class !== "function") {
|
|
178
167
|
throw new TypeError("Super expression must either be null or a function");
|
|
179
168
|
}
|
|
@@ -182,7 +171,7 @@ function _wrapNativeSuper(Class) {
|
|
|
182
171
|
_cache.set(Class, Wrapper);
|
|
183
172
|
}
|
|
184
173
|
function Wrapper() {
|
|
185
|
-
return _construct(Class, arguments,
|
|
174
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
186
175
|
}
|
|
187
176
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
188
177
|
constructor: {
|
|
@@ -192,11 +181,11 @@ function _wrapNativeSuper(Class) {
|
|
|
192
181
|
configurable: true
|
|
193
182
|
}
|
|
194
183
|
});
|
|
195
|
-
return
|
|
184
|
+
return _set_prototype_of(Wrapper, Class);
|
|
196
185
|
};
|
|
197
|
-
return
|
|
186
|
+
return _wrap_native_super(Class);
|
|
198
187
|
}
|
|
199
|
-
function
|
|
188
|
+
function _is_native_reflect_construct() {
|
|
200
189
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
201
190
|
if (Reflect.construct.sham) return false;
|
|
202
191
|
if (typeof Proxy === "function") return true;
|
|
@@ -207,21 +196,21 @@ function _isNativeReflectConstruct() {
|
|
|
207
196
|
return false;
|
|
208
197
|
}
|
|
209
198
|
}
|
|
210
|
-
function
|
|
211
|
-
var hasNativeReflectConstruct =
|
|
199
|
+
function _create_super(Derived) {
|
|
200
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
212
201
|
return function _createSuperInternal() {
|
|
213
|
-
var Super =
|
|
202
|
+
var Super = _get_prototype_of(Derived), result;
|
|
214
203
|
if (hasNativeReflectConstruct) {
|
|
215
|
-
var NewTarget =
|
|
204
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
216
205
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
217
206
|
} else {
|
|
218
207
|
result = Super.apply(this, arguments);
|
|
219
208
|
}
|
|
220
|
-
return
|
|
209
|
+
return _possible_constructor_return(this, result);
|
|
221
210
|
};
|
|
222
211
|
}
|
|
223
212
|
function _templateObject() {
|
|
224
|
-
var data =
|
|
213
|
+
var data = _tagged_template_literal([
|
|
225
214
|
"\n\n width: fit-content;\n overflow: hidden;\n position: relative;\n grid-area: gutter;\n border-right-width: 1px;\n border-right-style: dotted;\n\n color: inherit;\n font-size: inherit;\n line-height: inherit;\n font-family: inherit;\n font-weight: inherit;\n caret-color: inherit;\n border-color: inherit;\n text-rendering: inherit;\n background-color: inherit;\n font-feature-settings: inherit;\n\n"
|
|
226
215
|
]);
|
|
227
216
|
_templateObject = function _templateObject() {
|
|
@@ -231,12 +220,12 @@ function _templateObject() {
|
|
|
231
220
|
}
|
|
232
221
|
var GutterDiv = /*#__PURE__*/ function(Element) {
|
|
233
222
|
_inherits(GutterDiv, Element);
|
|
234
|
-
var _super =
|
|
223
|
+
var _super = _create_super(GutterDiv);
|
|
235
224
|
function GutterDiv() {
|
|
236
|
-
|
|
225
|
+
_class_call_check(this, GutterDiv);
|
|
237
226
|
return _super.apply(this, arguments);
|
|
238
227
|
}
|
|
239
|
-
|
|
228
|
+
_create_class(GutterDiv, [
|
|
240
229
|
{
|
|
241
230
|
key: "update",
|
|
242
231
|
value: function update(tokens) {
|
|
@@ -276,7 +265,7 @@ var GutterDiv = /*#__PURE__*/ function(Element) {
|
|
|
276
265
|
key: "parentContext",
|
|
277
266
|
value: function parentContext() {
|
|
278
267
|
var context = this.getContext(), updateGutterDiv = this.update.bind(this), scrollGutterDiv = this.scroll.bind(this); ///
|
|
279
|
-
return
|
|
268
|
+
return _object_spread_props(_object_spread({}, context), {
|
|
280
269
|
updateGutterDiv: updateGutterDiv,
|
|
281
270
|
scrollGutterDiv: scrollGutterDiv
|
|
282
271
|
});
|
|
@@ -291,11 +280,11 @@ var GutterDiv = /*#__PURE__*/ function(Element) {
|
|
|
291
280
|
}
|
|
292
281
|
]);
|
|
293
282
|
return GutterDiv;
|
|
294
|
-
}(
|
|
295
|
-
|
|
296
|
-
|
|
283
|
+
}(_wrap_native_super(_easy.Element));
|
|
284
|
+
_define_property(GutterDiv, "tagName", "div");
|
|
285
|
+
_define_property(GutterDiv, "defaultProperties", {
|
|
297
286
|
className: "gutter"
|
|
298
287
|
});
|
|
299
|
-
var _default = (0,
|
|
288
|
+
var _default = (0, _easywithstyle.default)(GutterDiv)(_templateObject());
|
|
300
289
|
|
|
301
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvZ3V0dGVyLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xyXG5cclxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cclxuXHJcbmltcG9ydCB7IFJlYWN0LCBFbGVtZW50IH0gZnJvbSBcImVhc3lcIjtcclxuXHJcbmltcG9ydCBMaW5lTnVtYmVyc0RpdiBmcm9tIFwiLi4vZGl2L2xpbmVOdW1iZXJzXCI7XHJcblxyXG5jbGFzcyBHdXR0ZXJEaXYgZXh0ZW5kcyBFbGVtZW50IHtcclxuICB1cGRhdGUodG9rZW5zKSB7XHJcbiAgICB0aGlzLnVwZGF0ZUxpbmVOdW1iZXJzRGl2KHRva2Vucyk7XHJcbiAgfVxyXG5cclxuICBzY3JvbGwoc2Nyb2xsVG9wLCBzY3JvbGxMZWZ0KSB7XHJcbiAgICB0aGlzLnNjcm9sbExpbmVOdW1iZXJzRGl2KHNjcm9sbFRvcCwgc2Nyb2xsTGVmdCk7XHJcbiAgfVxyXG5cclxuICBzZXRMaW5lQ291bnQobGluZUNvdW50KSB7XHJcbiAgICB0aGlzLnVwZGF0ZVN0YXRlKHtcclxuICAgICAgbGluZUNvdW50XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIHNldEluaXRpYWxTdGF0ZSgpIHtcclxuICAgIGNvbnN0IGxpbmVDb3VudCA9IG51bGw7XHJcblxyXG4gICAgdGhpcy5zZXRTdGF0ZSh7XHJcbiAgICAgIGxpbmVDb3VudFxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBjaGlsZEVsZW1lbnRzKCkge1xyXG4gICAgcmV0dXJuIChcclxuXHJcbiAgICAgIDxMaW5lTnVtYmVyc0Rpdi8+
|
|
290
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvZ3V0dGVyLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xyXG5cclxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cclxuXHJcbmltcG9ydCB7IFJlYWN0LCBFbGVtZW50IH0gZnJvbSBcImVhc3lcIjtcclxuXHJcbmltcG9ydCBMaW5lTnVtYmVyc0RpdiBmcm9tIFwiLi4vZGl2L2xpbmVOdW1iZXJzXCI7XHJcblxyXG5jbGFzcyBHdXR0ZXJEaXYgZXh0ZW5kcyBFbGVtZW50IHtcclxuICB1cGRhdGUodG9rZW5zKSB7XHJcbiAgICB0aGlzLnVwZGF0ZUxpbmVOdW1iZXJzRGl2KHRva2Vucyk7XHJcbiAgfVxyXG5cclxuICBzY3JvbGwoc2Nyb2xsVG9wLCBzY3JvbGxMZWZ0KSB7XHJcbiAgICB0aGlzLnNjcm9sbExpbmVOdW1iZXJzRGl2KHNjcm9sbFRvcCwgc2Nyb2xsTGVmdCk7XHJcbiAgfVxyXG5cclxuICBzZXRMaW5lQ291bnQobGluZUNvdW50KSB7XHJcbiAgICB0aGlzLnVwZGF0ZVN0YXRlKHtcclxuICAgICAgbGluZUNvdW50XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIHNldEluaXRpYWxTdGF0ZSgpIHtcclxuICAgIGNvbnN0IGxpbmVDb3VudCA9IG51bGw7XHJcblxyXG4gICAgdGhpcy5zZXRTdGF0ZSh7XHJcbiAgICAgIGxpbmVDb3VudFxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBjaGlsZEVsZW1lbnRzKCkge1xyXG4gICAgcmV0dXJuIChcclxuXHJcbiAgICAgIDxMaW5lTnVtYmVyc0Rpdi8+XHJcblxyXG4gICAgKTtcclxuICB9XHJcblxyXG4gIHBhcmVudENvbnRleHQoKSB7XHJcblx0ICBjb25zdCBjb250ZXh0ID0gdGhpcy5nZXRDb250ZXh0KCksXHJcblx0XHRcdFx0ICB1cGRhdGVHdXR0ZXJEaXYgPSB0aGlzLnVwZGF0ZS5iaW5kKHRoaXMpLCAgLy8vXHJcblx0XHRcdFx0ICBzY3JvbGxHdXR0ZXJEaXYgPSB0aGlzLnNjcm9sbC5iaW5kKHRoaXMpOyAgLy8vXHJcblxyXG4gICAgcmV0dXJuICh7XHJcbiAgICAgIC4uLmNvbnRleHQsXHJcbiAgICAgIHVwZGF0ZUd1dHRlckRpdixcclxuICAgICAgc2Nyb2xsR3V0dGVyRGl2XHJcbiAgICB9KTtcclxuICB9XHJcbiAgXHJcbiAgaW5pdGlhbGlzZSgpIHtcclxuICAgIHRoaXMuYXNzaWduQ29udGV4dCgpO1xyXG5cclxuICAgIHRoaXMuc2V0SW5pdGlhbFN0YXRlKCk7XHJcbiAgfVxyXG5cclxuICBzdGF0aWMgdGFnTmFtZSA9IFwiZGl2XCI7XHJcblxyXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcclxuICAgIGNsYXNzTmFtZTogXCJndXR0ZXJcIlxyXG4gIH07XHJcbn1cclxuXHJcbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShHdXR0ZXJEaXYpYFxyXG5cclxuICB3aWR0aDogZml0LWNvbnRlbnQ7XHJcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcclxuICBwb3NpdGlvbjogcmVsYXRpdmU7XHJcbiAgZ3JpZC1hcmVhOiBndXR0ZXI7XHJcbiAgYm9yZGVyLXJpZ2h0LXdpZHRoOiAxcHg7XHJcbiAgYm9yZGVyLXJpZ2h0LXN0eWxlOiBkb3R0ZWQ7XHJcblxyXG4gIGNvbG9yOiBpbmhlcml0O1xyXG4gIGZvbnQtc2l6ZTogaW5oZXJpdDtcclxuICBsaW5lLWhlaWdodDogaW5oZXJpdDtcclxuICBmb250LWZhbWlseTogaW5oZXJpdDtcclxuICBmb250LXdlaWdodDogaW5oZXJpdDtcclxuICBjYXJldC1jb2xvcjogaW5oZXJpdDtcclxuICBib3JkZXItY29sb3I6IGluaGVyaXQ7XHJcbiAgdGV4dC1yZW5kZXJpbmc6IGluaGVyaXQ7XHJcbiAgYmFja2dyb3VuZC1jb2xvcjogaW5oZXJpdDtcclxuICBmb250LWZlYXR1cmUtc2V0dGluZ3M6IGluaGVyaXQ7XHJcblxyXG5gO1xyXG4iXSwibmFtZXMiOlsiR3V0dGVyRGl2IiwidXBkYXRlIiwidG9rZW5zIiwidXBkYXRlTGluZU51bWJlcnNEaXYiLCJzY3JvbGwiLCJzY3JvbGxUb3AiLCJzY3JvbGxMZWZ0Iiwic2Nyb2xsTGluZU51bWJlcnNEaXYiLCJzZXRMaW5lQ291bnQiLCJsaW5lQ291bnQiLCJ1cGRhdGVTdGF0ZSIsInNldEluaXRpYWxTdGF0ZSIsInNldFN0YXRlIiwiY2hpbGRFbGVtZW50cyIsIkxpbmVOdW1iZXJzRGl2IiwicGFyZW50Q29udGV4dCIsImNvbnRleHQiLCJnZXRDb250ZXh0IiwidXBkYXRlR3V0dGVyRGl2IiwiYmluZCIsInNjcm9sbEd1dHRlckRpdiIsImluaXRpYWxpc2UiLCJhc3NpZ25Db250ZXh0IiwiRWxlbWVudCIsInRhZ05hbWUiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBZ0VBOzs7ZUFBQTs7O29FQTlEc0I7b0JBRVM7a0VBRUo7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFM0IsSUFBQSxBQUFNQSwwQkF3REwsQUF4REQ7Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O2tCQUFBQTs7WUFDSkMsS0FBQUE7bUJBQUFBLFNBQUFBLE9BQU9DLE1BQU0sRUFBRTtnQkFDYixJQUFJLENBQUNDLG9CQUFvQixDQUFDRDtZQUM1Qjs7O1lBRUFFLEtBQUFBO21CQUFBQSxTQUFBQSxPQUFPQyxTQUFTLEVBQUVDLFVBQVUsRUFBRTtnQkFDNUIsSUFBSSxDQUFDQyxvQkFBb0IsQ0FBQ0YsV0FBV0M7WUFDdkM7OztZQUVBRSxLQUFBQTttQkFBQUEsU0FBQUEsYUFBYUMsU0FBUyxFQUFFO2dCQUN0QixJQUFJLENBQUNDLFdBQVcsQ0FBQztvQkFDZkQsV0FBQUE7Z0JBQ0Y7WUFDRjs7O1lBRUFFLEtBQUFBO21CQUFBQSxTQUFBQSxrQkFBa0I7Z0JBQ2hCLElBQU1GLFlBQVksSUFBSTtnQkFFdEIsSUFBSSxDQUFDRyxRQUFRLENBQUM7b0JBQ1pILFdBQUFBO2dCQUNGO1lBQ0Y7OztZQUVBSSxLQUFBQTttQkFBQUEsU0FBQUEsZ0JBQWdCO2dCQUNkLHFCQUVFLDBCQUFDQyxvQkFBYztZQUduQjs7O1lBRUFDLEtBQUFBO21CQUFBQSxTQUFBQSxnQkFBZ0I7Z0JBQ2YsSUFBTUMsVUFBVSxJQUFJLENBQUNDLFVBQVUsSUFDNUJDLGtCQUFrQixJQUFJLENBQUNqQixNQUFNLENBQUNrQixJQUFJLENBQUMsSUFBSSxHQUN2Q0Msa0JBQWtCLElBQUksQ0FBQ2hCLE1BQU0sQ0FBQ2UsSUFBSSxDQUFDLElBQUksR0FBSSxHQUFHO2dCQUVoRCxPQUFRLHdDQUNISDtvQkFDSEUsaUJBQUFBO29CQUNBRSxpQkFBQUE7O1lBRUo7OztZQUVBQyxLQUFBQTttQkFBQUEsU0FBQUEsYUFBYTtnQkFDWCxJQUFJLENBQUNDLGFBQWE7Z0JBRWxCLElBQUksQ0FBQ1gsZUFBZTtZQUN0Qjs7O1dBL0NJWDtxQkFBa0J1QixhQUFPO0FBaUQ3QixpQkFqREl2QixXQWlER3dCLFdBQVU7QUFFakIsaUJBbkRJeEIsV0FtREd5QixxQkFBb0I7SUFDekJDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUMzQiJ9
|
package/lib/div/lineNumbers.js
CHANGED
|
@@ -8,44 +8,33 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _easy = require("easy");
|
|
13
13
|
var _constants = require("../constants");
|
|
14
14
|
var _tokens = require("../utilities/tokens");
|
|
15
|
-
function
|
|
15
|
+
function _assert_this_initialized(self) {
|
|
16
16
|
if (self === void 0) {
|
|
17
17
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
18
18
|
}
|
|
19
19
|
return self;
|
|
20
20
|
}
|
|
21
|
-
function
|
|
21
|
+
function _class_call_check(instance, Constructor) {
|
|
22
22
|
if (!(instance instanceof Constructor)) {
|
|
23
23
|
throw new TypeError("Cannot call a class as a function");
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
function isNativeReflectConstruct() {
|
|
27
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
28
|
-
if (Reflect.construct.sham) return false;
|
|
29
|
-
if (typeof Proxy === "function") return true;
|
|
30
|
-
try {
|
|
31
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
32
|
-
return true;
|
|
33
|
-
} catch (e) {
|
|
34
|
-
return false;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
26
|
function _construct(Parent, args, Class) {
|
|
38
|
-
if (
|
|
27
|
+
if (_is_native_reflect_construct()) {
|
|
39
28
|
_construct = Reflect.construct;
|
|
40
29
|
} else {
|
|
41
|
-
_construct = function
|
|
30
|
+
_construct = function construct(Parent, args, Class) {
|
|
42
31
|
var a = [
|
|
43
32
|
null
|
|
44
33
|
];
|
|
45
34
|
a.push.apply(a, args);
|
|
46
35
|
var Constructor = Function.bind.apply(Parent, a);
|
|
47
36
|
var instance = new Constructor();
|
|
48
|
-
if (Class)
|
|
37
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
49
38
|
return instance;
|
|
50
39
|
};
|
|
51
40
|
}
|
|
@@ -60,12 +49,12 @@ function _defineProperties(target, props) {
|
|
|
60
49
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
61
50
|
}
|
|
62
51
|
}
|
|
63
|
-
function
|
|
52
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
64
53
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
65
54
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
66
55
|
return Constructor;
|
|
67
56
|
}
|
|
68
|
-
function
|
|
57
|
+
function _define_property(obj, key, value) {
|
|
69
58
|
if (key in obj) {
|
|
70
59
|
Object.defineProperty(obj, key, {
|
|
71
60
|
value: value,
|
|
@@ -78,11 +67,11 @@ function _defineProperty(obj, key, value) {
|
|
|
78
67
|
}
|
|
79
68
|
return obj;
|
|
80
69
|
}
|
|
81
|
-
function
|
|
82
|
-
|
|
70
|
+
function _get_prototype_of(o) {
|
|
71
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
83
72
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
84
73
|
};
|
|
85
|
-
return
|
|
74
|
+
return _get_prototype_of(o);
|
|
86
75
|
}
|
|
87
76
|
function _inherits(subClass, superClass) {
|
|
88
77
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -95,30 +84,30 @@ function _inherits(subClass, superClass) {
|
|
|
95
84
|
configurable: true
|
|
96
85
|
}
|
|
97
86
|
});
|
|
98
|
-
if (superClass)
|
|
87
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
99
88
|
}
|
|
100
|
-
function
|
|
89
|
+
function _interop_require_default(obj) {
|
|
101
90
|
return obj && obj.__esModule ? obj : {
|
|
102
91
|
default: obj
|
|
103
92
|
};
|
|
104
93
|
}
|
|
105
|
-
function
|
|
94
|
+
function _is_native_function(fn) {
|
|
106
95
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
107
96
|
}
|
|
108
|
-
function
|
|
109
|
-
if (call && (
|
|
97
|
+
function _possible_constructor_return(self, call) {
|
|
98
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
110
99
|
return call;
|
|
111
100
|
}
|
|
112
|
-
return
|
|
101
|
+
return _assert_this_initialized(self);
|
|
113
102
|
}
|
|
114
|
-
function
|
|
115
|
-
|
|
103
|
+
function _set_prototype_of(o, p) {
|
|
104
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
116
105
|
o.__proto__ = p;
|
|
117
106
|
return o;
|
|
118
107
|
};
|
|
119
|
-
return
|
|
108
|
+
return _set_prototype_of(o, p);
|
|
120
109
|
}
|
|
121
|
-
function
|
|
110
|
+
function _tagged_template_literal(strings, raw) {
|
|
122
111
|
if (!raw) {
|
|
123
112
|
raw = strings.slice(0);
|
|
124
113
|
}
|
|
@@ -128,14 +117,14 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
128
117
|
}
|
|
129
118
|
}));
|
|
130
119
|
}
|
|
131
|
-
|
|
120
|
+
function _type_of(obj) {
|
|
132
121
|
"@swc/helpers - typeof";
|
|
133
122
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
134
|
-
}
|
|
135
|
-
function
|
|
123
|
+
}
|
|
124
|
+
function _wrap_native_super(Class) {
|
|
136
125
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
137
|
-
|
|
138
|
-
if (Class === null || !
|
|
126
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
127
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
139
128
|
if (typeof Class !== "function") {
|
|
140
129
|
throw new TypeError("Super expression must either be null or a function");
|
|
141
130
|
}
|
|
@@ -144,7 +133,7 @@ function _wrapNativeSuper(Class) {
|
|
|
144
133
|
_cache.set(Class, Wrapper);
|
|
145
134
|
}
|
|
146
135
|
function Wrapper() {
|
|
147
|
-
return _construct(Class, arguments,
|
|
136
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
148
137
|
}
|
|
149
138
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
150
139
|
constructor: {
|
|
@@ -154,11 +143,11 @@ function _wrapNativeSuper(Class) {
|
|
|
154
143
|
configurable: true
|
|
155
144
|
}
|
|
156
145
|
});
|
|
157
|
-
return
|
|
146
|
+
return _set_prototype_of(Wrapper, Class);
|
|
158
147
|
};
|
|
159
|
-
return
|
|
148
|
+
return _wrap_native_super(Class);
|
|
160
149
|
}
|
|
161
|
-
function
|
|
150
|
+
function _is_native_reflect_construct() {
|
|
162
151
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
163
152
|
if (Reflect.construct.sham) return false;
|
|
164
153
|
if (typeof Proxy === "function") return true;
|
|
@@ -169,21 +158,21 @@ function _isNativeReflectConstruct() {
|
|
|
169
158
|
return false;
|
|
170
159
|
}
|
|
171
160
|
}
|
|
172
|
-
function
|
|
173
|
-
var hasNativeReflectConstruct =
|
|
161
|
+
function _create_super(Derived) {
|
|
162
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
174
163
|
return function _createSuperInternal() {
|
|
175
|
-
var Super =
|
|
164
|
+
var Super = _get_prototype_of(Derived), result;
|
|
176
165
|
if (hasNativeReflectConstruct) {
|
|
177
|
-
var NewTarget =
|
|
166
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
178
167
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
179
168
|
} else {
|
|
180
169
|
result = Super.apply(this, arguments);
|
|
181
170
|
}
|
|
182
|
-
return
|
|
171
|
+
return _possible_constructor_return(this, result);
|
|
183
172
|
};
|
|
184
173
|
}
|
|
185
174
|
function _templateObject() {
|
|
186
|
-
var data =
|
|
175
|
+
var data = _tagged_template_literal([
|
|
187
176
|
"\n\n margin: 0 6px 0 6px;\n position: relative;\n text-align: right;\n user-select: none;\n pointer-events: none;\n\n color: inherit;\n font-size: inherit;\n line-height: inherit;\n font-family: 'DejaVu Sans Mono', Menlo, 'Lucida Console', Monaco, monospace;\n font-weight: normal;\n caret-color: initial;\n border-color: initial;\n text-rendering: initial;\n background-color: initial;\n font-feature-settings: initial;\n\n"
|
|
188
177
|
]);
|
|
189
178
|
_templateObject = function _templateObject() {
|
|
@@ -193,12 +182,12 @@ function _templateObject() {
|
|
|
193
182
|
}
|
|
194
183
|
var LineNumbersDiv = /*#__PURE__*/ function(Element) {
|
|
195
184
|
_inherits(LineNumbersDiv, Element);
|
|
196
|
-
var _super =
|
|
185
|
+
var _super = _create_super(LineNumbersDiv);
|
|
197
186
|
function LineNumbersDiv() {
|
|
198
|
-
|
|
187
|
+
_class_call_check(this, LineNumbersDiv);
|
|
199
188
|
return _super.apply(this, arguments);
|
|
200
189
|
}
|
|
201
|
-
|
|
190
|
+
_create_class(LineNumbersDiv, [
|
|
202
191
|
{
|
|
203
192
|
key: "update",
|
|
204
193
|
value: function update(tokens) {
|
|
@@ -231,11 +220,11 @@ var LineNumbersDiv = /*#__PURE__*/ function(Element) {
|
|
|
231
220
|
}
|
|
232
221
|
]);
|
|
233
222
|
return LineNumbersDiv;
|
|
234
|
-
}(
|
|
235
|
-
|
|
236
|
-
|
|
223
|
+
}(_wrap_native_super(_easy.Element));
|
|
224
|
+
_define_property(LineNumbersDiv, "tagName", "div");
|
|
225
|
+
_define_property(LineNumbersDiv, "defaultProperties", {
|
|
237
226
|
className: "line-numbers"
|
|
238
227
|
});
|
|
239
|
-
var _default = (0,
|
|
228
|
+
var _default = (0, _easywithstyle.default)(LineNumbersDiv)(_templateObject());
|
|
240
229
|
|
|
241
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvbGluZU51bWJlcnMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XHJcblxyXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xyXG5cclxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XHJcblxyXG5pbXBvcnQgeyBFTVBUWV9TVFJJTkcgfSBmcm9tIFwiLi4vY29uc3RhbnRzXCI7XHJcbmltcG9ydCB7IGxpbmVDb3VudEZyb21Ub2tlbnMgfSBmcm9tIFwiLi4vdXRpbGl0aWVzL3Rva2Vuc1wiO1xyXG5cclxuY2xhc3MgTGluZU51bWJlcnNEaXYgZXh0ZW5kcyBFbGVtZW50IHtcclxuICB1cGRhdGUodG9rZW5zKSB7XHJcbiAgICBsZXQgaHRtbCA9IEVNUFRZX1NUUklORztcclxuXHJcbiAgICBjb25zdCBsaW5lQ291bnQgPSBsaW5lQ291bnRGcm9tVG9rZW5zKHRva2Vucyk7XHJcblxyXG4gICAgZm9yIChsZXQgbGluZU51bWJlciA9IDE7IGxpbmVOdW1iZXIgPD0gbGluZUNvdW50OyBsaW5lTnVtYmVyKyspIHtcclxuICAgICAgaHRtbCA9IGAke2h0bWx9JHtsaW5lTnVtYmVyfTxici8+
|
|
230
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvbGluZU51bWJlcnMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XHJcblxyXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xyXG5cclxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XHJcblxyXG5pbXBvcnQgeyBFTVBUWV9TVFJJTkcgfSBmcm9tIFwiLi4vY29uc3RhbnRzXCI7XHJcbmltcG9ydCB7IGxpbmVDb3VudEZyb21Ub2tlbnMgfSBmcm9tIFwiLi4vdXRpbGl0aWVzL3Rva2Vuc1wiO1xyXG5cclxuY2xhc3MgTGluZU51bWJlcnNEaXYgZXh0ZW5kcyBFbGVtZW50IHtcclxuICB1cGRhdGUodG9rZW5zKSB7XHJcbiAgICBsZXQgaHRtbCA9IEVNUFRZX1NUUklORztcclxuXHJcbiAgICBjb25zdCBsaW5lQ291bnQgPSBsaW5lQ291bnRGcm9tVG9rZW5zKHRva2Vucyk7XHJcblxyXG4gICAgZm9yIChsZXQgbGluZU51bWJlciA9IDE7IGxpbmVOdW1iZXIgPD0gbGluZUNvdW50OyBsaW5lTnVtYmVyKyspIHtcclxuICAgICAgaHRtbCA9IGAke2h0bWx9JHtsaW5lTnVtYmVyfTxici8+YDtcclxuICAgIH1cclxuXHJcbiAgICB0aGlzLmh0bWwoaHRtbCk7XHJcbiAgfVxyXG5cclxuICBzY3JvbGwoc2Nyb2xsVG9wLCBzY3JvbGxMZWZ0KSB7XHJcbiAgICBjb25zdCB0b3AgPSBgJHstc2Nyb2xsVG9wfXB4YCxcclxuICAgICAgICAgIGNzcyA9IHtcclxuICAgICAgICAgICAgdG9wXHJcbiAgICAgICAgICB9O1xyXG5cclxuICAgIHRoaXMuY3NzKGNzcyk7XHJcbiAgfVxyXG5cclxuICBwYXJlbnRDb250ZXh0KCkge1xyXG5cdCAgY29uc3Qgc2Nyb2xsTGluZU51bWJlcnNEaXYgPSB0aGlzLnNjcm9sbC5iaW5kKHRoaXMpLCAvLy9cclxuICAgICAgICAgIHVwZGF0ZUxpbmVOdW1iZXJzRGl2ID0gdGhpcy51cGRhdGUuYmluZCh0aGlzKTsgIC8vL1xyXG5cclxuICAgIHJldHVybiAoe1xyXG4gICAgICBzY3JvbGxMaW5lTnVtYmVyc0RpdixcclxuICAgICAgdXBkYXRlTGluZU51bWJlcnNEaXZcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgc3RhdGljIHRhZ05hbWUgPSBcImRpdlwiO1xyXG5cclxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XHJcbiAgICBjbGFzc05hbWU6IFwibGluZS1udW1iZXJzXCJcclxuICB9O1xyXG59XHJcblxyXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoTGluZU51bWJlcnNEaXYpYFxyXG5cclxuICBtYXJnaW46IDAgNnB4IDAgNnB4O1xyXG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcclxuICB0ZXh0LWFsaWduOiByaWdodDtcclxuICB1c2VyLXNlbGVjdDogbm9uZTtcclxuICBwb2ludGVyLWV2ZW50czogbm9uZTtcclxuXHJcbiAgY29sb3I6IGluaGVyaXQ7XHJcbiAgZm9udC1zaXplOiBpbmhlcml0O1xyXG4gIGxpbmUtaGVpZ2h0OiBpbmhlcml0O1xyXG4gIGZvbnQtZmFtaWx5OiAnRGVqYVZ1IFNhbnMgTW9ubycsIE1lbmxvLCAnTHVjaWRhIENvbnNvbGUnLCBNb25hY28sIG1vbm9zcGFjZTtcclxuICBmb250LXdlaWdodDogbm9ybWFsO1xyXG4gIGNhcmV0LWNvbG9yOiBpbml0aWFsO1xyXG4gIGJvcmRlci1jb2xvcjogaW5pdGlhbDtcclxuICB0ZXh0LXJlbmRlcmluZzogaW5pdGlhbDtcclxuICBiYWNrZ3JvdW5kLWNvbG9yOiBpbml0aWFsO1xyXG4gIGZvbnQtZmVhdHVyZS1zZXR0aW5nczogaW5pdGlhbDtcclxuXHJcbmA7XHJcbiJdLCJuYW1lcyI6WyJMaW5lTnVtYmVyc0RpdiIsInVwZGF0ZSIsInRva2VucyIsImh0bWwiLCJFTVBUWV9TVFJJTkciLCJsaW5lQ291bnQiLCJsaW5lQ291bnRGcm9tVG9rZW5zIiwibGluZU51bWJlciIsInNjcm9sbCIsInNjcm9sbFRvcCIsInNjcm9sbExlZnQiLCJ0b3AiLCJjc3MiLCJwYXJlbnRDb250ZXh0Iiwic2Nyb2xsTGluZU51bWJlcnNEaXYiLCJiaW5kIiwidXBkYXRlTGluZU51bWJlcnNEaXYiLCJFbGVtZW50IiwidGFnTmFtZSIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFnREE7OztlQUFBOzs7b0VBOUNzQjtvQkFFRTt5QkFFSztzQkFDTzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVwQyxJQUFBLEFBQU1BLCtCQXVDTCxBQXZDRDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7a0JBQUFBOztZQUNKQyxLQUFBQTttQkFBQUEsU0FBQUEsT0FBT0MsTUFBTSxFQUFFO2dCQUNiLElBQUlDLE9BQU9DLHVCQUFZO2dCQUV2QixJQUFNQyxZQUFZQyxJQUFBQSwyQkFBbUIsRUFBQ0o7Z0JBRXRDLElBQUssSUFBSUssYUFBYSxHQUFHQSxjQUFjRixXQUFXRSxhQUFjO29CQUM5REosT0FBTyxBQUFDLEdBQVNJLE9BQVBKLE1BQWtCLE9BQVhJLFlBQVc7Z0JBQzlCO2dCQUVBLElBQUksQ0FBQ0osSUFBSSxDQUFDQTtZQUNaOzs7WUFFQUssS0FBQUE7bUJBQUFBLFNBQUFBLE9BQU9DLFNBQVMsRUFBRUMsVUFBVSxFQUFFO2dCQUM1QixJQUFNQyxNQUFNLEFBQUMsR0FBYSxPQUFYLENBQUNGLFdBQVUsT0FDcEJHLE1BQU07b0JBQ0pELEtBQUFBO2dCQUNGO2dCQUVOLElBQUksQ0FBQ0MsR0FBRyxDQUFDQTtZQUNYOzs7WUFFQUMsS0FBQUE7bUJBQUFBLFNBQUFBLGdCQUFnQjtnQkFDZixJQUFNQyx1QkFBdUIsSUFBSSxDQUFDTixNQUFNLENBQUNPLElBQUksQ0FBQyxJQUFJLEdBQzNDQyx1QkFBdUIsSUFBSSxDQUFDZixNQUFNLENBQUNjLElBQUksQ0FBQyxJQUFJLEdBQUksR0FBRztnQkFFekQsT0FBUTtvQkFDTkQsc0JBQUFBO29CQUNBRSxzQkFBQUE7Z0JBQ0Y7WUFDRjs7O1dBOUJJaEI7cUJBQXVCaUIsYUFBTztBQWdDbEMsaUJBaENJakIsZ0JBZ0NHa0IsV0FBVTtBQUVqQixpQkFsQ0lsQixnQkFrQ0dtQixxQkFBb0I7SUFDekJDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNyQiJ9
|