pushfeedback 0.0.4 → 0.0.6
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/dist/cjs/feedback-button_2.cjs.entry.js +1 -1031
- package/dist/cjs/index-df770657.js +1 -1463
- package/dist/cjs/index.cjs.js +1 -2
- package/dist/cjs/loader.cjs.js +1 -22
- package/dist/cjs/pushfeedback.cjs.js +1 -23
- package/dist/collection/components/feedback-button/feedback-button.css +47 -8
- package/dist/collection/components/feedback-button/feedback-button.js +1 -297
- package/dist/collection/components/feedback-modal/feedback-modal.js +1 -466
- package/dist/collection/index.js +1 -1
- package/dist/components/feedback-button.js +1 -92
- package/dist/components/feedback-modal.js +1 -6
- package/dist/components/feedback-modal2.js +1 -1011
- package/dist/components/index.js +1 -3
- package/dist/esm/feedback-button_2.entry.js +1 -1026
- package/dist/esm/index-0ae29483.js +1 -1436
- package/dist/esm/index.js +0 -1
- package/dist/esm/loader.js +1 -18
- package/dist/esm/polyfills/core-js.js +1 -11
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/polyfills/dom.js +1 -79
- package/dist/esm/polyfills/es5-html-element.js +1 -1
- package/dist/esm/polyfills/index.js +1 -34
- package/dist/esm/polyfills/system.js +1 -6
- package/dist/esm/pushfeedback.js +1 -18
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/pushfeedback/p-60079923.js +1 -2
- package/dist/pushfeedback/p-7630bdbf.entry.js +1 -0
- package/dist/pushfeedback/pushfeedback.css +1 -1
- package/dist/pushfeedback/pushfeedback.esm.js +1 -1
- package/dist/types/components/feedback-button/feedback-button.d.ts +1 -0
- package/dist/types/components.d.ts +2 -0
- package/package.json +3 -2
- package/dist/pushfeedback/p-b4e69248.entry.js +0 -1
|
@@ -1,1011 +1 @@
|
|
|
1
|
-
import { proxyCustomElement, HTMLElement, h } from '@stencil/core/internal/client';
|
|
2
|
-
|
|
3
|
-
function createCommonjsModule(fn, basedir, module) {
|
|
4
|
-
return module = {
|
|
5
|
-
path: basedir,
|
|
6
|
-
exports: {},
|
|
7
|
-
require: function (path, base) {
|
|
8
|
-
return commonjsRequire();
|
|
9
|
-
}
|
|
10
|
-
}, fn(module, module.exports), module.exports;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
function commonjsRequire () {
|
|
14
|
-
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
var domToImage = createCommonjsModule(function (module) {
|
|
18
|
-
(function (global) {
|
|
19
|
-
|
|
20
|
-
var util = newUtil();
|
|
21
|
-
var inliner = newInliner();
|
|
22
|
-
var fontFaces = newFontFaces();
|
|
23
|
-
var images = newImages();
|
|
24
|
-
|
|
25
|
-
// Default impl options
|
|
26
|
-
var defaultOptions = {
|
|
27
|
-
// Default is to fail on error, no placeholder
|
|
28
|
-
imagePlaceholder: undefined,
|
|
29
|
-
// Default cache bust is false, it will use the cache
|
|
30
|
-
cacheBust: false
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
var domtoimage = {
|
|
34
|
-
toSvg: toSvg,
|
|
35
|
-
toPng: toPng,
|
|
36
|
-
toJpeg: toJpeg,
|
|
37
|
-
toBlob: toBlob,
|
|
38
|
-
toPixelData: toPixelData,
|
|
39
|
-
impl: {
|
|
40
|
-
fontFaces: fontFaces,
|
|
41
|
-
images: images,
|
|
42
|
-
util: util,
|
|
43
|
-
inliner: inliner,
|
|
44
|
-
options: {}
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
module.exports = domtoimage;
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* @param {Node} node - The DOM Node object to render
|
|
53
|
-
* @param {Object} options - Rendering options
|
|
54
|
-
* @param {Function} options.filter - Should return true if passed node should be included in the output
|
|
55
|
-
* (excluding node means excluding it's children as well). Not called on the root node.
|
|
56
|
-
* @param {String} options.bgcolor - color for the background, any valid CSS color value.
|
|
57
|
-
* @param {Number} options.width - width to be applied to node before rendering.
|
|
58
|
-
* @param {Number} options.height - height to be applied to node before rendering.
|
|
59
|
-
* @param {Object} options.style - an object whose properties to be copied to node's style before rendering.
|
|
60
|
-
* @param {Number} options.quality - a Number between 0 and 1 indicating image quality (applicable to JPEG only),
|
|
61
|
-
defaults to 1.0.
|
|
62
|
-
* @param {String} options.imagePlaceholder - dataURL to use as a placeholder for failed images, default behaviour is to fail fast on images we can't fetch
|
|
63
|
-
* @param {Boolean} options.cacheBust - set to true to cache bust by appending the time to the request url
|
|
64
|
-
* @return {Promise} - A promise that is fulfilled with a SVG image data URL
|
|
65
|
-
* */
|
|
66
|
-
function toSvg(node, options) {
|
|
67
|
-
options = options || {};
|
|
68
|
-
copyOptions(options);
|
|
69
|
-
return Promise.resolve(node)
|
|
70
|
-
.then(function (node) {
|
|
71
|
-
return cloneNode(node, options.filter, true);
|
|
72
|
-
})
|
|
73
|
-
.then(embedFonts)
|
|
74
|
-
.then(inlineImages)
|
|
75
|
-
.then(applyOptions)
|
|
76
|
-
.then(function (clone) {
|
|
77
|
-
return makeSvgDataUri(clone,
|
|
78
|
-
options.width || util.width(node),
|
|
79
|
-
options.height || util.height(node)
|
|
80
|
-
);
|
|
81
|
-
});
|
|
82
|
-
|
|
83
|
-
function applyOptions(clone) {
|
|
84
|
-
if (options.bgcolor) clone.style.backgroundColor = options.bgcolor;
|
|
85
|
-
|
|
86
|
-
if (options.width) clone.style.width = options.width + 'px';
|
|
87
|
-
if (options.height) clone.style.height = options.height + 'px';
|
|
88
|
-
|
|
89
|
-
if (options.style)
|
|
90
|
-
Object.keys(options.style).forEach(function (property) {
|
|
91
|
-
clone.style[property] = options.style[property];
|
|
92
|
-
});
|
|
93
|
-
|
|
94
|
-
return clone;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* @param {Node} node - The DOM Node object to render
|
|
100
|
-
* @param {Object} options - Rendering options, @see {@link toSvg}
|
|
101
|
-
* @return {Promise} - A promise that is fulfilled with a Uint8Array containing RGBA pixel data.
|
|
102
|
-
* */
|
|
103
|
-
function toPixelData(node, options) {
|
|
104
|
-
return draw(node, options || {})
|
|
105
|
-
.then(function (canvas) {
|
|
106
|
-
return canvas.getContext('2d').getImageData(
|
|
107
|
-
0,
|
|
108
|
-
0,
|
|
109
|
-
util.width(node),
|
|
110
|
-
util.height(node)
|
|
111
|
-
).data;
|
|
112
|
-
});
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
/**
|
|
116
|
-
* @param {Node} node - The DOM Node object to render
|
|
117
|
-
* @param {Object} options - Rendering options, @see {@link toSvg}
|
|
118
|
-
* @return {Promise} - A promise that is fulfilled with a PNG image data URL
|
|
119
|
-
* */
|
|
120
|
-
function toPng(node, options) {
|
|
121
|
-
return draw(node, options || {})
|
|
122
|
-
.then(function (canvas) {
|
|
123
|
-
return canvas.toDataURL();
|
|
124
|
-
});
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* @param {Node} node - The DOM Node object to render
|
|
129
|
-
* @param {Object} options - Rendering options, @see {@link toSvg}
|
|
130
|
-
* @return {Promise} - A promise that is fulfilled with a JPEG image data URL
|
|
131
|
-
* */
|
|
132
|
-
function toJpeg(node, options) {
|
|
133
|
-
options = options || {};
|
|
134
|
-
return draw(node, options)
|
|
135
|
-
.then(function (canvas) {
|
|
136
|
-
return canvas.toDataURL('image/jpeg', options.quality || 1.0);
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/**
|
|
141
|
-
* @param {Node} node - The DOM Node object to render
|
|
142
|
-
* @param {Object} options - Rendering options, @see {@link toSvg}
|
|
143
|
-
* @return {Promise} - A promise that is fulfilled with a PNG image blob
|
|
144
|
-
* */
|
|
145
|
-
function toBlob(node, options) {
|
|
146
|
-
return draw(node, options || {})
|
|
147
|
-
.then(util.canvasToBlob);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
function copyOptions(options) {
|
|
151
|
-
// Copy options to impl options for use in impl
|
|
152
|
-
if(typeof(options.imagePlaceholder) === 'undefined') {
|
|
153
|
-
domtoimage.impl.options.imagePlaceholder = defaultOptions.imagePlaceholder;
|
|
154
|
-
} else {
|
|
155
|
-
domtoimage.impl.options.imagePlaceholder = options.imagePlaceholder;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
if(typeof(options.cacheBust) === 'undefined') {
|
|
159
|
-
domtoimage.impl.options.cacheBust = defaultOptions.cacheBust;
|
|
160
|
-
} else {
|
|
161
|
-
domtoimage.impl.options.cacheBust = options.cacheBust;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
function draw(domNode, options) {
|
|
166
|
-
return toSvg(domNode, options)
|
|
167
|
-
.then(util.makeImage)
|
|
168
|
-
.then(util.delay(100))
|
|
169
|
-
.then(function (image) {
|
|
170
|
-
var canvas = newCanvas(domNode);
|
|
171
|
-
canvas.getContext('2d').drawImage(image, 0, 0);
|
|
172
|
-
return canvas;
|
|
173
|
-
});
|
|
174
|
-
|
|
175
|
-
function newCanvas(domNode) {
|
|
176
|
-
var canvas = document.createElement('canvas');
|
|
177
|
-
canvas.width = options.width || util.width(domNode);
|
|
178
|
-
canvas.height = options.height || util.height(domNode);
|
|
179
|
-
|
|
180
|
-
if (options.bgcolor) {
|
|
181
|
-
var ctx = canvas.getContext('2d');
|
|
182
|
-
ctx.fillStyle = options.bgcolor;
|
|
183
|
-
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
return canvas;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
function cloneNode(node, filter, root) {
|
|
191
|
-
if (!root && filter && !filter(node)) return Promise.resolve();
|
|
192
|
-
|
|
193
|
-
return Promise.resolve(node)
|
|
194
|
-
.then(makeNodeCopy)
|
|
195
|
-
.then(function (clone) {
|
|
196
|
-
return cloneChildren(node, clone, filter);
|
|
197
|
-
})
|
|
198
|
-
.then(function (clone) {
|
|
199
|
-
return processClone(node, clone);
|
|
200
|
-
});
|
|
201
|
-
|
|
202
|
-
function makeNodeCopy(node) {
|
|
203
|
-
if (node instanceof HTMLCanvasElement) return util.makeImage(node.toDataURL());
|
|
204
|
-
return node.cloneNode(false);
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
function cloneChildren(original, clone, filter) {
|
|
208
|
-
var children = original.childNodes;
|
|
209
|
-
if (children.length === 0) return Promise.resolve(clone);
|
|
210
|
-
|
|
211
|
-
return cloneChildrenInOrder(clone, util.asArray(children), filter)
|
|
212
|
-
.then(function () {
|
|
213
|
-
return clone;
|
|
214
|
-
});
|
|
215
|
-
|
|
216
|
-
function cloneChildrenInOrder(parent, children, filter) {
|
|
217
|
-
var done = Promise.resolve();
|
|
218
|
-
children.forEach(function (child) {
|
|
219
|
-
done = done
|
|
220
|
-
.then(function () {
|
|
221
|
-
return cloneNode(child, filter);
|
|
222
|
-
})
|
|
223
|
-
.then(function (childClone) {
|
|
224
|
-
if (childClone) parent.appendChild(childClone);
|
|
225
|
-
});
|
|
226
|
-
});
|
|
227
|
-
return done;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
function processClone(original, clone) {
|
|
232
|
-
if (!(clone instanceof Element)) return clone;
|
|
233
|
-
|
|
234
|
-
return Promise.resolve()
|
|
235
|
-
.then(cloneStyle)
|
|
236
|
-
.then(clonePseudoElements)
|
|
237
|
-
.then(copyUserInput)
|
|
238
|
-
.then(fixSvg)
|
|
239
|
-
.then(function () {
|
|
240
|
-
return clone;
|
|
241
|
-
});
|
|
242
|
-
|
|
243
|
-
function cloneStyle() {
|
|
244
|
-
copyStyle(window.getComputedStyle(original), clone.style);
|
|
245
|
-
|
|
246
|
-
function copyStyle(source, target) {
|
|
247
|
-
if (source.cssText) target.cssText = source.cssText;
|
|
248
|
-
else copyProperties(source, target);
|
|
249
|
-
|
|
250
|
-
function copyProperties(source, target) {
|
|
251
|
-
util.asArray(source).forEach(function (name) {
|
|
252
|
-
target.setProperty(
|
|
253
|
-
name,
|
|
254
|
-
source.getPropertyValue(name),
|
|
255
|
-
source.getPropertyPriority(name)
|
|
256
|
-
);
|
|
257
|
-
});
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
function clonePseudoElements() {
|
|
263
|
-
[':before', ':after'].forEach(function (element) {
|
|
264
|
-
clonePseudoElement(element);
|
|
265
|
-
});
|
|
266
|
-
|
|
267
|
-
function clonePseudoElement(element) {
|
|
268
|
-
var style = window.getComputedStyle(original, element);
|
|
269
|
-
var content = style.getPropertyValue('content');
|
|
270
|
-
|
|
271
|
-
if (content === '' || content === 'none') return;
|
|
272
|
-
|
|
273
|
-
var className = util.uid();
|
|
274
|
-
clone.className = clone.className + ' ' + className;
|
|
275
|
-
var styleElement = document.createElement('style');
|
|
276
|
-
styleElement.appendChild(formatPseudoElementStyle(className, element, style));
|
|
277
|
-
clone.appendChild(styleElement);
|
|
278
|
-
|
|
279
|
-
function formatPseudoElementStyle(className, element, style) {
|
|
280
|
-
var selector = '.' + className + ':' + element;
|
|
281
|
-
var cssText = style.cssText ? formatCssText(style) : formatCssProperties(style);
|
|
282
|
-
return document.createTextNode(selector + '{' + cssText + '}');
|
|
283
|
-
|
|
284
|
-
function formatCssText(style) {
|
|
285
|
-
var content = style.getPropertyValue('content');
|
|
286
|
-
return style.cssText + ' content: ' + content + ';';
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
function formatCssProperties(style) {
|
|
290
|
-
|
|
291
|
-
return util.asArray(style)
|
|
292
|
-
.map(formatProperty)
|
|
293
|
-
.join('; ') + ';';
|
|
294
|
-
|
|
295
|
-
function formatProperty(name) {
|
|
296
|
-
return name + ': ' +
|
|
297
|
-
style.getPropertyValue(name) +
|
|
298
|
-
(style.getPropertyPriority(name) ? ' !important' : '');
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
function copyUserInput() {
|
|
306
|
-
if (original instanceof HTMLTextAreaElement) clone.innerHTML = original.value;
|
|
307
|
-
if (original instanceof HTMLInputElement) clone.setAttribute("value", original.value);
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
function fixSvg() {
|
|
311
|
-
if (!(clone instanceof SVGElement)) return;
|
|
312
|
-
clone.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
|
|
313
|
-
|
|
314
|
-
if (!(clone instanceof SVGRectElement)) return;
|
|
315
|
-
['width', 'height'].forEach(function (attribute) {
|
|
316
|
-
var value = clone.getAttribute(attribute);
|
|
317
|
-
if (!value) return;
|
|
318
|
-
|
|
319
|
-
clone.style.setProperty(attribute, value);
|
|
320
|
-
});
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
function embedFonts(node) {
|
|
326
|
-
return fontFaces.resolveAll()
|
|
327
|
-
.then(function (cssText) {
|
|
328
|
-
var styleNode = document.createElement('style');
|
|
329
|
-
node.appendChild(styleNode);
|
|
330
|
-
styleNode.appendChild(document.createTextNode(cssText));
|
|
331
|
-
return node;
|
|
332
|
-
});
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
function inlineImages(node) {
|
|
336
|
-
return images.inlineAll(node)
|
|
337
|
-
.then(function () {
|
|
338
|
-
return node;
|
|
339
|
-
});
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
function makeSvgDataUri(node, width, height) {
|
|
343
|
-
return Promise.resolve(node)
|
|
344
|
-
.then(function (node) {
|
|
345
|
-
node.setAttribute('xmlns', 'http://www.w3.org/1999/xhtml');
|
|
346
|
-
return new XMLSerializer().serializeToString(node);
|
|
347
|
-
})
|
|
348
|
-
.then(util.escapeXhtml)
|
|
349
|
-
.then(function (xhtml) {
|
|
350
|
-
return '<foreignObject x="0" y="0" width="100%" height="100%">' + xhtml + '</foreignObject>';
|
|
351
|
-
})
|
|
352
|
-
.then(function (foreignObject) {
|
|
353
|
-
return '<svg xmlns="http://www.w3.org/2000/svg" width="' + width + '" height="' + height + '">' +
|
|
354
|
-
foreignObject + '</svg>';
|
|
355
|
-
})
|
|
356
|
-
.then(function (svg) {
|
|
357
|
-
return 'data:image/svg+xml;charset=utf-8,' + svg;
|
|
358
|
-
});
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
function newUtil() {
|
|
362
|
-
return {
|
|
363
|
-
escape: escape,
|
|
364
|
-
parseExtension: parseExtension,
|
|
365
|
-
mimeType: mimeType,
|
|
366
|
-
dataAsUrl: dataAsUrl,
|
|
367
|
-
isDataUrl: isDataUrl,
|
|
368
|
-
canvasToBlob: canvasToBlob,
|
|
369
|
-
resolveUrl: resolveUrl,
|
|
370
|
-
getAndEncode: getAndEncode,
|
|
371
|
-
uid: uid(),
|
|
372
|
-
delay: delay,
|
|
373
|
-
asArray: asArray,
|
|
374
|
-
escapeXhtml: escapeXhtml,
|
|
375
|
-
makeImage: makeImage,
|
|
376
|
-
width: width,
|
|
377
|
-
height: height
|
|
378
|
-
};
|
|
379
|
-
|
|
380
|
-
function mimes() {
|
|
381
|
-
/*
|
|
382
|
-
* Only WOFF and EOT mime types for fonts are 'real'
|
|
383
|
-
* see http://www.iana.org/assignments/media-types/media-types.xhtml
|
|
384
|
-
*/
|
|
385
|
-
var WOFF = 'application/font-woff';
|
|
386
|
-
var JPEG = 'image/jpeg';
|
|
387
|
-
|
|
388
|
-
return {
|
|
389
|
-
'woff': WOFF,
|
|
390
|
-
'woff2': WOFF,
|
|
391
|
-
'ttf': 'application/font-truetype',
|
|
392
|
-
'eot': 'application/vnd.ms-fontobject',
|
|
393
|
-
'png': 'image/png',
|
|
394
|
-
'jpg': JPEG,
|
|
395
|
-
'jpeg': JPEG,
|
|
396
|
-
'gif': 'image/gif',
|
|
397
|
-
'tiff': 'image/tiff',
|
|
398
|
-
'svg': 'image/svg+xml'
|
|
399
|
-
};
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
function parseExtension(url) {
|
|
403
|
-
var match = /\.([^\.\/]*?)$/g.exec(url);
|
|
404
|
-
if (match) return match[1];
|
|
405
|
-
else return '';
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
function mimeType(url) {
|
|
409
|
-
var extension = parseExtension(url).toLowerCase();
|
|
410
|
-
return mimes()[extension] || '';
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
function isDataUrl(url) {
|
|
414
|
-
return url.search(/^(data:)/) !== -1;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
function toBlob(canvas) {
|
|
418
|
-
return new Promise(function (resolve) {
|
|
419
|
-
var binaryString = window.atob(canvas.toDataURL().split(',')[1]);
|
|
420
|
-
var length = binaryString.length;
|
|
421
|
-
var binaryArray = new Uint8Array(length);
|
|
422
|
-
|
|
423
|
-
for (var i = 0; i < length; i++)
|
|
424
|
-
binaryArray[i] = binaryString.charCodeAt(i);
|
|
425
|
-
|
|
426
|
-
resolve(new Blob([binaryArray], {
|
|
427
|
-
type: 'image/png'
|
|
428
|
-
}));
|
|
429
|
-
});
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
function canvasToBlob(canvas) {
|
|
433
|
-
if (canvas.toBlob)
|
|
434
|
-
return new Promise(function (resolve) {
|
|
435
|
-
canvas.toBlob(resolve);
|
|
436
|
-
});
|
|
437
|
-
|
|
438
|
-
return toBlob(canvas);
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
function resolveUrl(url, baseUrl) {
|
|
442
|
-
var doc = document.implementation.createHTMLDocument();
|
|
443
|
-
var base = doc.createElement('base');
|
|
444
|
-
doc.head.appendChild(base);
|
|
445
|
-
var a = doc.createElement('a');
|
|
446
|
-
doc.body.appendChild(a);
|
|
447
|
-
base.href = baseUrl;
|
|
448
|
-
a.href = url;
|
|
449
|
-
return a.href;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
function uid() {
|
|
453
|
-
var index = 0;
|
|
454
|
-
|
|
455
|
-
return function () {
|
|
456
|
-
return 'u' + fourRandomChars() + index++;
|
|
457
|
-
|
|
458
|
-
function fourRandomChars() {
|
|
459
|
-
/* see http://stackoverflow.com/a/6248722/2519373 */
|
|
460
|
-
return ('0000' + (Math.random() * Math.pow(36, 4) << 0).toString(36)).slice(-4);
|
|
461
|
-
}
|
|
462
|
-
};
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
function makeImage(uri) {
|
|
466
|
-
return new Promise(function (resolve, reject) {
|
|
467
|
-
var image = new Image();
|
|
468
|
-
image.onload = function () {
|
|
469
|
-
resolve(image);
|
|
470
|
-
};
|
|
471
|
-
image.onerror = reject;
|
|
472
|
-
image.src = uri;
|
|
473
|
-
});
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
function getAndEncode(url) {
|
|
477
|
-
var TIMEOUT = 30000;
|
|
478
|
-
if(domtoimage.impl.options.cacheBust) {
|
|
479
|
-
// Cache bypass so we dont have CORS issues with cached images
|
|
480
|
-
// Source: https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest#Bypassing_the_cache
|
|
481
|
-
url += ((/\?/).test(url) ? "&" : "?") + (new Date()).getTime();
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
return new Promise(function (resolve) {
|
|
485
|
-
var request = new XMLHttpRequest();
|
|
486
|
-
|
|
487
|
-
request.onreadystatechange = done;
|
|
488
|
-
request.ontimeout = timeout;
|
|
489
|
-
request.responseType = 'blob';
|
|
490
|
-
request.timeout = TIMEOUT;
|
|
491
|
-
request.open('GET', url, true);
|
|
492
|
-
request.send();
|
|
493
|
-
|
|
494
|
-
var placeholder;
|
|
495
|
-
if(domtoimage.impl.options.imagePlaceholder) {
|
|
496
|
-
var split = domtoimage.impl.options.imagePlaceholder.split(/,/);
|
|
497
|
-
if(split && split[1]) {
|
|
498
|
-
placeholder = split[1];
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
function done() {
|
|
503
|
-
if (request.readyState !== 4) return;
|
|
504
|
-
|
|
505
|
-
if (request.status !== 200) {
|
|
506
|
-
if(placeholder) {
|
|
507
|
-
resolve(placeholder);
|
|
508
|
-
} else {
|
|
509
|
-
fail('cannot fetch resource: ' + url + ', status: ' + request.status);
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
return;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
var encoder = new FileReader();
|
|
516
|
-
encoder.onloadend = function () {
|
|
517
|
-
var content = encoder.result.split(/,/)[1];
|
|
518
|
-
resolve(content);
|
|
519
|
-
};
|
|
520
|
-
encoder.readAsDataURL(request.response);
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
function timeout() {
|
|
524
|
-
if(placeholder) {
|
|
525
|
-
resolve(placeholder);
|
|
526
|
-
} else {
|
|
527
|
-
fail('timeout of ' + TIMEOUT + 'ms occured while fetching resource: ' + url);
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
function fail(message) {
|
|
532
|
-
console.error(message);
|
|
533
|
-
resolve('');
|
|
534
|
-
}
|
|
535
|
-
});
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
function dataAsUrl(content, type) {
|
|
539
|
-
return 'data:' + type + ';base64,' + content;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
function escape(string) {
|
|
543
|
-
return string.replace(/([.*+?^${}()|\[\]\/\\])/g, '\\$1');
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
function delay(ms) {
|
|
547
|
-
return function (arg) {
|
|
548
|
-
return new Promise(function (resolve) {
|
|
549
|
-
setTimeout(function () {
|
|
550
|
-
resolve(arg);
|
|
551
|
-
}, ms);
|
|
552
|
-
});
|
|
553
|
-
};
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
function asArray(arrayLike) {
|
|
557
|
-
var array = [];
|
|
558
|
-
var length = arrayLike.length;
|
|
559
|
-
for (var i = 0; i < length; i++) array.push(arrayLike[i]);
|
|
560
|
-
return array;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
function escapeXhtml(string) {
|
|
564
|
-
return string.replace(/#/g, '%23').replace(/\n/g, '%0A');
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
function width(node) {
|
|
568
|
-
var leftBorder = px(node, 'border-left-width');
|
|
569
|
-
var rightBorder = px(node, 'border-right-width');
|
|
570
|
-
return node.scrollWidth + leftBorder + rightBorder;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
function height(node) {
|
|
574
|
-
var topBorder = px(node, 'border-top-width');
|
|
575
|
-
var bottomBorder = px(node, 'border-bottom-width');
|
|
576
|
-
return node.scrollHeight + topBorder + bottomBorder;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
function px(node, styleProperty) {
|
|
580
|
-
var value = window.getComputedStyle(node).getPropertyValue(styleProperty);
|
|
581
|
-
return parseFloat(value.replace('px', ''));
|
|
582
|
-
}
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
function newInliner() {
|
|
586
|
-
var URL_REGEX = /url\(['"]?([^'"]+?)['"]?\)/g;
|
|
587
|
-
|
|
588
|
-
return {
|
|
589
|
-
inlineAll: inlineAll,
|
|
590
|
-
shouldProcess: shouldProcess,
|
|
591
|
-
impl: {
|
|
592
|
-
readUrls: readUrls,
|
|
593
|
-
inline: inline
|
|
594
|
-
}
|
|
595
|
-
};
|
|
596
|
-
|
|
597
|
-
function shouldProcess(string) {
|
|
598
|
-
return string.search(URL_REGEX) !== -1;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
function readUrls(string) {
|
|
602
|
-
var result = [];
|
|
603
|
-
var match;
|
|
604
|
-
while ((match = URL_REGEX.exec(string)) !== null) {
|
|
605
|
-
result.push(match[1]);
|
|
606
|
-
}
|
|
607
|
-
return result.filter(function (url) {
|
|
608
|
-
return !util.isDataUrl(url);
|
|
609
|
-
});
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
function inline(string, url, baseUrl, get) {
|
|
613
|
-
return Promise.resolve(url)
|
|
614
|
-
.then(function (url) {
|
|
615
|
-
return baseUrl ? util.resolveUrl(url, baseUrl) : url;
|
|
616
|
-
})
|
|
617
|
-
.then(get || util.getAndEncode)
|
|
618
|
-
.then(function (data) {
|
|
619
|
-
return util.dataAsUrl(data, util.mimeType(url));
|
|
620
|
-
})
|
|
621
|
-
.then(function (dataUrl) {
|
|
622
|
-
return string.replace(urlAsRegex(url), '$1' + dataUrl + '$3');
|
|
623
|
-
});
|
|
624
|
-
|
|
625
|
-
function urlAsRegex(url) {
|
|
626
|
-
return new RegExp('(url\\([\'"]?)(' + util.escape(url) + ')([\'"]?\\))', 'g');
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
function inlineAll(string, baseUrl, get) {
|
|
631
|
-
if (nothingToInline()) return Promise.resolve(string);
|
|
632
|
-
|
|
633
|
-
return Promise.resolve(string)
|
|
634
|
-
.then(readUrls)
|
|
635
|
-
.then(function (urls) {
|
|
636
|
-
var done = Promise.resolve(string);
|
|
637
|
-
urls.forEach(function (url) {
|
|
638
|
-
done = done.then(function (string) {
|
|
639
|
-
return inline(string, url, baseUrl, get);
|
|
640
|
-
});
|
|
641
|
-
});
|
|
642
|
-
return done;
|
|
643
|
-
});
|
|
644
|
-
|
|
645
|
-
function nothingToInline() {
|
|
646
|
-
return !shouldProcess(string);
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
function newFontFaces() {
|
|
652
|
-
return {
|
|
653
|
-
resolveAll: resolveAll,
|
|
654
|
-
impl: {
|
|
655
|
-
readAll: readAll
|
|
656
|
-
}
|
|
657
|
-
};
|
|
658
|
-
|
|
659
|
-
function resolveAll() {
|
|
660
|
-
return readAll()
|
|
661
|
-
.then(function (webFonts) {
|
|
662
|
-
return Promise.all(
|
|
663
|
-
webFonts.map(function (webFont) {
|
|
664
|
-
return webFont.resolve();
|
|
665
|
-
})
|
|
666
|
-
);
|
|
667
|
-
})
|
|
668
|
-
.then(function (cssStrings) {
|
|
669
|
-
return cssStrings.join('\n');
|
|
670
|
-
});
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
function readAll() {
|
|
674
|
-
return Promise.resolve(util.asArray(document.styleSheets))
|
|
675
|
-
.then(getCssRules)
|
|
676
|
-
.then(selectWebFontRules)
|
|
677
|
-
.then(function (rules) {
|
|
678
|
-
return rules.map(newWebFont);
|
|
679
|
-
});
|
|
680
|
-
|
|
681
|
-
function selectWebFontRules(cssRules) {
|
|
682
|
-
return cssRules
|
|
683
|
-
.filter(function (rule) {
|
|
684
|
-
return rule.type === CSSRule.FONT_FACE_RULE;
|
|
685
|
-
})
|
|
686
|
-
.filter(function (rule) {
|
|
687
|
-
return inliner.shouldProcess(rule.style.getPropertyValue('src'));
|
|
688
|
-
});
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
function getCssRules(styleSheets) {
|
|
692
|
-
var cssRules = [];
|
|
693
|
-
styleSheets.forEach(function (sheet) {
|
|
694
|
-
try {
|
|
695
|
-
util.asArray(sheet.cssRules || []).forEach(cssRules.push.bind(cssRules));
|
|
696
|
-
} catch (e) {
|
|
697
|
-
console.log('Error while reading CSS rules from ' + sheet.href, e.toString());
|
|
698
|
-
}
|
|
699
|
-
});
|
|
700
|
-
return cssRules;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
function newWebFont(webFontRule) {
|
|
704
|
-
return {
|
|
705
|
-
resolve: function resolve() {
|
|
706
|
-
var baseUrl = (webFontRule.parentStyleSheet || {}).href;
|
|
707
|
-
return inliner.inlineAll(webFontRule.cssText, baseUrl);
|
|
708
|
-
},
|
|
709
|
-
src: function () {
|
|
710
|
-
return webFontRule.style.getPropertyValue('src');
|
|
711
|
-
}
|
|
712
|
-
};
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
function newImages() {
|
|
718
|
-
return {
|
|
719
|
-
inlineAll: inlineAll,
|
|
720
|
-
impl: {
|
|
721
|
-
newImage: newImage
|
|
722
|
-
}
|
|
723
|
-
};
|
|
724
|
-
|
|
725
|
-
function newImage(element) {
|
|
726
|
-
return {
|
|
727
|
-
inline: inline
|
|
728
|
-
};
|
|
729
|
-
|
|
730
|
-
function inline(get) {
|
|
731
|
-
if (util.isDataUrl(element.src)) return Promise.resolve();
|
|
732
|
-
|
|
733
|
-
return Promise.resolve(element.src)
|
|
734
|
-
.then(get || util.getAndEncode)
|
|
735
|
-
.then(function (data) {
|
|
736
|
-
return util.dataAsUrl(data, util.mimeType(element.src));
|
|
737
|
-
})
|
|
738
|
-
.then(function (dataUrl) {
|
|
739
|
-
return new Promise(function (resolve, reject) {
|
|
740
|
-
element.onload = resolve;
|
|
741
|
-
element.onerror = reject;
|
|
742
|
-
element.src = dataUrl;
|
|
743
|
-
});
|
|
744
|
-
});
|
|
745
|
-
}
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
function inlineAll(node) {
|
|
749
|
-
if (!(node instanceof Element)) return Promise.resolve(node);
|
|
750
|
-
|
|
751
|
-
return inlineBackground(node)
|
|
752
|
-
.then(function () {
|
|
753
|
-
if (node instanceof HTMLImageElement)
|
|
754
|
-
return newImage(node).inline();
|
|
755
|
-
else
|
|
756
|
-
return Promise.all(
|
|
757
|
-
util.asArray(node.childNodes).map(function (child) {
|
|
758
|
-
return inlineAll(child);
|
|
759
|
-
})
|
|
760
|
-
);
|
|
761
|
-
});
|
|
762
|
-
|
|
763
|
-
function inlineBackground(node) {
|
|
764
|
-
var background = node.style.getPropertyValue('background');
|
|
765
|
-
|
|
766
|
-
if (!background) return Promise.resolve(node);
|
|
767
|
-
|
|
768
|
-
return inliner.inlineAll(background)
|
|
769
|
-
.then(function (inlined) {
|
|
770
|
-
node.style.setProperty(
|
|
771
|
-
'background',
|
|
772
|
-
inlined,
|
|
773
|
-
node.style.getPropertyPriority('background')
|
|
774
|
-
);
|
|
775
|
-
})
|
|
776
|
-
.then(function () {
|
|
777
|
-
return node;
|
|
778
|
-
});
|
|
779
|
-
}
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
})();
|
|
783
|
-
});
|
|
784
|
-
|
|
785
|
-
const feedbackModalCss = ".text-center{text-align:center;flex-grow:1}.feedback-modal{display:inline-block;position:relative}.feedback-modal-content{background-color:var(--feedback-modal-content-bg-color);border-color:1px solid var(--feedback-modal-header-text-color);border-radius:var(--feedback-modal-content-border-radius);box-shadow:0px 1px 2px 0px rgba(60, 64, 67, .30), 0px 2px 6px 2px rgba(60, 64, 67, .15);box-sizing:border-box;color:var(--feedback-modal-content-text-color);display:flex;flex-direction:column;font-family:var(--feedback-modal-content-font-family);max-width:300px;padding:20px;position:fixed;width:100%;z-index:300;left:50%;top:50%;transform:translate(-50%, -50%)}@media screen and (min-width: 768px){.feedback-modal-content.feedback-modal-content--bottom-right{top:initial;left:initial;transform:initial;bottom:var(--feedback-modal-content-position-bottom);right:var(--feedback-modal-content-position-right)}.feedback-modal-content.feedback-modal-content--bottom-left{top:initial;transform:initial;bottom:var(--feedback-modal-content-position-bottom);left:var(--feedback-modal-content-position-left)}.feedback-modal-content.feedback-modal-content--top-right{top:initial;transform:initial;right:var(--feedback-modal-content-position-right);top:var(--fedback-modal-content-position-top)}.feedback-modal-content.feedback-modal-content--top-left{transform:initial;left:var(--feedback-modal-content-position-left);top:var(--fedback-modal-content-position-top)}}.feedback-modal-header{align-items:center;color:var(--feedback-modal-header-text-color);font-family:var(--feedback-modal-header-font-family);display:flex;font-size:var(--feedback-header-font-size);justify-content:space-between;margin-bottom:20px}.feedback-modal-text{margin-bottom:20px}.feedback-modal-text textarea{border:1px solid var(--feedback-modal-input-border-color);border-radius:4px;box-sizing:border-box;font-family:var(--feedback-modal-content-font-family);font-size:var(--feedback-modal-input-font-size);height:100px;padding:10px;resize:none;width:100%}.feedback-modal-email{margin-bottom:20px}.feedback-modal-email input{border:1px solid var(--feedback-modal-input-border-color);border-radius:4px;box-sizing:border-box;font-family:var(--feedback-modal-content-font-family);font-size:var(--feedback-modal-input-font-size);height:40px;padding:10px;width:100%}.feedback-modal-text textarea:focus,.feedback-modal-email input:focus{border:1px solid var(--feedback-modal-input-border-color-focused);outline:none}.feedback-modal-buttons{display:flex;justify-content:space-between}.button{background-color:transparent;border:1px solid var(--feedback-modal-button-border-color);border-radius:var(--feedback-modal-button-border-radius);color:var(--feedback-modal-button-text-color);cursor:pointer;font-size:var(--feedback-modal-button-font-size);padding:5px 10px}.button:hover,.button.active{color:var(--feedback-modal-button-text-color-active);background-color:var(--feedback-modal-button-bg-color-active);border:1px solid var(--feedback-modal-button-border-color-active)}.feedback-modal-footer{font-size:12px;margin-top:5px 0;text-align:center}.feedback-modal-footer a{color:#191919;text-decoration:none}.feedback-logo{display:flex;align-items:center;justify-content:center;margin-top:5px}.feedback-logo svg{max-width:12px;margin-right:5px}.feedback-modal-close{background-color:var(--feedback-modal-close-bg-color);border:0;border-radius:50%;cursor:pointer;margin-left:auto;padding:0;width:24px;height:24px}.feedback-modal-screenshot{background-color:var(--feedback-modal-screenshot-bg-color);box-shadow:0px 0px 0px 5px var(--feedback-modal-screenshot-element-selected-bg-color) inset;height:100vh;left:0;position:fixed;top:0;width:100%;z-index:100}.feedback-modal-screenshot-header{align-items:center;background-color:var(--feedback-modal-screenshot-header-bg-color);color:var(--feedback-modal-screenshot-element-selected-text-color);cursor:pointer;display:flex;padding:5px;position:fixed;justify-content:center;width:100%;z-index:200}.feedback-modal-screenshot-header span{padding-left:10px;padding-right:10px}.feedback-modal-screenshot-overlay{background-color:transparent;cursor:unset;height:100vh;left:0;position:fixed;top:0;width:100%;z-index:100}.feedback-modal-message{font-size:var(--fedback-modal-message-font-size)}.feedback-modal-element-hover{cursor:pointer;background-color:transparent;border:4px dashed var(--feedback-modal-screenshot-element-hover-border-color)}.feedback-modal-element-selected{border:4px solid var(--feedback-modal-screenshot-element-selected-border-color)}";
|
|
786
|
-
|
|
787
|
-
const FeedbackModal = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
788
|
-
constructor() {
|
|
789
|
-
super();
|
|
790
|
-
this.__registerHost();
|
|
791
|
-
this.__attachShadow();
|
|
792
|
-
this.handleSubmit = async (event) => {
|
|
793
|
-
event.preventDefault();
|
|
794
|
-
this.resetOverflow();
|
|
795
|
-
this.showScreenshotMode = false;
|
|
796
|
-
this.showModal = false;
|
|
797
|
-
this.sending = true;
|
|
798
|
-
let encodedScreenshot = "";
|
|
799
|
-
if (this.encodedScreenshot) {
|
|
800
|
-
await this.encodedScreenshot.then((data) => {
|
|
801
|
-
encodedScreenshot = data;
|
|
802
|
-
}).catch((error) => {
|
|
803
|
-
console.log(error);
|
|
804
|
-
});
|
|
805
|
-
}
|
|
806
|
-
try {
|
|
807
|
-
const res = await fetch('https://app.pushfeedback.com/api/feedback/', {
|
|
808
|
-
method: 'POST',
|
|
809
|
-
body: JSON.stringify({
|
|
810
|
-
url: window.location.href,
|
|
811
|
-
message: this.formMessage,
|
|
812
|
-
email: this.formEmail,
|
|
813
|
-
project: this.project,
|
|
814
|
-
screenshot: encodedScreenshot
|
|
815
|
-
}),
|
|
816
|
-
headers: {
|
|
817
|
-
'Content-Type': 'application/json'
|
|
818
|
-
}
|
|
819
|
-
});
|
|
820
|
-
if (res.status === 200) {
|
|
821
|
-
this.formSuccess = true;
|
|
822
|
-
this.formError = false;
|
|
823
|
-
}
|
|
824
|
-
else {
|
|
825
|
-
this.formSuccess = false;
|
|
826
|
-
this.formError = true;
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
catch (error) {
|
|
830
|
-
this.formSuccess = false;
|
|
831
|
-
this.formError = true;
|
|
832
|
-
}
|
|
833
|
-
finally {
|
|
834
|
-
this.sending = false;
|
|
835
|
-
this.showModal = true;
|
|
836
|
-
}
|
|
837
|
-
};
|
|
838
|
-
this.close = () => {
|
|
839
|
-
this.sending = false;
|
|
840
|
-
this.showModal = false;
|
|
841
|
-
this.showScreenshotMode = false;
|
|
842
|
-
this.hasSelectedElement = false;
|
|
843
|
-
this.encodedScreenshot = null;
|
|
844
|
-
this.formSuccess = false;
|
|
845
|
-
this.formError = false;
|
|
846
|
-
this.formMessage = '';
|
|
847
|
-
this.formEmail = '';
|
|
848
|
-
this.resetOverflow();
|
|
849
|
-
};
|
|
850
|
-
this.openScreenShot = () => {
|
|
851
|
-
this.hasSelectedElement = false;
|
|
852
|
-
this.showModal = false;
|
|
853
|
-
this.showScreenshotMode = true;
|
|
854
|
-
this.encodedScreenshot = null;
|
|
855
|
-
this.resetOverflow();
|
|
856
|
-
};
|
|
857
|
-
this.closeScreenShot = () => {
|
|
858
|
-
this.showModal = false;
|
|
859
|
-
this.showScreenshotMode = false;
|
|
860
|
-
this.hasSelectedElement = false;
|
|
861
|
-
this.encodedScreenshot = null;
|
|
862
|
-
this.overlay.style.display = 'none';
|
|
863
|
-
this.resetOverflow();
|
|
864
|
-
};
|
|
865
|
-
this.handleMouseOverScreenShot = (event) => {
|
|
866
|
-
event.preventDefault();
|
|
867
|
-
if (this.hasSelectedElement)
|
|
868
|
-
return;
|
|
869
|
-
this.overlay.style.display = 'none';
|
|
870
|
-
this.screenshotModal.style.display = 'none';
|
|
871
|
-
const elementUnder = document.elementFromPoint(event.clientX, event.clientY);
|
|
872
|
-
const rect = elementUnder.getBoundingClientRect();
|
|
873
|
-
this.screenshotModal.style.display = '';
|
|
874
|
-
// Get the bounding box of the element selected
|
|
875
|
-
this.elementSelected.style.position = "absolute";
|
|
876
|
-
this.elementSelected.style.left = `${rect.left}px`;
|
|
877
|
-
this.elementSelected.style.top = `${rect.top}px`;
|
|
878
|
-
this.elementSelected.style.width = `${rect.width}px`;
|
|
879
|
-
this.elementSelected.style.height = `${rect.height}px`;
|
|
880
|
-
this.elementSelected.classList.add('feedback-modal-element-hover');
|
|
881
|
-
// Set the background color of nonselected areas
|
|
882
|
-
// Top
|
|
883
|
-
this.topSide.style.position = "absolute";
|
|
884
|
-
this.topSide.style.left = `${rect.left}px`;
|
|
885
|
-
this.topSide.style.top = '0px';
|
|
886
|
-
this.topSide.style.width = `${rect.width + 8}px`;
|
|
887
|
-
this.topSide.style.height = `${rect.top}px`;
|
|
888
|
-
this.topSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
889
|
-
// Left
|
|
890
|
-
this.leftSide.style.position = "absolute";
|
|
891
|
-
this.leftSide.style.left = '0px';
|
|
892
|
-
this.leftSide.style.top = '0px';
|
|
893
|
-
this.leftSide.style.width = `${rect.left}px`;
|
|
894
|
-
this.leftSide.style.height = '100vh';
|
|
895
|
-
this.leftSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
896
|
-
// Bottom
|
|
897
|
-
this.bottomSide.style.position = "absolute";
|
|
898
|
-
this.bottomSide.style.left = `${rect.left}px`;
|
|
899
|
-
this.bottomSide.style.top = `${rect.bottom + 8}px`;
|
|
900
|
-
this.bottomSide.style.width = `${rect.width + 8}px`;
|
|
901
|
-
this.bottomSide.style.height = '100vh';
|
|
902
|
-
this.bottomSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
903
|
-
// Right
|
|
904
|
-
this.rightSide.style.position = "absolute";
|
|
905
|
-
this.rightSide.style.left = `${rect.right + 8}px`;
|
|
906
|
-
this.rightSide.style.top = '0px';
|
|
907
|
-
this.rightSide.style.width = '100%';
|
|
908
|
-
this.rightSide.style.height = '100vh';
|
|
909
|
-
this.rightSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
910
|
-
// Restore the visibility of the screenshot-modal
|
|
911
|
-
this.screenshotModal.style.backgroundColor = 'transparent';
|
|
912
|
-
};
|
|
913
|
-
this.handleMouseClickedSelectedElement = (event) => {
|
|
914
|
-
event.preventDefault();
|
|
915
|
-
if (this.elementSelected)
|
|
916
|
-
this.elementSelected.classList.add('feedback-modal-element-selected');
|
|
917
|
-
let top = this.elementSelected.getBoundingClientRect().top;
|
|
918
|
-
this.elementSelected.style.top = `${top + window.pageYOffset}px`;
|
|
919
|
-
const clonedElementSelected = this.elementSelected.cloneNode(true);
|
|
920
|
-
document.body.appendChild(clonedElementSelected);
|
|
921
|
-
this.elementSelected.style.top = `${top}px`;
|
|
922
|
-
this.encodedScreenshot = domToImage.toPng(document.body, { cacheBust: true })
|
|
923
|
-
.then(function (dataUrl) {
|
|
924
|
-
document.body.removeChild(clonedElementSelected);
|
|
925
|
-
return dataUrl;
|
|
926
|
-
})
|
|
927
|
-
.catch(function (error) {
|
|
928
|
-
console.error('oops, something went wrong!', error);
|
|
929
|
-
return "";
|
|
930
|
-
});
|
|
931
|
-
const page = document.getElementsByTagName('html')[0];
|
|
932
|
-
page.style.overflow = 'hidden';
|
|
933
|
-
this.hasSelectedElement = true;
|
|
934
|
-
this.overlay.style.display = 'block';
|
|
935
|
-
this.showModal = true;
|
|
936
|
-
};
|
|
937
|
-
this.sending = false;
|
|
938
|
-
this.formMessage = '';
|
|
939
|
-
this.formEmail = '';
|
|
940
|
-
this.formSuccess = false;
|
|
941
|
-
this.formError = false;
|
|
942
|
-
this.encodedScreenshot = undefined;
|
|
943
|
-
this.modalTitle = 'Share your feedback';
|
|
944
|
-
this.successModalTitle = 'Thanks for your feedback!';
|
|
945
|
-
this.errorModalTitle = "Oops! We didn't receive your feedback. Please try again later.";
|
|
946
|
-
this.modalPosition = 'center';
|
|
947
|
-
this.sendButtonText = 'Send';
|
|
948
|
-
this.project = '';
|
|
949
|
-
this.screenshotButtonTooltipText = 'Take a Screenshot';
|
|
950
|
-
this.screenshotTopbarText = 'SELECT AN ELEMENT ON THE PAGE';
|
|
951
|
-
this.email = '';
|
|
952
|
-
this.emailPlaceholder = 'Email address (optional)';
|
|
953
|
-
this.messagePlaceholder = 'How could this page be more helpful?';
|
|
954
|
-
this.showModal = false;
|
|
955
|
-
this.showScreenshotMode = false;
|
|
956
|
-
this.hasSelectedElement = false;
|
|
957
|
-
}
|
|
958
|
-
componentWillLoad() {
|
|
959
|
-
this.formEmail = this.email;
|
|
960
|
-
}
|
|
961
|
-
resetOverflow() {
|
|
962
|
-
const page = document.getElementsByTagName('html')[0];
|
|
963
|
-
page.style.overflow = 'inherit';
|
|
964
|
-
}
|
|
965
|
-
handleMessageInput(event) {
|
|
966
|
-
this.formMessage = event.target.value;
|
|
967
|
-
}
|
|
968
|
-
handleEmailInput(event) {
|
|
969
|
-
this.formEmail = event.target.value;
|
|
970
|
-
}
|
|
971
|
-
render() {
|
|
972
|
-
return (h("div", { class: "feedback-modal-wrapper" }, this.showScreenshotMode && (h("div", { class: "feedback-modal-screenshot", ref: el => (this.screenshotModal = el), onMouseMove: this.handleMouseOverScreenShot }, h("div", { class: "feedback-modal-screenshot-element-selected", ref: el => (this.elementSelected = el), onClick: this.handleMouseClickedSelectedElement }), h("div", { class: "top-side", ref: el => (this.topSide = el) }), h("div", { class: "left-side", ref: el => (this.leftSide = el) }), h("div", { class: "bottom-side", ref: el => (this.bottomSide = el) }), h("div", { class: "right-side", ref: el => (this.rightSide = el) }), h("div", { class: "feedback-modal-screenshot-header", onClick: this.closeScreenShot }, h("span", null, this.screenshotTopbarText), h("span", { class: "feedback-modal-screenshot-close" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#fff", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-x" }, h("line", { x1: "18", y1: "6", x2: "6", y2: "18" }), h("line", { x1: "6", y1: "6", x2: "18", y2: "18" })))), h("div", { class: "feedback-modal-screenshot-overlay", ref: el => (this.overlay = el) }))), this.showModal && (h("div", { class: `feedback-modal-content feedback-modal-content--${this.modalPosition}`, ref: el => (this.modalContent = el) }, h("div", { class: "feedback-modal-header" }, !this.formSuccess && !this.formError ? (h("span", null, this.modalTitle)) : this.formSuccess ? (h("span", { class: "text-center" }, this.successModalTitle)) : this.formError ? (h("span", { class: "text-center" }, this.errorModalTitle)) : h("span", null), h("button", { class: "feedback-modal-close", onClick: this.close }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#ccc", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-x" }, h("line", { x1: "18", y1: "6", x2: "6", y2: "18" }), h("line", { x1: "6", y1: "6", x2: "18", y2: "18" })))), h("div", { class: "feedback-modal-body" }, !this.formSuccess && !this.formError ? (h("form", { onSubmit: this.handleSubmit }, h("div", { class: "feedback-modal-text" }, h("textarea", { placeholder: this.messagePlaceholder, value: this.formMessage, onInput: (event) => this.handleMessageInput(event), required: true })), !this.email && (h("div", { class: "feedback-modal-email" }, h("input", { type: "email", placeholder: this.emailPlaceholder, onInput: (event) => this.handleEmailInput(event), value: this.formEmail }))), h("div", { class: "feedback-modal-buttons" }, h("button", { type: "button", class: `button${this.encodedScreenshot ? " active" : ""}`, title: this.screenshotButtonTooltipText, onClick: this.openScreenShot, disabled: this.sending }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-camera" }, h("path", { d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" }), h("circle", { cx: "12", cy: "13", r: "4" }))), h("button", { class: "button", type: "submit", disabled: this.sending }, this.sendButtonText)))) : h("span", null)), h("div", { class: "feedback-modal-footer" }, h("div", { class: "feedback-logo" }, h("svg", { class: "w-8 h-8", viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg" }, h("defs", null, h("radialGradient", { cx: "21.152%", cy: "86.063%", fx: "21.152%", fy: "86.063%", r: "79.941%", id: "footer-logo" }, h("stop", { "stop-color": "#4FD1C5", offset: "0%" }), h("stop", { "stop-color": "#81E6D9", offset: "25.871%" }), h("stop", { "stop-color": "#338CF5", offset: "100%" }))), h("rect", { width: "32", height: "32", rx: "16", fill: "url(#footer-logo)", "fill-rule": "nonzero" })), " ", h("a", { href: "https://pushfeedback.com" }, "PushFeedback")))))));
|
|
973
|
-
}
|
|
974
|
-
static get style() { return feedbackModalCss; }
|
|
975
|
-
}, [1, "feedback-modal", {
|
|
976
|
-
"modalTitle": [1, "modal-title"],
|
|
977
|
-
"successModalTitle": [1, "success-modal-title"],
|
|
978
|
-
"errorModalTitle": [1, "error-modal-title"],
|
|
979
|
-
"modalPosition": [1, "modal-position"],
|
|
980
|
-
"sendButtonText": [1, "send-button-text"],
|
|
981
|
-
"project": [1],
|
|
982
|
-
"screenshotButtonTooltipText": [1, "screenshot-button-tooltip-text"],
|
|
983
|
-
"screenshotTopbarText": [1, "screenshot-topbar-text"],
|
|
984
|
-
"email": [1],
|
|
985
|
-
"emailPlaceholder": [1, "email-placeholder"],
|
|
986
|
-
"messagePlaceholder": [1, "message-placeholder"],
|
|
987
|
-
"showModal": [1540, "show-modal"],
|
|
988
|
-
"showScreenshotMode": [1540, "show-screenshot-mode"],
|
|
989
|
-
"hasSelectedElement": [1540, "has-selected-element"],
|
|
990
|
-
"sending": [32],
|
|
991
|
-
"formMessage": [32],
|
|
992
|
-
"formEmail": [32],
|
|
993
|
-
"formSuccess": [32],
|
|
994
|
-
"formError": [32],
|
|
995
|
-
"encodedScreenshot": [32]
|
|
996
|
-
}]);
|
|
997
|
-
function defineCustomElement() {
|
|
998
|
-
if (typeof customElements === "undefined") {
|
|
999
|
-
return;
|
|
1000
|
-
}
|
|
1001
|
-
const components = ["feedback-modal"];
|
|
1002
|
-
components.forEach(tagName => { switch (tagName) {
|
|
1003
|
-
case "feedback-modal":
|
|
1004
|
-
if (!customElements.get(tagName)) {
|
|
1005
|
-
customElements.define(tagName, FeedbackModal);
|
|
1006
|
-
}
|
|
1007
|
-
break;
|
|
1008
|
-
} });
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
export { FeedbackModal as F, defineCustomElement as d };
|
|
1
|
+
var _0x3f306c=_0x3b2e;(function(_0x2872db,_0x4fb8cc){var _0x5af8e5=_0x3b2e,_0x5659c6=_0x2872db();while(!![]){try{var _0x3992a7=-parseInt(_0x5af8e5(0x255))/0x1*(-parseInt(_0x5af8e5(0x25b))/0x2)+parseInt(_0x5af8e5(0x1cf))/0x3*(-parseInt(_0x5af8e5(0x253))/0x4)+-parseInt(_0x5af8e5(0x10b))/0x5+-parseInt(_0x5af8e5(0x231))/0x6*(parseInt(_0x5af8e5(0x153))/0x7)+-parseInt(_0x5af8e5(0x254))/0x8*(parseInt(_0x5af8e5(0xef))/0x9)+-parseInt(_0x5af8e5(0x7f))/0xa*(parseInt(_0x5af8e5(0xe1))/0xb)+parseInt(_0x5af8e5(0x163))/0xc;if(_0x3992a7===_0x4fb8cc)break;else _0x5659c6['push'](_0x5659c6['shift']());}catch(_0xc19098){_0x5659c6['push'](_0x5659c6['shift']());}}}(_0xccc1,0xb5739));import{proxyCustomElement,HTMLElement,h}from'@stencil/core/internal/client';function createCommonjsModule(_0x36c575,_0x22ecb5,_0x25197f){var _0x50940a=_0x3b2e,_0x426d73={'CwfpT':function(_0xaf344){return _0xaf344();},'FDTTJ':function(_0x16872a,_0x391986,_0x43e572){return _0x16872a(_0x391986,_0x43e572);}};return _0x25197f={'path':_0x22ecb5,'exports':{},'require':function(_0x4407a6,_0x53536a){var _0x1364e9=_0x3b2e;return _0x426d73[_0x1364e9(0x206)](commonjsRequire);}},_0x426d73['FDTTJ'](_0x36c575,_0x25197f,_0x25197f['exports']),_0x25197f[_0x50940a(0x120)];}function _0x3b2e(_0x3f4264,_0x232e7b){var _0xccc16=_0xccc1();return _0x3b2e=function(_0x3b2e9f,_0xe4c17b){_0x3b2e9f=_0x3b2e9f-0x6c;var _0x391610=_0xccc16[_0x3b2e9f];return _0x391610;},_0x3b2e(_0x3f4264,_0x232e7b);}function commonjsRequire(){var _0x36436a=_0x3b2e,_0x3c0c6d={'DbFjw':'Dynamic\x20requires\x20are\x20not\x20currently\x20supported\x20by\x20@rollup/plugin-commonjs'};throw new Error(_0x3c0c6d[_0x36436a(0x178)]);}var domToImage=createCommonjsModule(function(_0x593e4e){var _0x5090be=_0x3b2e,_0x536aff={'ZxEye':function(_0x198ef2,_0x423610,_0x92f38a){return _0x198ef2(_0x423610,_0x92f38a);},'NpMBI':function(_0x28ba51,_0x5686ca){return _0x28ba51||_0x5686ca;},'xvlWX':function(_0x2161c0,_0x513f71,_0x753c3b){return _0x2161c0(_0x513f71,_0x753c3b);},'hlafm':function(_0x2aaf65,_0x49ea9c){return _0x2aaf65===_0x49ea9c;},'rketw':_0x5090be(0x1fe),'yDsAz':function(_0x5eafd8,_0x24baf2){return _0x5eafd8===_0x24baf2;},'qbnLO':function(_0x1f44c1,_0x41c60b){return _0x1f44c1(_0x41c60b);},'ZCdyu':function(_0x452eae,_0x28ab4a,_0x534227){return _0x452eae(_0x28ab4a,_0x534227);},'kPnPj':function(_0xf23d9,_0x261df8){return _0xf23d9 instanceof _0x261df8;},'wesQd':_0x5090be(0x1de),'zyxsf':_0x5090be(0x1c1),'kUtXh':function(_0xe10942,_0x14d862){return _0xe10942&&_0x14d862;},'GHxCQ':function(_0x1a0712,_0x11be5b){return _0x1a0712+_0x11be5b;},'fOcvs':'<foreignObject\x20x=\x220\x22\x20y=\x220\x22\x20width=\x22100%\x22\x20height=\x22100%\x22>','OAWyN':_0x5090be(0x17e),'KmSWP':function(_0x131cab,_0x2897ff){return _0x131cab(_0x2897ff);},'vvdvQ':'canvas','tEram':function(_0x2d2dc7,_0x18ad40){return _0x2d2dc7===_0x18ad40;},'iXyWN':function(_0x42afa1,_0x5bff30,_0x33642a,_0x25e253){return _0x42afa1(_0x5bff30,_0x33642a,_0x25e253);},'grRTo':_0x5090be(0x13f),'aszLD':_0x5090be(0xf9),'VbiyH':function(_0x4a737f,_0x22a055){return _0x4a737f+_0x22a055;},'PzeEL':function(_0x22624b,_0x1b5d69){return _0x22624b(_0x1b5d69);},'rApHw':':after','LCvjP':_0x5090be(0x1f6),'Ibwmx':'http://www.w3.org/1999/xhtml','qZXOH':function(_0x5abbb2,_0x3b22e2){return _0x5abbb2+_0x3b22e2;},'ZJhUg':'</svg>','IcImd':_0x5090be(0xd3),'Sjwau':'application/font-woff','nheDe':'image/jpeg','mzbsq':_0x5090be(0x16c),'Qdffz':'image/svg+xml','TpLxM':function(_0x24851e){return _0x24851e();},'jinpq':function(_0x20f866,_0x33ea8a){return _0x20f866!==_0x33ea8a;},'wBJkE':_0x5090be(0xeb),'rBNao':function(_0x1def53,_0x54ffe6){return _0x1def53*_0x54ffe6;},'naQqd':'%0A','IhxzB':'border-left-width','ntmXP':_0x5090be(0xaf),'CVrBA':_0x5090be(0x6f),'jidxC':_0x5090be(0xd2),'HpHar':_0x5090be(0x1a1),'bmsDW':';base64,','Qrwbw':function(_0x49ebcb,_0x3fbb48){return _0x49ebcb<_0x3fbb48;},'eiRGh':function(_0x5b24cf){return _0x5b24cf();},'ogRpi':'(url\x5c([\x27\x22]?)(','LZCcB':function(_0x3a31a4,_0x42b810,_0x4ee9bd,_0x1e067f,_0x5470e5){return _0x3a31a4(_0x42b810,_0x4ee9bd,_0x1e067f,_0x5470e5);},'IqIbp':function(_0x31b1cb,_0x3ebc0){return _0x31b1cb===_0x3ebc0;},'vjqMP':function(_0x2b8ff2){return _0x2b8ff2();}};(function(_0x21cd2d){var _0x5ed331=_0x5090be,_0x5aaf05={'RHCzc':function(_0x54946d,_0x267e0c){return _0x54946d||_0x267e0c;},'nBnNY':function(_0x1b090d,_0x52da34){return _0x1b090d(_0x52da34);},'jRncU':_0x536aff[_0x5ed331(0x269)],'BcRcO':function(_0x5619b8,_0x3cc8ed,_0x15c8f9){var _0x49811a=_0x5ed331;return _0x536aff[_0x49811a(0x1c3)](_0x5619b8,_0x3cc8ed,_0x15c8f9);},'gnmKY':function(_0x11bb2f,_0x1090cb){var _0xd02fea=_0x5ed331;return _0x536aff[_0xd02fea(0x1da)](_0x11bb2f,_0x1090cb);},'GnDAR':function(_0x5b3218,_0x5bf2f1,_0x9a71d2,_0x12198a){var _0x318955=_0x5ed331;return _0x536aff[_0x318955(0x218)](_0x5b3218,_0x5bf2f1,_0x9a71d2,_0x12198a);},'zrixM':_0x536aff['grRTo'],'bgSjJ':_0x536aff['aszLD'],'SdyST':function(_0x45c352,_0x411c31){var _0x424c19=_0x5ed331;return _0x536aff[_0x424c19(0x169)](_0x45c352,_0x411c31);},'lSrPY':function(_0x4ddd93,_0x35f4c0){return _0x536aff['VbiyH'](_0x4ddd93,_0x35f4c0);},'nEqmu':function(_0x677e1f,_0x341e41){var _0x5eb08a=_0x5ed331;return _0x536aff[_0x5eb08a(0x1c8)](_0x677e1f,_0x341e41);},'aGueX':':before','ImoAg':_0x536aff[_0x5ed331(0x111)],'ZbsyG':_0x536aff['LCvjP'],'nQYEb':function(_0xa098e6,_0x15ecb7){return _0x536aff['kPnPj'](_0xa098e6,_0x15ecb7);},'iOpsy':_0x536aff['wesQd'],'yDnbG':_0x536aff[_0x5ed331(0x1d4)],'gUhZx':function(_0x1b28e7,_0x471aba){var _0x5cff62=_0x5ed331;return _0x536aff[_0x5cff62(0x99)](_0x1b28e7,_0x471aba);},'pLDXM':function(_0x38be0d,_0x562717){return _0x38be0d+_0x562717;},'rFYxP':function(_0x4b2d9f,_0x352739){return _0x4b2d9f+_0x352739;},'tenPj':_0x536aff[_0x5ed331(0x20d)],'kzPdS':_0x536aff['IcImd'],'yxmog':_0x536aff['Sjwau'],'vKQHO':_0x536aff[_0x5ed331(0x122)],'sibcL':_0x536aff['mzbsq'],'adzPA':_0x5ed331(0x12e),'PPzSi':_0x5ed331(0xe5),'HxojK':_0x536aff['Qdffz'],'Waikg':function(_0x3ec84d,_0xb78105){var _0x3ee5a6=_0x5ed331;return _0x536aff[_0x3ee5a6(0x1c0)](_0x3ec84d,_0xb78105);},'wiEkK':function(_0x17f093){return _0x536aff['TpLxM'](_0x17f093);},'OHKns':function(_0xc20bf2,_0x4f5b66){var _0x23fc82=_0x5ed331;return _0x536aff[_0x23fc82(0x11d)](_0xc20bf2,_0x4f5b66);},'UjHyX':function(_0x22cc5a,_0x40e618){return _0x22cc5a(_0x40e618);},'UFaSR':_0x5ed331(0x1bb),'lgbxt':_0x536aff[_0x5ed331(0x1dd)],'LFzMp':function(_0x17a92a,_0x6d1fae){return _0x17a92a<<_0x6d1fae;},'YetJf':function(_0x3dbe15,_0xfcdfe3){var _0x13d652=_0x5ed331;return _0x536aff[_0x13d652(0x20f)](_0x3dbe15,_0xfcdfe3);},'CZOep':function(_0x331ccd,_0x524d99){var _0x3711a4=_0x5ed331;return _0x536aff[_0x3711a4(0x126)](_0x331ccd,_0x524d99);},'OngXo':function(_0x24957d,_0x1cbac7){var _0x84094e=_0x5ed331;return _0x536aff[_0x84094e(0x1c8)](_0x24957d,_0x1cbac7);},'DSiLY':function(_0xccf24e,_0x4e2270){return _0xccf24e+_0x4e2270;},'nIWnb':_0x5ed331(0x21e),'kgrof':_0x5ed331(0xa2),'OkXMJ':_0x536aff['naQqd'],'IXGUq':function(_0x54afed,_0x27965d,_0x4a5ceb){return _0x536aff['xvlWX'](_0x54afed,_0x27965d,_0x4a5ceb);},'JlIqT':_0x536aff[_0x5ed331(0x1c6)],'QZYFu':_0x536aff[_0x5ed331(0x1db)],'mCfel':function(_0xb0c600,_0xb72982){return _0xb0c600+_0xb72982;},'LacmZ':function(_0xfc626c,_0x29424d){return _0x536aff['KmSWP'](_0xfc626c,_0x29424d);},'RwWGC':function(_0x3d3c29,_0x5d2643){var _0x8bb491=_0x5ed331;return _0x536aff[_0x8bb491(0x11d)](_0x3d3c29,_0x5d2643);},'FwJIp':_0x536aff['CVrBA'],'EDPxh':_0x536aff[_0x5ed331(0x23b)],'lDMyn':_0x536aff['HpHar'],'QWnBk':_0x536aff[_0x5ed331(0x85)],'lBVTk':function(_0x2c2159,_0xeadff2){var _0x26564d=_0x5ed331;return _0x536aff[_0x26564d(0x100)](_0x2c2159,_0xeadff2);},'EXymX':_0x5ed331(0x13e),'DlcGe':function(_0x3c1c8b,_0x2c6f49){var _0x1f6465=_0x5ed331;return _0x536aff[_0x1f6465(0x169)](_0x3c1c8b,_0x2c6f49);},'dnNug':function(_0x2802b9){var _0x34c634=_0x5ed331;return _0x536aff[_0x34c634(0x14e)](_0x2802b9);},'TsEgZ':function(_0x761eaa,_0x37fdd9){return _0x761eaa(_0x37fdd9);},'otuoV':_0x536aff['ogRpi'],'SBRpH':function(_0x14efb9,_0x2c7640,_0x2bfc71,_0x4c2147,_0x3e5084){var _0x25e54e=_0x5ed331;return _0x536aff[_0x25e54e(0x14d)](_0x14efb9,_0x2c7640,_0x2bfc71,_0x4c2147,_0x3e5084);},'IEGHl':function(_0x934245,_0x1c4577){var _0x517cdf=_0x5ed331;return _0x536aff[_0x517cdf(0x126)](_0x934245,_0x1c4577);},'vlsEO':function(_0x353e54){var _0x5e1d0f=_0x5ed331;return _0x536aff[_0x5e1d0f(0x248)](_0x353e54);},'HSpwx':function(_0xcf1af,_0x35dc86){var _0x2d71d8=_0x5ed331;return _0x536aff[_0x2d71d8(0xc6)](_0xcf1af,_0x35dc86);},'kIKoy':'Error\x20while\x20reading\x20CSS\x20rules\x20from\x20'},_0x400de5=_0x536aff[_0x5ed331(0x248)](_0x1b6afe),_0x4c5f89=_0x7296f6(),_0x31889f=_0x536aff[_0x5ed331(0x15d)](_0x479c33),_0x5badde=_0x536aff[_0x5ed331(0x248)](_0xd8aa4c),_0xfe0ef1={'imagePlaceholder':undefined,'cacheBust':![]},_0x45a6a8={'toSvg':_0x36f9e7,'toPng':_0x3059,'toJpeg':_0x397e43,'toBlob':_0x53ca20,'toPixelData':_0x35f54e,'impl':{'fontFaces':_0x31889f,'images':_0x5badde,'util':_0x400de5,'inliner':_0x4c5f89,'options':{}}};_0x593e4e['exports']=_0x45a6a8;function _0x36f9e7(_0x579f89,_0x2fad11){var _0x1d43d8=_0x5ed331,_0x4c6532={'wetkH':_0x1d43d8(0x1e3),'uMEkh':function(_0x1aa04c,_0x1405de){return _0x1aa04c+_0x1405de;},'vIaYS':function(_0x59a902,_0x246c98){return _0x59a902+_0x246c98;}};_0x2fad11=_0x5aaf05[_0x1d43d8(0x8b)](_0x2fad11,{}),_0x5aaf05[_0x1d43d8(0x14a)](_0x17bc73,_0x2fad11);return Promise['resolve'](_0x579f89)[_0x1d43d8(0xb5)](function(_0x404250){var _0x1e4538=_0x1d43d8;return _0x37b827(_0x404250,_0x2fad11[_0x1e4538(0x19c)],!![]);})[_0x1d43d8(0xb5)](_0x407018)[_0x1d43d8(0xb5)](_0xb97f30)[_0x1d43d8(0xb5)](_0x4a39da)['then'](function(_0x4de5bf){var _0x43e7f5=_0x1d43d8;return _0x5e5e30(_0x4de5bf,_0x2fad11[_0x43e7f5(0x1c1)]||_0x400de5[_0x43e7f5(0x1c1)](_0x579f89),_0x2fad11[_0x43e7f5(0xb8)]||_0x400de5[_0x43e7f5(0xb8)](_0x579f89));});function _0x4a39da(_0x48a424){var _0x48afeb=_0x1d43d8,_0x3a22e1=_0x4c6532[_0x48afeb(0x252)]['split']('|'),_0x2ce680=0x0;while(!![]){switch(_0x3a22e1[_0x2ce680++]){case'0':if(_0x2fad11[_0x48afeb(0x1c1)])_0x48a424['style']['width']=_0x4c6532[_0x48afeb(0x22c)](_0x2fad11['width'],'px');continue;case'1':return _0x48a424;case'2':if(_0x2fad11[_0x48afeb(0x86)])_0x48a424[_0x48afeb(0x14b)][_0x48afeb(0x132)]=_0x2fad11[_0x48afeb(0x86)];continue;case'3':if(_0x2fad11[_0x48afeb(0xb8)])_0x48a424[_0x48afeb(0x14b)][_0x48afeb(0xb8)]=_0x4c6532[_0x48afeb(0x186)](_0x2fad11[_0x48afeb(0xb8)],'px');continue;case'4':if(_0x2fad11[_0x48afeb(0x14b)])Object[_0x48afeb(0x1b5)](_0x2fad11[_0x48afeb(0x14b)])[_0x48afeb(0x7c)](function(_0x4bf822){var _0x3dc4a0=_0x48afeb;_0x48a424[_0x3dc4a0(0x14b)][_0x4bf822]=_0x2fad11[_0x3dc4a0(0x14b)][_0x4bf822];});continue;}break;}}}function _0x35f54e(_0x5a42aa,_0xd84306){var _0x139776=_0x5ed331;return _0x35d52c(_0x5a42aa,_0xd84306||{})[_0x139776(0xb5)](function(_0x2eea49){var _0x2f8ed9=_0x139776;return _0x2eea49[_0x2f8ed9(0x1a9)]('2d')[_0x2f8ed9(0xc9)](0x0,0x0,_0x400de5[_0x2f8ed9(0x1c1)](_0x5a42aa),_0x400de5[_0x2f8ed9(0xb8)](_0x5a42aa))[_0x2f8ed9(0xd4)];});}function _0x3059(_0x67439,_0x537488){var _0x1031b9=_0x5ed331;return _0x536aff[_0x1031b9(0x212)](_0x35d52c,_0x67439,_0x537488||{})[_0x1031b9(0xb5)](function(_0x1b1c49){var _0x44847f=_0x1031b9;return _0x1b1c49[_0x44847f(0x107)]();});}function _0x397e43(_0x499f83,_0x615ee0){var _0x15c3b2=_0x5ed331;return _0x615ee0=_0x536aff[_0x15c3b2(0xa7)](_0x615ee0,{}),_0x536aff[_0x15c3b2(0x1c3)](_0x35d52c,_0x499f83,_0x615ee0)[_0x15c3b2(0xb5)](function(_0x83b210){var _0x9bdd10=_0x15c3b2;return _0x83b210[_0x9bdd10(0x107)]('image/jpeg',_0x615ee0[_0x9bdd10(0x16f)]||0x1);});}function _0x53ca20(_0x4ba7a8,_0xfe6818){var _0x17c6f9=_0x5ed331;return _0x35d52c(_0x4ba7a8,_0x536aff[_0x17c6f9(0xa7)](_0xfe6818,{}))[_0x17c6f9(0xb5)](_0x400de5[_0x17c6f9(0x24a)]);}function _0x17bc73(_0x58d230){var _0x24b972=_0x5ed331;_0x536aff[_0x24b972(0x6c)](typeof _0x58d230[_0x24b972(0x138)],_0x536aff[_0x24b972(0x1a6)])?_0x45a6a8['impl'][_0x24b972(0x263)][_0x24b972(0x138)]=_0xfe0ef1[_0x24b972(0x138)]:_0x45a6a8[_0x24b972(0x20b)][_0x24b972(0x263)]['imagePlaceholder']=_0x58d230['imagePlaceholder'],_0x536aff[_0x24b972(0x129)](typeof _0x58d230[_0x24b972(0x140)],_0x24b972(0x1fe))?_0x45a6a8['impl']['options'][_0x24b972(0x140)]=_0xfe0ef1[_0x24b972(0x140)]:_0x45a6a8[_0x24b972(0x20b)][_0x24b972(0x263)][_0x24b972(0x140)]=_0x58d230['cacheBust'];}function _0x35d52c(_0x387bbd,_0x1375d2){var _0xd4ca62=_0x5ed331,_0x4beeb6={'yILaw':function(_0x4d91ae,_0x55fbca){return _0x536aff['qbnLO'](_0x4d91ae,_0x55fbca);}};return _0x536aff[_0xd4ca62(0x15b)](_0x36f9e7,_0x387bbd,_0x1375d2)[_0xd4ca62(0xb5)](_0x400de5['makeImage'])[_0xd4ca62(0xb5)](_0x400de5[_0xd4ca62(0xae)](0x64))[_0xd4ca62(0xb5)](function(_0x3a287d){var _0x1a3594=_0xd4ca62,_0x17d9b2=_0x4beeb6[_0x1a3594(0x1fa)](_0x200a8d,_0x387bbd);return _0x17d9b2[_0x1a3594(0x1a9)]('2d')[_0x1a3594(0xc0)](_0x3a287d,0x0,0x0),_0x17d9b2;});function _0x200a8d(_0x7882ef){var _0x484ccd=_0xd4ca62,_0x7f1a74=document['createElement'](_0x5aaf05[_0x484ccd(0x20e)]);_0x7f1a74[_0x484ccd(0x1c1)]=_0x1375d2['width']||_0x400de5['width'](_0x7882ef),_0x7f1a74['height']=_0x1375d2[_0x484ccd(0xb8)]||_0x400de5[_0x484ccd(0xb8)](_0x7882ef);if(_0x1375d2[_0x484ccd(0x86)]){var _0xab23a6=_0x7f1a74[_0x484ccd(0x1a9)]('2d');_0xab23a6['fillStyle']=_0x1375d2[_0x484ccd(0x86)],_0xab23a6[_0x484ccd(0x204)](0x0,0x0,_0x7f1a74[_0x484ccd(0x1c1)],_0x7f1a74[_0x484ccd(0xb8)]);}return _0x7f1a74;}}function _0x37b827(_0x5afd43,_0x20aa2b,_0xe97ed7){var _0x20ccc3=_0x5ed331,_0x433fc6={'bGFKs':function(_0x6782d3,_0x36a196){var _0x317f41=_0x3b2e;return _0x536aff[_0x317f41(0x18f)](_0x6782d3,_0x36a196);},'poXex':_0x536aff[_0x20ccc3(0x70)],'Ufhlc':'http://www.w3.org/2000/svg','zICMs':_0x536aff[_0x20ccc3(0x12f)]};if(_0x536aff[_0x20ccc3(0xf4)](!_0xe97ed7,_0x20aa2b)&&!_0x20aa2b(_0x5afd43))return Promise[_0x20ccc3(0x237)]();return Promise[_0x20ccc3(0x237)](_0x5afd43)[_0x20ccc3(0xb5)](_0x11153b)['then'](function(_0x128d2c){return _0x511479(_0x5afd43,_0x128d2c,_0x20aa2b);})[_0x20ccc3(0xb5)](function(_0x9c2de2){var _0x74764d=_0x20ccc3;return _0x5aaf05[_0x74764d(0x75)](_0x191e58,_0x5afd43,_0x9c2de2);});function _0x11153b(_0x46b4ef){var _0x567a29=_0x20ccc3;if(_0x433fc6[_0x567a29(0xfb)](_0x46b4ef,HTMLCanvasElement))return _0x400de5[_0x567a29(0x14f)](_0x46b4ef['toDataURL']());return _0x46b4ef[_0x567a29(0x141)](![]);}function _0x511479(_0x1fdefc,_0x1be0d8,_0x2b0193){var _0x3d7f0f=_0x20ccc3,_0x5a70f1=_0x1fdefc[_0x3d7f0f(0x15e)];if(_0x5aaf05['gnmKY'](_0x5a70f1[_0x3d7f0f(0xd9)],0x0))return Promise[_0x3d7f0f(0x237)](_0x1be0d8);return _0x5aaf05[_0x3d7f0f(0xfa)](_0x23743b,_0x1be0d8,_0x400de5[_0x3d7f0f(0xcf)](_0x5a70f1),_0x2b0193)[_0x3d7f0f(0xb5)](function(){return _0x1be0d8;});function _0x23743b(_0x1d5e92,_0x10a7a0,_0x2971fa){var _0x4639a0=_0x3d7f0f,_0xcf6d2a=Promise[_0x4639a0(0x237)]();return _0x10a7a0['forEach'](function(_0x21c2e7){var _0x2e12a4=_0x4639a0;_0xcf6d2a=_0xcf6d2a[_0x2e12a4(0xb5)](function(){return _0x37b827(_0x21c2e7,_0x2971fa);})[_0x2e12a4(0xb5)](function(_0x8c765){var _0x5d456c=_0x2e12a4;if(_0x8c765)_0x1d5e92[_0x5d456c(0xdd)](_0x8c765);});}),_0xcf6d2a;}}function _0x191e58(_0x535313,_0x4a80ce){var _0x469b07=_0x20ccc3,_0x312383={'RdJmv':function(_0x225145,_0x2d1353,_0xe2b458){var _0x9fc25e=_0x3b2e;return _0x5aaf05[_0x9fc25e(0x75)](_0x225145,_0x2d1353,_0xe2b458);},'WuFRS':_0x5aaf05[_0x469b07(0x1b3)],'wLHus':function(_0x4c4fda,_0x2ef7dc){var _0xae9459=_0x469b07;return _0x5aaf05[_0xae9459(0x87)](_0x4c4fda,_0x2ef7dc);},'qjzGY':_0x5aaf05['bgSjJ'],'aoygK':function(_0x47b31f,_0x1c2b36){var _0x5b8fed=_0x469b07;return _0x5aaf05[_0x5b8fed(0x11e)](_0x47b31f,_0x1c2b36);},'PzKpW':_0x469b07(0x14b),'yxfhH':function(_0x3a8b58,_0x2496e5,_0x1d9f97,_0x214b5a){return _0x3a8b58(_0x2496e5,_0x1d9f97,_0x214b5a);},'JFqoy':function(_0x113621,_0xd13e61){var _0x407759=_0x469b07;return _0x5aaf05[_0x407759(0xab)](_0x113621,_0xd13e61);},'tqWaj':function(_0x120db4,_0x180650){return _0x5aaf05['nEqmu'](_0x120db4,_0x180650);},'UvXjT':_0x5aaf05[_0x469b07(0x1f3)],'OJmzZ':_0x5aaf05[_0x469b07(0x272)],'eVQSA':function(_0x5f00bc,_0x524982){return _0x5f00bc instanceof _0x524982;},'Kanqd':_0x5aaf05['ZbsyG']};if(!_0x5aaf05['nQYEb'](_0x4a80ce,Element))return _0x4a80ce;return Promise[_0x469b07(0x237)]()[_0x469b07(0xb5)](_0x4cb88c)[_0x469b07(0xb5)](_0x346073)[_0x469b07(0xb5)](_0x2ced73)[_0x469b07(0xb5)](_0x15651b)['then'](function(){return _0x4a80ce;});function _0x4cb88c(){var _0x5caa59=_0x469b07;_0x312383[_0x5caa59(0x26e)](_0x2f3e1f,window[_0x5caa59(0xfd)](_0x535313),_0x4a80ce[_0x5caa59(0x14b)]);function _0x2f3e1f(_0x38a4d6,_0x56ed1b){var _0x5b55f3=_0x5caa59;if(_0x38a4d6[_0x5b55f3(0xa6)])_0x56ed1b['cssText']=_0x38a4d6[_0x5b55f3(0xa6)];else _0x2ef95f(_0x38a4d6,_0x56ed1b);function _0x2ef95f(_0x335aae,_0x12891c){var _0x45c9ea=_0x5b55f3;_0x400de5[_0x45c9ea(0xcf)](_0x335aae)['forEach'](function(_0x257ee1){var _0x4fc307=_0x45c9ea;_0x12891c[_0x4fc307(0x17b)](_0x257ee1,_0x335aae[_0x4fc307(0x244)](_0x257ee1),_0x335aae[_0x4fc307(0x194)](_0x257ee1));});}}}function _0x346073(){var _0x585b1a=_0x469b07,_0x556ea4={'QpRjS':function(_0x527796,_0x5f368b){var _0x2eeb3d=_0x3b2e;return _0x312383[_0x2eeb3d(0x131)](_0x527796,_0x5f368b);},'RBoAh':function(_0x2bfd41,_0x34304a){return _0x2bfd41+_0x34304a;},'tsbnb':'\x20!important','ZmzHy':function(_0x1d6f8c,_0x382b6a){return _0x1d6f8c+_0x382b6a;},'sBnSK':function(_0x4f1354,_0x2def04){return _0x312383['JFqoy'](_0x4f1354,_0x2def04);},'GQEYe':function(_0x3e272c,_0xdd4e07){var _0x40bc42=_0x3b2e;return _0x312383[_0x40bc42(0x236)](_0x3e272c,_0xdd4e07);},'zhHfC':function(_0x1db944,_0x3c94b1){var _0x47bdc7=_0x3b2e;return _0x312383[_0x47bdc7(0xa0)](_0x1db944,_0x3c94b1);}};[_0x312383[_0x585b1a(0x260)],_0x312383[_0x585b1a(0xe4)]][_0x585b1a(0x7c)](function(_0x59c36f){_0x833134(_0x59c36f);});function _0x833134(_0x33e567){var _0x5d8eb9=_0x585b1a,_0x377ec2=window['getComputedStyle'](_0x535313,_0x33e567),_0x3a05ad=_0x377ec2['getPropertyValue'](_0x312383[_0x5d8eb9(0x23c)]);if(_0x312383['wLHus'](_0x3a05ad,'')||_0x3a05ad===_0x312383[_0x5d8eb9(0x150)])return;var _0x3a5768=_0x400de5['uid']();_0x4a80ce[_0x5d8eb9(0x93)]=_0x312383[_0x5d8eb9(0x131)](_0x312383[_0x5d8eb9(0x131)](_0x4a80ce[_0x5d8eb9(0x93)],'\x20'),_0x3a5768);var _0x1c2cdb=document[_0x5d8eb9(0x109)](_0x312383[_0x5d8eb9(0x135)]);_0x1c2cdb[_0x5d8eb9(0xdd)](_0x312383[_0x5d8eb9(0xac)](_0x4f8cba,_0x3a5768,_0x33e567,_0x377ec2)),_0x4a80ce['appendChild'](_0x1c2cdb);function _0x4f8cba(_0x264c34,_0x2e6e95,_0x14f57c){var _0x888e8f=_0x5d8eb9,_0x57f4e1={'emnXY':'content','XZQeW':function(_0x2e8f2b,_0x5c03b8){var _0x2174af=_0x3b2e;return _0x556ea4[_0x2174af(0x18a)](_0x2e8f2b,_0x5c03b8);},'jyYwm':function(_0x1a2a58,_0x120b0c){var _0x1b6a03=_0x3b2e;return _0x556ea4[_0x1b6a03(0x18a)](_0x1a2a58,_0x120b0c);},'aeRWN':'\x20content:\x20','iyoup':function(_0x14ed0e,_0x13c3d0){return _0x556ea4['RBoAh'](_0x14ed0e,_0x13c3d0);},'Abbsu':_0x556ea4[_0x888e8f(0x21b)]},_0x205841=_0x556ea4[_0x888e8f(0x250)](_0x556ea4[_0x888e8f(0xa3)](_0x556ea4[_0x888e8f(0xaa)]('.',_0x264c34),':'),_0x2e6e95),_0x39209c=_0x14f57c[_0x888e8f(0xa6)]?_0x556ea4[_0x888e8f(0x249)](_0xaac779,_0x14f57c):_0x556ea4[_0x888e8f(0x249)](_0x4822ed,_0x14f57c);return document[_0x888e8f(0x201)](_0x556ea4['zhHfC'](_0x556ea4[_0x888e8f(0xaa)](_0x205841+'{',_0x39209c),'}'));function _0xaac779(_0x51c82a){var _0x4eda0e=_0x888e8f,_0x1cc166=_0x51c82a[_0x4eda0e(0x244)](_0x57f4e1[_0x4eda0e(0x8c)]);return _0x57f4e1[_0x4eda0e(0x9c)](_0x57f4e1[_0x4eda0e(0x9c)](_0x57f4e1[_0x4eda0e(0x1e4)](_0x51c82a['cssText'],_0x57f4e1['aeRWN']),_0x1cc166),';');}function _0x4822ed(_0x177051){var _0x3f31d9=_0x888e8f;return _0x57f4e1[_0x3f31d9(0x1e4)](_0x400de5[_0x3f31d9(0xcf)](_0x177051)['map'](_0x4a8159)[_0x3f31d9(0x1a7)](';\x20'),';');function _0x4a8159(_0x10ff3c){var _0x33857c=_0x3f31d9;return _0x57f4e1[_0x33857c(0x26d)](_0x10ff3c,':\x20')+_0x177051[_0x33857c(0x244)](_0x10ff3c)+(_0x177051['getPropertyPriority'](_0x10ff3c)?_0x57f4e1[_0x33857c(0x7d)]:'');}}}}}function _0x2ced73(){var _0x265f8b=_0x469b07;if(_0x312383[_0x265f8b(0x158)](_0x535313,HTMLTextAreaElement))_0x4a80ce[_0x265f8b(0x117)]=_0x535313[_0x265f8b(0x1f6)];if(_0x312383[_0x265f8b(0x158)](_0x535313,HTMLInputElement))_0x4a80ce[_0x265f8b(0x208)](_0x312383['Kanqd'],_0x535313[_0x265f8b(0x1f6)]);}function _0x15651b(){var _0x1cc8c9=_0x469b07;if(!_0x433fc6[_0x1cc8c9(0xfb)](_0x4a80ce,SVGElement))return;_0x4a80ce[_0x1cc8c9(0x208)](_0x433fc6[_0x1cc8c9(0x182)],_0x433fc6[_0x1cc8c9(0x12a)]);if(!_0x433fc6[_0x1cc8c9(0xfb)](_0x4a80ce,SVGRectElement))return;[_0x433fc6[_0x1cc8c9(0x1a2)],_0x1cc8c9(0xb8)][_0x1cc8c9(0x7c)](function(_0xd55184){var _0x5e112e=_0x1cc8c9,_0x161474=_0x4a80ce[_0x5e112e(0x18c)](_0xd55184);if(!_0x161474)return;_0x4a80ce['style'][_0x5e112e(0x17b)](_0xd55184,_0x161474);});}}}function _0x407018(_0x26b21a){var _0x5790c5=_0x5ed331,_0x19edc8={'lqTVc':_0x5790c5(0x14b)};return _0x31889f[_0x5790c5(0x21f)]()[_0x5790c5(0xb5)](function(_0x215837){var _0x277cf9=_0x5790c5,_0x456fcc=document[_0x277cf9(0x109)](_0x19edc8['lqTVc']);return _0x26b21a[_0x277cf9(0xdd)](_0x456fcc),_0x456fcc[_0x277cf9(0xdd)](document[_0x277cf9(0x201)](_0x215837)),_0x26b21a;});}function _0xb97f30(_0x22462c){var _0x1468b5=_0x5ed331;return _0x5badde[_0x1468b5(0x242)](_0x22462c)['then'](function(){return _0x22462c;});}function _0x5e5e30(_0x3fe0bb,_0x114054,_0x5ee0b9){var _0x14a48b=_0x5ed331,_0x2c24e9={'rCIxM':function(_0x209a08,_0xb41cac){var _0x1594f4=_0x3b2e;return _0x536aff[_0x1594f4(0x169)](_0x209a08,_0xb41cac);},'tBoxf':_0x536aff[_0x14a48b(0x1f7)],'XqjZP':_0x536aff[_0x14a48b(0x149)]};return Promise[_0x14a48b(0x237)](_0x3fe0bb)['then'](function(_0x5ad4f3){var _0x3199fc=_0x14a48b;return _0x5ad4f3[_0x3199fc(0x208)](_0x5aaf05[_0x3199fc(0xc7)],_0x5aaf05['yDnbG']),new XMLSerializer()[_0x3199fc(0x119)](_0x5ad4f3);})[_0x14a48b(0xb5)](_0x400de5[_0x14a48b(0x23f)])[_0x14a48b(0xb5)](function(_0xf82137){var _0x20da0f=_0x14a48b;return _0x2c24e9[_0x20da0f(0x193)](_0x2c24e9[_0x20da0f(0x12d)]+_0xf82137,_0x2c24e9[_0x20da0f(0x1bc)]);})[_0x14a48b(0xb5)](function(_0x3e96fb){var _0x1a8d93=_0x14a48b;return _0x5aaf05[_0x1a8d93(0x241)](_0x5aaf05['lSrPY'](_0x5aaf05['pLDXM'](_0x5aaf05[_0x1a8d93(0x241)](_0x5aaf05[_0x1a8d93(0xf6)](_0x5aaf05[_0x1a8d93(0xf6)](_0x1a8d93(0xf0),_0x114054),_0x1a8d93(0x197)),_0x5ee0b9),'\x22>'),_0x3e96fb),_0x5aaf05[_0x1a8d93(0xad)]);})['then'](function(_0x4ed597){var _0x38e6c6=_0x14a48b;return _0x5aaf05[_0x38e6c6(0x241)](_0x5aaf05['kzPdS'],_0x4ed597);});}function _0x1b6afe(){var _0x168a65=_0x5ed331,_0x4902f6={'bzRKF':'4|0|1|2|3','PeMOE':function(_0x4cd99e,_0x26c368){return _0x4cd99e(_0x26c368);},'nmvcB':function(_0x25b074,_0xf6d35f){return _0x5aaf05['pLDXM'](_0x25b074,_0xf6d35f);},'WzgES':function(_0x1d4ced){var _0x4cf883=_0x3b2e;return _0x5aaf05[_0x4cf883(0x1d6)](_0x1d4ced);},'MZcga':function(_0x348e6d,_0x4050a0){var _0x5ec5d3=_0x3b2e;return _0x5aaf05[_0x5ec5d3(0x1ec)](_0x348e6d,_0x4050a0);},'gZeIa':function(_0x2acde6,_0x42cb11){var _0x2a7fb2=_0x3b2e;return _0x5aaf05[_0x2a7fb2(0x192)](_0x2acde6,_0x42cb11);},'vSDJh':'cannot\x20fetch\x20resource:\x20','hRlOa':function(_0xe8ec37,_0x1d4bbb){return _0xe8ec37(_0x1d4bbb);},'dvoon':_0x5aaf05[_0x168a65(0x267)],'MkpoJ':_0x5aaf05[_0x168a65(0xde)],'XlvBR':function(_0x56de70,_0x4353db){return _0x5aaf05['gUhZx'](_0x56de70,_0x4353db);},'TNnxm':_0x5aaf05['lDMyn'],'GDOgi':_0x5aaf05['QWnBk'],'ADbWb':function(_0x1ac4c4,_0x1cd2e8,_0x8021dc){return _0x1ac4c4(_0x1cd2e8,_0x8021dc);},'QJAvk':function(_0x33ecc1,_0x24e499){var _0x2bfa49=_0x168a65;return _0x5aaf05[_0x2bfa49(0x1fc)](_0x33ecc1,_0x24e499);},'WfEdY':_0x5aaf05[_0x168a65(0x232)],'LLRAz':function(_0x2b6a56,_0x507690){var _0x571f18=_0x168a65;return _0x5aaf05[_0x571f18(0x257)](_0x2b6a56,_0x507690);}};return{'escape':_0x46629d,'parseExtension':_0x294b13,'mimeType':_0x197f9f,'dataAsUrl':_0x2534e0,'isDataUrl':_0x5bbea0,'canvasToBlob':_0x4097fa,'resolveUrl':_0x499d76,'getAndEncode':_0xb282ae,'uid':_0x5aaf05[_0x168a65(0x1bd)](_0x123b35),'delay':_0x4f5740,'asArray':_0x378968,'escapeXhtml':_0x4b6e8b,'makeImage':_0xefd2d7,'width':_0x25783e,'height':_0x36a55a};function _0x2216eb(){var _0x37afec=_0x168a65,_0x478681=_0x5aaf05['yxmog'],_0x2897a3=_0x5aaf05['vKQHO'];return{'woff':_0x478681,'woff2':_0x478681,'ttf':_0x5aaf05[_0x37afec(0x177)],'eot':_0x37afec(0xbb),'png':_0x5aaf05['adzPA'],'jpg':_0x2897a3,'jpeg':_0x2897a3,'gif':_0x5aaf05[_0x37afec(0x102)],'tiff':_0x37afec(0x223),'svg':_0x5aaf05[_0x37afec(0x139)]};}function _0x294b13(_0x1393f4){var _0xb99fb1=_0x168a65,_0x47a473=/\.([^\.\/]*?)$/g[_0xb99fb1(0x25c)](_0x1393f4);if(_0x47a473)return _0x47a473[0x1];else return'';}function _0x197f9f(_0x9762e4){var _0x1cac04=_0x168a65,_0x4a025c=_0x5aaf05[_0x1cac04(0x1d8)](_0x294b13,_0x9762e4)[_0x1cac04(0x77)]();return _0x5aaf05[_0x1cac04(0x1d6)](_0x2216eb)[_0x4a025c]||'';}function _0x5bbea0(_0x593084){var _0x30e05f=_0x168a65;return _0x5aaf05[_0x30e05f(0x10c)](_0x593084['search'](/^(data:)/),-0x1);}function _0x222419(_0x2b0cc8){return new Promise(function(_0x31f64d){var _0x9a1acd=_0x3b2e,_0x37a2e0=_0x4902f6[_0x9a1acd(0x230)][_0x9a1acd(0x81)]('|'),_0x4ad6f1=0x0;while(!![]){switch(_0x37a2e0[_0x4ad6f1++]){case'0':var _0x165274=_0x414b98[_0x9a1acd(0xd9)];continue;case'1':var _0x26d8ac=new Uint8Array(_0x165274);continue;case'2':for(var _0x24da37=0x0;_0x24da37<_0x165274;_0x24da37++)_0x26d8ac[_0x24da37]=_0x414b98[_0x9a1acd(0xb7)](_0x24da37);continue;case'3':_0x4902f6[_0x9a1acd(0x148)](_0x31f64d,new Blob([_0x26d8ac],{'type':'image/png'}));continue;case'4':var _0x414b98=window[_0x9a1acd(0x1e2)](_0x2b0cc8[_0x9a1acd(0x107)]()['split'](',')[0x1]);continue;}break;}});}function _0x4097fa(_0x547349){var _0x2c8404=_0x168a65;if(_0x547349[_0x2c8404(0x160)])return new Promise(function(_0x1bd4e4){var _0x3a7b3e=_0x2c8404;_0x547349[_0x3a7b3e(0x160)](_0x1bd4e4);});return _0x5aaf05[_0x2c8404(0xcd)](_0x222419,_0x547349);}function _0x499d76(_0xae08d0,_0x5806a3){var _0x4d0a44=_0x168a65,_0x28a279=_0x5aaf05[_0x4d0a44(0x191)][_0x4d0a44(0x81)]('|'),_0x49eb64=0x0;while(!![]){switch(_0x28a279[_0x49eb64++]){case'0':_0x2e5ce8[_0x4d0a44(0x9d)]=_0xae08d0;continue;case'1':var _0x2e5ce8=_0x1be90d[_0x4d0a44(0x109)]('a');continue;case'2':var _0x1be90d=document[_0x4d0a44(0x1d9)][_0x4d0a44(0x1d7)]();continue;case'3':_0x1be90d[_0x4d0a44(0xe7)][_0x4d0a44(0xdd)](_0x1371c4);continue;case'4':var _0x1371c4=_0x1be90d[_0x4d0a44(0x109)](_0x5aaf05[_0x4d0a44(0x229)]);continue;case'5':return _0x2e5ce8[_0x4d0a44(0x9d)];case'6':_0x1371c4[_0x4d0a44(0x9d)]=_0x5806a3;continue;case'7':_0x1be90d[_0x4d0a44(0xff)]['appendChild'](_0x2e5ce8);continue;}break;}}function _0x123b35(){var _0x17613c={'egINc':function(_0x34a511,_0x1471a9){var _0x5dd7d8=_0x3b2e;return _0x5aaf05[_0x5dd7d8(0xb4)](_0x34a511,_0x1471a9);},'DotpH':function(_0x446519,_0x1b21ec){var _0x1a064f=_0x3b2e;return _0x5aaf05[_0x1a064f(0x11b)](_0x446519,_0x1b21ec);}},_0xb1c09c=0x0;return function(){var _0x3fdd40=_0x3b2e;return _0x4902f6['nmvcB']('u',_0x4902f6[_0x3fdd40(0x1c4)](_0x5f0735))+_0xb1c09c++;function _0x5f0735(){var _0x2d7a50=_0x3fdd40;return('0000'+_0x17613c['egINc'](_0x17613c[_0x2d7a50(0x12c)](Math[_0x2d7a50(0x187)](),Math[_0x2d7a50(0xc4)](0x24,0x4)),0x0)['toString'](0x24))['slice'](-0x4);}};}function _0xefd2d7(_0xb08599){var _0x47452c={'lwjTB':function(_0x4937f6,_0x586c3a){var _0x1c4b93=_0x3b2e;return _0x5aaf05[_0x1c4b93(0x199)](_0x4937f6,_0x586c3a);}};return new Promise(function(_0x489485,_0x131fcb){var _0x55ec95=_0x3b2e,_0x27598d=new Image();_0x27598d['onload']=function(){var _0x106db1=_0x3b2e;_0x47452c[_0x106db1(0x73)](_0x489485,_0x27598d);},_0x27598d[_0x55ec95(0x25f)]=_0x131fcb,_0x27598d['src']=_0xb08599;});}function _0xb282ae(_0x27944e){var _0x5ebf4e=_0x168a65,_0x414c70={'PbzQw':function(_0x15d355,_0x54954d){var _0x13602c=_0x3b2e;return _0x5aaf05[_0x13602c(0x192)](_0x15d355,_0x54954d);},'OZXwr':function(_0xf32e9f,_0x3721ac){return _0xf32e9f+_0x3721ac;},'yQSSA':function(_0x15e861,_0x23d339){return _0x5aaf05['DSiLY'](_0x15e861,_0x23d339);},'dZIgF':function(_0x43aed0,_0x4f04e4){return _0x43aed0+_0x4f04e4;},'FwaPj':_0x5aaf05[_0x5ebf4e(0x217)],'SgrDV':function(_0x57b34b,_0x5a1ef2){var _0x1ae04f=_0x5ebf4e;return _0x5aaf05[_0x1ae04f(0x199)](_0x57b34b,_0x5a1ef2);}},_0x558e8e=0x7530;return _0x45a6a8[_0x5ebf4e(0x20b)][_0x5ebf4e(0x263)][_0x5ebf4e(0x140)]&&(_0x27944e+=_0x5aaf05[_0x5ebf4e(0xf6)](/\?/[_0x5ebf4e(0x172)](_0x27944e)?'&':'?',new Date()[_0x5ebf4e(0x1b4)]())),new Promise(function(_0x5b1b32){var _0x483289=_0x5ebf4e,_0x483d57={'ewTto':'5|3|1|2|0|4','OUxHp':function(_0x3ab6e4,_0x1a725c){var _0x231b11=_0x3b2e;return _0x4902f6[_0x231b11(0x211)](_0x3ab6e4,_0x1a725c);},'zCRdr':function(_0x1cfdf9,_0x368bf7){return _0x4902f6['gZeIa'](_0x1cfdf9,_0x368bf7);},'Bwvih':function(_0x34aede,_0x395317){var _0x1d0758=_0x3b2e;return _0x4902f6[_0x1d0758(0x148)](_0x34aede,_0x395317);},'QoTfZ':function(_0x1173ca,_0x4fa67b){return _0x1173ca+_0x4fa67b;},'syXLI':_0x4902f6[_0x483289(0x1f2)],'mOAkk':',\x20status:\x20','IXWiC':function(_0x523301,_0xdcfa0c){var _0x2709cc=_0x483289;return _0x4902f6[_0x2709cc(0x13a)](_0x523301,_0xdcfa0c);}},_0x4b0927=new XMLHttpRequest();_0x4b0927['onreadystatechange']=_0x3d5ae2,_0x4b0927[_0x483289(0xd5)]=_0x1272b6,_0x4b0927[_0x483289(0x14c)]=_0x4902f6[_0x483289(0x114)],_0x4b0927[_0x483289(0xed)]=_0x558e8e,_0x4b0927[_0x483289(0x214)](_0x4902f6['MkpoJ'],_0x27944e,!![]),_0x4b0927[_0x483289(0x175)]();var _0x3ed1b2;if(_0x45a6a8[_0x483289(0x20b)][_0x483289(0x263)][_0x483289(0x138)]){var _0x4a6e7f=_0x45a6a8[_0x483289(0x20b)][_0x483289(0x263)]['imagePlaceholder'][_0x483289(0x81)](/,/);_0x4a6e7f&&_0x4a6e7f[0x1]&&(_0x3ed1b2=_0x4a6e7f[0x1]);}function _0x3d5ae2(){var _0x2a0647=_0x483289,_0x4df744=_0x483d57['ewTto'][_0x2a0647(0x81)]('|'),_0x35bf86=0x0;while(!![]){switch(_0x4df744[_0x35bf86++]){case'0':_0x3d5e18['onloadend']=function(){var _0x31a803=_0x2a0647,_0x59b0cb=_0x3d5e18[_0x31a803(0x198)]['split'](/,/)[0x1];_0xd4e1ed[_0x31a803(0x118)](_0x5b1b32,_0x59b0cb);};continue;case'1':if(_0x483d57['OUxHp'](_0x4b0927[_0x2a0647(0x128)],0xc8)){_0x3ed1b2?_0x483d57[_0x2a0647(0x243)](_0x5b1b32,_0x3ed1b2):_0x483d57['Bwvih'](_0x38a67f,_0x483d57[_0x2a0647(0x222)](_0x483d57['QoTfZ'](_0x483d57[_0x2a0647(0x222)](_0x483d57[_0x2a0647(0x171)],_0x27944e),_0x483d57[_0x2a0647(0x228)]),_0x4b0927[_0x2a0647(0x128)]));return;}continue;case'2':var _0x3d5e18=new FileReader();continue;case'3':if(_0x483d57['OUxHp'](_0x4b0927[_0x2a0647(0xbc)],0x4))return;continue;case'4':_0x3d5e18[_0x2a0647(0x9e)](_0x4b0927[_0x2a0647(0x10d)]);continue;case'5':var _0xd4e1ed={'LPnHi':function(_0x485578,_0x4789f5){var _0xe6b7cc=_0x2a0647;return _0x483d57[_0xe6b7cc(0x25a)](_0x485578,_0x4789f5);}};continue;}break;}}function _0x1272b6(){var _0x513988=_0x483289;_0x3ed1b2?_0x5b1b32(_0x3ed1b2):_0x414c70[_0x513988(0xee)](_0x38a67f,_0x414c70['OZXwr'](_0x414c70[_0x513988(0xdf)](_0x414c70[_0x513988(0x1ae)](_0x513988(0x200),_0x558e8e),_0x414c70[_0x513988(0x24c)]),_0x27944e));}function _0x38a67f(_0x59c9d0){var _0x397e40=_0x483289;console[_0x397e40(0xf8)](_0x59c9d0),_0x414c70[_0x397e40(0x164)](_0x5b1b32,'');}});}function _0x2534e0(_0x2b67ee,_0x4467b7){var _0x17950b=_0x168a65;return _0x4902f6[_0x17950b(0x239)](_0x4902f6[_0x17950b(0x239)](_0x4902f6['XlvBR'](_0x4902f6['TNnxm'],_0x4467b7),_0x4902f6['GDOgi']),_0x2b67ee);}function _0x46629d(_0x358106){var _0x4c482f=_0x168a65;return _0x358106[_0x4c482f(0x96)](/([.*+?^${}()|\[\]\/\\])/g,'\x5c$1');}function _0x4f5740(_0x122d0c){var _0xffb129={'vjuin':function(_0x270c6a,_0x46e48c){return _0x270c6a(_0x46e48c);},'MlPHp':function(_0x5afaa7,_0x11401a,_0x42e463){var _0x4afde5=_0x3b2e;return _0x4902f6[_0x4afde5(0x104)](_0x5afaa7,_0x11401a,_0x42e463);}};return function(_0x4bcc64){return new Promise(function(_0x1830a7){var _0x44c3ef={'nZABt':function(_0x3069c6,_0x4b6c4f){return _0xffb129['vjuin'](_0x3069c6,_0x4b6c4f);}};_0xffb129['MlPHp'](setTimeout,function(){var _0x4de3e9=_0x3b2e;_0x44c3ef[_0x4de3e9(0x15a)](_0x1830a7,_0x4bcc64);},_0x122d0c);});};}function _0x378968(_0x319c0f){var _0x4ff46a=_0x168a65,_0xeb4172=[],_0x12a875=_0x319c0f['length'];for(var _0x359454=0x0;_0x4902f6[_0x4ff46a(0xb6)](_0x359454,_0x12a875);_0x359454++)_0xeb4172['push'](_0x319c0f[_0x359454]);return _0xeb4172;}function _0x4b6e8b(_0x20bcc1){var _0x5d924d=_0x168a65;return _0x20bcc1[_0x5d924d(0x96)](/#/g,_0x5aaf05[_0x5d924d(0x256)])[_0x5d924d(0x96)](/\n/g,_0x5aaf05[_0x5d924d(0x190)]);}function _0x25783e(_0xb5c7c2){var _0x9bda98=_0x168a65,_0x4e89b5=_0x5aaf05['IXGUq'](_0x258e2d,_0xb5c7c2,_0x5aaf05[_0x9bda98(0xf2)]),_0x6f56=_0x258e2d(_0xb5c7c2,_0x5aaf05[_0x9bda98(0x1bf)]);return _0x5aaf05[_0x9bda98(0xa9)](_0xb5c7c2[_0x9bda98(0x88)]+_0x4e89b5,_0x6f56);}function _0x36a55a(_0x34fc9f){var _0x3116a3=_0x168a65,_0x50f650=_0x258e2d(_0x34fc9f,_0x4902f6[_0x3116a3(0x13b)]),_0x46a654=_0x4902f6[_0x3116a3(0x104)](_0x258e2d,_0x34fc9f,_0x3116a3(0x209));return _0x4902f6[_0x3116a3(0x80)](_0x4902f6[_0x3116a3(0x80)](_0x34fc9f[_0x3116a3(0x210)],_0x50f650),_0x46a654);}function _0x258e2d(_0x13d55d,_0x109340){var _0x1f5c8e=_0x168a65,_0x9e93d1=window[_0x1f5c8e(0xfd)](_0x13d55d)['getPropertyValue'](_0x109340);return _0x5aaf05[_0x1f5c8e(0x11c)](parseFloat,_0x9e93d1[_0x1f5c8e(0x96)]('px',''));}}function _0x7296f6(){var _0x45e8d5={'bMaWE':function(_0xa9ea43,_0x651604,_0x36b0fc,_0x1dbcc6,_0x4f57d3){var _0x3809e9=_0x3b2e;return _0x5aaf05[_0x3809e9(0x25d)](_0xa9ea43,_0x651604,_0x36b0fc,_0x1dbcc6,_0x4f57d3);},'FLTKO':function(_0x14338e,_0x341d30){var _0x5e54db=_0x3b2e;return _0x5aaf05[_0x5e54db(0xcb)](_0x14338e,_0x341d30);},'vpzvn':function(_0x5334f9){var _0x1c3e63=_0x3b2e;return _0x5aaf05[_0x1c3e63(0x72)](_0x5334f9);}},_0x4e108e=/url\(['"]?([^'"]+?)['"]?\)/g;return{'inlineAll':_0x2245cf,'shouldProcess':_0x2f675c,'impl':{'readUrls':_0x16c624,'inline':_0x5b3d70}};function _0x2f675c(_0x34b33b){var _0x3f36a3=_0x3b2e;return _0x34b33b[_0x3f36a3(0x265)](_0x4e108e)!==-0x1;}function _0x16c624(_0x55254e){var _0x4a73ab=_0x3b2e,_0xeab182=[],_0x18cf99;while((_0x18cf99=_0x4e108e[_0x4a73ab(0x25c)](_0x55254e))!==null){_0xeab182[_0x4a73ab(0x154)](_0x18cf99[0x1]);}return _0xeab182[_0x4a73ab(0x19c)](function(_0x40a78c){var _0x36f145=_0x4a73ab;return!_0x400de5[_0x36f145(0x1c7)](_0x40a78c);});}function _0x5b3d70(_0x5158d6,_0x4499d9,_0x2dfb3d,_0x550328){var _0x1d4bef=_0x3b2e,_0x536ac8={'xhfEb':function(_0x362e88,_0x33cabe){return _0x5aaf05['TsEgZ'](_0x362e88,_0x33cabe);},'HFpxs':function(_0x3f990c,_0x4a5749){var _0x312ad7=_0x3b2e;return _0x5aaf05[_0x312ad7(0xab)](_0x3f990c,_0x4a5749);},'BHtAe':_0x5aaf05[_0x1d4bef(0x94)],'fLuNe':_0x1d4bef(0x7b)};return Promise['resolve'](_0x4499d9)[_0x1d4bef(0xb5)](function(_0x12291d){var _0x162f8a=_0x1d4bef;return _0x2dfb3d?_0x400de5[_0x162f8a(0x1e8)](_0x12291d,_0x2dfb3d):_0x12291d;})[_0x1d4bef(0xb5)](_0x550328||_0x400de5['getAndEncode'])[_0x1d4bef(0xb5)](function(_0x36262a){var _0x35136e=_0x1d4bef;return _0x400de5[_0x35136e(0x1fd)](_0x36262a,_0x400de5[_0x35136e(0x1f9)](_0x4499d9));})[_0x1d4bef(0xb5)](function(_0x896d98){var _0x6118fe=_0x1d4bef;return _0x5158d6[_0x6118fe(0x96)](_0x536ac8[_0x6118fe(0x137)](_0x35dbfd,_0x4499d9),_0x536ac8['HFpxs'](_0x536ac8[_0x6118fe(0x224)]('$1',_0x896d98),'$3'));});function _0x35dbfd(_0x254c85){var _0x246eaf=_0x1d4bef;return new RegExp(_0x536ac8[_0x246eaf(0x71)]+_0x400de5[_0x246eaf(0x1a3)](_0x254c85)+_0x536ac8[_0x246eaf(0x173)],'g');}}function _0x2245cf(_0xa03901,_0x4a68a2,_0x1b28a5){var _0x529c00=_0x3b2e,_0x50590c={'zdfwX':function(_0x11fbef,_0x4e94aa,_0x29057a,_0x57180d,_0x5e7912){var _0x501df0=_0x3b2e;return _0x45e8d5[_0x501df0(0x1d1)](_0x11fbef,_0x4e94aa,_0x29057a,_0x57180d,_0x5e7912);},'UprKp':function(_0x1b4b91,_0x314d61){return _0x45e8d5['FLTKO'](_0x1b4b91,_0x314d61);}};if(_0x45e8d5['vpzvn'](_0x266e4b))return Promise[_0x529c00(0x237)](_0xa03901);return Promise[_0x529c00(0x237)](_0xa03901)['then'](_0x16c624)['then'](function(_0x416b1b){var _0x53f5e0=_0x529c00,_0x428764=Promise['resolve'](_0xa03901);return _0x416b1b[_0x53f5e0(0x7c)](function(_0x1dd406){var _0x40d93b=_0x53f5e0,_0x67fc17={'PxUyX':function(_0x4bad10,_0x5b43fa,_0x514abc,_0x4690a1,_0x18a19b){return _0x50590c['zdfwX'](_0x4bad10,_0x5b43fa,_0x514abc,_0x4690a1,_0x18a19b);}};_0x428764=_0x428764[_0x40d93b(0xb5)](function(_0x502667){return _0x67fc17['PxUyX'](_0x5b3d70,_0x502667,_0x1dd406,_0x4a68a2,_0x1b28a5);});}),_0x428764;});function _0x266e4b(){var _0x4b6f92=_0x529c00;return!_0x50590c[_0x4b6f92(0xc1)](_0x2f675c,_0xa03901);}}}function _0x479c33(){var _0x4c0810=_0x5ed331,_0x81b689={'LEcpQ':function(_0x9ddfb6){return _0x9ddfb6();},'mDQfW':function(_0x5b72ad,_0x7e3a52){return _0x5b72ad+_0x7e3a52;},'GVHjl':_0x5aaf05[_0x4c0810(0xa5)]};return{'resolveAll':_0x554e4a,'impl':{'readAll':_0x43561b}};function _0x554e4a(){var _0x33f60e=_0x4c0810;return _0x81b689[_0x33f60e(0xbf)](_0x43561b)[_0x33f60e(0xb5)](function(_0x194007){var _0x40b804=_0x33f60e;return Promise[_0x40b804(0x185)](_0x194007[_0x40b804(0xd7)](function(_0x5b0516){var _0x1a979a=_0x40b804;return _0x5b0516[_0x1a979a(0x237)]();}));})['then'](function(_0x4aae0e){var _0xc78e65=_0x33f60e;return _0x4aae0e[_0xc78e65(0x1a7)]('\x0a');});}function _0x43561b(){var _0x1cae7b=_0x4c0810,_0x4b20b5={'PAROL':function(_0x542ae6,_0x199573){var _0xa3573f=_0x3b2e;return _0x5aaf05[_0xa3573f(0x1ca)](_0x542ae6,_0x199573);},'MPjmi':_0x1cae7b(0x95)};return Promise[_0x1cae7b(0x237)](_0x400de5[_0x1cae7b(0xcf)](document[_0x1cae7b(0x134)]))['then'](_0x56d44f)[_0x1cae7b(0xb5)](_0x222c37)[_0x1cae7b(0xb5)](function(_0x5d9d54){return _0x5d9d54['map'](_0x4d13c8);});function _0x222c37(_0x468d56){var _0x1abf85=_0x1cae7b;return _0x468d56[_0x1abf85(0x19c)](function(_0x2029db){var _0x1b2c27=_0x1abf85;return _0x4b20b5[_0x1b2c27(0x106)](_0x2029db[_0x1b2c27(0x1d5)],CSSRule[_0x1b2c27(0x1f8)]);})[_0x1abf85(0x19c)](function(_0x235c4b){var _0x3444dc=_0x1abf85;return _0x4c5f89['shouldProcess'](_0x235c4b[_0x3444dc(0x14b)]['getPropertyValue'](_0x3444dc(0x95)));});}function _0x56d44f(_0x4d0b35){var _0x2fcef3=_0x1cae7b,_0x5c9cd5={'agQxu':function(_0x4dc46b,_0x258e10){return _0x81b689['mDQfW'](_0x4dc46b,_0x258e10);},'gwtDg':_0x81b689[_0x2fcef3(0x151)]},_0x21bbd5=[];return _0x4d0b35['forEach'](function(_0x163471){var _0x5969fc=_0x2fcef3;try{_0x400de5[_0x5969fc(0xcf)](_0x163471[_0x5969fc(0xce)]||[])['forEach'](_0x21bbd5[_0x5969fc(0x154)][_0x5969fc(0x170)](_0x21bbd5));}catch(_0x2a6b69){console['log'](_0x5c9cd5['agQxu'](_0x5c9cd5['gwtDg'],_0x163471[_0x5969fc(0x9d)]),_0x2a6b69[_0x5969fc(0x264)]());}}),_0x21bbd5;}function _0x4d13c8(_0xae96fc){return{'resolve':function _0x34e7a0(){var _0x4bdb30=_0x3b2e,_0x228ff2=(_0xae96fc[_0x4bdb30(0x16d)]||{})[_0x4bdb30(0x9d)];return _0x4c5f89[_0x4bdb30(0x242)](_0xae96fc[_0x4bdb30(0xa6)],_0x228ff2);},'src':function(){var _0x59196b=_0x3b2e;return _0xae96fc[_0x59196b(0x14b)][_0x59196b(0x244)](_0x4b20b5[_0x59196b(0x1be)]);}};}}}function _0xd8aa4c(){var _0x1c1484=_0x5ed331,_0x31c076={'BPTzn':function(_0x41f096,_0x2bb34d){var _0xc326e9=_0x3b2e;return _0x536aff[_0xc326e9(0x18f)](_0x41f096,_0x2bb34d);},'CwWzK':function(_0x1abfc4,_0x2bdd9e){var _0x166e82=_0x3b2e;return _0x536aff[_0x166e82(0x1c0)](_0x1abfc4,_0x2bdd9e);},'FgeoP':_0x1c1484(0xba),'zhSMt':function(_0x3f1d04,_0x4a2825){return _0x3f1d04 instanceof _0x4a2825;}};return{'inlineAll':_0x4cd138,'impl':{'newImage':_0x5106f7}};function _0x5106f7(_0x5c0938){return{'inline':_0x3b4271};function _0x3b4271(_0x414b85){var _0x595c03=_0x3b2e;if(_0x400de5[_0x595c03(0x1c7)](_0x5c0938[_0x595c03(0x95)]))return Promise[_0x595c03(0x237)]();return Promise[_0x595c03(0x237)](_0x5c0938[_0x595c03(0x95)])[_0x595c03(0xb5)](_0x414b85||_0x400de5[_0x595c03(0x26b)])[_0x595c03(0xb5)](function(_0x1a0839){var _0x2fc3de=_0x595c03;return _0x400de5[_0x2fc3de(0x1fd)](_0x1a0839,_0x400de5[_0x2fc3de(0x1f9)](_0x5c0938[_0x2fc3de(0x95)]));})['then'](function(_0x31d0f5){return new Promise(function(_0x3e07f7,_0xd86d8e){var _0x3e48b3=_0x3b2e;_0x5c0938[_0x3e48b3(0x207)]=_0x3e07f7,_0x5c0938[_0x3e48b3(0x25f)]=_0xd86d8e,_0x5c0938[_0x3e48b3(0x95)]=_0x31d0f5;});});}}function _0x4cd138(_0x274395){var _0x47e9e0=_0x1c1484,_0x16da46={'fweWP':function(_0x3b67be,_0x90e2cc){var _0x41f62d=_0x3b2e;return _0x31c076[_0x41f62d(0xe8)](_0x3b67be,_0x90e2cc);}};if(!_0x31c076[_0x47e9e0(0x125)](_0x274395,Element))return Promise[_0x47e9e0(0x237)](_0x274395);return _0x31c076['CwWzK'](_0x2f8fe1,_0x274395)['then'](function(){var _0x118353=_0x47e9e0;if(_0x31c076['BPTzn'](_0x274395,HTMLImageElement))return _0x31c076[_0x118353(0xe8)](_0x5106f7,_0x274395)[_0x118353(0x227)]();else return Promise['all'](_0x400de5[_0x118353(0xcf)](_0x274395['childNodes'])[_0x118353(0xd7)](function(_0x23bedb){return _0x16da46['fweWP'](_0x4cd138,_0x23bedb);}));});function _0x2f8fe1(_0x54efaf){var _0x15c6a6=_0x47e9e0,_0x2170f2={'bxTdP':_0x31c076['FgeoP']},_0x4e6a44=_0x54efaf[_0x15c6a6(0x14b)][_0x15c6a6(0x244)](_0x31c076[_0x15c6a6(0x6d)]);if(!_0x4e6a44)return Promise['resolve'](_0x54efaf);return _0x4c5f89[_0x15c6a6(0x242)](_0x4e6a44)['then'](function(_0x229744){var _0x17c625=_0x15c6a6;_0x54efaf[_0x17c625(0x14b)]['setProperty'](_0x2170f2['bxTdP'],_0x229744,_0x54efaf[_0x17c625(0x14b)][_0x17c625(0x194)](_0x2170f2[_0x17c625(0x1f0)]));})[_0x15c6a6(0xb5)](function(){return _0x54efaf;});}}}}());});const feedbackModalCss=_0x3f306c(0xa4),FeedbackModal=proxyCustomElement(class extends HTMLElement{constructor(){var _0x275da7=_0x3f306c,_0x3faae0={'ySLEJ':_0x275da7(0x145),'gmbBl':_0x275da7(0x124),'gqbwd':function(_0x370227,_0x246283){return _0x370227===_0x246283;},'UbdsP':_0x275da7(0x233),'kxmow':_0x275da7(0x108),'EEqhG':_0x275da7(0xf9),'UqyrJ':_0x275da7(0x1aa),'nQRHT':'0px','GKvtm':function(_0x28e9b7,_0x11fec1){return _0x28e9b7+_0x11fec1;},'hUUsZ':_0x275da7(0x240),'SiWof':_0x275da7(0xb3),'KxjSh':function(_0x47bb90,_0x2ee66e){return _0x47bb90+_0x2ee66e;},'sDkSE':_0x275da7(0x23e),'IywKO':_0x275da7(0x8e),'UKotD':function(_0x3f7ab6,_0xf4f119){return _0x3f7ab6+_0xf4f119;},'yJcIS':_0x275da7(0x162),'FYAGB':'hidden','SWPHX':_0x275da7(0x245),'tvufz':_0x275da7(0x12b),'gJsrG':_0x275da7(0xfe),'mUyWL':_0x275da7(0xf1),'dGUla':_0x275da7(0xdb),'vUqjx':_0x275da7(0x103),'HOfaj':_0x275da7(0x19d),'aIXpL':_0x275da7(0x11f)};super(),this[_0x275da7(0x220)](),this[_0x275da7(0x247)](),this[_0x275da7(0x123)]=async _0x5adeeb=>{var _0x68276e=_0x275da7;_0x5adeeb[_0x68276e(0x142)](),this['resetOverflow'](),this[_0x68276e(0xca)]=![],this[_0x68276e(0x189)]=![],this[_0x68276e(0x238)]=!![];let _0x535ced='';this[_0x68276e(0x1ee)]&&await this[_0x68276e(0x1ee)][_0x68276e(0xb5)](_0x214bb9=>{_0x535ced=_0x214bb9;})['catch'](_0x10eaed=>{console['log'](_0x10eaed);});try{const _0x3ecbba=await fetch(_0x3faae0[_0x68276e(0x188)],{'method':_0x3faae0[_0x68276e(0x1c2)],'body':JSON[_0x68276e(0xc3)]({'url':window[_0x68276e(0x234)]['href'],'message':this[_0x68276e(0xdc)],'email':this['formEmail'],'project':this[_0x68276e(0x21a)],'screenshot':_0x535ced}),'headers':{'Content-Type':_0x68276e(0x180)}});_0x3faae0[_0x68276e(0x183)](_0x3ecbba['status'],0xc8)?(this[_0x68276e(0xf3)]=!![],this['formError']=![]):(this[_0x68276e(0xf3)]=![],this[_0x68276e(0x251)]=!![]);}catch(_0x27cc09){this[_0x68276e(0xf3)]=![],this[_0x68276e(0x251)]=!![];}finally{this[_0x68276e(0x238)]=![],this[_0x68276e(0x189)]=!![];}},this[_0x275da7(0x18b)]=()=>{var _0x33b9b3=_0x275da7,_0x330819=_0x3faae0['UbdsP'][_0x33b9b3(0x81)]('|'),_0x21a7fa=0x0;while(!![]){switch(_0x330819[_0x21a7fa++]){case'0':this[_0x33b9b3(0x238)]=![];continue;case'1':this[_0x33b9b3(0x1ee)]=null;continue;case'2':this[_0x33b9b3(0x271)]='';continue;case'3':this[_0x33b9b3(0x1b0)]();continue;case'4':this[_0x33b9b3(0x189)]=![];continue;case'5':this['hasSelectedElement']=![];continue;case'6':this[_0x33b9b3(0xca)]=![];continue;case'7':this[_0x33b9b3(0x251)]=![];continue;case'8':this[_0x33b9b3(0xdc)]='';continue;case'9':this[_0x33b9b3(0xf3)]=![];continue;}break;}},this['openScreenShot']=()=>{var _0x1d1f4e=_0x275da7,_0x50215c=_0x3faae0[_0x1d1f4e(0x216)][_0x1d1f4e(0x81)]('|'),_0xeab014=0x0;while(!![]){switch(_0x50215c[_0xeab014++]){case'0':this[_0x1d1f4e(0x1b0)]();continue;case'1':this['showScreenshotMode']=!![];continue;case'2':this[_0x1d1f4e(0x1ed)]=![];continue;case'3':this['encodedScreenshot']=null;continue;case'4':this['showModal']=![];continue;}break;}},this[_0x275da7(0x261)]=()=>{var _0x58fecc=_0x275da7;this['showModal']=![],this[_0x58fecc(0xca)]=![],this['hasSelectedElement']=![],this[_0x58fecc(0x1ee)]=null,this[_0x58fecc(0x17c)][_0x58fecc(0x14b)][_0x58fecc(0x1e1)]=_0x3faae0[_0x58fecc(0x15f)],this[_0x58fecc(0x1b0)]();},this[_0x275da7(0xbd)]=_0x3b880f=>{var _0xe3a438=_0x275da7;_0x3b880f['preventDefault']();if(this['hasSelectedElement'])return;this[_0xe3a438(0x17c)][_0xe3a438(0x14b)]['display']=_0x3faae0[_0xe3a438(0x15f)],this['screenshotModal'][_0xe3a438(0x14b)]['display']=_0x3faae0[_0xe3a438(0x15f)];const _0x3b56be=document[_0xe3a438(0xd1)](_0x3b880f[_0xe3a438(0x8d)],_0x3b880f[_0xe3a438(0xe6)]),_0x840bee=_0x3b56be['getBoundingClientRect']();this[_0xe3a438(0x19a)][_0xe3a438(0x14b)][_0xe3a438(0x1e1)]='',this['elementSelected'][_0xe3a438(0x14b)]['position']=_0x3faae0[_0xe3a438(0x1ce)],this[_0xe3a438(0x121)][_0xe3a438(0x14b)][_0xe3a438(0x78)]=_0x840bee[_0xe3a438(0x78)]+'px',this['elementSelected']['style']['top']=_0x840bee['top']+'px',this['elementSelected']['style']['width']=_0x840bee['width']+'px',this[_0xe3a438(0x121)]['style'][_0xe3a438(0xb8)]=_0x840bee[_0xe3a438(0xb8)]+'px',this[_0xe3a438(0x121)][_0xe3a438(0x1b9)]['add'](_0xe3a438(0x146)),this['topSide'][_0xe3a438(0x14b)][_0xe3a438(0x10a)]=_0xe3a438(0x1aa),this['topSide']['style'][_0xe3a438(0x78)]=_0x840bee[_0xe3a438(0x78)]+'px',this[_0xe3a438(0xea)][_0xe3a438(0x14b)]['top']=_0x3faae0[_0xe3a438(0x13c)],this[_0xe3a438(0xea)][_0xe3a438(0x14b)][_0xe3a438(0x1c1)]=_0x3faae0[_0xe3a438(0x91)](_0x840bee['width'],0x8)+'px',this[_0xe3a438(0xea)][_0xe3a438(0x14b)][_0xe3a438(0xb8)]=_0x840bee[_0xe3a438(0x1c5)]+'px',this['topSide'][_0xe3a438(0x14b)][_0xe3a438(0x132)]=_0x3faae0[_0xe3a438(0x16b)],this[_0xe3a438(0x1ba)][_0xe3a438(0x14b)]['position']=_0x3faae0[_0xe3a438(0x1ce)],this[_0xe3a438(0x1ba)][_0xe3a438(0x14b)]['left']='0px',this[_0xe3a438(0x1ba)]['style'][_0xe3a438(0x1c5)]=_0x3faae0['nQRHT'],this[_0xe3a438(0x1ba)][_0xe3a438(0x14b)][_0xe3a438(0x1c1)]=_0x840bee['left']+'px',this[_0xe3a438(0x1ba)][_0xe3a438(0x14b)]['height']=_0x3faae0[_0xe3a438(0x262)],this[_0xe3a438(0x1ba)][_0xe3a438(0x14b)][_0xe3a438(0x132)]=_0x3faae0['hUUsZ'],this['bottomSide'][_0xe3a438(0x14b)][_0xe3a438(0x10a)]=_0x3faae0[_0xe3a438(0x1ce)],this[_0xe3a438(0xe0)]['style'][_0xe3a438(0x78)]=_0x840bee[_0xe3a438(0x78)]+'px',this[_0xe3a438(0xe0)][_0xe3a438(0x14b)][_0xe3a438(0x1c5)]=_0x3faae0[_0xe3a438(0x19b)](_0x840bee[_0xe3a438(0x1e5)],0x8)+'px',this['bottomSide']['style'][_0xe3a438(0x1c1)]=_0x840bee[_0xe3a438(0x1c1)]+0x8+'px',this[_0xe3a438(0xe0)][_0xe3a438(0x14b)]['height']=_0x3faae0[_0xe3a438(0x262)],this[_0xe3a438(0xe0)]['style']['backgroundColor']=_0xe3a438(0x240),this['rightSide'][_0xe3a438(0x14b)][_0xe3a438(0x10a)]=_0xe3a438(0x1aa),this['rightSide']['style'][_0xe3a438(0x78)]=_0x3faae0[_0xe3a438(0x19b)](_0x840bee[_0xe3a438(0x270)],0x8)+'px',this[_0xe3a438(0x166)][_0xe3a438(0x14b)][_0xe3a438(0x1c5)]=_0x3faae0[_0xe3a438(0x13c)],this[_0xe3a438(0x166)][_0xe3a438(0x14b)][_0xe3a438(0x1c1)]='100%',this[_0xe3a438(0x166)][_0xe3a438(0x14b)]['height']=_0x3faae0[_0xe3a438(0x262)],this[_0xe3a438(0x166)]['style'][_0xe3a438(0x132)]=_0x3faae0['hUUsZ'],this[_0xe3a438(0x19a)]['style']['backgroundColor']=_0x3faae0[_0xe3a438(0x13d)];},this[_0x275da7(0x1ac)]=_0x2350e4=>{var _0x165b35=_0x275da7;_0x2350e4[_0x165b35(0x142)]();if(this[_0x165b35(0x121)])this[_0x165b35(0x121)][_0x165b35(0x1b9)]['add'](_0x3faae0[_0x165b35(0x26a)]);let _0x14617e=this['elementSelected'][_0x165b35(0x24b)]()[_0x165b35(0x1c5)];this[_0x165b35(0x121)][_0x165b35(0x14b)][_0x165b35(0x1c5)]=_0x3faae0[_0x165b35(0x159)](_0x14617e,window['pageYOffset'])+'px';const _0x2a9abb=this['elementSelected'][_0x165b35(0x141)](!![]);document[_0x165b35(0xff)][_0x165b35(0xdd)](_0x2a9abb),this[_0x165b35(0x121)][_0x165b35(0x14b)][_0x165b35(0x1c5)]=_0x14617e+'px',this[_0x165b35(0x1ee)]=domToImage['toPng'](document[_0x165b35(0xff)],{'cacheBust':!![]})[_0x165b35(0xb5)](function(_0x32374b){var _0x5c38f6=_0x165b35;return document[_0x5c38f6(0xff)][_0x5c38f6(0x90)](_0x2a9abb),_0x32374b;})['catch'](function(_0x174ae3){var _0x364cb5=_0x165b35;return console[_0x364cb5(0xf8)](_0x364cb5(0x7e),_0x174ae3),'';});const _0x4bb19c=document[_0x165b35(0x213)](_0x3faae0[_0x165b35(0x1ef)])[0x0];_0x4bb19c['style'][_0x165b35(0x112)]=_0x3faae0[_0x165b35(0x152)],this['hasSelectedElement']=!![],this[_0x165b35(0x17c)]['style']['display']=_0x3faae0[_0x165b35(0x74)],this['showModal']=!![];},this[_0x275da7(0x238)]=![],this[_0x275da7(0xdc)]='',this[_0x275da7(0x271)]='',this[_0x275da7(0xf3)]=![],this[_0x275da7(0x251)]=![],this[_0x275da7(0x1ee)]=undefined,this[_0x275da7(0xd0)]=_0x3faae0['tvufz'],this['successModalTitle']=_0x275da7(0xf7),this['errorModalTitle']=_0x3faae0[_0x275da7(0x84)],this[_0x275da7(0x1e7)]=_0x3faae0[_0x275da7(0x181)],this['sendButtonText']=_0x3faae0[_0x275da7(0xb1)],this['project']='',this[_0x275da7(0x17f)]=_0x3faae0[_0x275da7(0xc5)],this[_0x275da7(0x174)]=_0x3faae0['HOfaj'],this[_0x275da7(0x11a)]='',this['emailPlaceholder']=_0x3faae0[_0x275da7(0xec)],this['messagePlaceholder']=_0x275da7(0x176),this[_0x275da7(0x189)]=![],this['showScreenshotMode']=![],this[_0x275da7(0x1ed)]=![];}['componentWillLoad'](){var _0x4006ce=_0x3f306c;this['formEmail']=this[_0x4006ce(0x11a)];}[_0x3f306c(0x1b0)](){var _0x4e90ea=_0x3f306c,_0x56d62d={'RHpny':_0x4e90ea(0x162)};const _0x3a66d0=document[_0x4e90ea(0x213)](_0x56d62d[_0x4e90ea(0x136)])[0x0];_0x3a66d0[_0x4e90ea(0x14b)]['overflow']=_0x4e90ea(0x26c);}[_0x3f306c(0x1cb)](_0x5c989b){var _0x2d2e70=_0x3f306c;this[_0x2d2e70(0xdc)]=_0x5c989b[_0x2d2e70(0x259)][_0x2d2e70(0x1f6)];}[_0x3f306c(0x266)](_0x22c2b7){var _0x11e13b=_0x3f306c;this[_0x11e13b(0x271)]=_0x22c2b7[_0x11e13b(0x259)][_0x11e13b(0x1f6)];}[_0x3f306c(0x147)](){var _0x32d28b=_0x3f306c,_0x2f8d17={'TDRJt':function(_0x2b6237,_0x18c611,_0x24ec31,_0x54603f,_0x2f598a){return _0x2b6237(_0x18c611,_0x24ec31,_0x54603f,_0x2f598a);},'edZXO':_0x32d28b(0x1a4),'tZjHz':_0x32d28b(0x155),'UBvCZ':_0x32d28b(0x1fb),'yJPjO':function(_0x126a6a,_0x4a2960,_0x2bb761){return _0x126a6a(_0x4a2960,_0x2bb761);},'wEaHq':_0x32d28b(0x226),'Bbiqg':_0x32d28b(0x133),'IrxtO':'right-side','DtBuX':function(_0x32e243,_0x1f042a,_0x20ab25,_0x2f3ad4){return _0x32e243(_0x1f042a,_0x20ab25,_0x2f3ad4);},'krsdT':_0x32d28b(0x1dc),'NRJak':_0x32d28b(0x24e),'GqfvE':_0x32d28b(0x101),'jGlfB':'http://www.w3.org/2000/svg','oAdtt':_0x32d28b(0x97),'lIjkB':_0x32d28b(0xf9),'elQGB':_0x32d28b(0x1f4),'hlpXo':_0x32d28b(0x225),'ZgXNn':_0x32d28b(0x258),'InxWv':'line','frCDu':_0x32d28b(0x83),'XpqRJ':function(_0x55cf02,_0x3193b4,_0x5d0f48,_0x14aae8,_0x566331,_0x147f1f){return _0x55cf02(_0x3193b4,_0x5d0f48,_0x14aae8,_0x566331,_0x147f1f);},'AtYIJ':function(_0xfd26d,_0xa83239,_0x2a6ba6,_0x3ca244,_0x189e02){return _0xfd26d(_0xa83239,_0x2a6ba6,_0x3ca244,_0x189e02);},'OAyIy':'feedback-modal-header','bPyqO':_0x32d28b(0x115),'jYEjw':function(_0x4f2044,_0x3e9eee,_0x571a2c,_0x1da9e5){return _0x4f2044(_0x3e9eee,_0x571a2c,_0x1da9e5);},'rAvyU':_0x32d28b(0x19e),'nUoWd':_0x32d28b(0xc2),'slXux':function(_0x131d0c,_0x4fc0e7,_0x578bba){return _0x131d0c(_0x4fc0e7,_0x578bba);},'aMiKA':_0x32d28b(0x1a8),'teFpH':_0x32d28b(0x161),'uYjMb':function(_0x5d4c4c,_0x4ff242,_0x4e91ae,_0x2ba59f){return _0x5d4c4c(_0x4ff242,_0x4e91ae,_0x2ba59f);},'jXxCf':_0x32d28b(0x1df),'rfNhV':'textarea','WEZvq':'feedback-modal-email','xHfhT':_0x32d28b(0x82),'LFWZL':'email','bZVrE':function(_0x4cbe62,_0x1e6ccb,_0x19a1ef,_0x59281b,_0x36f4e6){return _0x4cbe62(_0x1e6ccb,_0x19a1ef,_0x59281b,_0x36f4e6);},'CdbeZ':'feedback-modal-buttons','pJHez':function(_0x344418,_0x49708a,_0x2c0850,_0x2faa96,_0x330dc3){return _0x344418(_0x49708a,_0x2c0850,_0x2faa96,_0x330dc3);},'ooeLY':_0x32d28b(0x18d),'budGZ':_0x32d28b(0x9a),'jBIdV':function(_0x5cb446,_0x4fc152,_0x281090){return _0x5cb446(_0x4fc152,_0x281090);},'oBYmV':_0x32d28b(0x273),'ELTta':_0x32d28b(0x110),'DcvdF':_0x32d28b(0x143),'ccCUh':_0x32d28b(0x21d),'ItvHk':function(_0x46af86,_0x3bff12,_0x3c3e37){return _0x46af86(_0x3bff12,_0x3c3e37);},'JUJCi':function(_0x1813fb,_0x293cd1,_0x23c6ed,_0x1f3504){return _0x1813fb(_0x293cd1,_0x23c6ed,_0x1f3504);},'Iufds':_0x32d28b(0xf5),'DBqTd':_0x32d28b(0x1d0),'vDsnA':'w-8\x20h-8','PGpbe':_0x32d28b(0x235),'ZcbPF':'defs','SBSQn':'86.063%','Rkrty':_0x32d28b(0x1ab),'aMaQD':_0x32d28b(0x17a),'cTVsu':_0x32d28b(0xda),'jEoRc':_0x32d28b(0x165),'ZEEql':_0x32d28b(0x23d),'GZXRd':'25.871%','xaOUP':_0x32d28b(0x1af),'YHLmk':_0x32d28b(0xe9),'ASgJB':function(_0x2a1a47,_0x13be2f,_0x182152){return _0x2a1a47(_0x13be2f,_0x182152);},'ovAlo':_0x32d28b(0x20c),'lEXFE':'url(#footer-logo)','IAOFz':_0x32d28b(0x1e9),'QpThU':function(_0x11a6f0,_0x21ab7c,_0x30403e,_0x37c309){return _0x11a6f0(_0x21ab7c,_0x30403e,_0x37c309);},'pOeBH':_0x32d28b(0x1a0)};return _0x2f8d17[_0x32d28b(0xbe)](h,_0x2f8d17['edZXO'],{'class':_0x32d28b(0xe2)},this[_0x32d28b(0xca)]&&h(_0x2f8d17['edZXO'],{'class':_0x2f8d17[_0x32d28b(0x1b2)],'ref':_0x25715f=>this[_0x32d28b(0x19a)]=_0x25715f,'onMouseMove':this[_0x32d28b(0xbd)]},h(_0x2f8d17['edZXO'],{'class':_0x2f8d17[_0x32d28b(0xd6)],'ref':_0x576d58=>this['elementSelected']=_0x576d58,'onClick':this['handleMouseClickedSelectedElement']}),_0x2f8d17[_0x32d28b(0xb0)](h,_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x1a5)],'ref':_0x1f68a4=>this[_0x32d28b(0xea)]=_0x1f68a4}),h(_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x32d28b(0x1ff),'ref':_0x3961af=>this[_0x32d28b(0x1ba)]=_0x3961af}),h(_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17['Bbiqg'],'ref':_0x4aa4dc=>this[_0x32d28b(0xe0)]=_0x4aa4dc}),_0x2f8d17[_0x32d28b(0xb0)](h,_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x116)],'ref':_0x8d2e13=>this[_0x32d28b(0x166)]=_0x8d2e13}),h(_0x2f8d17['edZXO'],{'class':_0x32d28b(0x144),'onClick':this[_0x32d28b(0x261)]},_0x2f8d17[_0x32d28b(0x215)](h,_0x2f8d17['krsdT'],null,this['screenshotTopbarText']),_0x2f8d17[_0x32d28b(0x215)](h,_0x32d28b(0x1dc),{'class':_0x2f8d17[_0x32d28b(0x1e6)]},h(_0x2f8d17[_0x32d28b(0x22b)],{'xmlns':_0x2f8d17[_0x32d28b(0x26f)],'width':'24','height':'24','viewBox':_0x2f8d17['oAdtt'],'fill':_0x2f8d17['lIjkB'],'stroke':_0x2f8d17[_0x32d28b(0x1ad)],'stroke-width':'2','stroke-linecap':_0x2f8d17['hlpXo'],'stroke-linejoin':_0x2f8d17[_0x32d28b(0x8a)],'class':_0x2f8d17[_0x32d28b(0x9b)]},_0x2f8d17[_0x32d28b(0xb0)](h,'line',{'x1':'18','y1':'6','x2':'6','y2':'18'}),h(_0x2f8d17[_0x32d28b(0x24f)],{'x1':'6','y1':'6','x2':'18','y2':'18'})))),_0x2f8d17[_0x32d28b(0xb0)](h,'div',{'class':_0x2f8d17['frCDu'],'ref':_0x2f9ee8=>this[_0x32d28b(0x17c)]=_0x2f9ee8})),this[_0x32d28b(0x189)]&&_0x2f8d17['XpqRJ'](h,_0x32d28b(0x1a4),{'class':'feedback-modal-content\x20feedback-modal-content--'+this[_0x32d28b(0x1e7)],'ref':_0x1866f3=>this['modalContent']=_0x1866f3},_0x2f8d17[_0x32d28b(0x8f)](h,_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x1d3)]},!this[_0x32d28b(0xf3)]&&!this[_0x32d28b(0x251)]?_0x2f8d17[_0x32d28b(0x215)](h,_0x2f8d17[_0x32d28b(0x167)],null,this[_0x32d28b(0xd0)]):this[_0x32d28b(0xf3)]?_0x2f8d17['DtBuX'](h,_0x2f8d17['krsdT'],{'class':_0x2f8d17['bPyqO']},this[_0x32d28b(0xfc)]):this[_0x32d28b(0x251)]?_0x2f8d17[_0x32d28b(0xb2)](h,'span',{'class':_0x2f8d17[_0x32d28b(0x1cd)]},this[_0x32d28b(0x219)]):_0x2f8d17[_0x32d28b(0xb0)](h,_0x2f8d17[_0x32d28b(0x167)],null),_0x2f8d17[_0x32d28b(0x215)](h,_0x2f8d17['rAvyU'],{'class':_0x2f8d17['nUoWd'],'onClick':this[_0x32d28b(0x18b)]},h(_0x2f8d17[_0x32d28b(0x22b)],{'xmlns':_0x2f8d17[_0x32d28b(0x26f)],'width':'24','height':'24','viewBox':_0x2f8d17[_0x32d28b(0x1b7)],'fill':_0x32d28b(0xf9),'stroke':'#ccc','stroke-width':'2','stroke-linecap':_0x2f8d17[_0x32d28b(0x8a)],'stroke-linejoin':_0x2f8d17['hlpXo'],'class':_0x2f8d17[_0x32d28b(0x9b)]},h('line',{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x2f8d17['slXux'](h,_0x2f8d17['InxWv'],{'x1':'6','y1':'6','x2':'18','y2':'18'})))),_0x2f8d17[_0x32d28b(0xb2)](h,_0x2f8d17['edZXO'],{'class':_0x2f8d17[_0x32d28b(0x15c)]},!this[_0x32d28b(0xf3)]&&!this[_0x32d28b(0x251)]?h(_0x2f8d17[_0x32d28b(0x16a)],{'onSubmit':this[_0x32d28b(0x123)]},_0x2f8d17[_0x32d28b(0x196)](h,_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x130)]},_0x2f8d17[_0x32d28b(0xb0)](h,_0x2f8d17['rfNhV'],{'placeholder':this[_0x32d28b(0x1b8)],'value':this[_0x32d28b(0xdc)],'onInput':_0x11270a=>this['handleMessageInput'](_0x11270a),'required':!![]})),!this[_0x32d28b(0x11a)]&&h(_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x113)]},h(_0x2f8d17['xHfhT'],{'type':_0x2f8d17[_0x32d28b(0x21c)],'placeholder':this[_0x32d28b(0x1c9)],'onInput':_0x46f0f8=>this[_0x32d28b(0x266)](_0x46f0f8),'value':this['formEmail']})),_0x2f8d17['bZVrE'](h,_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x1eb)]},h(_0x2f8d17[_0x32d28b(0x1f5)],{'type':_0x2f8d17[_0x32d28b(0x1f5)],'class':'button'+(this['encodedScreenshot']?_0x32d28b(0x1e0):''),'title':this[_0x32d28b(0x17f)],'onClick':this[_0x32d28b(0x16e)],'disabled':this[_0x32d28b(0x238)]},_0x2f8d17[_0x32d28b(0x19f)](h,_0x32d28b(0x101),{'xmlns':_0x2f8d17[_0x32d28b(0x26f)],'width':'24','height':'24','viewBox':_0x32d28b(0x97),'fill':_0x2f8d17[_0x32d28b(0x184)],'stroke':_0x2f8d17[_0x32d28b(0xa8)],'stroke-width':'2','stroke-linecap':_0x32d28b(0x225),'stroke-linejoin':_0x2f8d17['hlpXo'],'class':_0x2f8d17[_0x32d28b(0x22f)]},_0x2f8d17['jBIdV'](h,_0x2f8d17['oBYmV'],{'d':_0x2f8d17['ELTta']}),_0x2f8d17['jBIdV'](h,_0x2f8d17[_0x32d28b(0x203)],{'cx':'12','cy':'13','r':'4'}))),_0x2f8d17[_0x32d28b(0x215)](h,_0x2f8d17['rAvyU'],{'class':_0x2f8d17[_0x32d28b(0x1f5)],'type':_0x2f8d17[_0x32d28b(0x22e)],'disabled':this[_0x32d28b(0x238)]},this['sendButtonText']))):_0x2f8d17[_0x32d28b(0x23a)](h,_0x2f8d17[_0x32d28b(0x167)],null)),_0x2f8d17[_0x32d28b(0x157)](h,_0x2f8d17[_0x32d28b(0x22d)],{'class':_0x2f8d17[_0x32d28b(0x24d)]},h(_0x32d28b(0x1a4),{'class':_0x2f8d17[_0x32d28b(0x10f)]},_0x2f8d17['pJHez'](h,_0x2f8d17['GqfvE'],{'class':_0x2f8d17[_0x32d28b(0xcc)],'viewBox':_0x2f8d17[_0x32d28b(0x76)],'xmlns':_0x2f8d17['jGlfB']},h(_0x2f8d17['ZcbPF'],null,h(_0x32d28b(0x10e),{'cx':'21.152%','cy':_0x2f8d17[_0x32d28b(0x205)],'fx':_0x2f8d17[_0x32d28b(0x18e)],'fy':'86.063%','r':_0x32d28b(0xc8),'id':_0x2f8d17[_0x32d28b(0x1ea)]},_0x2f8d17['yJPjO'](h,_0x2f8d17[_0x32d28b(0x25e)],{'stop-color':_0x2f8d17[_0x32d28b(0x1cc)],'offset':'0%'}),h(_0x32d28b(0xda),{'stop-color':_0x2f8d17[_0x32d28b(0x79)],'offset':_0x2f8d17[_0x32d28b(0x1f1)]}),_0x2f8d17[_0x32d28b(0xd8)](h,_0x2f8d17['cTVsu'],{'stop-color':_0x2f8d17[_0x32d28b(0x1d2)],'offset':_0x2f8d17[_0x32d28b(0x17d)]}))),_0x2f8d17[_0x32d28b(0x9f)](h,_0x2f8d17[_0x32d28b(0x221)],{'width':'32','height':'32','rx':'16','fill':_0x2f8d17[_0x32d28b(0x168)],'fill-rule':_0x2f8d17[_0x32d28b(0x127)]})),'\x20',_0x2f8d17[_0x32d28b(0x156)](h,'a',{'href':_0x32d28b(0xa1)},_0x2f8d17['pOeBH'])))));}static get[_0x3f306c(0x14b)](){return feedbackModalCss;}},[0x1,'feedback-modal',{'modalTitle':[0x1,_0x3f306c(0x1b1)],'successModalTitle':[0x1,_0x3f306c(0x179)],'errorModalTitle':[0x1,_0x3f306c(0x89)],'modalPosition':[0x1,_0x3f306c(0x195)],'sendButtonText':[0x1,'send-button-text'],'project':[0x1],'screenshotButtonTooltipText':[0x1,_0x3f306c(0x7a)],'screenshotTopbarText':[0x1,_0x3f306c(0x92)],'email':[0x1],'emailPlaceholder':[0x1,_0x3f306c(0xb9)],'messagePlaceholder':[0x1,_0x3f306c(0x22a)],'showModal':[0x604,_0x3f306c(0xe3)],'showScreenshotMode':[0x604,_0x3f306c(0x20a)],'hasSelectedElement':[0x604,_0x3f306c(0x268)],'sending':[0x20],'formMessage':[0x20],'formEmail':[0x20],'formSuccess':[0x20],'formError':[0x20],'encodedScreenshot':[0x20]}]);function _0xccc1(){var _0x37e283=['emnXY','clientX','feedback-modal-element-selected','AtYIJ','removeChild','GKvtm','screenshot-topbar-text','className','otuoV','src','replace','0\x200\x2024\x2024','OXepQ','qZXOH','feather\x20feather-camera','ZgXNn','XZQeW','href','readAsDataURL','ASgJB','JFqoy','https://pushfeedback.com','%23','ZmzHy','.text-center{text-align:center;flex-grow:1}.feedback-modal{display:inline-block;position:relative}.feedback-modal-content{background-color:var(--feedback-modal-content-bg-color);border-color:1px\x20solid\x20var(--feedback-modal-header-text-color);border-radius:var(--feedback-modal-content-border-radius);box-shadow:0px\x201px\x202px\x200px\x20rgba(60,\x2064,\x2067,\x20.30),\x200px\x202px\x206px\x202px\x20rgba(60,\x2064,\x2067,\x20.15);box-sizing:border-box;color:var(--feedback-modal-content-text-color);display:flex;flex-direction:column;font-family:var(--feedback-modal-content-font-family);max-width:300px;padding:20px;position:fixed;width:100%;z-index:300;left:50%;top:50%;transform:translate(-50%,\x20-50%)}@media\x20screen\x20and\x20(min-width:\x20768px){.feedback-modal-content.feedback-modal-content--bottom-right{top:initial;left:initial;transform:initial;bottom:var(--feedback-modal-content-position-bottom);right:var(--feedback-modal-content-position-right)}.feedback-modal-content.feedback-modal-content--bottom-left{top:initial;transform:initial;bottom:var(--feedback-modal-content-position-bottom);left:var(--feedback-modal-content-position-left)}.feedback-modal-content.feedback-modal-content--top-right{top:initial;transform:initial;right:var(--feedback-modal-content-position-right);top:var(--fedback-modal-content-position-top)}.feedback-modal-content.feedback-modal-content--top-left{transform:initial;left:var(--feedback-modal-content-position-left);top:var(--fedback-modal-content-position-top)}}.feedback-modal-header{align-items:center;color:var(--feedback-modal-header-text-color);font-family:var(--feedback-modal-header-font-family);display:flex;font-size:var(--feedback-header-font-size);justify-content:space-between;margin-bottom:20px}.feedback-modal-text{margin-bottom:20px}.feedback-modal-text\x20textarea{border:1px\x20solid\x20var(--feedback-modal-input-border-color);border-radius:4px;box-sizing:border-box;font-family:var(--feedback-modal-content-font-family);font-size:var(--feedback-modal-input-font-size);height:100px;padding:10px;resize:none;width:100%}.feedback-modal-email{margin-bottom:20px}.feedback-modal-email\x20input{border:1px\x20solid\x20var(--feedback-modal-input-border-color);border-radius:4px;box-sizing:border-box;font-family:var(--feedback-modal-content-font-family);font-size:var(--feedback-modal-input-font-size);height:40px;padding:10px;width:100%}.feedback-modal-text\x20textarea:focus,.feedback-modal-email\x20input:focus{border:1px\x20solid\x20var(--feedback-modal-input-border-color-focused);outline:none}.feedback-modal-buttons{display:flex;justify-content:space-between}.button{background-color:transparent;border:1px\x20solid\x20var(--feedback-modal-button-border-color);border-radius:var(--feedback-modal-button-border-radius);color:var(--feedback-modal-button-text-color);cursor:pointer;font-size:var(--feedback-modal-button-font-size);padding:5px\x2010px}.button:hover,.button.active{color:var(--feedback-modal-button-text-color-active);background-color:var(--feedback-modal-button-bg-color-active);border:1px\x20solid\x20var(--feedback-modal-button-border-color-active)}.feedback-modal-footer{font-size:12px;margin-top:5px\x200;text-align:center}.feedback-modal-footer\x20a{color:#191919;text-decoration:none}.feedback-logo{display:flex;align-items:center;justify-content:center;margin-top:5px}.feedback-logo\x20svg{max-width:12px;margin-right:5px}.feedback-modal-close{background-color:var(--feedback-modal-close-bg-color);border:0;border-radius:50%;cursor:pointer;margin-left:auto;padding:0;width:24px;height:24px}.feedback-modal-screenshot{background-color:var(--feedback-modal-screenshot-bg-color);box-shadow:0px\x200px\x200px\x205px\x20var(--feedback-modal-screenshot-element-selected-bg-color)\x20inset;height:100vh;left:0;position:fixed;top:0;width:100%;z-index:100}.feedback-modal-screenshot-header{align-items:center;background-color:var(--feedback-modal-screenshot-header-bg-color);color:var(--feedback-modal-screenshot-element-selected-text-color);cursor:pointer;display:flex;padding:5px;position:fixed;justify-content:center;width:100%;z-index:200}.feedback-modal-screenshot-header\x20span{padding-left:10px;padding-right:10px}.feedback-modal-screenshot-overlay{background-color:transparent;cursor:unset;height:100vh;left:0;position:fixed;top:0;width:100%;z-index:100}.feedback-modal-message{font-size:var(--fedback-modal-message-font-size)}.feedback-modal-element-hover{cursor:pointer;background-color:transparent;border:4px\x20dashed\x20var(--feedback-modal-screenshot-element-hover-border-color)}.feedback-modal-element-selected{border:4px\x20solid\x20var(--feedback-modal-screenshot-element-selected-border-color)}','kIKoy','cssText','NpMBI','ooeLY','mCfel','sBnSK','lSrPY','yxfhH','tenPj','delay','border-right-width','yJPjO','dGUla','jYEjw','100vh','LFzMp','then','QJAvk','charCodeAt','height','email-placeholder','background','application/vnd.ms-fontobject','readyState','handleMouseOverScreenShot','TDRJt','LEcpQ','drawImage','UprKp','feedback-modal-close','stringify','pow','vUqjx','IqIbp','iOpsy','79.941%','getImageData','showScreenshotMode','IEGHl','vDsnA','UjHyX','cssRules','asArray','modalTitle','elementFromPoint','GET','data:image/svg+xml;charset=utf-8,','data','ontimeout','UBvCZ','map','slXux','length','stop','Send','formMessage','appendChild','EDPxh','yQSSA','bottomSide','1239117ojDsFK','feedback-modal-wrapper','show-modal','OJmzZ','image/gif','clientY','head','CwWzK','100%','topSide','base','aIXpL','timeout','PbzQw','5715NmJRyk','<svg\x20xmlns=\x22http://www.w3.org/2000/svg\x22\x20width=\x22','center','JlIqT','formSuccess','kUtXh','feedback-modal-footer','rFYxP','Thanks\x20for\x20your\x20feedback!','error','none','GnDAR','bGFKs','successModalTitle','getComputedStyle','Oops!\x20We\x20didn\x27t\x20receive\x20your\x20feedback.\x20Please\x20try\x20again\x20later.','body','Qrwbw','svg','PPzSi','Take\x20a\x20Screenshot','ADbWb','FibUn','PAROL','toDataURL','2|4|1|3|0','createElement','position','2176430MQpWMF','OHKns','response','radialGradient','DBqTd','M23\x2019a2\x202\x200\x200\x201-2\x202H3a2\x202\x200\x200\x201-2-2V8a2\x202\x200\x200\x201\x202-2h4l2-3h6l2\x203h4a2\x202\x200\x200\x201\x202\x202z','rApHw','overflow','WEZvq','dvoon','text-center','IrxtO','innerHTML','LPnHi','serializeToString','email','YetJf','LacmZ','jinpq','SdyST','Email\x20address\x20(optional)','exports','elementSelected','nheDe','handleSubmit','POST','zhSMt','qbnLO','IAOFz','status','yDsAz','Ufhlc','Share\x20your\x20feedback','DotpH','tBoxf','image/png','zyxsf','jXxCf','aoygK','backgroundColor','bottom-side','styleSheets','PzKpW','RHpny','xhfEb','imagePlaceholder','HxojK','hRlOa','WfEdY','nQRHT','sDkSE','border-top-width','content','cacheBust','cloneNode','preventDefault','circle','feedback-modal-screenshot-header','https://app.pushfeedback.com/api/feedback/','feedback-modal-element-hover','render','PeMOE','OAWyN','nBnNY','style','responseType','LZCcB','eiRGh','makeImage','qjzGY','GVHjl','FYAGB','98mzjKuO','push','feedback-modal-screenshot','QpThU','JUJCi','eVQSA','UKotD','nZABt','ZCdyu','aMiKA','vjqMP','childNodes','EEqhG','toBlob','form','html','32742252egiwEx','SgrDV','#4FD1C5','rightSide','krsdT','lEXFE','GHxCQ','teFpH','hUUsZ','application/font-truetype','parentStyleSheet','openScreenShot','quality','bind','syXLI','test','fLuNe','screenshotTopbarText','send','How\x20could\x20this\x20page\x20be\x20more\x20helpful?','sibcL','DbFjw','success-modal-title','footer-logo','setProperty','overlay','YHLmk','</foreignObject>','screenshotButtonTooltipText','application/json','mUyWL','poXex','gqbwd','lIjkB','all','vIaYS','random','ySLEJ','showModal','QpRjS','close','getAttribute','currentColor','Rkrty','kPnPj','OkXMJ','UFaSR','OngXo','rCIxM','getPropertyPriority','modal-position','uYjMb','\x22\x20height=\x22','result','CZOep','screenshotModal','KxjSh','filter','SELECT\x20AN\x20ELEMENT\x20ON\x20THE\x20PAGE','button','pJHez','PushFeedback','data:','zICMs','escape','div','wEaHq','rketw','join','feedback-modal-body','getContext','absolute','21.152%','handleMouseClickedSelectedElement','elQGB','dZIgF','#338CF5','resetOverflow','modal-title','tZjHz','zrixM','getTime','keys','uDxtw','oAdtt','messagePlaceholder','classList','leftSide','2|4|3|1|7|6|0|5','XqjZP','dnNug','MPjmi','QZYFu','KmSWP','width','gmbBl','xvlWX','WzgES','top','IhxzB','isDataUrl','PzeEL','emailPlaceholder','HSpwx','handleMessageInput','jEoRc','bPyqO','UqyrJ','9GXGOFv','feedback-logo','bMaWE','xaOUP','OAyIy','Ibwmx','type','wiEkK','createHTMLDocument','Waikg','implementation','tEram','ntmXP','span','wBJkE','xmlns','feedback-modal-text','\x20active','display','atob','2|0|3|4|1','jyYwm','bottom','NRJak','modalPosition','resolveUrl','nonzero','aMaQD','CdbeZ','RwWGC','hasSelectedElement','encodedScreenshot','yJcIS','bxTdP','GZXRd','vSDJh','aGueX','#fff','rAvyU','value','fOcvs','FONT_FACE_RULE','mimeType','yILaw','feedback-modal-screenshot-element-selected','lBVTk','dataAsUrl','undefined','left-side','timeout\x20of\x20','createTextNode','define','DcvdF','fillRect','SBSQn','CwfpT','onload','setAttribute','border-bottom-width','show-screenshot-mode','impl','rect','ZJhUg','jRncU','rBNao','scrollHeight','MZcga','ZxEye','getElementsByTagName','open','DtBuX','kxmow','nIWnb','iXyWN','errorModalTitle','project','tsbnb','LFWZL','submit','ms\x20occured\x20while\x20fetching\x20resource:\x20','resolveAll','__registerHost','ovAlo','QoTfZ','image/tiff','HFpxs','round','top-side','inline','mOAkk','lgbxt','message-placeholder','GqfvE','uMEkh','edZXO','ccCUh','budGZ','bzRKF','101946JQNAIE','EXymX','0|4|6|5|1|9|7|8|2|3','location','0\x200\x2032\x2032','tqWaj','resolve','sending','XlvBR','ItvHk','jidxC','WuFRS','#81E6D9','transparent','escapeXhtml','rgba(0,\x200,\x200,\x200.3)','gUhZx','inlineAll','zCRdr','getPropertyValue','block','get','__attachShadow','TpLxM','GQEYe','canvasToBlob','getBoundingClientRect','FwaPj','Iufds','feedback-modal-screenshot-close','InxWv','RBoAh','formError','wetkH','1193412OGmaBP','1784vzgYtg','3rCvoAi','kgrof','DlcGe','feather\x20feather-x','target','IXWiC','492234wZWhrI','exec','SBRpH','cTVsu','onerror','UvXjT','closeScreenShot','SiWof','options','toString','search','handleEmailInput','FwJIp','has-selected-element','vvdvQ','IywKO','getAndEncode','inherit','iyoup','RdJmv','jGlfB','right','formEmail','ImoAg','path','hlafm','FgeoP','feedback-modal','blob','wesQd','BHtAe','vlsEO','lwjTB','SWPHX','BcRcO','PGpbe','toLowerCase','left','ZEEql','screenshot-button-tooltip-text',')([\x27\x22]?\x5c))','forEach','Abbsu','oops,\x20something\x20went\x20wrong!','90XgxPTh','LLRAz','split','input','feedback-modal-screenshot-overlay','gJsrG','bmsDW','bgcolor','gnmKY','scrollWidth','error-modal-title','hlpXo','RHCzc'];_0xccc1=function(){return _0x37e283;};return _0xccc1();}function defineCustomElement(){var _0x41e502=_0x3f306c,_0x5d4119={'uDxtw':_0x41e502(0x6e),'FibUn':function(_0x1816e5,_0x450803){return _0x1816e5===_0x450803;},'OXepQ':_0x41e502(0x1fe)};if(_0x5d4119[_0x41e502(0x105)](typeof customElements,_0x5d4119[_0x41e502(0x98)]))return;const _0x213af7=['feedback-modal'];_0x213af7[_0x41e502(0x7c)](_0x527b13=>{var _0x30afbd=_0x41e502;switch(_0x527b13){case _0x5d4119[_0x30afbd(0x1b6)]:!customElements[_0x30afbd(0x246)](_0x527b13)&&customElements[_0x30afbd(0x202)](_0x527b13,FeedbackModal);break;}});}export{FeedbackModal as F,defineCustomElement as d};
|