@fullsession.io/fs-feedback-widget 1.7.6 → 1.9.0
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/App.svelte +13 -5
- package/src/Icons/reactionIcons.svelte +1 -1
- package/src/widgetPages/App.css +18 -11
- package/src/widgetPages/reactionPage.svelte +30 -8
- package/src/widgetPages/reactionpage.css +90 -31
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../node_modules/svelte/internal/index.mjs","../src/Icons/mainIcon.svelte","../src/Icons/reactionSvgs/icons.js","../src/Icons/reactionIcons.svelte","../node_modules/style-inject/dist/style-inject.es.js","../src/widgetPages/reactionPage.svelte","../node_modules/svelte/easing/index.mjs","../node_modules/svelte/transition/index.mjs","../src/App.svelte","../src/main.js"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\nfunction is_promise(value) {\n return value && typeof value === 'object' && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not <head>\n let children = target.childNodes;\n // If target is <head>, there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element.sheet;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentElement !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n node.parentNode.removeChild(node);\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration();\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index - start_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.wholeText !== data)\n text.data = data;\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n if (value === null) {\n node.style.removeProperty(key);\n }\n else {\n node.style.setProperty(key, value, important ? 'important' : '');\n }\n}\nfunction select_option(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n select.selectedIndex = -1; // no option should be selected\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked') || select.options[0];\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}</script>\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, bubbles = false) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, false, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nclass HtmlTag {\n constructor() {\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n this.e = element(target.nodeName);\n this.t = target;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes) {\n super();\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\n\n// we need to store the information for multiple documents because a Svelte application could also contain iframes\n// https://github.com/sveltejs/svelte/issues/3624\nconst managed_styles = new Map();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_style_information(doc, node) {\n const info = { stylesheet: append_empty_stylesheet(node), rules: {} };\n managed_styles.set(doc, info);\n return info;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n const { stylesheet, rules } = managed_styles.get(doc) || create_style_information(doc, node);\n if (!rules[name]) {\n rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n managed_styles.forEach(info => {\n const { stylesheet } = info;\n let i = stylesheet.cssRules.length;\n while (i--)\n stylesheet.deleteRule(i);\n info.rules = {};\n });\n managed_styles.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail);\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n }\n };\n}\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n}\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nconst render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\n// flush() calls callbacks in this order:\n// 1. All beforeUpdate callbacks, in order: parents before children\n// 2. All bind:this callbacks, in reverse order: children before parents.\n// 3. All afterUpdate callbacks, in order: parents before children. EXCEPT\n// for afterUpdates called during the initial onMount, which are called in\n// reverse order: children before parents.\n// Since callbacks might update component values, which could trigger another\n// call to flush(), the following steps guard against this:\n// 1. During beforeUpdate, any updated components will be added to the\n// dirty_components array and will cause a reentrant call to flush(). Because\n// the flush index is kept outside the function, the reentrant call will pick\n// up where the earlier call left off and go through all dirty components. The\n// current_component value is saved and restored so that the reentrant call will\n// not interfere with the \"parent\" flush() call.\n// 2. bind:this callbacks cannot trigger new flush() calls.\n// 3. During afterUpdate, any updated components will NOT have their afterUpdate\n// callback called a second time; the seen_callbacks set, outside the flush()\n// function, guarantees this behavior.\nconst seen_callbacks = new Set();\nlet flushidx = 0; // Do *not* move this inside the flush() function\nfunction flush() {\n const saved_component = current_component;\n do {\n // first, call beforeUpdate functions\n // and update components\n while (flushidx < dirty_components.length) {\n const component = dirty_components[flushidx];\n flushidx++;\n set_current_component(component);\n update(component.$$);\n }\n set_current_component(null);\n dirty_components.length = 0;\n flushidx = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n seen_callbacks.clear();\n set_current_component(saved_component);\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n let config = fn(node, params);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config();\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n let config = fn(node, params);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n let config = fn(node, params);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n block.p(child_ctx, dirty);\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\n// source: https://html.spec.whatwg.org/multipage/indices.html\nconst boolean_attributes = new Set([\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n]);\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, attrs_to_add) {\n const attributes = Object.assign({}, ...args);\n if (attrs_to_add) {\n const classes_to_add = attrs_to_add.classes;\n const styles_to_add = attrs_to_add.styles;\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n if (styles_to_add) {\n if (attributes.style == null) {\n attributes.style = style_object_to_string(styles_to_add);\n }\n else {\n attributes.style = style_object_to_string(merge_ssr_styles(attributes.style, styles_to_add));\n }\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nfunction merge_ssr_styles(style_attribute, style_directive) {\n const style_object = {};\n for (const individual_style of style_attribute.split(';')) {\n const colon_index = individual_style.indexOf(':');\n const name = individual_style.slice(0, colon_index).trim();\n const value = individual_style.slice(colon_index + 1).trim();\n if (!name)\n continue;\n style_object[name] = value;\n }\n for (const name in style_directive) {\n const value = style_directive[name];\n if (value) {\n style_object[name] = value;\n }\n else {\n delete style_object[name];\n }\n }\n return style_object;\n}\nconst escaped = {\n '\"': '"',\n \"'\": ''',\n '&': '&',\n '<': '<',\n '>': '>'\n};\nfunction escape(html) {\n return String(html).replace(/[\"'&<>]/g, match => escaped[match]);\n}\nfunction escape_attribute_value(value) {\n return typeof value === 'string' ? escape(value) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n return ` ${name}${value === true && boolean_attributes.has(name) ? '' : `=${typeof value === 'string' ? JSON.stringify(escape(value)) : `\"${value}\"`}`}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\nfunction style_object_to_string(style_object) {\n return Object.keys(style_object)\n .filter(key => style_object[key])\n .map(key => `${key}: ${style_object[key]};`)\n .join(' ');\n}\nfunction add_styles(style_object) {\n const styles = style_object_to_string(style_object);\n return styles ? ` style=\"${styles}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, on_mount, on_destroy, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = on_mount.map(run).filter(is_function);\n if (on_destroy) {\n on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: null,\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.46.4' }, detail), true));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * <script lang=\"ts\">\n * \timport { MyComponent } from \"component-library\";\n * </script>\n * <MyComponent foo={'bar'} />\n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_location, add_render_callback, add_resize_listener, add_styles, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, component_subscribe, compute_rest_props, compute_slots, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, escaped, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, identity, init, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, listen, listen_dev, loop, loop_guard, merge_ssr_styles, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_data, set_data_dev, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, spread, src_url_equal, start_hydrating, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_each_argument, validate_each_keys, validate_slots, validate_store, xlink_attr };\n","<script>\r\n export let fill = \"\";\r\n</script>\r\n<svg\r\n fill={fill}\r\n \r\n\r\n version=\"1.1\"\r\n id=\"Layer_1\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\r\n x=\"0px\"\r\n y=\"0px\"\r\n viewBox=\"0 0 458 458\"\r\n style=\"enable-background:new 0 0 458 458;\"\r\n xml:space=\"preserve\"\r\n ><g\r\n ><g\r\n ><path\r\n d=\"M428,41.534H30c-16.569,0-30,13.431-30,30v252c0,16.568,13.432,30,30,30h132.1l43.942,52.243 c5.7,6.777,14.103,10.69,22.959,10.69c8.856,0,17.258-3.912,22.959-10.69l43.942-52.243H428c16.568,0,30-13.432,30-30v-252 C458,54.965,444.568,41.534,428,41.534z M323.916,281.534H82.854c-8.284,0-15-6.716-15-15s6.716-15,15-15h241.062 c8.284,0,15,6.716,15,15S332.2,281.534,323.916,281.534z M67.854,198.755c0-8.284,6.716-15,15-15h185.103c8.284,0,15,6.716,15,15 s-6.716,15-15,15H82.854C74.57,213.755,67.854,207.039,67.854,198.755z M375.146,145.974H82.854c-8.284,0-15-6.716-15-15 s6.716-15,15-15h292.291c8.284,0,15,6.716,15,15C390.146,139.258,383.43,145.974,375.146,145.974z\"\r\n /></g\r\n ></g\r\n ><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g\r\n /></svg\r\n>\r\n","export const icons_1 = [`\r\n <g transform=\"translate(.48)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#EF7C54\" width=\"50\" height=\"50\" rx=\"13.28\"/>\r\n <circle fill=\"#3B3735\" cx=\"7.241\" cy=\"27.929\" r=\"3.107\"/>\r\n <circle fill=\"#3B3735\" cx=\"42.759\" cy=\"27.929\" r=\"3.107\"/>\r\n <path d=\"M31.236 28.764a2.245 2.245 0 0 1 2.002 3.246 9.086 9.086 0 0 1-8.234 4.779 9.104 9.104 0 0 1-8.242-4.779 2.245 2.245 0 0 1 2.002-3.246h12.472zM12.185 22.089a11.515 11.515 0 0 1-.766-.696c-1.036-1.062-2.29-2.803-1.741-4.352.392-1.21 1.81-1.567 2.95-1.488a4.743 4.743 0 0 1 1.793.487c.233.107.46.226.68.357a.33.33 0 0 0 .504-.261 3.046 3.046 0 0 1 1.358-2.611 2.385 2.385 0 0 1 2.906.635c1.21 1.314 1.088 3.133.584 4.726a20.017 20.017 0 0 1-1.34 3.255 8.12 8.12 0 0 1-.975 1.688c-.749.87-1.846.636-2.777.218a13.838 13.838 0 0 1-3.176-1.958zM37.807 22.089c.267-.218.523-.45.766-.696 1.035-1.062 2.289-2.803 1.74-4.352-.391-1.21-1.819-1.567-2.959-1.488a4.787 4.787 0 0 0-1.793.487 7.424 7.424 0 0 0-.678.357.33.33 0 0 1-.505-.261 3.046 3.046 0 0 0-1.358-2.611 2.385 2.385 0 0 0-2.907.635c-1.21 1.314-1.088 3.133-.583 4.726.35 1.122.799 2.211 1.34 3.255.256.6.584 1.167.975 1.688.749.87 1.854.636 2.776.218a13.838 13.838 0 0 0 3.186-1.958z\" fill=\"#3B3735\"/>\r\n</g>\r\n`, `\r\n <g transform=\"translate(.48)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.28\"/>\r\n <circle fill=\"#3B3735\" cx=\"7.241\" cy=\"27.929\" r=\"3.107\"/>\r\n <circle fill=\"#3B3735\" cx=\"42.759\" cy=\"27.929\" r=\"3.107\"/>\r\n <path d=\"M31.236 28.764a2.245 2.245 0 0 1 2.002 3.246 9.086 9.086 0 0 1-8.234 4.779 9.104 9.104 0 0 1-8.242-4.779 2.245 2.245 0 0 1 2.002-3.246h12.472zM12.185 22.089a11.515 11.515 0 0 1-.766-.696c-1.036-1.062-2.29-2.803-1.741-4.352.392-1.21 1.81-1.567 2.95-1.488a4.743 4.743 0 0 1 1.793.487c.233.107.46.226.68.357a.33.33 0 0 0 .504-.261 3.046 3.046 0 0 1 1.358-2.611 2.385 2.385 0 0 1 2.906.635c1.21 1.314 1.088 3.133.584 4.726a20.017 20.017 0 0 1-1.34 3.255 8.12 8.12 0 0 1-.975 1.688c-.749.87-1.846.636-2.777.218a13.838 13.838 0 0 1-3.176-1.958zM37.807 22.089c.267-.218.523-.45.766-.696 1.035-1.062 2.289-2.803 1.74-4.352-.391-1.21-1.819-1.567-2.959-1.488a4.787 4.787 0 0 0-1.793.487 7.424 7.424 0 0 0-.678.357.33.33 0 0 1-.505-.261 3.046 3.046 0 0 0-1.358-2.611 2.385 2.385 0 0 0-2.907.635c-1.21 1.314-1.088 3.133-.583 4.726.35 1.122.799 2.211 1.34 3.255.256.6.584 1.167.975 1.688.749.87 1.854.636 2.776.218a13.838 13.838 0 0 0 3.186-1.958z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.86)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#FDC537\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"14.156\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"35.844\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <path d=\"M32.444 28.1a2.643 2.643 0 0 1 2.37 3.824 10.738 10.738 0 0 1-9.69 5.629 10.738 10.738 0 0 1-9.69-5.63 2.643 2.643 0 0 1 2.36-3.822h14.65z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.86)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"14.156\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"35.844\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <path d=\"M32.444 28.1a2.643 2.643 0 0 1 2.37 3.824 10.738 10.738 0 0 1-9.69 5.629 10.738 10.738 0 0 1-9.69-5.63 2.643 2.643 0 0 1 2.36-3.822h14.65z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.24)\" fill-rule=\"nonzero\" fill=\"gray\">\r\n <rect fill=\"#F59F45\" width=\"50\" height=\"50\" rx=\"12.63\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"21.459\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"21.459\" r=\"2.81\"/>\r\n <path d=\"M40.847 31.351H9.135a.67.67 0 1 1 0-1.33h31.712a.67.67 0 1 1 0 1.33z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.24)\" fill-rule=\"nonzero\" fill=\"gray\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"12.63\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"21.459\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"21.459\" r=\"2.81\"/>\r\n <path d=\"M40.847 31.351H9.135a.67.67 0 1 1 0-1.33h31.712a.67.67 0 1 1 0 1.33z\" fill=\"#3B3735\"/>\r\n</g>\r\n`,\r\n `\r\n <g transform=\"translate(.62)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#FEDCAB\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <path d=\"M33.333 34.743a1.762 1.762 0 0 0 1.718-2.211c-1.119-4.158-5.285-7.241-10.324-7.241s-9.206 3.083-10.324 7.24a1.762 1.762 0 0 0 1.718 2.212l6.536-.881a15.178 15.178 0 0 1 3.946 0l6.73.88z\" fill=\"#3B3735\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"18.076\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"18.076\" r=\"2.81\"/>\r\n</g>`\r\n , `\r\n <g transform=\"translate(.62)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <path d=\"M33.333 34.743a1.762 1.762 0 0 0 1.718-2.211c-1.119-4.158-5.285-7.241-10.324-7.241s-9.206 3.083-10.324 7.24a1.762 1.762 0 0 0 1.718 2.212l6.536-.881a15.178 15.178 0 0 1 3.946 0l6.73.88z\" fill=\"#3B3735\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"18.076\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"18.076\" r=\"2.81\"/>\r\n</g>`\r\n , `\r\n <g fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#FEDCAB\" width=\"50\" height=\"50\" rx=\"13.44\"/>\r\n <path d=\"M20.218 23.865a1.144 1.144 0 0 1-.86-.336l-6.114-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.809 1.96h.043z\" fill=\"#3B3735\"/>\r\n <path d=\"M14.104 23.865a1.152 1.152 0 0 1-.817-1.961l6.114-6.115a1.152 1.152 0 0 1 1.626 1.634L14.92 23.53a1.161 1.161 0 0 1-.817.336zM36.352 23.865c-.303 0-.594-.121-.808-.336l-6.115-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.817 1.96z\" fill=\"#3B3735\"/>\r\n <path d=\"M30.246 23.865a1.152 1.152 0 0 1-.86-1.961l6.115-6.115a1.152 1.152 0 0 1 1.625 1.634L31.02 23.53a1.161 1.161 0 0 1-.774.336zM35.604 34.546a6.02 6.02 0 0 1-3.389-1.376c-1.083-.783-1.96-1.075-2.339-.783-.157.15-.296.317-.413.5-.221.34-.484.652-.782.928-1.29 1.092-3.07.791-4.3.146a11.937 11.937 0 0 1-1.299-.86 8.11 8.11 0 0 0-1.35-.808 3.44 3.44 0 0 0-3.363.447l-.387.335c-.417.416-.906.75-1.444.99-1.815.722-3.337-.38-4.558-1.256a6.416 6.416 0 0 0-1.952-1.127 2.116 2.116 0 0 0-2.383 1.307 1.152 1.152 0 0 1-2.193-.696 4.386 4.386 0 0 1 5.16-2.838 8.505 8.505 0 0 1 2.71 1.505c1.169.86 1.78 1.212 2.356.989.281-.146.537-.338.756-.568l.508-.43a5.745 5.745 0 0 1 5.676-.757c.607.285 1.183.631 1.72 1.032.345.245.704.469 1.075.671.585.31 1.367.456 1.72.138a2.58 2.58 0 0 0 .395-.49 4.3 4.3 0 0 1 .86-1.015c.86-.68 2.512-1.11 5.092.757 1.109.808 1.978 1.109 2.373.86.153-.135.289-.288.404-.456.112-.138.215-.267.336-.396a4.807 4.807 0 0 1 7.869 1.72 1.152 1.152 0 1 1-2.202.68 2.52 2.52 0 0 0-3.956-.86l-.232.283c-.242.343-.532.65-.86.912a2.83 2.83 0 0 1-1.608.516z\" fill=\"#3B3735\"/>\r\n</g>`\r\n , `\r\n <g fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.44\"/>\r\n <path d=\"M20.218 23.865a1.144 1.144 0 0 1-.86-.336l-6.114-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.809 1.96h.043z\" fill=\"#3B3735\"/>\r\n <path d=\"M14.104 23.865a1.152 1.152 0 0 1-.817-1.961l6.114-6.115a1.152 1.152 0 0 1 1.626 1.634L14.92 23.53a1.161 1.161 0 0 1-.817.336zM36.352 23.865c-.303 0-.594-.121-.808-.336l-6.115-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.817 1.96z\" fill=\"#3B3735\"/>\r\n <path d=\"M30.246 23.865a1.152 1.152 0 0 1-.86-1.961l6.115-6.115a1.152 1.152 0 0 1 1.625 1.634L31.02 23.53a1.161 1.161 0 0 1-.774.336zM35.604 34.546a6.02 6.02 0 0 1-3.389-1.376c-1.083-.783-1.96-1.075-2.339-.783-.157.15-.296.317-.413.5-.221.34-.484.652-.782.928-1.29 1.092-3.07.791-4.3.146a11.937 11.937 0 0 1-1.299-.86 8.11 8.11 0 0 0-1.35-.808 3.44 3.44 0 0 0-3.363.447l-.387.335c-.417.416-.906.75-1.444.99-1.815.722-3.337-.38-4.558-1.256a6.416 6.416 0 0 0-1.952-1.127 2.116 2.116 0 0 0-2.383 1.307 1.152 1.152 0 0 1-2.193-.696 4.386 4.386 0 0 1 5.16-2.838 8.505 8.505 0 0 1 2.71 1.505c1.169.86 1.78 1.212 2.356.989.281-.146.537-.338.756-.568l.508-.43a5.745 5.745 0 0 1 5.676-.757c.607.285 1.183.631 1.72 1.032.345.245.704.469 1.075.671.585.31 1.367.456 1.72.138a2.58 2.58 0 0 0 .395-.49 4.3 4.3 0 0 1 .86-1.015c.86-.68 2.512-1.11 5.092.757 1.109.808 1.978 1.109 2.373.86.153-.135.289-.288.404-.456.112-.138.215-.267.336-.396a4.807 4.807 0 0 1 7.869 1.72 1.152 1.152 0 1 1-2.202.68 2.52 2.52 0 0 0-3.956-.86l-.232.283c-.242.343-.532.65-.86.912a2.83 2.83 0 0 1-1.608.516z\" fill=\"#3B3735\"/>\r\n</g>`\r\n];\r\n\r\nexport const icons_2 = [\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 35\" fill=\"none\">\r\n <circle cx=\"18.2828\" cy=\"19.1631\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <path d=\"M26.955 21.3302C27.5536 21.3302 28.0449 21.8174 27.9792 22.4124C27.4408 27.291 23.305 31.0858 18.2829 31.0858C13.2609 31.0858 9.12511 27.291 8.58669 22.4124C8.52102 21.8174 9.0129 21.3302 9.61156 21.3302C14.1024 21.3302 18.2829 21.3302 18.2829 21.3302C18.2829 21.3302 22.8513 21.3302 26.955 21.3302Z\" fill=\"#04164D\"/>\r\n <path d=\"M12.657 11.668C12.7219 11.4682 13.0045 11.4682 13.0694 11.668L13.6663 13.5051C13.6953 13.5944 13.7785 13.6549 13.8725 13.6549H15.8041C16.0141 13.6549 16.1015 13.9236 15.9316 14.0471L14.3688 15.1825C14.2928 15.2377 14.261 15.3355 14.2901 15.4248L14.887 17.262C14.9519 17.4617 14.7233 17.6278 14.5534 17.5044L12.9906 16.3689C12.9146 16.3137 12.8117 16.3137 12.7358 16.3689L11.173 17.5044C11.0031 17.6278 10.7745 17.4617 10.8394 17.262L11.4363 15.4248C11.4653 15.3355 11.4335 15.2377 11.3576 15.1825L9.79481 14.0471C9.62491 13.9236 9.71222 13.6549 9.92223 13.6549H11.8539C11.9478 13.6549 12.0311 13.5944 12.0601 13.5051L12.657 11.668Z\" fill=\"#04164D\"/>\r\n <path d=\"M3.00429 0.510883C3.03674 0.411017 3.17802 0.411017 3.21047 0.510883L3.44809 1.2422C3.4626 1.28686 3.50422 1.3171 3.55118 1.3171H4.32013C4.42513 1.3171 4.46879 1.45147 4.38384 1.51319L3.76175 1.96516C3.72376 1.99276 3.70786 2.04169 3.72237 2.08635L3.95999 2.81767C3.99244 2.91753 3.87814 3.00058 3.79319 2.93886L3.17109 2.48688C3.1331 2.45928 3.08166 2.45928 3.04367 2.48688L2.42157 2.93886C2.33662 3.00058 2.22232 2.91753 2.25477 2.81767L2.49239 2.08635C2.5069 2.04169 2.491 1.99276 2.45301 1.96516L1.83092 1.51319C1.74597 1.45147 1.78963 1.3171 1.89463 1.3171H2.66358C2.71054 1.3171 2.75216 1.28686 2.76667 1.2422L3.00429 0.510883Z\" fill=\"#04164D\"/>\r\n <path d=\"M3.44315 4.08027C3.50804 3.88054 3.79061 3.88054 3.85551 4.08027L4.33075 5.5429C4.35977 5.63222 4.44301 5.69269 4.53693 5.69269H6.07482C6.28483 5.69269 6.37215 5.96143 6.20225 6.08487L4.95807 6.98883C4.88208 7.04403 4.85029 7.14188 4.87931 7.23121L5.35455 8.69383C5.41945 8.89357 5.19084 9.05966 5.02094 8.93621L3.77676 8.03226C3.70077 7.97706 3.59788 7.97706 3.5219 8.03226L2.27772 8.93621C2.10781 9.05966 1.87921 8.89357 1.94411 8.69384L2.41935 7.23121C2.44837 7.14188 2.41657 7.04403 2.34059 6.98883L1.09641 6.08487C0.926505 5.96143 1.01382 5.69269 1.22383 5.69269H2.76173C2.85565 5.69269 2.93889 5.63222 2.96791 5.5429L3.44315 4.08027Z\" fill=\"#04164D\"/>\r\n <path d=\"M6.7776 1.6578C6.81654 1.53796 6.98608 1.53797 7.02502 1.6578L7.35883 2.68518C7.37625 2.73877 7.42619 2.77506 7.48254 2.77506L8.56279 2.77506C8.6888 2.77506 8.74119 2.9363 8.63924 3.01037L7.76531 3.64532C7.71972 3.67844 7.70064 3.73715 7.71805 3.79075L8.05187 4.81812C8.09081 4.93796 7.95365 5.03762 7.8517 4.96355L6.97777 4.3286C6.93218 4.29548 6.87044 4.29548 6.82485 4.3286L5.95092 4.96355C5.84898 5.03762 5.71181 4.93796 5.75075 4.81812L6.08457 3.79075C6.10198 3.73715 6.0829 3.67844 6.03731 3.64532L5.16338 3.01037C5.06143 2.9363 5.11383 2.77506 5.23983 2.77506L6.32008 2.77506C6.37643 2.77506 6.42637 2.73877 6.44379 2.68518L6.7776 1.6578Z\" fill=\"#04164D\"/>\r\n <path d=\"M23.4959 11.668C23.5608 11.4682 23.8433 11.4682 23.9082 11.668L24.5051 13.5051C24.5342 13.5944 24.6174 13.6549 24.7113 13.6549H26.643C26.853 13.6549 26.9403 13.9236 26.7704 14.0471L25.2077 15.1825C25.1317 15.2377 25.0999 15.3355 25.1289 15.4248L25.7258 17.262C25.7907 17.4617 25.5621 17.6278 25.3922 17.5044L23.8295 16.3689C23.7535 16.3137 23.6506 16.3137 23.5746 16.3689L22.0119 17.5044C21.842 17.6278 21.6134 17.4617 21.6783 17.262L22.2752 15.4248C22.3042 15.3355 22.2724 15.2377 22.1964 15.1825L20.6337 14.0471C20.4638 13.9236 20.5511 13.6549 20.7611 13.6549H22.6928C22.7867 13.6549 22.8699 13.5944 22.899 13.5051L23.4959 11.668Z\" fill=\"#04164D\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 35\" fill=\"none\">\r\n <circle cx=\"18.2828\" cy=\"19.1631\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <path d=\"M26.955 21.3302C27.5536 21.3302 28.0449 21.8174 27.9792 22.4124C27.4408 27.291 23.305 31.0858 18.2829 31.0858C13.2609 31.0858 9.12511 27.291 8.58669 22.4124C8.52102 21.8174 9.0129 21.3302 9.61156 21.3302C14.1024 21.3302 18.2829 21.3302 18.2829 21.3302C18.2829 21.3302 22.8513 21.3302 26.955 21.3302Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.657 11.668C12.7219 11.4682 13.0045 11.4682 13.0694 11.668L13.6663 13.5051C13.6953 13.5944 13.7785 13.6549 13.8725 13.6549H15.8041C16.0141 13.6549 16.1015 13.9236 15.9316 14.0471L14.3688 15.1825C14.2928 15.2377 14.261 15.3355 14.2901 15.4248L14.887 17.262C14.9519 17.4617 14.7233 17.6278 14.5534 17.5044L12.9906 16.3689C12.9146 16.3137 12.8117 16.3137 12.7358 16.3689L11.173 17.5044C11.0031 17.6278 10.7745 17.4617 10.8394 17.262L11.4363 15.4248C11.4653 15.3355 11.4335 15.2377 11.3576 15.1825L9.79481 14.0471C9.62491 13.9236 9.71222 13.6549 9.92223 13.6549H11.8539C11.9478 13.6549 12.0311 13.5944 12.0601 13.5051L12.657 11.668Z\" fill=\"#3B3735\"/>\r\n <path d=\"M3.00429 0.510883C3.03674 0.411017 3.17802 0.411017 3.21047 0.510883L3.44809 1.2422C3.4626 1.28686 3.50422 1.3171 3.55118 1.3171H4.32013C4.42513 1.3171 4.46879 1.45147 4.38384 1.51319L3.76175 1.96516C3.72376 1.99276 3.70786 2.04169 3.72237 2.08635L3.95999 2.81767C3.99244 2.91753 3.87814 3.00058 3.79319 2.93886L3.17109 2.48688C3.1331 2.45928 3.08166 2.45928 3.04367 2.48688L2.42157 2.93886C2.33662 3.00058 2.22232 2.91753 2.25477 2.81767L2.49239 2.08635C2.5069 2.04169 2.491 1.99276 2.45301 1.96516L1.83092 1.51319C1.74597 1.45147 1.78963 1.3171 1.89463 1.3171H2.66358C2.71054 1.3171 2.75216 1.28686 2.76667 1.2422L3.00429 0.510883Z\" fill=\"#3B3735\"/>\r\n <path d=\"M3.44315 4.08027C3.50804 3.88054 3.79061 3.88054 3.85551 4.08027L4.33075 5.5429C4.35977 5.63222 4.44301 5.69269 4.53693 5.69269H6.07482C6.28483 5.69269 6.37215 5.96143 6.20225 6.08487L4.95807 6.98883C4.88208 7.04403 4.85029 7.14188 4.87931 7.23121L5.35455 8.69383C5.41945 8.89357 5.19084 9.05966 5.02094 8.93621L3.77676 8.03226C3.70077 7.97706 3.59788 7.97706 3.5219 8.03226L2.27772 8.93621C2.10781 9.05966 1.87921 8.89357 1.94411 8.69384L2.41935 7.23121C2.44837 7.14188 2.41657 7.04403 2.34059 6.98883L1.09641 6.08487C0.926505 5.96143 1.01382 5.69269 1.22383 5.69269H2.76173C2.85565 5.69269 2.93889 5.63222 2.96791 5.5429L3.44315 4.08027Z\" fill=\"#3B3735\"/>\r\n <path d=\"M6.7776 1.6578C6.81654 1.53796 6.98608 1.53797 7.02502 1.6578L7.35883 2.68518C7.37625 2.73877 7.42619 2.77506 7.48254 2.77506L8.56279 2.77506C8.6888 2.77506 8.74119 2.9363 8.63924 3.01037L7.76531 3.64532C7.71972 3.67844 7.70064 3.73715 7.71805 3.79075L8.05187 4.81812C8.09081 4.93796 7.95365 5.03762 7.8517 4.96355L6.97777 4.3286C6.93218 4.29548 6.87044 4.29548 6.82485 4.3286L5.95092 4.96355C5.84898 5.03762 5.71181 4.93796 5.75075 4.81812L6.08457 3.79075C6.10198 3.73715 6.0829 3.67844 6.03731 3.64532L5.16338 3.01037C5.06143 2.9363 5.11383 2.77506 5.23983 2.77506L6.32008 2.77506C6.37643 2.77506 6.42637 2.73877 6.44379 2.68518L6.7776 1.6578Z\" fill=\"#3B3735\"/>\r\n <path d=\"M23.4959 11.668C23.5608 11.4682 23.8433 11.4682 23.9082 11.668L24.5051 13.5051C24.5342 13.5944 24.6174 13.6549 24.7113 13.6549H26.643C26.853 13.6549 26.9403 13.9236 26.7704 14.0471L25.2077 15.1825C25.1317 15.2377 25.0999 15.3355 25.1289 15.4248L25.7258 17.262C25.7907 17.4617 25.5621 17.6278 25.3922 17.5044L23.8295 16.3689C23.7535 16.3137 23.6506 16.3137 23.5746 16.3689L22.0119 17.5044C21.842 17.6278 21.6134 17.4617 21.6783 17.262L22.2752 15.4248C22.3042 15.3355 22.2724 15.2377 22.1964 15.1825L20.6337 14.0471C20.4638 13.9236 20.5511 13.6549 20.7611 13.6549H22.6928C22.7867 13.6549 22.8699 13.5944 22.899 13.5051L23.4959 11.668Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.6734\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.7119\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <circle cx=\"22.6347\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <path d=\"M25.3456 18.705C25.9443 18.705 26.4355 19.1922 26.3698 19.7872C25.8314 24.6658 21.6957 28.4606 16.6736 28.4606C11.6515 28.4606 7.51573 24.6658 6.97732 19.7872C6.91165 19.1922 7.40353 18.705 8.00218 18.705C12.493 18.705 16.6736 18.705 16.6736 18.705C16.6736 18.705 21.2419 18.705 25.3456 18.705Z\" fill=\"#04164D\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.6734\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.7119\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <circle cx=\"22.6347\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <path d=\"M25.3456 18.705C25.9443 18.705 26.4355 19.1922 26.3698 19.7872C25.8314 24.6658 21.6957 28.4606 16.6736 28.4606C11.6515 28.4606 7.51573 24.6658 6.97732 19.7872C6.91165 19.1922 7.40353 18.705 8.00218 18.705C12.493 18.705 16.6736 18.705 16.6736 18.705C16.6736 18.705 21.2419 18.705 25.3456 18.705Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"16.231\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.2695\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <circle cx=\"22.1923\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <line x1=\"8.75194\" y1=\"21.8489\" x2=\"23.7105\" y2=\"21.8489\" stroke=\"#04164D\" stroke-width=\"1.30075\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"16.231\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.2695\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <circle cx=\"22.1923\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <line x1=\"8.75194\" y1=\"21.8489\" x2=\"23.7105\" y2=\"21.8489\" stroke=\"#3B3735\" stroke-width=\"1.30075\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"15.7887\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <line x1=\"7.11717\" y1=\"15.4528\" x2=\"14.7049\" y2=\"15.4528\" stroke=\"#04164D\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n <line x1=\"9.82709\" y1=\"23.5824\" x2=\"14.1629\" y2=\"23.5824\" stroke=\"#04164D\" stroke-width=\"4.33582\" stroke-linecap=\"round\"/>\r\n <line x1=\"17.957\" y1=\"15.4528\" x2=\"25.5447\" y2=\"15.4528\" stroke=\"#04164D\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"15.7887\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <line x1=\"7.11717\" y1=\"15.4528\" x2=\"14.7049\" y2=\"15.4528\" stroke=\"#3B3735\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n <line x1=\"9.82709\" y1=\"23.5824\" x2=\"14.1629\" y2=\"23.5824\" stroke=\"#3B3735\" stroke-width=\"4.33582\" stroke-linecap=\"round\"/>\r\n <line x1=\"17.957\" y1=\"15.4528\" x2=\"25.5447\" y2=\"15.4528\" stroke=\"#3B3735\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.3463\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <line x1=\"6.8618\" y1=\"15.1818\" x2=\"13.9075\" y2=\"15.1818\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"8.28252\" y1=\"9.49139\" x2=\"13.6365\" y2=\"14.8454\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"24.4766\" y1=\"9.5568\" x2=\"19.1225\" y2=\"14.9108\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"14.1786\" y1=\"23.0404\" x2=\"17.4305\" y2=\"23.0404\" stroke=\"#04164D\" stroke-width=\"5.41978\" stroke-linecap=\"round\"/>\r\n <line x1=\"18.7856\" y1=\"15.1818\" x2=\"25.8313\" y2=\"15.1818\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.3463\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <line x1=\"6.8618\" y1=\"15.1818\" x2=\"13.9075\" y2=\"15.1818\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"8.28252\" y1=\"9.49139\" x2=\"13.6365\" y2=\"14.8454\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"24.4766\" y1=\"9.5568\" x2=\"19.1225\" y2=\"14.9108\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"14.1786\" y1=\"23.0404\" x2=\"17.4305\" y2=\"23.0404\" stroke=\"#3B3735\" stroke-width=\"5.41978\" stroke-linecap=\"round\"/>\r\n <line x1=\"18.7856\" y1=\"15.1818\" x2=\"25.8313\" y2=\"15.1818\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n </svg>`\r\n];\r\n\r\nexport const icons_3 = [\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <ellipse cx=\"21.5152\" cy=\"20.4635\" rx=\"15.6891\" ry=\"16.2372\" fill=\"url(#paint0_linear_477_3168)\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1645 9.98454C13.7849 9.01603 14.1957 8.20026 15.3495 7.85574C17.5157 7.20762 19.9603 9.23315 19.2468 11.7653C19.0438 12.4864 18.5332 13.3906 17.9512 14.2916C17.3127 15.2808 16.5873 16.2674 16.0875 17.0067L14.7246 19.0225L13.1124 17.8727C11.1728 16.4885 8.11697 14.8522 7.57915 12.2645C7.20253 10.4518 8.37203 9.04704 9.95291 8.79599C11.3656 8.57293 12.0853 9.20604 13.1645 9.98454Z\" fill=\"#ED466E\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.061 9.61821C31.0686 9.03204 31.8165 8.4866 33.0162 8.70985C35.2693 9.1278 36.5362 12.0853 34.7212 14.0382C34.2045 14.5945 33.3257 15.1735 32.3841 15.7166C31.3507 16.313 30.24 16.8669 29.4474 17.3023L27.2857 18.4892L26.3641 16.7065C25.2557 14.5609 23.2576 11.6715 23.9701 9.08954C24.4693 7.2808 26.1737 6.55537 27.7153 7.06051C29.0923 7.51306 29.4483 8.41695 30.061 9.61821Z\" fill=\"#ED466E\"/>\r\n <path d=\"M12.4033 15.8881V15.8853L12.4104 15.8778V15.8777H12.4036V15.8738H12.4173V15.8769L12.4108 15.8841V15.8842H12.4176V15.8881H12.4033Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.2656 16.0244V16.0216L12.2727 16.0142V16.0141H12.2659V16.0102H12.2796V16.0133L12.2731 16.0205V16.0205H12.2799V16.0244H12.2656Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.1289 16.1623V16.1595L12.136 16.152V16.1519H12.1292V16.148H12.1429V16.1512L12.1364 16.1583V16.1584H12.1432V16.1623H12.1289Z\" fill=\"#3655F5\"/>\r\n <path d=\"M28.3155 25.3441C28.9494 25.9251 28.8966 26.1364 28.9494 26.8233C28.9494 27.3514 28.4931 32.1532 21.9763 32.1532C15.3393 32.1532 14.739 28.1967 14.5806 27.4022C14.5278 26.7177 14.5806 25.925 14.8975 25.5553C16.6937 24.2887 20.5441 24.6649 21.9763 24.6552C23.4085 24.6454 27.2024 24.324 28.3155 25.3441Z\" fill=\"black\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3168\" x1=\"21.5152\" y1=\"4.22632\" x2=\"21.5152\" y2=\"36.7006\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"#3B3735\">\r\n <ellipse cx=\"21.5152\" cy=\"20.4635\" rx=\"15.6891\" ry=\"16.2372\" fill=\"#C7C6C6\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1645 9.98454C13.7849 9.01603 14.1957 8.20026 15.3495 7.85574C17.5157 7.20762 19.9603 9.23315 19.2468 11.7653C19.0438 12.4864 18.5332 13.3906 17.9512 14.2916C17.3127 15.2808 16.5873 16.2674 16.0875 17.0067L14.7246 19.0225L13.1124 17.8727C11.1728 16.4885 8.11697 14.8522 7.57915 12.2645C7.20253 10.4518 8.37203 9.04704 9.95291 8.79599C11.3656 8.57293 12.0853 9.20604 13.1645 9.98454Z\" fill=\"#3B3735\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.061 9.61821C31.0686 9.03204 31.8165 8.4866 33.0162 8.70985C35.2693 9.1278 36.5362 12.0853 34.7212 14.0382C34.2045 14.5945 33.3257 15.1735 32.3841 15.7166C31.3507 16.313 30.24 16.8669 29.4474 17.3023L27.2857 18.4892L26.3641 16.7065C25.2557 14.5609 23.2576 11.6715 23.9701 9.08954C24.4693 7.2808 26.1737 6.55537 27.7153 7.06051C29.0923 7.51306 29.4483 8.41695 30.061 9.61821Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.4033 15.8881V15.8853L12.4104 15.8778V15.8777H12.4036V15.8738H12.4173V15.8769L12.4108 15.8841V15.8842H12.4176V15.8881H12.4033Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.2656 16.0244V16.0216L12.2727 16.0142V16.0141H12.2659V16.0102H12.2796V16.0133L12.2731 16.0205V16.0205H12.2799V16.0244H12.2656Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.1289 16.1623V16.1595L12.136 16.152V16.1519H12.1292V16.148H12.1429V16.1512L12.1364 16.1583V16.1584H12.1432V16.1623H12.1289Z\" fill=\"#3655F5\"/>\r\n <path d=\"M28.3155 25.3441C28.9494 25.9251 28.8966 26.1364 28.9494 26.8233C28.9494 27.3514 28.4931 32.1532 21.9763 32.1532C15.3393 32.1532 14.7390 28.1967 14.5806 27.4022C14.5278 26.7177 14.5806 25.9250 14.8975 25.5553C16.6937 24.2887 20.5441 24.6649 21.9763 24.6552C23.4085 24.6454 27.2024 24.3240 28.3155 25.3441Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"23.4844\" cy=\"22.2507\" r=\"15.4082\" fill=\"url(#paint0_linear_477_3158)\"/>\r\n <path d=\"M23.1995 33.9488C14.0687 33.9488 12.9273 24.7229 12.9273 24.7229C12.9273 24.7229 12.7374 23.6766 14.0687 24.0571C16.4199 24.7292 19.5845 25.5612 23.1995 25.5789C26.9244 25.5973 29.9212 25.0192 32.6156 24.0571C33.9475 23.5816 33.7569 24.7229 33.7569 24.7229C33.7569 24.7229 32.9177 33.9488 23.1995 33.9488Z\" fill=\"#493248\"/>\r\n <path d=\"M14.2665 24.6519C13.415 24.4043 13.7609 25.2849 13.7609 25.2849C13.7609 25.2849 14.1335 26.6059 14.2665 26.8811C14.3996 27.1564 14.7189 27.4591 15.4108 27.6793C16.1027 27.8994 20.0144 28.67 23.6068 28.67C27.1397 28.67 30.1264 27.9269 31.2175 27.6517C31.9198 27.4745 32.0946 27.2746 32.2287 27.1013C32.4416 26.8261 32.7077 26.2757 33.0004 25.2849C33.2931 24.2942 32.3883 24.6795 32.3883 24.6795C32.3883 24.6795 28.6096 26.0005 23.5536 26.0005C18.4976 26.0005 15.1181 24.8996 14.2665 24.6519Z\" fill=\"#FBFBFB\"/>\r\n <ellipse cx=\"18.7286\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#493248\"/>\r\n <ellipse cx=\"28.0499\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#493248\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3158\" x1=\"23.4844\" y1=\"6.84248\" x2=\"23.4844\" y2=\"37.6589\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"23.4844\" cy=\"22.2507\" r=\"15.4082\" fill=\"#C7C6C6\"/>\r\n <path d=\"M23.1995 33.9488C14.0687 33.9488 12.9273 24.7229 12.9273 24.7229C12.9273 24.7229 12.7374 23.6766 14.0687 24.0571C16.4199 24.7292 19.5845 25.5612 23.1995 25.5789C26.9244 25.5973 29.9212 25.0192 32.6156 24.0571C33.9475 23.5816 33.7569 24.7229 33.7569 24.7229C33.7569 24.7229 32.9177 33.9488 23.1995 33.9488Z\" fill=\"#3B3735\"/>\r\n <path d=\"M14.2665 24.6519C13.4150 24.4043 13.7609 25.2849 13.7609 25.2849C13.7609 25.2849 14.1335 26.6059 14.2665 26.8811C14.3996 27.1564 14.7189 27.4591 15.4108 27.6793C16.1027 27.8994 20.0144 28.67 23.6068 28.67C27.1397 28.67 30.1264 27.9269 31.2175 27.6517C31.9198 27.4745 32.0946 27.2746 32.2287 27.1013C32.4416 26.8261 32.7077 26.2757 33.0004 25.2849C33.2931 24.2942 32.3883 24.6795 32.3883 24.6795C32.3883 24.6795 28.6096 26.0005 23.5536 26.0005C18.4976 26.0005 15.1181 24.8996 14.2665 24.6519Z\" fill=\"#FBFBFB\"/>\r\n <ellipse cx=\"18.7286\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#3B3735\"/>\r\n <ellipse cx=\"28.0499\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"21.3277\" cy=\"21.013\" r=\"15.6891\" fill=\"url(#paint0_linear_477_3146)\"/>\r\n <path d=\"M25.2005 30.3076C25.43 30.2281 25.9997 29.413 25.3235 28.5184C25.0776 28.3267 25.0324 28.3124 24.5243 28.2628C18.6231 27.6878 15.8054 31.6116 15.9183 31.905C20.7306 29.4039 23.62 29.9876 24.5244 30.2437C24.7059 30.2951 25.0161 30.3715 25.2005 30.3076Z\" fill=\"black\"/>\r\n <path d=\"M12.2158 15.8881V15.8853L12.2229 15.8778V15.8777H12.2161V15.8738H12.2298V15.8769L12.2233 15.8841V15.8842H12.2301V15.8881H12.2158Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.0781 16.0244V16.0216L12.0852 16.0142V16.0141H12.0784V16.0102H12.0921V16.0133L12.0856 16.0205V16.0205H12.0924V16.0244H12.0781Z\" fill=\"#3655F5\"/>\r\n <path d=\"M11.9424 16.1623V16.1595L11.9495 16.152V16.1519H11.9426V16.148H11.9564V16.1512L11.9499 16.1583V16.1584H11.9566V16.1623H11.9424Z\" fill=\"#3655F5\"/>\r\n <ellipse cx=\"29.3559\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 29.3559 18.8206)\" fill=\"black\"/>\r\n <path d=\"M30.4321 18.7346C30.6492 18.6421 31.1884 17.6929 30.5484 16.6512C30.1663 16.4921 29.9608 16.4236 29.5497 16.3551C24.4683 15.7458 22.0452 19.4718 21.6863 20.4063C21.6508 20.4989 21.6863 20.4998 21.6967 20.5102C21.6967 20.5102 21.7127 20.5643 21.7809 20.5102C26.2553 17.6956 28.9447 18.3649 29.7921 18.6602C29.9639 18.7201 30.2575 18.809 30.4321 18.7346Z\" fill=\"black\"/>\r\n <ellipse cx=\"16.0648\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 16.0648 18.8206)\" fill=\"black\"/>\r\n <path d=\"M17.1401 18.7346C17.3572 18.6421 17.8964 17.6929 17.2564 16.6512C16.8743 16.4921 16.6688 16.4237 16.2577 16.3551C11.1764 15.7458 8.75323 19.4718 8.39435 20.4063C8.35879 20.4989 8.39435 20.4998 8.40471 20.5103C8.40471 20.5103 8.42068 20.5644 8.48893 20.5103C12.9633 17.6956 15.6527 18.3649 16.5001 18.6602C16.6719 18.7201 16.9655 18.8091 17.1401 18.7346Z\" fill=\"black\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3146\" x1=\"21.3277\" y1=\"5.32394\" x2=\"21.3277\" y2=\"36.7021\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"21.3277\" cy=\"21.013\" r=\"15.6891\" fill=\"#C7C6C6\"/>\r\n <path d=\"M25.2005 30.3076C25.43 30.2281 25.9997 29.413 25.3235 28.5184C25.0776 28.3267 25.0324 28.3124 24.5243 28.2628C18.6231 27.6878 15.8054 31.6116 15.9183 31.905C20.7306 29.4039 23.62 29.9876 24.5244 30.2437C24.7059 30.2951 25.0161 30.3715 25.2005 30.3076Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.2158 15.8881V15.8853L12.2229 15.8778V15.8777H12.2161V15.8738H12.2298V15.8769L12.2233 15.8841V15.8842H12.2301V15.8881H12.2158Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.0781 16.0244V16.0216L12.0852 16.0142V16.0141H12.0784V16.0102H12.0921V16.0133L12.0856 16.0205V16.0205H12.0924V16.0244H12.0781Z\" fill=\"#3B3735\"/>\r\n <path d=\"M11.9424 16.1623V16.1595L11.9495 16.152V16.1519H11.9426V16.148H11.9564V16.1512L11.9499 16.1583V16.1584H11.9566V16.1623H11.9424Z\" fill=\"#3B3735\"/>\r\n <ellipse cx=\"29.3559\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 29.3559 18.8206)\" fill=\"#3B3735\"/>\r\n <path d=\"M30.4321 18.7346C30.6492 18.6421 31.1884 17.6929 30.5484 16.6512C30.1663 16.4921 29.9608 16.4236 29.5497 16.3551C24.4683 15.7458 22.0452 19.4718 21.6863 20.4063C21.6508 20.4989 21.6863 20.4998 21.6967 20.5102C21.6967 20.5102 21.7127 20.5643 21.7809 20.5102C26.2553 17.6956 28.9447 18.3649 29.7921 18.6602C29.9639 18.7201 30.2575 18.809 30.4321 18.7346Z\" fill=\"#3B3735\"/>\r\n <ellipse cx=\"16.0648\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 16.0648 18.8206)\" fill=\"#3B3735\"/>\r\n <path d=\"M17.1401 18.7346C17.3572 18.6421 17.8964 17.6929 17.2564 16.6512C16.8743 16.4921 16.6688 16.4237 16.2577 16.3551C11.1764 15.7458 8.75323 19.4718 8.39435 20.4063C8.35879 20.4989 8.39435 20.4998 8.40471 20.5103C8.40471 20.5103 8.42068 20.5644 8.48893 20.5103C12.9633 17.6956 15.6527 18.3649 16.5001 18.6602C16.6719 18.7201 16.9655 18.8091 17.1401 18.7346Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 40 42\" fill=\"none\">\r\n <ellipse cx=\"23.3096\" cy=\"24.2812\" rx=\"17.1534\" ry=\"15.9549\" fill=\"url(#paint0_linear_477_3138)\"/>\r\n <path d=\"M25.6486 34.758C25.647 35.1105 25.5019 35.2834 25.1037 35.5309C24.6204 35.8313 23.6833 35.8312 22.8874 35.8312C22.0792 35.8312 21.3024 35.823 20.8217 35.5145C20.439 35.2689 20.3904 35.1039 20.392 34.758C20.3956 33.9776 21.5752 33.345 23.0268 33.345C24.4783 33.345 25.6522 33.9776 25.6486 34.758Z\" fill=\"black\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"black\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"black\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"black\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"black\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3138\" x1=\"23.3096\" y1=\"8.32629\" x2=\"23.3096\" y2=\"40.2361\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 40 42\" fill=\"none\">\r\n <ellipse cx=\"23.3096\" cy=\"24.2812\" rx=\"17.1534\" ry=\"15.9549\" fill=\"#C7C6C6\"/>\r\n <path d=\"M25.6486 34.758C25.647 35.1105 25.5019 35.2834 25.1037 35.5309C24.6204 35.8313 23.6833 35.8312 22.8874 35.8312C22.0792 35.8312 21.3024 35.823 20.8217 35.5145C20.439 35.2689 20.3904 35.1039 20.392 34.758C20.3956 33.9776 21.5752 33.345 23.0268 33.345C24.4783 33.345 25.6522 33.9776 25.6486 34.758Z\" fill=\"#3B3735\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"#3B3735\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"#3B3735\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"#3B3735\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <ellipse cx=\"21.9548\" cy=\"23.7912\" rx=\"16.7028\" ry=\"15.9734\" fill=\"url(#paint0_linear_477_3128)\"/>\r\n <path d=\"M18.6726 23.5716C18.6726 24.2994 18.466 24.965 18.1244 25.4761C17.7098 26.0964 17.0962 26.4891 16.4115 26.4891C15.7162 26.4891 15.0942 26.0842 14.6794 25.4472C14.3493 24.94 14.1504 24.2858 14.1504 23.5716C14.1504 21.9603 15.1627 20.6541 16.4115 20.6541C17.6602 20.6541 18.6726 21.9603 18.6726 23.5716Z\" fill=\"black\"/>\r\n <path d=\"M18.973 21.3522C18.7218 21.85 17.0505 21.5131 15.24 20.5995C13.4295 19.6859 12.1655 18.5417 12.4168 18.0438C12.668 17.546 15.9401 17.9709 17.7505 18.8845C19.561 19.7981 19.2243 20.8543 18.973 21.3522Z\" fill=\"#C66E3C\"/>\r\n <path d=\"M29.1755 23.5716C29.1755 24.2994 28.9689 24.965 28.6273 25.4761C28.2127 26.0964 27.5991 26.4891 26.9144 26.4891C26.2191 26.4891 25.5971 26.0842 25.1824 25.4472C24.8522 24.94 24.6533 24.2858 24.6533 23.5716C24.6533 21.9603 25.6656 20.6541 26.9144 20.6541C28.1632 20.6541 29.1755 21.9603 29.1755 23.5716Z\" fill=\"black\"/>\r\n <path d=\"M24.2736 21.3706C24.5258 21.8705 26.2039 21.5324 28.0217 20.6154C29.8395 19.6984 31.1087 18.5497 30.8566 18.0498C30.6044 17.5499 27.3192 17.9762 25.5013 18.8932C23.6835 19.8103 24.0215 20.8707 24.2736 21.3706Z\" fill=\"#C66E3C\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"black\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"black\"/>\r\n <path d=\"M12.2539 17.6061V17.6031L12.2615 17.5952V17.5951H12.2542V17.591H12.2688V17.5943L12.2619 17.6019V17.602H12.2691V17.6061H12.2539Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.1074 17.7515V17.7485L12.115 17.7406V17.7405H12.1077V17.7364H12.1223V17.7397L12.1154 17.7473V17.7474H12.1226V17.7515H12.1074Z\" fill=\"#3655F5\"/>\r\n <path d=\"M11.9619 17.8969V17.8939L11.9695 17.886V17.8859H11.9622V17.8818H11.9768V17.8851L11.9699 17.8927V17.8928H11.9771V17.8969H11.9619Z\" fill=\"#3655F5\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3128\" x1=\"21.9548\" y1=\"7.81778\" x2=\"21.9548\" y2=\"39.7647\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCCC50\"/>\r\n <stop offset=\"1\" stop-color=\"#F13A3A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <ellipse cx=\"21.9548\" cy=\"23.7912\" rx=\"16.7028\" ry=\"15.9734\" fill=\"#C7C6C6\"/>\r\n <path d=\"M18.6726 23.5716C18.6726 24.2994 18.466 24.965 18.1244 25.4761C17.7098 26.0964 17.0962 26.4891 16.4115 26.4891C15.7162 26.4891 15.0942 26.0842 14.6794 25.4472C14.3493 24.94 14.1504 24.2858 14.1504 23.5716C14.1504 21.9603 15.1627 20.6541 16.4115 20.6541C17.6602 20.6541 18.6726 21.9603 18.6726 23.5716Z\" fill=\"#3B3735\"/>\r\n <path d=\"M18.973 21.3522C18.7218 21.85 17.0505 21.5131 15.24 20.5995C13.4295 19.6859 12.1655 18.5417 12.4168 18.0438C12.668 17.546 15.9401 17.9709 17.7505 18.8845C19.561 19.7981 19.2243 20.8543 18.973 21.3522Z\" fill=\"#3B3735\"/>\r\n <path d=\"M29.1755 23.5716C29.1755 24.2994 28.9689 24.965 28.6273 25.4761C28.2127 26.0964 27.5991 26.4891 26.9144 26.4891C26.2191 26.4891 25.5971 26.0842 25.1824 25.4472C24.8522 24.94 24.6533 24.2858 24.6533 23.5716C24.6533 21.9603 25.6656 20.6541 26.9144 20.6541C28.1632 20.6541 29.1755 21.9603 29.1755 23.5716Z\" fill=\"#3B3735\"/>\r\n <path d=\"M24.2736 21.3706C24.5258 21.8705 26.2039 21.5324 28.0217 20.6154C29.8395 19.6984 31.1087 18.5497 30.8566 18.0498C30.6044 17.5499 27.3192 17.9762 25.5013 18.8932C23.6835 19.8103 24.0215 20.8707 24.2736 21.3706Z\" fill=\"#3B3735\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"#3B3735\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.2539 17.6061V17.6031L12.2615 17.5952V17.5951H12.2542V17.591H12.2688V17.5943L12.2619 17.6019V17.602H12.2691V17.6061H12.2539Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.1074 17.7515V17.7485L12.115 17.7406V17.7405H12.1077V17.7364H12.1223V17.7397L12.1154 17.7473V17.7474H12.1226V17.7515H12.1074Z\" fill=\"#3B3735\"/>\r\n <path d=\"M11.9619 17.8969V17.8939L11.9695 17.886V17.8859H11.9622V17.8818H11.9768V17.8851L11.9699 17.8927V17.8928H11.9771V17.8969H11.9619Z\" fill=\"#3B3735\"/>\r\n </svg>`\r\n]; ","<script>\r\n import { icons_1, icons_2, icons_3, icons_4 } from \"./reactionSvgs/icons.js\";\r\n export let name;\r\n export let focusable = false;\r\n export let emotIconType;\r\n export let width = \"40px\";\r\n export let height = \"40px\";\r\n let emotIcons =\r\n emotIconType == \"0\"\r\n ? icons_1\r\n : emotIconType == \"1\"\r\n ? icons_2\r\n : emotIconType == \"2\"\r\n ? icons_3\r\n : null;\r\n let icons = [\r\n {\r\n box: 50,\r\n name: \"love\",\r\n svg: emotIcons[0],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedLove\",\r\n svg: emotIcons[1],\r\n },\r\n {\r\n box: 50,\r\n name: \"like\",\r\n svg: emotIcons[2],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedLike\",\r\n svg: emotIcons[3],\r\n },\r\n {\r\n box: 50,\r\n name: \"neutral\",\r\n svg: emotIcons[4],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedNeutral\",\r\n svg: emotIcons[5],\r\n },\r\n {\r\n box: 50,\r\n name: \"dislike\",\r\n svg: emotIcons[6],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedDislike\",\r\n svg: emotIcons[7],\r\n },\r\n\r\n {\r\n box: 50,\r\n name: \"hate\",\r\n svg: emotIcons[8],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedHate\",\r\n svg: emotIcons[9],\r\n },\r\n ];\r\n let displayIcon = icons.find((e) => e.name === name);\r\n</script>\r\n\r\n{#if emotIconType === \"2\"}\r\n<svg\r\n class={$$props.class}\r\n {focusable}\r\n {width}\r\n {height}\r\n viewBox=\"0 0 {displayIcon.box} {displayIcon.box - 1}\"\r\n >\r\n <g transform={\"translate(-3, -3)\"}>\r\n {@html displayIcon.svg}\r\n </g>\r\n </svg>\r\n{:else}\r\n<svg\r\n class={$$props.class}\r\n {focusable}\r\n {width}\r\n {height}\r\n viewBox=\"0 0 {displayIcon.box} {displayIcon.box - 1}\"\r\n >\r\n {@html displayIcon.svg}\r\n </svg>\r\n{/if}\r\n","function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n","<script>\r\n import Icons from \"../Icons/reactionIcons.svelte\";\r\n import \"../widgetPages/reactionpage.css\";\r\n export let feedbackData;\r\n export let wgType;\r\n $: widgetComponent = 1;\r\n let reactionNames = [\"hate\", \"dislike\", \"neutral\", \"like\", \"love\"];\r\n let changingReactionNames = reactionNames;\r\n let reactionType = \"\";\r\n let comment = \"\";\r\n let email = \"\";\r\n let questionAnswer = \"\";\r\n let reactionName = \"test\";\r\n let reactionState = true;\r\n $: pointerMargin = 10;\r\n $: hateDisplay = \"none\";\r\n $: dislikeDisplay = \"none\";\r\n $: neutralDisplay = \"none\";\r\n $: likeDisplay = \"none\";\r\n $: loveDisplay = \"none\";\r\n $: buttonColor = feedbackData.wgAccentColor;\r\n $: widgetQuestion = feedbackData.wgQuestion;\r\n $: widgetEmailReqMsg = feedbackData.wgEmailReqMsg;\r\n $: widgetPlaceholder = feedbackData.wgFeedbackPlaceholder;\r\n $: widgetEmotIconType = feedbackData.wgReactionStyle;\r\n $: document.documentElement.style.setProperty(\r\n \"--pointerMargin\",\r\n pointerMargin + \"%\"\r\n );\r\n $: document.documentElement.style.setProperty(\"--hateDisplay\", hateDisplay);\r\n $: document.documentElement.style.setProperty(\r\n \"--dislikeDisplay\",\r\n dislikeDisplay\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--neutralDisplay\",\r\n neutralDisplay\r\n );\r\n $: document.documentElement.style.setProperty(\"--likeDisplay\", likeDisplay);\r\n $: document.documentElement.style.setProperty(\"--loveDisplay\", loveDisplay);\r\n $: document.documentElement.style.setProperty(\"--buttonColor\", buttonColor);\r\n\r\n let count = 0;\r\n $: buttonState = false;\r\n let checkTextAreaInterval;\r\n let checkEmailAreaInterval;\r\n\r\n export let closeHandler = (\r\n email,\r\n comment,\r\n reactionType,\r\n questionAnswer\r\n ) => {};\r\n export let closeHandlerBeforeFinishing = (email, comment, reactionType) => {};\r\n\r\n // const commentButtonDisable = () =>{\r\n\r\n // let source = document.querySelector(\".fsTextArea\");\r\n\r\n // source.addEventListener('propertychange', commentHandler);\r\n\r\n // }\r\n const commentHandler = () => {\r\n let input = document.querySelector(\".fsTextArea\");\r\n\r\n if (input.value === \"\") {\r\n buttonState = false; //button remains disabled\r\n } else {\r\n buttonState = true; //button is enabled\r\n }\r\n comment = \"\";\r\n comment = input.value;\r\n };\r\n\r\n // const EmailButtonDisable = () =>{\r\n\r\n // let source = document.querySelector(\"#fsEmailTextArea\");\r\n\r\n // source.addEventListener('propertychange', emailHandler);\r\n\r\n // }\r\n\r\n const emailHandler = () => {\r\n let input = document.querySelector(\"#fsEmailTextArea\");\r\n\r\n if (\r\n !/^\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,3})+$/.test(input.value) ||\r\n input.value === \"\"\r\n ) {\r\n buttonState = false; //button remains disabled\r\n } else {\r\n buttonState = true; //button is enabled\r\n email = \"\";\r\n email = document.getElementById(\"fsEmailTextArea\").value;\r\n }\r\n };\r\n\r\n const changeStyle = (prevState) => {\r\n if (prevState == \"hate\") {\r\n hateDisplay = \"none\";\r\n } else if (prevState == \"dislike\") {\r\n dislikeDisplay = \"none\";\r\n } else if (prevState == \"neutral\") {\r\n neutralDisplay = \"none\";\r\n } else if (prevState == \"like\") {\r\n likeDisplay = \"none\";\r\n } else if (prevState == \"love\") {\r\n loveDisplay = \"none\";\r\n }\r\n };\r\n\r\n const openComment = (state, rating, name) => {\r\n let prevName = reactionName;\r\n reactionName = name;\r\n\r\n widgetComponent = state;\r\n reactionType = String(rating);\r\n changingReactionNames = [\r\n \"unSelectedHate\",\r\n \"unSelectedDislike\",\r\n \"unSelectedNeutral\",\r\n \"unSelectedLike\",\r\n \"unSelectedLove\",\r\n ];\r\n closeHandlerBeforeFinishing(email, comment, reactionType);\r\n if (count > 0) {\r\n changeStyle(prevName);\r\n }\r\n // changeStyle(prevName,reactionName)\r\n count++;\r\n if (rating == 1) {\r\n pointerMargin = 11;\r\n hateDisplay = \"block\";\r\n changingReactionNames[0] = reactionNames[0];\r\n reactionState = !reactionState;\r\n } else if (rating == 2) {\r\n changingReactionNames[1] = reactionNames[1];\r\n pointerMargin = 30;\r\n dislikeDisplay = \"block\";\r\n reactionState = !reactionState;\r\n } else if (rating == 3) {\r\n changingReactionNames[2] = reactionNames[2];\r\n pointerMargin = 49;\r\n neutralDisplay = \"block\";\r\n reactionState = !reactionState;\r\n } else if (rating == 4) {\r\n changingReactionNames[3] = reactionNames[3];\r\n pointerMargin = 68;\r\n likeDisplay = \"block\";\r\n reactionState = !reactionState;\r\n } else if (rating == 5) {\r\n changingReactionNames[4] = reactionNames[4];\r\n pointerMargin = 87;\r\n loveDisplay = \"block\";\r\n reactionState = !reactionState;\r\n }\r\n };\r\n\r\n const questionHandler = (state, question) => {\r\n let input = document.querySelector(\".fsAnswerTextArea\");\r\n\r\n if (input.value === \"\") {\r\n buttonState = false;\r\n } else {\r\n buttonState = true;\r\n }\r\n questionAnswer = \"\";\r\n questionAnswer = input.value;\r\n };\r\n\r\n const openEmailCont = (state) => {\r\n clearInterval(checkTextAreaInterval);\r\n document.querySelector(\".fsTextArea\").value = \"\";\r\n buttonState = false;\r\n widgetComponent = state;\r\n };\r\n\r\n const openEmailView = (state) => {\r\n clearInterval(checkTextAreaInterval);\r\n document.querySelector(\".fsAnswerTextArea\").value = \"\";\r\n buttonState = false;\r\n widgetComponent = state;\r\n };\r\n\r\n const endEmailInterval = () => {\r\n clearInterval(checkEmailAreaInterval);\r\n document.querySelector(\"#fsEmailTextArea\").value = \"\";\r\n };\r\n</script>\r\n\r\n{#if widgetComponent === 1}\r\n <div id=\"fsTxt\">{widgetQuestion}</div>\r\n {#if wgType === 0}\r\n <div class=\"fsReactionsContainer\">\r\n <div class=\"fsIcons\">\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 1, \"hate\")}>\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[0]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n\r\n <p class=\"fsReactionText\" class:icons3-text-2={widgetEmotIconType === \"2\"}>Hate</p>\r\n </div>\r\n\r\n <div\r\n class=\"fsIconTextCont\"\r\n on:click={() => openComment(2, 2, \"dislike\")}\r\n >\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[1]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n\r\n <p class=\"fsReactionText\" class:icons3-text={widgetEmotIconType === \"2\"}>Dislike</p>\r\n </div>\r\n <div\r\n class=\"fsIconTextCont\"\r\n on:click={() => openComment(2, 3, \"neutral\")}\r\n >\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[2]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n\r\n <p class=\"fsReactionText\">Neutral</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 4, \"like\")}>\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[3]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n <p class=\"fsReactionText\" class:icons3-text={widgetEmotIconType === \"2\"}>Like</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 5, \"love\")}>\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[4]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n <p class=\"fsReactionText\" class:icons3-text-2={widgetEmotIconType === \"2\"}>Love</p>\r\n </div>\r\n </div>\r\n </div>\r\n {:else if wgType === 1}\r\n <div class=\"fsQuestionContainer\">\r\n <div class=\"fsTextAreaCont-qa-view\">\r\n <textarea\r\n class=\"fsAnswerTextArea\"\r\n placeholder=\"Answer Here...\"\r\n on:keyup={() => questionHandler()}\r\n />\r\n </div>\r\n <div class=\"fsFooter\">\r\n {#if buttonState == false}\r\n <button class=\"fsCommentButtonContDisable\" disabled>\r\n <p class=\"fsCommentButtonTxtDisable\">Send</p>\r\n </button>\r\n {:else if buttonState == true}\r\n <button\r\n class=\"fsSendButtonContCommentComp\"\r\n on:click={() => openEmailView(3)}\r\n >\r\n <p class=\"fsSendButtonCommentComponent\">Send</p>\r\n </button>\r\n {/if}\r\n </div>\r\n </div>\r\n {/if}\r\n{:else if widgetComponent === 2 && wgType !== 1}\r\n <div class=\"fsCommentContainer\">\r\n <div class=\"fsIcons-second\">\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 1, \"hate\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[0]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[0]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n\r\n <p class=\"fsReactionText\" id=\"fsHateDiv\" class:icons3-text-2={widgetEmotIconType === \"2\"}>Hate</p>\r\n </div>\r\n\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 2, \"dislike\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[1]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[1]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n\r\n <p class=\"fsReactionText\" id=\"fsDislikeDiv\" class:icons3-text={widgetEmotIconType === \"2\"}>Dislike</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 3, \"neutral\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[2]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[2]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n\r\n <p class=\"fsReactionText\" id=\"fsNeutralDiv\">Neutral</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 4, \"like\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[3]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[3]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n <p class=\"fsReactionText\" id=\"fsLikeDiv\" class:icons3-text={widgetEmotIconType === \"2\"}>Like</p>\r\n </div>\r\n <div class=\"fsIconTextCont\">\r\n <div class=\"fsReactionIcon\" on:click={() => openComment(2, 5, \"love\")}>\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[4]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[4]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n <p class=\"fsReactionText\" id=\"fsLoveDiv\" class:icons3-text-2={widgetEmotIconType === \"2\"}>Love</p>\r\n </div>\r\n </div>\r\n\r\n <div class={wgType === 0 ? \"fsTextAreaCont\" : \"fsTextAreaCont-qa-view\"}>\r\n <div class=\"fsPointerDiv\" id=\"fsPointer\" />\r\n <textarea\r\n class=\"fsTextArea\"\r\n placeholder={widgetPlaceholder}\r\n on:keyup={() => commentHandler()}\r\n />\r\n </div>\r\n\r\n <div class=\"fsFooter\">\r\n {#if buttonState == false}\r\n <button class=\"fsCommentButtonContDisable\" disabled>\r\n <p class=\"fsCommentButtonTxtDisable\">Send</p>\r\n </button>\r\n {:else if buttonState == true}\r\n <button\r\n class=\"fsSendButtonContCommentComp\"\r\n on:click={() => openEmailCont(3)}\r\n >\r\n <p class=\"fsSendButtonCommentComponent\">Send</p>\r\n </button>\r\n {/if}\r\n </div>\r\n </div>\r\n{:else if widgetComponent === 3}\r\n <div class=\"fsEmailContainer\">\r\n <div id=\"fsEmailText\">\r\n {widgetEmailReqMsg}\r\n </div>\r\n <div id=\"fsEmailInputCont\">\r\n <input\r\n type=\"text\"\r\n id=\"fsEmailTextArea\"\r\n placeholder=\"email@domain.com\"\r\n on:keyup={() => emailHandler()}\r\n />\r\n </div>\r\n <div class=\"fsEmailFooter\">\r\n <p\r\n id=\"fsSkipText\"\r\n on:click={() =>\r\n closeHandler(email, comment, reactionType, questionAnswer)}\r\n >\r\n <u>Skip</u>\r\n </p>\r\n {#if buttonState == false}\r\n <button class=\"fsCommentButtonContDisable\" disabled>\r\n <p class=\"fsCommentButtonTxtDisable\">Send</p>\r\n </button>\r\n {:else if buttonState == true}\r\n <button\r\n class=\"fsSendButtonContCommentComp\"\r\n on:click={() =>\r\n closeHandler(email, comment, reactionType, questionAnswer)}\r\n on:click={() => endEmailInterval()}\r\n >\r\n <p class=\"fsSendButtonCommentComponent\">Send</p>\r\n </button>\r\n {/if}\r\n </div>\r\n </div>\r\n{/if}\r\n","export { identity as linear } from '../internal/index.mjs';\n\n/*\nAdapted from https://github.com/mattdesl\nDistributed under MIT License https://github.com/mattdesl/eases/blob/master/LICENSE.md\n*/\nfunction backInOut(t) {\n const s = 1.70158 * 1.525;\n if ((t *= 2) < 1)\n return 0.5 * (t * t * ((s + 1) * t - s));\n return 0.5 * ((t -= 2) * t * ((s + 1) * t + s) + 2);\n}\nfunction backIn(t) {\n const s = 1.70158;\n return t * t * ((s + 1) * t - s);\n}\nfunction backOut(t) {\n const s = 1.70158;\n return --t * t * ((s + 1) * t + s) + 1;\n}\nfunction bounceOut(t) {\n const a = 4.0 / 11.0;\n const b = 8.0 / 11.0;\n const c = 9.0 / 10.0;\n const ca = 4356.0 / 361.0;\n const cb = 35442.0 / 1805.0;\n const cc = 16061.0 / 1805.0;\n const t2 = t * t;\n return t < a\n ? 7.5625 * t2\n : t < b\n ? 9.075 * t2 - 9.9 * t + 3.4\n : t < c\n ? ca * t2 - cb * t + cc\n : 10.8 * t * t - 20.52 * t + 10.72;\n}\nfunction bounceInOut(t) {\n return t < 0.5\n ? 0.5 * (1.0 - bounceOut(1.0 - t * 2.0))\n : 0.5 * bounceOut(t * 2.0 - 1.0) + 0.5;\n}\nfunction bounceIn(t) {\n return 1.0 - bounceOut(1.0 - t);\n}\nfunction circInOut(t) {\n if ((t *= 2) < 1)\n return -0.5 * (Math.sqrt(1 - t * t) - 1);\n return 0.5 * (Math.sqrt(1 - (t -= 2) * t) + 1);\n}\nfunction circIn(t) {\n return 1.0 - Math.sqrt(1.0 - t * t);\n}\nfunction circOut(t) {\n return Math.sqrt(1 - --t * t);\n}\nfunction cubicInOut(t) {\n return t < 0.5 ? 4.0 * t * t * t : 0.5 * Math.pow(2.0 * t - 2.0, 3.0) + 1.0;\n}\nfunction cubicIn(t) {\n return t * t * t;\n}\nfunction cubicOut(t) {\n const f = t - 1.0;\n return f * f * f + 1.0;\n}\nfunction elasticInOut(t) {\n return t < 0.5\n ? 0.5 *\n Math.sin(((+13.0 * Math.PI) / 2) * 2.0 * t) *\n Math.pow(2.0, 10.0 * (2.0 * t - 1.0))\n : 0.5 *\n Math.sin(((-13.0 * Math.PI) / 2) * (2.0 * t - 1.0 + 1.0)) *\n Math.pow(2.0, -10.0 * (2.0 * t - 1.0)) +\n 1.0;\n}\nfunction elasticIn(t) {\n return Math.sin((13.0 * t * Math.PI) / 2) * Math.pow(2.0, 10.0 * (t - 1.0));\n}\nfunction elasticOut(t) {\n return (Math.sin((-13.0 * (t + 1.0) * Math.PI) / 2) * Math.pow(2.0, -10.0 * t) + 1.0);\n}\nfunction expoInOut(t) {\n return t === 0.0 || t === 1.0\n ? t\n : t < 0.5\n ? +0.5 * Math.pow(2.0, 20.0 * t - 10.0)\n : -0.5 * Math.pow(2.0, 10.0 - t * 20.0) + 1.0;\n}\nfunction expoIn(t) {\n return t === 0.0 ? t : Math.pow(2.0, 10.0 * (t - 1.0));\n}\nfunction expoOut(t) {\n return t === 1.0 ? t : 1.0 - Math.pow(2.0, -10.0 * t);\n}\nfunction quadInOut(t) {\n t /= 0.5;\n if (t < 1)\n return 0.5 * t * t;\n t--;\n return -0.5 * (t * (t - 2) - 1);\n}\nfunction quadIn(t) {\n return t * t;\n}\nfunction quadOut(t) {\n return -t * (t - 2.0);\n}\nfunction quartInOut(t) {\n return t < 0.5\n ? +8.0 * Math.pow(t, 4.0)\n : -8.0 * Math.pow(t - 1.0, 4.0) + 1.0;\n}\nfunction quartIn(t) {\n return Math.pow(t, 4.0);\n}\nfunction quartOut(t) {\n return Math.pow(t - 1.0, 3.0) * (1.0 - t) + 1.0;\n}\nfunction quintInOut(t) {\n if ((t *= 2) < 1)\n return 0.5 * t * t * t * t * t;\n return 0.5 * ((t -= 2) * t * t * t * t + 2);\n}\nfunction quintIn(t) {\n return t * t * t * t * t;\n}\nfunction quintOut(t) {\n return --t * t * t * t * t + 1;\n}\nfunction sineInOut(t) {\n return -0.5 * (Math.cos(Math.PI * t) - 1);\n}\nfunction sineIn(t) {\n const v = Math.cos(t * Math.PI * 0.5);\n if (Math.abs(v) < 1e-14)\n return 1;\n else\n return 1 - v;\n}\nfunction sineOut(t) {\n return Math.sin((t * Math.PI) / 2);\n}\n\nexport { backIn, backInOut, backOut, bounceIn, bounceInOut, bounceOut, circIn, circInOut, circOut, cubicIn, cubicInOut, cubicOut, elasticIn, elasticInOut, elasticOut, expoIn, expoInOut, expoOut, quadIn, quadInOut, quadOut, quartIn, quartInOut, quartOut, quintIn, quintInOut, quintOut, sineIn, sineInOut, sineOut };\n","import { cubicInOut, linear, cubicOut } from '../easing/index.mjs';\nimport { is_function, assign } from '../internal/index.mjs';\n\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\n\nfunction blur(node, { delay = 0, duration = 400, easing = cubicInOut, amount = 5, opacity = 0 } = {}) {\n const style = getComputedStyle(node);\n const target_opacity = +style.opacity;\n const f = style.filter === 'none' ? '' : style.filter;\n const od = target_opacity * (1 - opacity);\n return {\n delay,\n duration,\n easing,\n css: (_t, u) => `opacity: ${target_opacity - (od * u)}; filter: ${f} blur(${u * amount}px);`\n };\n}\nfunction fade(node, { delay = 0, duration = 400, easing = linear } = {}) {\n const o = +getComputedStyle(node).opacity;\n return {\n delay,\n duration,\n easing,\n css: t => `opacity: ${t * o}`\n };\n}\nfunction fly(node, { delay = 0, duration = 400, easing = cubicOut, x = 0, y = 0, opacity = 0 } = {}) {\n const style = getComputedStyle(node);\n const target_opacity = +style.opacity;\n const transform = style.transform === 'none' ? '' : style.transform;\n const od = target_opacity * (1 - opacity);\n return {\n delay,\n duration,\n easing,\n css: (t, u) => `\n\t\t\ttransform: ${transform} translate(${(1 - t) * x}px, ${(1 - t) * y}px);\n\t\t\topacity: ${target_opacity - (od * u)}`\n };\n}\nfunction slide(node, { delay = 0, duration = 400, easing = cubicOut } = {}) {\n const style = getComputedStyle(node);\n const opacity = +style.opacity;\n const height = parseFloat(style.height);\n const padding_top = parseFloat(style.paddingTop);\n const padding_bottom = parseFloat(style.paddingBottom);\n const margin_top = parseFloat(style.marginTop);\n const margin_bottom = parseFloat(style.marginBottom);\n const border_top_width = parseFloat(style.borderTopWidth);\n const border_bottom_width = parseFloat(style.borderBottomWidth);\n return {\n delay,\n duration,\n easing,\n css: t => 'overflow: hidden;' +\n `opacity: ${Math.min(t * 20, 1) * opacity};` +\n `height: ${t * height}px;` +\n `padding-top: ${t * padding_top}px;` +\n `padding-bottom: ${t * padding_bottom}px;` +\n `margin-top: ${t * margin_top}px;` +\n `margin-bottom: ${t * margin_bottom}px;` +\n `border-top-width: ${t * border_top_width}px;` +\n `border-bottom-width: ${t * border_bottom_width}px;`\n };\n}\nfunction scale(node, { delay = 0, duration = 400, easing = cubicOut, start = 0, opacity = 0 } = {}) {\n const style = getComputedStyle(node);\n const target_opacity = +style.opacity;\n const transform = style.transform === 'none' ? '' : style.transform;\n const sd = 1 - start;\n const od = target_opacity * (1 - opacity);\n return {\n delay,\n duration,\n easing,\n css: (_t, u) => `\n\t\t\ttransform: ${transform} scale(${1 - (sd * u)});\n\t\t\topacity: ${target_opacity - (od * u)}\n\t\t`\n };\n}\nfunction draw(node, { delay = 0, speed, duration, easing = cubicInOut } = {}) {\n let len = node.getTotalLength();\n const style = getComputedStyle(node);\n if (style.strokeLinecap !== 'butt') {\n len += parseInt(style.strokeWidth);\n }\n if (duration === undefined) {\n if (speed === undefined) {\n duration = 800;\n }\n else {\n duration = len / speed;\n }\n }\n else if (typeof duration === 'function') {\n duration = duration(len);\n }\n return {\n delay,\n duration,\n easing,\n css: (t, u) => `stroke-dasharray: ${t * len} ${u * len}`\n };\n}\nfunction crossfade(_a) {\n var { fallback } = _a, defaults = __rest(_a, [\"fallback\"]);\n const to_receive = new Map();\n const to_send = new Map();\n function crossfade(from, node, params) {\n const { delay = 0, duration = d => Math.sqrt(d) * 30, easing = cubicOut } = assign(assign({}, defaults), params);\n const to = node.getBoundingClientRect();\n const dx = from.left - to.left;\n const dy = from.top - to.top;\n const dw = from.width / to.width;\n const dh = from.height / to.height;\n const d = Math.sqrt(dx * dx + dy * dy);\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n const opacity = +style.opacity;\n return {\n delay,\n duration: is_function(duration) ? duration(d) : duration,\n easing,\n css: (t, u) => `\n\t\t\t\topacity: ${t * opacity};\n\t\t\t\ttransform-origin: top left;\n\t\t\t\ttransform: ${transform} translate(${u * dx}px,${u * dy}px) scale(${t + (1 - t) * dw}, ${t + (1 - t) * dh});\n\t\t\t`\n };\n }\n function transition(items, counterparts, intro) {\n return (node, params) => {\n items.set(params.key, {\n rect: node.getBoundingClientRect()\n });\n return () => {\n if (counterparts.has(params.key)) {\n const { rect } = counterparts.get(params.key);\n counterparts.delete(params.key);\n return crossfade(rect, node, params);\n }\n // if the node is disappearing altogether\n // (i.e. wasn't claimed by the other list)\n // then we need to supply an outro\n items.delete(params.key);\n return fallback && fallback(node, params, intro);\n };\n };\n }\n return [\n transition(to_send, to_receive, false),\n transition(to_receive, to_send, true)\n ];\n}\n\nexport { blur, crossfade, draw, fade, fly, scale, slide };\n","<script>\r\n import MainIcon from \"./Icons/mainIcon.svelte\";\r\n import ReactionPage from \"./widgetPages/reactionPage.svelte\";\r\n export let feedback;\r\n export let widgetPosition;\r\n import { fly } from \"svelte/transition\";\r\n import \"../src/widgetPages/App.css\";\r\n import { scale } from \"svelte/transition\";\r\n import { onMount } from \"svelte\";\r\n\r\n $: widgetId = feedback.id;\r\n $: widgetColor = feedback.wgAccentColor;\r\n $: widgetDisplayMode = feedback.wgDisplayMode;\r\n $: widgetType = feedback.wgType;\r\n $: widgetLanguage = feedback.wgLanguage;\r\n $: widgetAlternateColor = feedback.wgAlternateColor;\r\n $: wgPosition = feedback.wgPosition;\r\n $: widgetThanksMsg = feedback.wgThanksMsg;\r\n $: WidgetTriggers = feedback.wgTriggers;\r\n $: document.documentElement.style.setProperty(\"--widgetColor\", widgetColor);\r\n $: transition = widgetDisplayMode === 1 ? scale : fly;\r\n\r\n let widgetTextColor = \"\";\r\n let iconColor = \"\";\r\n let widgetName = \"Feedback\";\r\n $: if (widgetLanguage == \"en\") {\r\n widgetName = \" Feedback\";\r\n } else if (widgetLanguage == \"ar\") {\r\n widgetName = \"رأي\";\r\n } else {\r\n widgetName = \"Rétroaction\";\r\n }\r\n\r\n $: if (widgetAlternateColor === true) {\r\n widgetTextColor = \"white\";\r\n iconColor = \"white\";\r\n } else {\r\n widgetTextColor = \"black\";\r\n iconColor = \"black\";\r\n }\r\n\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetTextColor\",\r\n widgetTextColor,\r\n );\r\n\r\n let wgPositionHorizintal = \"\";\r\n let wgPositionVertical = \"\";\r\n let widgetLeftSideBorder = 0;\r\n let widgetRightSideBorder = 0;\r\n let widgetMarginRight = 0;\r\n let widgetMarginLeft = 0;\r\n let visible = false;\r\n let buttonVisible = true;\r\n let thanksMessageVisible = false;\r\n let inTransitionX = 0;\r\n let outTransitionX = 0;\r\n let positionState = \"\";\r\n\r\n onMount(() => {\r\n if (widgetDisplayMode === 1 && WidgetTriggers.type !== 0) {\r\n buttonVisible = false;\r\n visible = true;\r\n }\r\n });\r\n\r\n if (widgetPosition == \"fixed\") {\r\n positionState = \"fixed\";\r\n } else {\r\n positionState = \"absolute\";\r\n }\r\n $: document.documentElement.style.setProperty(\r\n \"--positionState\",\r\n positionState,\r\n );\r\n $: if (Number(wgPosition) == 0) {\r\n wgPositionHorizintal = \"center\";\r\n wgPositionVertical = \"row-reverse\";\r\n widgetLeftSideBorder = 5;\r\n widgetRightSideBorder = 0;\r\n widgetMarginRight = 30;\r\n widgetMarginLeft = 0;\r\n inTransitionX = -100;\r\n outTransitionX = 20;\r\n } else if (Number(wgPosition) == 1) {\r\n wgPositionHorizintal = \"center\";\r\n wgPositionVertical = \"row\";\r\n widgetLeftSideBorder = 0;\r\n widgetRightSideBorder = 5;\r\n widgetMarginRight = 0;\r\n widgetMarginLeft = 30;\r\n inTransitionX = 100;\r\n outTransitionX = -20;\r\n } else if (Number(wgPosition) == 2) {\r\n wgPositionHorizintal = \"flex-end\";\r\n wgPositionVertical = \"row-reverse\";\r\n widgetLeftSideBorder = 5;\r\n widgetMarginRight = 30;\r\n widgetMarginLeft = 0;\r\n inTransitionX = -100;\r\n outTransitionX = 20;\r\n } else if (Number(wgPosition) == 3) {\r\n wgPositionHorizintal = \"flex-end\";\r\n wgPositionVertical = \"row\";\r\n widgetLeftSideBorder = 0;\r\n widgetRightSideBorder = 5;\r\n widgetMarginRight = 0;\r\n widgetMarginLeft = 30;\r\n inTransitionX = 100;\r\n outTransitionX = -20;\r\n }\r\n $: document.documentElement.style.setProperty(\r\n \"--wgPositionHorizintal\",\r\n wgPositionHorizintal,\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--wgPositionVertical\",\r\n wgPositionVertical,\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetLeftSideBorder\",\r\n widgetLeftSideBorder + \"px\",\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetRightSideBorder\",\r\n widgetRightSideBorder + \"px\",\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetMarginRight\",\r\n widgetMarginRight + \"px\",\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetMarginLeft\",\r\n widgetMarginLeft + \"px\",\r\n );\r\n\r\n $: transitionInParams =\r\n widgetDisplayMode === 1\r\n ? { duration: 500 }\r\n : { x: inTransitionX, duration: 500 };\r\n $: transitionOutParams =\r\n widgetDisplayMode === 1\r\n ? { duration: 500 }\r\n : { x: outTransitionX, duration: 300 };\r\n\r\n let userClosedWidget = 0;\r\n let emailx = \"\";\r\n let commentx = \"\";\r\n let reactionTypex = \"\";\r\n const closeOne = (email, comment, reactionType, questionAnswer) => {\r\n let widgetResponse;\r\n if (widgetType === 0) {\r\n widgetResponse = {\r\n id: widgetId,\r\n email: email,\r\n comment: comment,\r\n reaction: Number(reactionType),\r\n type: widgetType,\r\n };\r\n } else {\r\n widgetResponse = {\r\n id: widgetId,\r\n email: email,\r\n questionAnswer: questionAnswer,\r\n type: widgetType,\r\n };\r\n }\r\n\r\n let event = new CustomEvent(\"fbEvent\", {\r\n bubbles: false,\r\n detail: widgetResponse,\r\n });\r\n\r\n window.dispatchEvent(event);\r\n openThanksMessage();\r\n };\r\n\r\n // const closeBeforeFinsihing = (email, comment, reactionType) => {\r\n // emailx = email;\r\n // commentx = comment;\r\n // reactionTypex = Number(reactionType);\r\n // let widgetResponse = {\r\n // email: email,\r\n // comment: comment,\r\n // reaction: reactionType,\r\n // };\r\n // if (userClosedWidget == 1) {\r\n // console.log(\"hi\", widgetResponse);\r\n // let event = new CustomEvent(\"fbEvent\", {\r\n // bubbles: false,\r\n // detail: widgetResponse,\r\n // });\r\n // window.dispatchEvent(event);\r\n // console.log(widgetResponse);\r\n // }\r\n // };\r\n\r\n const openThanksMessage = () => {\r\n visible = !visible;\r\n thanksMessageVisible = !thanksMessageVisible;\r\n };\r\n\r\n const closeThanksMessage = () => {\r\n thanksMessageVisible = !thanksMessageVisible;\r\n setTimeout(function () {\r\n buttonVisible = !buttonVisible;\r\n }, 350);\r\n };\r\n\r\n const openWidget = () => {\r\n visible = !visible;\r\n buttonVisible = !buttonVisible;\r\n };\r\n\r\n const closeWidget = () => {\r\n userClosedWidget = 1;\r\n if (reactionTypex != 0) {\r\n closeBeforeFinsihing(emailx, commentx, reactionTypex);\r\n }\r\n visible = !visible;\r\n setTimeout(function () {\r\n buttonVisible = !buttonVisible;\r\n }, 350);\r\n };\r\n</script>\r\n\r\n<fsContainer\r\n class={!buttonVisible && widgetDisplayMode == 1 ? \"modal\" : \"side\"}\r\n style=\"position: 10px\"\r\n dir=\"ltr\"\r\n>\r\n {#if buttonVisible}\r\n <div class=\"fsWidget\" on:click={openWidget}>\r\n <div id=\"fsFeedbackTxt\">{widgetName}</div>\r\n <div id=\"fsMainIcon\">\r\n <MainIcon bind:fill={iconColor} />\r\n </div>\r\n </div>\r\n {/if}\r\n\r\n {#if visible}\r\n <div\r\n class=\"fsCont\"\r\n class:fsContModal={widgetDisplayMode === 1}\r\n in:transition={transitionInParams}\r\n >\r\n <div class=\"fsCloseCont\" on:click={closeWidget}>\r\n <p id=\"fsCloseIcon\">X</p>\r\n </div>\r\n <ReactionPage\r\n closeHandler={closeOne}\r\n bind:feedbackData={feedback}\r\n bind:wgType={widgetType}\r\n />\r\n </div>\r\n {/if}\r\n {#if thanksMessageVisible}\r\n <div class=\"fsThanksMessageCont\" out:transition={transitionOutParams}>\r\n <div class=\"fsCloseCont\" on:click={closeThanksMessage}>\r\n <p id=\"fsCloseIcon\">X</p>\r\n </div>\r\n <div class=\"thanks-txt\">\r\n {widgetThanksMsg}\r\n </div>\r\n </div>\r\n {/if}\r\n</fsContainer>\r\n","import App from './App.svelte';\r\n\r\nexport function feedbackCreator(response, htmlElement) {\r\n\tlet view;\r\n\tlet position;\r\n\tif (htmlElement == null || htmlElement == undefined) {\r\n\t\tview = document.body\r\n\t\tposition = 'fixed';\r\n\t}\r\n\telse {\r\n\t\tview = htmlElement;\r\n\t\tposition = 'absolute';\r\n\t}\r\n\tconst app = new App({\r\n\t\ttarget: view,\r\n\t\tprops: {\r\n\t\t\tfeedback: response,\r\n\t\t\twidgetPosition: position,\r\n\t\t}\r\n\t});\r\n\r\n\treturn app;\r\n}\r\n\r\n// let widget ={id: 1,\r\n// \twgStatus: 1,\r\n// \twgName: \"ask\",\r\n// \twgDescription: \"test\",\r\n// \twgCrtDt: \"2021-12-05 10:49:14\",\r\n// \twgResponses: null,\r\n// \twgUpdTime: null,\r\n// \tSiteId: 98,\r\n// \tUserId: 262,\r\n// \twgLanguage: \"en\",\r\n// \twgPosition: \"0\",\r\n// \twgAccentColor: \"#51797b\",\r\n// \twgAlternateColor: true,\r\n// \twgQuestion: \"How would you rate your experience?\" ,\r\n// \twgUserScreenshot: 1,\r\n// \twgEmailReqMsg: \"We may wish to follow up. Enter your email if you're happy for us to contact you.\" ,\r\n// \twgEmailReqActivation: 1,\r\n// \twgAdditionalMsg: \"Heads up! This is for feedback only. Need help? Contact us via our [link to Help Center].\",\r\n// \twgAdditionalMsgActivation: 1,\r\n// \twgThanksMsg: \"Thank you for sharing your feedback with us\",\r\n// \twgThanksMsgActivation: 1,\r\n// \twgDesktop: 1,\r\n// \twgPhone: 1,\r\n// \twgTablet:1,\r\n// \twgPages: [{\"id\":0,\"name\":\"*\"}],\r\n// \twgWidgetToUsers: 0,\r\n// \twgPercentage:100,\r\n// \twgEmail: \"abd@gmail.com\",\r\n// \twgWidgetToAllPages: 1,\r\n// \twgReactionStyle: 0,\r\n// \twgResponseViaEmail: 1}\r\n// feedbackCreator(widget,null);\r\n"],"names":["noop","identity","x","assign","tar","src","k","run","fn","blank_object","Object","create","run_all","fns","forEach","is_function","thing","safe_not_equal","a","b","exclude_internal_props","props","result","is_client","window","now","performance","Date","raf","cb","requestAnimationFrame","tasks","Set","run_tasks","task","c","delete","f","size","loop","callback","promise","Promise","fulfill","add","abort","append","target","node","appendChild","get_root_for_style","document","root","getRootNode","ownerDocument","host","append_empty_stylesheet","style_element","element","style","head","append_stylesheet","sheet","insert","anchor","insertBefore","detach","parentNode","removeChild","name","createElement","svg_element","createElementNS","text","data","createTextNode","space","empty","listen","event","handler","options","addEventListener","removeEventListener","attr","attribute","value","removeAttribute","getAttribute","setAttribute","set_data","wholeText","set_style","key","important","removeProperty","setProperty","toggle_class","toggle","classList","managed_styles","Map","current_component","active","create_rule","duration","delay","ease","uid","step","keyframes","p","t","rule","str","hash","i","length","charCodeAt","doc","stylesheet","rules","get","info","set","create_style_information","insertRule","cssRules","animation","delete_rule","previous","split","next","filter","anim","indexOf","deleted","join","deleteRule","clear","set_current_component","component","onMount","Error","get_current_component","$$","on_mount","push","dirty_components","binding_callbacks","render_callbacks","flush_callbacks","resolved_promise","resolve","update_scheduled","add_render_callback","add_flush_callback","seen_callbacks","flushidx","flush","saved_component","update","pop","has","fragment","before_update","dirty","ctx","after_update","wait","then","dispatch","direction","kind","dispatchEvent","type","detail","bubbles","e","createEvent","initCustomEvent","custom_event","outroing","outros","group_outros","r","check_outros","transition_in","block","local","transition_out","o","d","null_transition","bind","index","undefined","bound","create_component","mount_component","customElement","on_destroy","m","new_on_destroy","map","destroy_component","detaching","make_dirty","fill","init","instance","create_fragment","not_equal","append_styles","parent_component","on_disconnect","context","callbacks","skip_bound","ready","ret","rest","hydrate","nodes","Array","from","childNodes","children","l","intro","SvelteComponent","$destroy","this","$on","splice","$set","$$props","obj","$$set","keys","icons_1","icons_2","icons_3","svg","class","box","focusable","emotIconType","width","height","emotIcons","displayIcon","find","styleInject","css","ref","insertAt","getElementsByTagName","firstChild","styleSheet","cssText","checkTextAreaInterval","feedbackData","wgType","reactionNames","changingReactionNames","reactionType","comment","email","questionAnswer","reactionName","reactionState","count","closeHandler","closeHandlerBeforeFinishing","commentHandler","input","querySelector","buttonState","emailHandler","test","getElementById","openComment","state","rating","prevName","prevState","widgetComponent","String","hateDisplay","dislikeDisplay","neutralDisplay","likeDisplay","loveDisplay","pointerMargin","questionHandler","question","openEmailCont","clearInterval","openEmailView","endEmailInterval","checkEmailAreaInterval","buttonColor","wgAccentColor","widgetQuestion","wgQuestion","widgetEmailReqMsg","wgEmailReqMsg","widgetPlaceholder","wgFeedbackPlaceholder","widgetEmotIconType","wgReactionStyle","documentElement","cubicOut","fly","easing","y","opacity","getComputedStyle","target_opacity","transform","od","u","scale","start","sd","_t","params","animation_name","config","running","cleanup","go","tick","start_time","end_time","started","invalidate","end","group","reset","feedback","widgetPosition","widgetTextColor","iconColor","widgetName","wgPositionHorizintal","wgPositionVertical","widgetLeftSideBorder","widgetRightSideBorder","widgetMarginRight","widgetMarginLeft","visible","buttonVisible","thanksMessageVisible","inTransitionX","outTransitionX","positionState","widgetDisplayMode","WidgetTriggers","openThanksMessage","widgetId","id","widgetColor","wgDisplayMode","widgetType","widgetLanguage","wgLanguage","widgetAlternateColor","wgAlternateColor","wgPosition","widgetThanksMsg","wgThanksMsg","wgTriggers","transition","Number","transitionInParams","transitionOutParams","widgetResponse","reaction","CustomEvent","setTimeout","feedbackCreator","response","htmlElement","view","position","body","App"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../node_modules/svelte/internal/index.mjs","../src/Icons/mainIcon.svelte","../src/Icons/reactionSvgs/icons.js","../src/Icons/reactionIcons.svelte","../node_modules/style-inject/dist/style-inject.es.js","../src/widgetPages/reactionPage.svelte","../node_modules/svelte/easing/index.mjs","../node_modules/svelte/transition/index.mjs","../src/App.svelte","../src/main.js"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\nfunction is_promise(value) {\n return value && typeof value === 'object' && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not <head>\n let children = target.childNodes;\n // If target is <head>, there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element.sheet;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentElement !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n node.parentNode.removeChild(node);\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration();\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index - start_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.wholeText !== data)\n text.data = data;\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n if (value === null) {\n node.style.removeProperty(key);\n }\n else {\n node.style.setProperty(key, value, important ? 'important' : '');\n }\n}\nfunction select_option(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n select.selectedIndex = -1; // no option should be selected\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked') || select.options[0];\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}</script>\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, bubbles = false) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, false, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nclass HtmlTag {\n constructor() {\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n this.e = element(target.nodeName);\n this.t = target;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes) {\n super();\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\n\n// we need to store the information for multiple documents because a Svelte application could also contain iframes\n// https://github.com/sveltejs/svelte/issues/3624\nconst managed_styles = new Map();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_style_information(doc, node) {\n const info = { stylesheet: append_empty_stylesheet(node), rules: {} };\n managed_styles.set(doc, info);\n return info;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n const { stylesheet, rules } = managed_styles.get(doc) || create_style_information(doc, node);\n if (!rules[name]) {\n rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n managed_styles.forEach(info => {\n const { stylesheet } = info;\n let i = stylesheet.cssRules.length;\n while (i--)\n stylesheet.deleteRule(i);\n info.rules = {};\n });\n managed_styles.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail);\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n }\n };\n}\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n}\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nconst render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\n// flush() calls callbacks in this order:\n// 1. All beforeUpdate callbacks, in order: parents before children\n// 2. All bind:this callbacks, in reverse order: children before parents.\n// 3. All afterUpdate callbacks, in order: parents before children. EXCEPT\n// for afterUpdates called during the initial onMount, which are called in\n// reverse order: children before parents.\n// Since callbacks might update component values, which could trigger another\n// call to flush(), the following steps guard against this:\n// 1. During beforeUpdate, any updated components will be added to the\n// dirty_components array and will cause a reentrant call to flush(). Because\n// the flush index is kept outside the function, the reentrant call will pick\n// up where the earlier call left off and go through all dirty components. The\n// current_component value is saved and restored so that the reentrant call will\n// not interfere with the \"parent\" flush() call.\n// 2. bind:this callbacks cannot trigger new flush() calls.\n// 3. During afterUpdate, any updated components will NOT have their afterUpdate\n// callback called a second time; the seen_callbacks set, outside the flush()\n// function, guarantees this behavior.\nconst seen_callbacks = new Set();\nlet flushidx = 0; // Do *not* move this inside the flush() function\nfunction flush() {\n const saved_component = current_component;\n do {\n // first, call beforeUpdate functions\n // and update components\n while (flushidx < dirty_components.length) {\n const component = dirty_components[flushidx];\n flushidx++;\n set_current_component(component);\n update(component.$$);\n }\n set_current_component(null);\n dirty_components.length = 0;\n flushidx = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n seen_callbacks.clear();\n set_current_component(saved_component);\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n let config = fn(node, params);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config();\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n let config = fn(node, params);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n let config = fn(node, params);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n block.p(child_ctx, dirty);\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\n// source: https://html.spec.whatwg.org/multipage/indices.html\nconst boolean_attributes = new Set([\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n]);\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, attrs_to_add) {\n const attributes = Object.assign({}, ...args);\n if (attrs_to_add) {\n const classes_to_add = attrs_to_add.classes;\n const styles_to_add = attrs_to_add.styles;\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n if (styles_to_add) {\n if (attributes.style == null) {\n attributes.style = style_object_to_string(styles_to_add);\n }\n else {\n attributes.style = style_object_to_string(merge_ssr_styles(attributes.style, styles_to_add));\n }\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nfunction merge_ssr_styles(style_attribute, style_directive) {\n const style_object = {};\n for (const individual_style of style_attribute.split(';')) {\n const colon_index = individual_style.indexOf(':');\n const name = individual_style.slice(0, colon_index).trim();\n const value = individual_style.slice(colon_index + 1).trim();\n if (!name)\n continue;\n style_object[name] = value;\n }\n for (const name in style_directive) {\n const value = style_directive[name];\n if (value) {\n style_object[name] = value;\n }\n else {\n delete style_object[name];\n }\n }\n return style_object;\n}\nconst escaped = {\n '\"': '"',\n \"'\": ''',\n '&': '&',\n '<': '<',\n '>': '>'\n};\nfunction escape(html) {\n return String(html).replace(/[\"'&<>]/g, match => escaped[match]);\n}\nfunction escape_attribute_value(value) {\n return typeof value === 'string' ? escape(value) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n return ` ${name}${value === true && boolean_attributes.has(name) ? '' : `=${typeof value === 'string' ? JSON.stringify(escape(value)) : `\"${value}\"`}`}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\nfunction style_object_to_string(style_object) {\n return Object.keys(style_object)\n .filter(key => style_object[key])\n .map(key => `${key}: ${style_object[key]};`)\n .join(' ');\n}\nfunction add_styles(style_object) {\n const styles = style_object_to_string(style_object);\n return styles ? ` style=\"${styles}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, on_mount, on_destroy, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = on_mount.map(run).filter(is_function);\n if (on_destroy) {\n on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: null,\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.46.4' }, detail), true));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * <script lang=\"ts\">\n * \timport { MyComponent } from \"component-library\";\n * </script>\n * <MyComponent foo={'bar'} />\n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_location, add_render_callback, add_resize_listener, add_styles, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, component_subscribe, compute_rest_props, compute_slots, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, escaped, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, identity, init, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, listen, listen_dev, loop, loop_guard, merge_ssr_styles, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_data, set_data_dev, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, spread, src_url_equal, start_hydrating, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_each_argument, validate_each_keys, validate_slots, validate_store, xlink_attr };\n","<script>\r\n export let fill = \"\";\r\n</script>\r\n<svg\r\n fill={fill}\r\n \r\n\r\n version=\"1.1\"\r\n id=\"Layer_1\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\r\n x=\"0px\"\r\n y=\"0px\"\r\n viewBox=\"0 0 458 458\"\r\n style=\"enable-background:new 0 0 458 458;\"\r\n xml:space=\"preserve\"\r\n ><g\r\n ><g\r\n ><path\r\n d=\"M428,41.534H30c-16.569,0-30,13.431-30,30v252c0,16.568,13.432,30,30,30h132.1l43.942,52.243 c5.7,6.777,14.103,10.69,22.959,10.69c8.856,0,17.258-3.912,22.959-10.69l43.942-52.243H428c16.568,0,30-13.432,30-30v-252 C458,54.965,444.568,41.534,428,41.534z M323.916,281.534H82.854c-8.284,0-15-6.716-15-15s6.716-15,15-15h241.062 c8.284,0,15,6.716,15,15S332.2,281.534,323.916,281.534z M67.854,198.755c0-8.284,6.716-15,15-15h185.103c8.284,0,15,6.716,15,15 s-6.716,15-15,15H82.854C74.57,213.755,67.854,207.039,67.854,198.755z M375.146,145.974H82.854c-8.284,0-15-6.716-15-15 s6.716-15,15-15h292.291c8.284,0,15,6.716,15,15C390.146,139.258,383.43,145.974,375.146,145.974z\"\r\n /></g\r\n ></g\r\n ><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g /><g\r\n /></svg\r\n>\r\n","export const icons_1 = [`\r\n <g transform=\"translate(.48)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#EF7C54\" width=\"50\" height=\"50\" rx=\"13.28\"/>\r\n <circle fill=\"#3B3735\" cx=\"7.241\" cy=\"27.929\" r=\"3.107\"/>\r\n <circle fill=\"#3B3735\" cx=\"42.759\" cy=\"27.929\" r=\"3.107\"/>\r\n <path d=\"M31.236 28.764a2.245 2.245 0 0 1 2.002 3.246 9.086 9.086 0 0 1-8.234 4.779 9.104 9.104 0 0 1-8.242-4.779 2.245 2.245 0 0 1 2.002-3.246h12.472zM12.185 22.089a11.515 11.515 0 0 1-.766-.696c-1.036-1.062-2.29-2.803-1.741-4.352.392-1.21 1.81-1.567 2.95-1.488a4.743 4.743 0 0 1 1.793.487c.233.107.46.226.68.357a.33.33 0 0 0 .504-.261 3.046 3.046 0 0 1 1.358-2.611 2.385 2.385 0 0 1 2.906.635c1.21 1.314 1.088 3.133.584 4.726a20.017 20.017 0 0 1-1.34 3.255 8.12 8.12 0 0 1-.975 1.688c-.749.87-1.846.636-2.777.218a13.838 13.838 0 0 1-3.176-1.958zM37.807 22.089c.267-.218.523-.45.766-.696 1.035-1.062 2.289-2.803 1.74-4.352-.391-1.21-1.819-1.567-2.959-1.488a4.787 4.787 0 0 0-1.793.487 7.424 7.424 0 0 0-.678.357.33.33 0 0 1-.505-.261 3.046 3.046 0 0 0-1.358-2.611 2.385 2.385 0 0 0-2.907.635c-1.21 1.314-1.088 3.133-.583 4.726.35 1.122.799 2.211 1.34 3.255.256.6.584 1.167.975 1.688.749.87 1.854.636 2.776.218a13.838 13.838 0 0 0 3.186-1.958z\" fill=\"#3B3735\"/>\r\n</g>\r\n`, `\r\n <g transform=\"translate(.48)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.28\"/>\r\n <circle fill=\"#3B3735\" cx=\"7.241\" cy=\"27.929\" r=\"3.107\"/>\r\n <circle fill=\"#3B3735\" cx=\"42.759\" cy=\"27.929\" r=\"3.107\"/>\r\n <path d=\"M31.236 28.764a2.245 2.245 0 0 1 2.002 3.246 9.086 9.086 0 0 1-8.234 4.779 9.104 9.104 0 0 1-8.242-4.779 2.245 2.245 0 0 1 2.002-3.246h12.472zM12.185 22.089a11.515 11.515 0 0 1-.766-.696c-1.036-1.062-2.29-2.803-1.741-4.352.392-1.21 1.81-1.567 2.95-1.488a4.743 4.743 0 0 1 1.793.487c.233.107.46.226.68.357a.33.33 0 0 0 .504-.261 3.046 3.046 0 0 1 1.358-2.611 2.385 2.385 0 0 1 2.906.635c1.21 1.314 1.088 3.133.584 4.726a20.017 20.017 0 0 1-1.34 3.255 8.12 8.12 0 0 1-.975 1.688c-.749.87-1.846.636-2.777.218a13.838 13.838 0 0 1-3.176-1.958zM37.807 22.089c.267-.218.523-.45.766-.696 1.035-1.062 2.289-2.803 1.74-4.352-.391-1.21-1.819-1.567-2.959-1.488a4.787 4.787 0 0 0-1.793.487 7.424 7.424 0 0 0-.678.357.33.33 0 0 1-.505-.261 3.046 3.046 0 0 0-1.358-2.611 2.385 2.385 0 0 0-2.907.635c-1.21 1.314-1.088 3.133-.583 4.726.35 1.122.799 2.211 1.34 3.255.256.6.584 1.167.975 1.688.749.87 1.854.636 2.776.218a13.838 13.838 0 0 0 3.186-1.958z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.86)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#FDC537\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"14.156\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"35.844\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <path d=\"M32.444 28.1a2.643 2.643 0 0 1 2.37 3.824 10.738 10.738 0 0 1-9.69 5.629 10.738 10.738 0 0 1-9.69-5.63 2.643 2.643 0 0 1 2.36-3.822h14.65z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.86)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"14.156\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <ellipse fill=\"#3B3735\" cx=\"35.844\" cy=\"19.803\" rx=\"2.167\" ry=\"3.656\"/>\r\n <path d=\"M32.444 28.1a2.643 2.643 0 0 1 2.37 3.824 10.738 10.738 0 0 1-9.69 5.629 10.738 10.738 0 0 1-9.69-5.63 2.643 2.643 0 0 1 2.36-3.822h14.65z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.24)\" fill-rule=\"nonzero\" fill=\"gray\">\r\n <rect fill=\"#F59F45\" width=\"50\" height=\"50\" rx=\"12.63\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"21.459\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"21.459\" r=\"2.81\"/>\r\n <path d=\"M40.847 31.351H9.135a.67.67 0 1 1 0-1.33h31.712a.67.67 0 1 1 0 1.33z\" fill=\"#3B3735\"/>\r\n</g>\r\n`\r\n , `\r\n <g transform=\"translate(.24)\" fill-rule=\"nonzero\" fill=\"gray\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"12.63\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"21.459\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"21.459\" r=\"2.81\"/>\r\n <path d=\"M40.847 31.351H9.135a.67.67 0 1 1 0-1.33h31.712a.67.67 0 1 1 0 1.33z\" fill=\"#3B3735\"/>\r\n</g>\r\n`,\r\n `\r\n <g transform=\"translate(.62)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#FEDCAB\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <path d=\"M33.333 34.743a1.762 1.762 0 0 0 1.718-2.211c-1.119-4.158-5.285-7.241-10.324-7.241s-9.206 3.083-10.324 7.24a1.762 1.762 0 0 0 1.718 2.212l6.536-.881a15.178 15.178 0 0 1 3.946 0l6.73.88z\" fill=\"#3B3735\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"18.076\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"18.076\" r=\"2.81\"/>\r\n</g>`\r\n , `\r\n <g transform=\"translate(.62)\" fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.12\"/>\r\n <path d=\"M33.333 34.743a1.762 1.762 0 0 0 1.718-2.211c-1.119-4.158-5.285-7.241-10.324-7.241s-9.206 3.083-10.324 7.24a1.762 1.762 0 0 0 1.718 2.212l6.536-.881a15.178 15.178 0 0 1 3.946 0l6.73.88z\" fill=\"#3B3735\"/>\r\n <circle fill=\"#3B3735\" cx=\"15.169\" cy=\"18.076\" r=\"2.81\"/>\r\n <circle fill=\"#3B3735\" cx=\"34.831\" cy=\"18.076\" r=\"2.81\"/>\r\n</g>`\r\n , `\r\n <g fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"#FEDCAB\" width=\"50\" height=\"50\" rx=\"13.44\"/>\r\n <path d=\"M20.218 23.865a1.144 1.144 0 0 1-.86-.336l-6.114-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.809 1.96h.043z\" fill=\"#3B3735\"/>\r\n <path d=\"M14.104 23.865a1.152 1.152 0 0 1-.817-1.961l6.114-6.115a1.152 1.152 0 0 1 1.626 1.634L14.92 23.53a1.161 1.161 0 0 1-.817.336zM36.352 23.865c-.303 0-.594-.121-.808-.336l-6.115-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.817 1.96z\" fill=\"#3B3735\"/>\r\n <path d=\"M30.246 23.865a1.152 1.152 0 0 1-.86-1.961l6.115-6.115a1.152 1.152 0 0 1 1.625 1.634L31.02 23.53a1.161 1.161 0 0 1-.774.336zM35.604 34.546a6.02 6.02 0 0 1-3.389-1.376c-1.083-.783-1.96-1.075-2.339-.783-.157.15-.296.317-.413.5-.221.34-.484.652-.782.928-1.29 1.092-3.07.791-4.3.146a11.937 11.937 0 0 1-1.299-.86 8.11 8.11 0 0 0-1.35-.808 3.44 3.44 0 0 0-3.363.447l-.387.335c-.417.416-.906.75-1.444.99-1.815.722-3.337-.38-4.558-1.256a6.416 6.416 0 0 0-1.952-1.127 2.116 2.116 0 0 0-2.383 1.307 1.152 1.152 0 0 1-2.193-.696 4.386 4.386 0 0 1 5.16-2.838 8.505 8.505 0 0 1 2.71 1.505c1.169.86 1.78 1.212 2.356.989.281-.146.537-.338.756-.568l.508-.43a5.745 5.745 0 0 1 5.676-.757c.607.285 1.183.631 1.72 1.032.345.245.704.469 1.075.671.585.31 1.367.456 1.72.138a2.58 2.58 0 0 0 .395-.49 4.3 4.3 0 0 1 .86-1.015c.86-.68 2.512-1.11 5.092.757 1.109.808 1.978 1.109 2.373.86.153-.135.289-.288.404-.456.112-.138.215-.267.336-.396a4.807 4.807 0 0 1 7.869 1.72 1.152 1.152 0 1 1-2.202.68 2.52 2.52 0 0 0-3.956-.86l-.232.283c-.242.343-.532.65-.86.912a2.83 2.83 0 0 1-1.608.516z\" fill=\"#3B3735\"/>\r\n</g>`\r\n , `\r\n <g fill-rule=\"nonzero\" fill=\"none\">\r\n <rect fill=\"rgb(223 223 223)\" width=\"50\" height=\"50\" rx=\"13.44\"/>\r\n <path d=\"M20.218 23.865a1.144 1.144 0 0 1-.86-.336l-6.114-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.809 1.96h.043z\" fill=\"#3B3735\"/>\r\n <path d=\"M14.104 23.865a1.152 1.152 0 0 1-.817-1.961l6.114-6.115a1.152 1.152 0 0 1 1.626 1.634L14.92 23.53a1.161 1.161 0 0 1-.817.336zM36.352 23.865c-.303 0-.594-.121-.808-.336l-6.115-6.106a1.155 1.155 0 1 1 1.634-1.634l6.106 6.115a1.152 1.152 0 0 1-.817 1.96z\" fill=\"#3B3735\"/>\r\n <path d=\"M30.246 23.865a1.152 1.152 0 0 1-.86-1.961l6.115-6.115a1.152 1.152 0 0 1 1.625 1.634L31.02 23.53a1.161 1.161 0 0 1-.774.336zM35.604 34.546a6.02 6.02 0 0 1-3.389-1.376c-1.083-.783-1.96-1.075-2.339-.783-.157.15-.296.317-.413.5-.221.34-.484.652-.782.928-1.29 1.092-3.07.791-4.3.146a11.937 11.937 0 0 1-1.299-.86 8.11 8.11 0 0 0-1.35-.808 3.44 3.44 0 0 0-3.363.447l-.387.335c-.417.416-.906.75-1.444.99-1.815.722-3.337-.38-4.558-1.256a6.416 6.416 0 0 0-1.952-1.127 2.116 2.116 0 0 0-2.383 1.307 1.152 1.152 0 0 1-2.193-.696 4.386 4.386 0 0 1 5.16-2.838 8.505 8.505 0 0 1 2.71 1.505c1.169.86 1.78 1.212 2.356.989.281-.146.537-.338.756-.568l.508-.43a5.745 5.745 0 0 1 5.676-.757c.607.285 1.183.631 1.72 1.032.345.245.704.469 1.075.671.585.31 1.367.456 1.72.138a2.58 2.58 0 0 0 .395-.49 4.3 4.3 0 0 1 .86-1.015c.86-.68 2.512-1.11 5.092.757 1.109.808 1.978 1.109 2.373.86.153-.135.289-.288.404-.456.112-.138.215-.267.336-.396a4.807 4.807 0 0 1 7.869 1.72 1.152 1.152 0 1 1-2.202.68 2.52 2.52 0 0 0-3.956-.86l-.232.283c-.242.343-.532.65-.86.912a2.83 2.83 0 0 1-1.608.516z\" fill=\"#3B3735\"/>\r\n</g>`\r\n];\r\n\r\nexport const icons_2 = [\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 35\" fill=\"none\">\r\n <circle cx=\"18.2828\" cy=\"19.1631\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <path d=\"M26.955 21.3302C27.5536 21.3302 28.0449 21.8174 27.9792 22.4124C27.4408 27.291 23.305 31.0858 18.2829 31.0858C13.2609 31.0858 9.12511 27.291 8.58669 22.4124C8.52102 21.8174 9.0129 21.3302 9.61156 21.3302C14.1024 21.3302 18.2829 21.3302 18.2829 21.3302C18.2829 21.3302 22.8513 21.3302 26.955 21.3302Z\" fill=\"#04164D\"/>\r\n <path d=\"M12.657 11.668C12.7219 11.4682 13.0045 11.4682 13.0694 11.668L13.6663 13.5051C13.6953 13.5944 13.7785 13.6549 13.8725 13.6549H15.8041C16.0141 13.6549 16.1015 13.9236 15.9316 14.0471L14.3688 15.1825C14.2928 15.2377 14.261 15.3355 14.2901 15.4248L14.887 17.262C14.9519 17.4617 14.7233 17.6278 14.5534 17.5044L12.9906 16.3689C12.9146 16.3137 12.8117 16.3137 12.7358 16.3689L11.173 17.5044C11.0031 17.6278 10.7745 17.4617 10.8394 17.262L11.4363 15.4248C11.4653 15.3355 11.4335 15.2377 11.3576 15.1825L9.79481 14.0471C9.62491 13.9236 9.71222 13.6549 9.92223 13.6549H11.8539C11.9478 13.6549 12.0311 13.5944 12.0601 13.5051L12.657 11.668Z\" fill=\"#04164D\"/>\r\n <path d=\"M3.00429 0.510883C3.03674 0.411017 3.17802 0.411017 3.21047 0.510883L3.44809 1.2422C3.4626 1.28686 3.50422 1.3171 3.55118 1.3171H4.32013C4.42513 1.3171 4.46879 1.45147 4.38384 1.51319L3.76175 1.96516C3.72376 1.99276 3.70786 2.04169 3.72237 2.08635L3.95999 2.81767C3.99244 2.91753 3.87814 3.00058 3.79319 2.93886L3.17109 2.48688C3.1331 2.45928 3.08166 2.45928 3.04367 2.48688L2.42157 2.93886C2.33662 3.00058 2.22232 2.91753 2.25477 2.81767L2.49239 2.08635C2.5069 2.04169 2.491 1.99276 2.45301 1.96516L1.83092 1.51319C1.74597 1.45147 1.78963 1.3171 1.89463 1.3171H2.66358C2.71054 1.3171 2.75216 1.28686 2.76667 1.2422L3.00429 0.510883Z\" fill=\"#04164D\"/>\r\n <path d=\"M3.44315 4.08027C3.50804 3.88054 3.79061 3.88054 3.85551 4.08027L4.33075 5.5429C4.35977 5.63222 4.44301 5.69269 4.53693 5.69269H6.07482C6.28483 5.69269 6.37215 5.96143 6.20225 6.08487L4.95807 6.98883C4.88208 7.04403 4.85029 7.14188 4.87931 7.23121L5.35455 8.69383C5.41945 8.89357 5.19084 9.05966 5.02094 8.93621L3.77676 8.03226C3.70077 7.97706 3.59788 7.97706 3.5219 8.03226L2.27772 8.93621C2.10781 9.05966 1.87921 8.89357 1.94411 8.69384L2.41935 7.23121C2.44837 7.14188 2.41657 7.04403 2.34059 6.98883L1.09641 6.08487C0.926505 5.96143 1.01382 5.69269 1.22383 5.69269H2.76173C2.85565 5.69269 2.93889 5.63222 2.96791 5.5429L3.44315 4.08027Z\" fill=\"#04164D\"/>\r\n <path d=\"M6.7776 1.6578C6.81654 1.53796 6.98608 1.53797 7.02502 1.6578L7.35883 2.68518C7.37625 2.73877 7.42619 2.77506 7.48254 2.77506L8.56279 2.77506C8.6888 2.77506 8.74119 2.9363 8.63924 3.01037L7.76531 3.64532C7.71972 3.67844 7.70064 3.73715 7.71805 3.79075L8.05187 4.81812C8.09081 4.93796 7.95365 5.03762 7.8517 4.96355L6.97777 4.3286C6.93218 4.29548 6.87044 4.29548 6.82485 4.3286L5.95092 4.96355C5.84898 5.03762 5.71181 4.93796 5.75075 4.81812L6.08457 3.79075C6.10198 3.73715 6.0829 3.67844 6.03731 3.64532L5.16338 3.01037C5.06143 2.9363 5.11383 2.77506 5.23983 2.77506L6.32008 2.77506C6.37643 2.77506 6.42637 2.73877 6.44379 2.68518L6.7776 1.6578Z\" fill=\"#04164D\"/>\r\n <path d=\"M23.4959 11.668C23.5608 11.4682 23.8433 11.4682 23.9082 11.668L24.5051 13.5051C24.5342 13.5944 24.6174 13.6549 24.7113 13.6549H26.643C26.853 13.6549 26.9403 13.9236 26.7704 14.0471L25.2077 15.1825C25.1317 15.2377 25.0999 15.3355 25.1289 15.4248L25.7258 17.262C25.7907 17.4617 25.5621 17.6278 25.3922 17.5044L23.8295 16.3689C23.7535 16.3137 23.6506 16.3137 23.5746 16.3689L22.0119 17.5044C21.842 17.6278 21.6134 17.4617 21.6783 17.262L22.2752 15.4248C22.3042 15.3355 22.2724 15.2377 22.1964 15.1825L20.6337 14.0471C20.4638 13.9236 20.5511 13.6549 20.7611 13.6549H22.6928C22.7867 13.6549 22.8699 13.5944 22.899 13.5051L23.4959 11.668Z\" fill=\"#04164D\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 35\" fill=\"none\">\r\n <circle cx=\"18.2828\" cy=\"19.1631\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <path d=\"M26.955 21.3302C27.5536 21.3302 28.0449 21.8174 27.9792 22.4124C27.4408 27.291 23.305 31.0858 18.2829 31.0858C13.2609 31.0858 9.12511 27.291 8.58669 22.4124C8.52102 21.8174 9.0129 21.3302 9.61156 21.3302C14.1024 21.3302 18.2829 21.3302 18.2829 21.3302C18.2829 21.3302 22.8513 21.3302 26.955 21.3302Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.657 11.668C12.7219 11.4682 13.0045 11.4682 13.0694 11.668L13.6663 13.5051C13.6953 13.5944 13.7785 13.6549 13.8725 13.6549H15.8041C16.0141 13.6549 16.1015 13.9236 15.9316 14.0471L14.3688 15.1825C14.2928 15.2377 14.261 15.3355 14.2901 15.4248L14.887 17.262C14.9519 17.4617 14.7233 17.6278 14.5534 17.5044L12.9906 16.3689C12.9146 16.3137 12.8117 16.3137 12.7358 16.3689L11.173 17.5044C11.0031 17.6278 10.7745 17.4617 10.8394 17.262L11.4363 15.4248C11.4653 15.3355 11.4335 15.2377 11.3576 15.1825L9.79481 14.0471C9.62491 13.9236 9.71222 13.6549 9.92223 13.6549H11.8539C11.9478 13.6549 12.0311 13.5944 12.0601 13.5051L12.657 11.668Z\" fill=\"#3B3735\"/>\r\n <path d=\"M3.00429 0.510883C3.03674 0.411017 3.17802 0.411017 3.21047 0.510883L3.44809 1.2422C3.4626 1.28686 3.50422 1.3171 3.55118 1.3171H4.32013C4.42513 1.3171 4.46879 1.45147 4.38384 1.51319L3.76175 1.96516C3.72376 1.99276 3.70786 2.04169 3.72237 2.08635L3.95999 2.81767C3.99244 2.91753 3.87814 3.00058 3.79319 2.93886L3.17109 2.48688C3.1331 2.45928 3.08166 2.45928 3.04367 2.48688L2.42157 2.93886C2.33662 3.00058 2.22232 2.91753 2.25477 2.81767L2.49239 2.08635C2.5069 2.04169 2.491 1.99276 2.45301 1.96516L1.83092 1.51319C1.74597 1.45147 1.78963 1.3171 1.89463 1.3171H2.66358C2.71054 1.3171 2.75216 1.28686 2.76667 1.2422L3.00429 0.510883Z\" fill=\"#3B3735\"/>\r\n <path d=\"M3.44315 4.08027C3.50804 3.88054 3.79061 3.88054 3.85551 4.08027L4.33075 5.5429C4.35977 5.63222 4.44301 5.69269 4.53693 5.69269H6.07482C6.28483 5.69269 6.37215 5.96143 6.20225 6.08487L4.95807 6.98883C4.88208 7.04403 4.85029 7.14188 4.87931 7.23121L5.35455 8.69383C5.41945 8.89357 5.19084 9.05966 5.02094 8.93621L3.77676 8.03226C3.70077 7.97706 3.59788 7.97706 3.5219 8.03226L2.27772 8.93621C2.10781 9.05966 1.87921 8.89357 1.94411 8.69384L2.41935 7.23121C2.44837 7.14188 2.41657 7.04403 2.34059 6.98883L1.09641 6.08487C0.926505 5.96143 1.01382 5.69269 1.22383 5.69269H2.76173C2.85565 5.69269 2.93889 5.63222 2.96791 5.5429L3.44315 4.08027Z\" fill=\"#3B3735\"/>\r\n <path d=\"M6.7776 1.6578C6.81654 1.53796 6.98608 1.53797 7.02502 1.6578L7.35883 2.68518C7.37625 2.73877 7.42619 2.77506 7.48254 2.77506L8.56279 2.77506C8.6888 2.77506 8.74119 2.9363 8.63924 3.01037L7.76531 3.64532C7.71972 3.67844 7.70064 3.73715 7.71805 3.79075L8.05187 4.81812C8.09081 4.93796 7.95365 5.03762 7.8517 4.96355L6.97777 4.3286C6.93218 4.29548 6.87044 4.29548 6.82485 4.3286L5.95092 4.96355C5.84898 5.03762 5.71181 4.93796 5.75075 4.81812L6.08457 3.79075C6.10198 3.73715 6.0829 3.67844 6.03731 3.64532L5.16338 3.01037C5.06143 2.9363 5.11383 2.77506 5.23983 2.77506L6.32008 2.77506C6.37643 2.77506 6.42637 2.73877 6.44379 2.68518L6.7776 1.6578Z\" fill=\"#3B3735\"/>\r\n <path d=\"M23.4959 11.668C23.5608 11.4682 23.8433 11.4682 23.9082 11.668L24.5051 13.5051C24.5342 13.5944 24.6174 13.6549 24.7113 13.6549H26.643C26.853 13.6549 26.9403 13.9236 26.7704 14.0471L25.2077 15.1825C25.1317 15.2377 25.0999 15.3355 25.1289 15.4248L25.7258 17.262C25.7907 17.4617 25.5621 17.6278 25.3922 17.5044L23.8295 16.3689C23.7535 16.3137 23.6506 16.3137 23.5746 16.3689L22.0119 17.5044C21.842 17.6278 21.6134 17.4617 21.6783 17.262L22.2752 15.4248C22.3042 15.3355 22.2724 15.2377 22.1964 15.1825L20.6337 14.0471C20.4638 13.9236 20.5511 13.6549 20.7611 13.6549H22.6928C22.7867 13.6549 22.8699 13.5944 22.899 13.5051L23.4959 11.668Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.6734\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.7119\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <circle cx=\"22.6347\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <path d=\"M25.3456 18.705C25.9443 18.705 26.4355 19.1922 26.3698 19.7872C25.8314 24.6658 21.6957 28.4606 16.6736 28.4606C11.6515 28.4606 7.51573 24.6658 6.97732 19.7872C6.91165 19.1922 7.40353 18.705 8.00218 18.705C12.493 18.705 16.6736 18.705 16.6736 18.705C16.6736 18.705 21.2419 18.705 25.3456 18.705Z\" fill=\"#04164D\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.6734\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.7119\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <circle cx=\"22.6347\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <path d=\"M25.3456 18.705C25.9443 18.705 26.4355 19.1922 26.3698 19.7872C25.8314 24.6658 21.6957 28.4606 16.6736 28.4606C11.6515 28.4606 7.51573 24.6658 6.97732 19.7872C6.91165 19.1922 7.40353 18.705 8.00218 18.705C12.493 18.705 16.6736 18.705 16.6736 18.705C16.6736 18.705 21.2419 18.705 25.3456 18.705Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"16.231\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.2695\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <circle cx=\"22.1923\" cy=\"11.6596\" r=\"2.16791\" fill=\"#04164D\"/>\r\n <line x1=\"8.75194\" y1=\"21.8489\" x2=\"23.7105\" y2=\"21.8489\" stroke=\"#04164D\" stroke-width=\"1.30075\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"16.231\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <circle cx=\"10.2695\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <circle cx=\"22.1923\" cy=\"11.6596\" r=\"2.16791\" fill=\"#3B3735\"/>\r\n <line x1=\"8.75194\" y1=\"21.8489\" x2=\"23.7105\" y2=\"21.8489\" stroke=\"#3B3735\" stroke-width=\"1.30075\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"15.7887\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <line x1=\"7.11717\" y1=\"15.4528\" x2=\"14.7049\" y2=\"15.4528\" stroke=\"#04164D\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n <line x1=\"9.82709\" y1=\"23.5824\" x2=\"14.1629\" y2=\"23.5824\" stroke=\"#04164D\" stroke-width=\"4.33582\" stroke-linecap=\"round\"/>\r\n <line x1=\"17.957\" y1=\"15.4528\" x2=\"25.5447\" y2=\"15.4528\" stroke=\"#04164D\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 32 33\" fill=\"none\">\r\n <circle cx=\"15.7887\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <line x1=\"7.11717\" y1=\"15.4528\" x2=\"14.7049\" y2=\"15.4528\" stroke=\"#3B3735\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n <line x1=\"9.82709\" y1=\"23.5824\" x2=\"14.1629\" y2=\"23.5824\" stroke=\"#3B3735\" stroke-width=\"4.33582\" stroke-linecap=\"round\"/>\r\n <line x1=\"17.957\" y1=\"15.4528\" x2=\"25.5447\" y2=\"15.4528\" stroke=\"#3B3735\" stroke-width=\"1.08396\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.3463\" cy=\"16.537\" r=\"14.9044\" stroke=\"#04164D\" stroke-width=\"1.62593\"/>\r\n <line x1=\"6.8618\" y1=\"15.1818\" x2=\"13.9075\" y2=\"15.1818\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"8.28252\" y1=\"9.49139\" x2=\"13.6365\" y2=\"14.8454\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"24.4766\" y1=\"9.5568\" x2=\"19.1225\" y2=\"14.9108\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"14.1786\" y1=\"23.0404\" x2=\"17.4305\" y2=\"23.0404\" stroke=\"#04164D\" stroke-width=\"5.41978\" stroke-linecap=\"round\"/>\r\n <line x1=\"18.7856\" y1=\"15.1818\" x2=\"25.8313\" y2=\"15.1818\" stroke=\"#04164D\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 33 33\" fill=\"none\">\r\n <circle cx=\"16.3463\" cy=\"16.537\" r=\"14.9044\" stroke=\"#3B3735\" stroke-width=\"1.62593\"/>\r\n <line x1=\"6.8618\" y1=\"15.1818\" x2=\"13.9075\" y2=\"15.1818\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"8.28252\" y1=\"9.49139\" x2=\"13.6365\" y2=\"14.8454\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"24.4766\" y1=\"9.5568\" x2=\"19.1225\" y2=\"14.9108\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n <line x1=\"14.1786\" y1=\"23.0404\" x2=\"17.4305\" y2=\"23.0404\" stroke=\"#3B3735\" stroke-width=\"5.41978\" stroke-linecap=\"round\"/>\r\n <line x1=\"18.7856\" y1=\"15.1818\" x2=\"25.8313\" y2=\"15.1818\" stroke=\"#3B3735\" stroke-width=\"1.62593\" stroke-linecap=\"round\"/>\r\n </svg>`\r\n];\r\n\r\nexport const icons_3 = [\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <ellipse cx=\"21.5152\" cy=\"20.4635\" rx=\"15.6891\" ry=\"16.2372\" fill=\"url(#paint0_linear_477_3168)\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1645 9.98454C13.7849 9.01603 14.1957 8.20026 15.3495 7.85574C17.5157 7.20762 19.9603 9.23315 19.2468 11.7653C19.0438 12.4864 18.5332 13.3906 17.9512 14.2916C17.3127 15.2808 16.5873 16.2674 16.0875 17.0067L14.7246 19.0225L13.1124 17.8727C11.1728 16.4885 8.11697 14.8522 7.57915 12.2645C7.20253 10.4518 8.37203 9.04704 9.95291 8.79599C11.3656 8.57293 12.0853 9.20604 13.1645 9.98454Z\" fill=\"#ED466E\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.061 9.61821C31.0686 9.03204 31.8165 8.4866 33.0162 8.70985C35.2693 9.1278 36.5362 12.0853 34.7212 14.0382C34.2045 14.5945 33.3257 15.1735 32.3841 15.7166C31.3507 16.313 30.24 16.8669 29.4474 17.3023L27.2857 18.4892L26.3641 16.7065C25.2557 14.5609 23.2576 11.6715 23.9701 9.08954C24.4693 7.2808 26.1737 6.55537 27.7153 7.06051C29.0923 7.51306 29.4483 8.41695 30.061 9.61821Z\" fill=\"#ED466E\"/>\r\n <path d=\"M12.4033 15.8881V15.8853L12.4104 15.8778V15.8777H12.4036V15.8738H12.4173V15.8769L12.4108 15.8841V15.8842H12.4176V15.8881H12.4033Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.2656 16.0244V16.0216L12.2727 16.0142V16.0141H12.2659V16.0102H12.2796V16.0133L12.2731 16.0205V16.0205H12.2799V16.0244H12.2656Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.1289 16.1623V16.1595L12.136 16.152V16.1519H12.1292V16.148H12.1429V16.1512L12.1364 16.1583V16.1584H12.1432V16.1623H12.1289Z\" fill=\"#3655F5\"/>\r\n <path d=\"M28.3155 25.3441C28.9494 25.9251 28.8966 26.1364 28.9494 26.8233C28.9494 27.3514 28.4931 32.1532 21.9763 32.1532C15.3393 32.1532 14.739 28.1967 14.5806 27.4022C14.5278 26.7177 14.5806 25.925 14.8975 25.5553C16.6937 24.2887 20.5441 24.6649 21.9763 24.6552C23.4085 24.6454 27.2024 24.324 28.3155 25.3441Z\" fill=\"black\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3168\" x1=\"21.5152\" y1=\"4.22632\" x2=\"21.5152\" y2=\"36.7006\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"#3B3735\">\r\n <ellipse cx=\"21.5152\" cy=\"20.4635\" rx=\"15.6891\" ry=\"16.2372\" fill=\"#C7C6C6\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1645 9.98454C13.7849 9.01603 14.1957 8.20026 15.3495 7.85574C17.5157 7.20762 19.9603 9.23315 19.2468 11.7653C19.0438 12.4864 18.5332 13.3906 17.9512 14.2916C17.3127 15.2808 16.5873 16.2674 16.0875 17.0067L14.7246 19.0225L13.1124 17.8727C11.1728 16.4885 8.11697 14.8522 7.57915 12.2645C7.20253 10.4518 8.37203 9.04704 9.95291 8.79599C11.3656 8.57293 12.0853 9.20604 13.1645 9.98454Z\" fill=\"#3B3735\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.061 9.61821C31.0686 9.03204 31.8165 8.4866 33.0162 8.70985C35.2693 9.1278 36.5362 12.0853 34.7212 14.0382C34.2045 14.5945 33.3257 15.1735 32.3841 15.7166C31.3507 16.313 30.24 16.8669 29.4474 17.3023L27.2857 18.4892L26.3641 16.7065C25.2557 14.5609 23.2576 11.6715 23.9701 9.08954C24.4693 7.2808 26.1737 6.55537 27.7153 7.06051C29.0923 7.51306 29.4483 8.41695 30.061 9.61821Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.4033 15.8881V15.8853L12.4104 15.8778V15.8777H12.4036V15.8738H12.4173V15.8769L12.4108 15.8841V15.8842H12.4176V15.8881H12.4033Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.2656 16.0244V16.0216L12.2727 16.0142V16.0141H12.2659V16.0102H12.2796V16.0133L12.2731 16.0205V16.0205H12.2799V16.0244H12.2656Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.1289 16.1623V16.1595L12.136 16.152V16.1519H12.1292V16.148H12.1429V16.1512L12.1364 16.1583V16.1584H12.1432V16.1623H12.1289Z\" fill=\"#3655F5\"/>\r\n <path d=\"M28.3155 25.3441C28.9494 25.9251 28.8966 26.1364 28.9494 26.8233C28.9494 27.3514 28.4931 32.1532 21.9763 32.1532C15.3393 32.1532 14.7390 28.1967 14.5806 27.4022C14.5278 26.7177 14.5806 25.9250 14.8975 25.5553C16.6937 24.2887 20.5441 24.6649 21.9763 24.6552C23.4085 24.6454 27.2024 24.3240 28.3155 25.3441Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"23.4844\" cy=\"22.2507\" r=\"15.4082\" fill=\"url(#paint0_linear_477_3158)\"/>\r\n <path d=\"M23.1995 33.9488C14.0687 33.9488 12.9273 24.7229 12.9273 24.7229C12.9273 24.7229 12.7374 23.6766 14.0687 24.0571C16.4199 24.7292 19.5845 25.5612 23.1995 25.5789C26.9244 25.5973 29.9212 25.0192 32.6156 24.0571C33.9475 23.5816 33.7569 24.7229 33.7569 24.7229C33.7569 24.7229 32.9177 33.9488 23.1995 33.9488Z\" fill=\"#493248\"/>\r\n <path d=\"M14.2665 24.6519C13.415 24.4043 13.7609 25.2849 13.7609 25.2849C13.7609 25.2849 14.1335 26.6059 14.2665 26.8811C14.3996 27.1564 14.7189 27.4591 15.4108 27.6793C16.1027 27.8994 20.0144 28.67 23.6068 28.67C27.1397 28.67 30.1264 27.9269 31.2175 27.6517C31.9198 27.4745 32.0946 27.2746 32.2287 27.1013C32.4416 26.8261 32.7077 26.2757 33.0004 25.2849C33.2931 24.2942 32.3883 24.6795 32.3883 24.6795C32.3883 24.6795 28.6096 26.0005 23.5536 26.0005C18.4976 26.0005 15.1181 24.8996 14.2665 24.6519Z\" fill=\"#FBFBFB\"/>\r\n <ellipse cx=\"18.7286\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#493248\"/>\r\n <ellipse cx=\"28.0499\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#493248\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3158\" x1=\"23.4844\" y1=\"6.84248\" x2=\"23.4844\" y2=\"37.6589\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"23.4844\" cy=\"22.2507\" r=\"15.4082\" fill=\"#C7C6C6\"/>\r\n <path d=\"M23.1995 33.9488C14.0687 33.9488 12.9273 24.7229 12.9273 24.7229C12.9273 24.7229 12.7374 23.6766 14.0687 24.0571C16.4199 24.7292 19.5845 25.5612 23.1995 25.5789C26.9244 25.5973 29.9212 25.0192 32.6156 24.0571C33.9475 23.5816 33.7569 24.7229 33.7569 24.7229C33.7569 24.7229 32.9177 33.9488 23.1995 33.9488Z\" fill=\"#3B3735\"/>\r\n <path d=\"M14.2665 24.6519C13.4150 24.4043 13.7609 25.2849 13.7609 25.2849C13.7609 25.2849 14.1335 26.6059 14.2665 26.8811C14.3996 27.1564 14.7189 27.4591 15.4108 27.6793C16.1027 27.8994 20.0144 28.67 23.6068 28.67C27.1397 28.67 30.1264 27.9269 31.2175 27.6517C31.9198 27.4745 32.0946 27.2746 32.2287 27.1013C32.4416 26.8261 32.7077 26.2757 33.0004 25.2849C33.2931 24.2942 32.3883 24.6795 32.3883 24.6795C32.3883 24.6795 28.6096 26.0005 23.5536 26.0005C18.4976 26.0005 15.1181 24.8996 14.2665 24.6519Z\" fill=\"#FBFBFB\"/>\r\n <ellipse cx=\"18.7286\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#3B3735\"/>\r\n <ellipse cx=\"28.0499\" cy=\"18.7324\" rx=\"1.71202\" ry=\"2.18758\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"21.3277\" cy=\"21.013\" r=\"15.6891\" fill=\"url(#paint0_linear_477_3146)\"/>\r\n <path d=\"M25.2005 30.3076C25.43 30.2281 25.9997 29.413 25.3235 28.5184C25.0776 28.3267 25.0324 28.3124 24.5243 28.2628C18.6231 27.6878 15.8054 31.6116 15.9183 31.905C20.7306 29.4039 23.62 29.9876 24.5244 30.2437C24.7059 30.2951 25.0161 30.3715 25.2005 30.3076Z\" fill=\"black\"/>\r\n <path d=\"M12.2158 15.8881V15.8853L12.2229 15.8778V15.8777H12.2161V15.8738H12.2298V15.8769L12.2233 15.8841V15.8842H12.2301V15.8881H12.2158Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.0781 16.0244V16.0216L12.0852 16.0142V16.0141H12.0784V16.0102H12.0921V16.0133L12.0856 16.0205V16.0205H12.0924V16.0244H12.0781Z\" fill=\"#3655F5\"/>\r\n <path d=\"M11.9424 16.1623V16.1595L11.9495 16.152V16.1519H11.9426V16.148H11.9564V16.1512L11.9499 16.1583V16.1584H11.9566V16.1623H11.9424Z\" fill=\"#3655F5\"/>\r\n <ellipse cx=\"29.3559\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 29.3559 18.8206)\" fill=\"black\"/>\r\n <path d=\"M30.4321 18.7346C30.6492 18.6421 31.1884 17.6929 30.5484 16.6512C30.1663 16.4921 29.9608 16.4236 29.5497 16.3551C24.4683 15.7458 22.0452 19.4718 21.6863 20.4063C21.6508 20.4989 21.6863 20.4998 21.6967 20.5102C21.6967 20.5102 21.7127 20.5643 21.7809 20.5102C26.2553 17.6956 28.9447 18.3649 29.7921 18.6602C29.9639 18.7201 30.2575 18.809 30.4321 18.7346Z\" fill=\"black\"/>\r\n <ellipse cx=\"16.0648\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 16.0648 18.8206)\" fill=\"black\"/>\r\n <path d=\"M17.1401 18.7346C17.3572 18.6421 17.8964 17.6929 17.2564 16.6512C16.8743 16.4921 16.6688 16.4237 16.2577 16.3551C11.1764 15.7458 8.75323 19.4718 8.39435 20.4063C8.35879 20.4989 8.39435 20.4998 8.40471 20.5103C8.40471 20.5103 8.42068 20.5644 8.48893 20.5103C12.9633 17.6956 15.6527 18.3649 16.5001 18.6602C16.6719 18.7201 16.9655 18.8091 17.1401 18.7346Z\" fill=\"black\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3146\" x1=\"21.3277\" y1=\"5.32394\" x2=\"21.3277\" y2=\"36.7021\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <circle cx=\"21.3277\" cy=\"21.013\" r=\"15.6891\" fill=\"#C7C6C6\"/>\r\n <path d=\"M25.2005 30.3076C25.43 30.2281 25.9997 29.413 25.3235 28.5184C25.0776 28.3267 25.0324 28.3124 24.5243 28.2628C18.6231 27.6878 15.8054 31.6116 15.9183 31.905C20.7306 29.4039 23.62 29.9876 24.5244 30.2437C24.7059 30.2951 25.0161 30.3715 25.2005 30.3076Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.2158 15.8881V15.8853L12.2229 15.8778V15.8777H12.2161V15.8738H12.2298V15.8769L12.2233 15.8841V15.8842H12.2301V15.8881H12.2158Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.0781 16.0244V16.0216L12.0852 16.0142V16.0141H12.0784V16.0102H12.0921V16.0133L12.0856 16.0205V16.0205H12.0924V16.0244H12.0781Z\" fill=\"#3B3735\"/>\r\n <path d=\"M11.9424 16.1623V16.1595L11.9495 16.152V16.1519H11.9426V16.148H11.9564V16.1512L11.9499 16.1583V16.1584H11.9566V16.1623H11.9424Z\" fill=\"#3B3735\"/>\r\n <ellipse cx=\"29.3559\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 29.3559 18.8206)\" fill=\"#3B3735\"/>\r\n <path d=\"M30.4321 18.7346C30.6492 18.6421 31.1884 17.6929 30.5484 16.6512C30.1663 16.4921 29.9608 16.4236 29.5497 16.3551C24.4683 15.7458 22.0452 19.4718 21.6863 20.4063C21.6508 20.4989 21.6863 20.4998 21.6967 20.5102C21.6967 20.5102 21.7127 20.5643 21.7809 20.5102C26.2553 17.6956 28.9447 18.3649 29.7921 18.6602C29.9639 18.7201 30.2575 18.809 30.4321 18.7346Z\" fill=\"#3B3735\"/>\r\n <ellipse cx=\"16.0648\" cy=\"18.8206\" rx=\"2.75766\" ry=\"2.45953\" transform=\"rotate(7.7503 16.0648 18.8206)\" fill=\"#3B3735\"/>\r\n <path d=\"M17.1401 18.7346C17.3572 18.6421 17.8964 17.6929 17.2564 16.6512C16.8743 16.4921 16.6688 16.4237 16.2577 16.3551C11.1764 15.7458 8.75323 19.4718 8.39435 20.4063C8.35879 20.4989 8.39435 20.4998 8.40471 20.5103C8.40471 20.5103 8.42068 20.5644 8.48893 20.5103C12.9633 17.6956 15.6527 18.3649 16.5001 18.6602C16.6719 18.7201 16.9655 18.8091 17.1401 18.7346Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 40 42\" fill=\"none\">\r\n <ellipse cx=\"23.3096\" cy=\"24.2812\" rx=\"17.1534\" ry=\"15.9549\" fill=\"url(#paint0_linear_477_3138)\"/>\r\n <path d=\"M25.6486 34.758C25.647 35.1105 25.5019 35.2834 25.1037 35.5309C24.6204 35.8313 23.6833 35.8312 22.8874 35.8312C22.0792 35.8312 21.3024 35.823 20.8217 35.5145C20.439 35.2689 20.3904 35.1039 20.392 34.758C20.3956 33.9776 21.5752 33.345 23.0268 33.345C24.4783 33.345 25.6522 33.9776 25.6486 34.758Z\" fill=\"black\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"black\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"black\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"black\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"black\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3138\" x1=\"23.3096\" y1=\"8.32629\" x2=\"23.3096\" y2=\"40.2361\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCF050\"/>\r\n <stop offset=\"1\" stop-color=\"#F1A23A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 40 42\" fill=\"none\">\r\n <ellipse cx=\"23.3096\" cy=\"24.2812\" rx=\"17.1534\" ry=\"15.9549\" fill=\"#C7C6C6\"/>\r\n <path d=\"M25.6486 34.758C25.647 35.1105 25.5019 35.2834 25.1037 35.5309C24.6204 35.8313 23.6833 35.8312 22.8874 35.8312C22.0792 35.8312 21.3024 35.823 20.8217 35.5145C20.439 35.2689 20.3904 35.1039 20.392 34.758C20.3956 33.9776 21.5752 33.345 23.0268 33.345C24.4783 33.345 25.6522 33.9776 25.6486 34.758Z\" fill=\"#3B3735\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"#3B3735\"/>\r\n <path d=\"M28.849 27.6445C31.4819 27.7935 32.5158 25.2935 32.5158 25.2935C32.5801 24.9841 32.1694 25.1398 32.0655 25.1698C29.6209 26.1597 29.1023 26.3612 26.0185 25.2935C25.8346 25.2434 25.3752 25.1079 25.5038 25.4172C25.5038 25.4172 26.6618 27.5208 28.849 27.6445Z\" fill=\"#3B3735\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"#3B3735\"/>\r\n <path d=\"M17.3138 27.4955C19.9468 27.627 20.9806 25.4211 20.9806 25.4211C21.0449 25.1482 20.6342 25.2855 20.5303 25.312C18.0858 26.1854 17.5671 26.3632 14.4833 25.4211C14.2995 25.377 13.84 25.2574 13.9687 25.5303C13.9687 25.5303 15.1266 27.3864 17.3138 27.4955Z\" fill=\"#3B3735\"/>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <ellipse cx=\"21.9548\" cy=\"23.7912\" rx=\"16.7028\" ry=\"15.9734\" fill=\"url(#paint0_linear_477_3128)\"/>\r\n <path d=\"M18.6726 23.5716C18.6726 24.2994 18.466 24.965 18.1244 25.4761C17.7098 26.0964 17.0962 26.4891 16.4115 26.4891C15.7162 26.4891 15.0942 26.0842 14.6794 25.4472C14.3493 24.94 14.1504 24.2858 14.1504 23.5716C14.1504 21.9603 15.1627 20.6541 16.4115 20.6541C17.6602 20.6541 18.6726 21.9603 18.6726 23.5716Z\" fill=\"black\"/>\r\n <path d=\"M18.973 21.3522C18.7218 21.85 17.0505 21.5131 15.24 20.5995C13.4295 19.6859 12.1655 18.5417 12.4168 18.0438C12.668 17.546 15.9401 17.9709 17.7505 18.8845C19.561 19.7981 19.2243 20.8543 18.973 21.3522Z\" fill=\"#C66E3C\"/>\r\n <path d=\"M29.1755 23.5716C29.1755 24.2994 28.9689 24.965 28.6273 25.4761C28.2127 26.0964 27.5991 26.4891 26.9144 26.4891C26.2191 26.4891 25.5971 26.0842 25.1824 25.4472C24.8522 24.94 24.6533 24.2858 24.6533 23.5716C24.6533 21.9603 25.6656 20.6541 26.9144 20.6541C28.1632 20.6541 29.1755 21.9603 29.1755 23.5716Z\" fill=\"black\"/>\r\n <path d=\"M24.2736 21.3706C24.5258 21.8705 26.2039 21.5324 28.0217 20.6154C29.8395 19.6984 31.1087 18.5497 30.8566 18.0498C30.6044 17.5499 27.3192 17.9762 25.5013 18.8932C23.6835 19.8103 24.0215 20.8707 24.2736 21.3706Z\" fill=\"#C66E3C\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"black\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"black\"/>\r\n <path d=\"M12.2539 17.6061V17.6031L12.2615 17.5952V17.5951H12.2542V17.591H12.2688V17.5943L12.2619 17.6019V17.602H12.2691V17.6061H12.2539Z\" fill=\"#3655F5\"/>\r\n <path d=\"M12.1074 17.7515V17.7485L12.115 17.7406V17.7405H12.1077V17.7364H12.1223V17.7397L12.1154 17.7473V17.7474H12.1226V17.7515H12.1074Z\" fill=\"#3655F5\"/>\r\n <path d=\"M11.9619 17.8969V17.8939L11.9695 17.886V17.8859H11.9622V17.8818H11.9768V17.8851L11.9699 17.8927V17.8928H11.9771V17.8969H11.9619Z\" fill=\"#3655F5\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_477_3128\" x1=\"21.9548\" y1=\"7.81778\" x2=\"21.9548\" y2=\"39.7647\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#FCCC50\"/>\r\n <stop offset=\"1\" stop-color=\"#F13A3A\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>`,\r\n `<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"50\" viewBox=\"0 0 38 40\" fill=\"none\">\r\n <ellipse cx=\"21.9548\" cy=\"23.7912\" rx=\"16.7028\" ry=\"15.9734\" fill=\"#C7C6C6\"/>\r\n <path d=\"M18.6726 23.5716C18.6726 24.2994 18.466 24.965 18.1244 25.4761C17.7098 26.0964 17.0962 26.4891 16.4115 26.4891C15.7162 26.4891 15.0942 26.0842 14.6794 25.4472C14.3493 24.94 14.1504 24.2858 14.1504 23.5716C14.1504 21.9603 15.1627 20.6541 16.4115 20.6541C17.6602 20.6541 18.6726 21.9603 18.6726 23.5716Z\" fill=\"#3B3735\"/>\r\n <path d=\"M18.973 21.3522C18.7218 21.85 17.0505 21.5131 15.24 20.5995C13.4295 19.6859 12.1655 18.5417 12.4168 18.0438C12.668 17.546 15.9401 17.9709 17.7505 18.8845C19.561 19.7981 19.2243 20.8543 18.973 21.3522Z\" fill=\"#3B3735\"/>\r\n <path d=\"M29.1755 23.5716C29.1755 24.2994 28.9689 24.965 28.6273 25.4761C28.2127 26.0964 27.5991 26.4891 26.9144 26.4891C26.2191 26.4891 25.5971 26.0842 25.1824 25.4472C24.8522 24.94 24.6533 24.2858 24.6533 23.5716C24.6533 21.9603 25.6656 20.6541 26.9144 20.6541C28.1632 20.6541 29.1755 21.9603 29.1755 23.5716Z\" fill=\"#3B3735\"/>\r\n <path d=\"M24.2736 21.3706C24.5258 21.8705 26.2039 21.5324 28.0217 20.6154C29.8395 19.6984 31.1087 18.5497 30.8566 18.0498C30.6044 17.5499 27.3192 17.9762 25.5013 18.8932C23.6835 19.8103 24.0215 20.8707 24.2736 21.3706Z\" fill=\"#3B3735\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"#3B3735\"/>\r\n <path d=\"M21.712 30.7238C25.8006 30.5824 27.2713 33.692 27.2713 33.692C27.3413 34.0061 26.8918 34.1429 26.5947 34.0257C22.7862 32.5222 20.9307 32.7783 17.1222 34.0256C16.7657 34.1636 16.1697 34.0061 16.3827 33.5746C16.3827 33.5746 18.3155 30.8412 21.712 30.7238Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.2539 17.6061V17.6031L12.2615 17.5952V17.5951H12.2542V17.591H12.2688V17.5943L12.2619 17.6019V17.602H12.2691V17.6061H12.2539Z\" fill=\"#3B3735\"/>\r\n <path d=\"M12.1074 17.7515V17.7485L12.115 17.7406V17.7405H12.1077V17.7364H12.1223V17.7397L12.1154 17.7473V17.7474H12.1226V17.7515H12.1074Z\" fill=\"#3B3735\"/>\r\n <path d=\"M11.9619 17.8969V17.8939L11.9695 17.886V17.8859H11.9622V17.8818H11.9768V17.8851L11.9699 17.8927V17.8928H11.9771V17.8969H11.9619Z\" fill=\"#3B3735\"/>\r\n </svg>`\r\n]; ","<script>\r\n import { icons_1, icons_2, icons_3 } from \"./reactionSvgs/icons.js\";\r\n export let name;\r\n export let focusable = false;\r\n export let emotIconType;\r\n export let width = \"40px\";\r\n export let height = \"40px\";\r\n let emotIcons =\r\n emotIconType == \"0\"\r\n ? icons_1\r\n : emotIconType == \"1\"\r\n ? icons_2\r\n : emotIconType == \"2\"\r\n ? icons_3\r\n : null;\r\n let icons = [\r\n {\r\n box: 50,\r\n name: \"love\",\r\n svg: emotIcons[0],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedLove\",\r\n svg: emotIcons[1],\r\n },\r\n {\r\n box: 50,\r\n name: \"like\",\r\n svg: emotIcons[2],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedLike\",\r\n svg: emotIcons[3],\r\n },\r\n {\r\n box: 50,\r\n name: \"neutral\",\r\n svg: emotIcons[4],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedNeutral\",\r\n svg: emotIcons[5],\r\n },\r\n {\r\n box: 50,\r\n name: \"dislike\",\r\n svg: emotIcons[6],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedDislike\",\r\n svg: emotIcons[7],\r\n },\r\n\r\n {\r\n box: 50,\r\n name: \"hate\",\r\n svg: emotIcons[8],\r\n },\r\n {\r\n box: 50,\r\n name: \"unSelectedHate\",\r\n svg: emotIcons[9],\r\n },\r\n ];\r\n let displayIcon = icons.find((e) => e.name === name);\r\n</script>\r\n\r\n{#if emotIconType === \"2\"}\r\n<svg\r\n class={$$props.class}\r\n {focusable}\r\n {width}\r\n {height}\r\n viewBox=\"0 0 {displayIcon.box} {displayIcon.box - 1}\"\r\n >\r\n <g transform={\"translate(-3, -3)\"}>\r\n {@html displayIcon.svg}\r\n </g>\r\n </svg>\r\n{:else}\r\n<svg\r\n class={$$props.class}\r\n {focusable}\r\n {width}\r\n {height}\r\n viewBox=\"0 0 {displayIcon.box} {displayIcon.box - 1}\"\r\n >\r\n {@html displayIcon.svg}\r\n </svg>\r\n{/if}\r\n","function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n","<script>\r\n import Icons from \"../Icons/reactionIcons.svelte\";\r\n import \"../widgetPages/reactionpage.css\";\r\n export let feedbackData;\r\n export let wgType;\r\n $: widgetComponent = 1;\r\n let reactionNames = [\"hate\", \"dislike\", \"neutral\", \"like\", \"love\"];\r\n let changingReactionNames = reactionNames;\r\n let reactionType = \"\";\r\n let comment = \"\";\r\n let email = \"\";\r\n let questionAnswer = \"\";\r\n let reactionName = \"test\";\r\n let reactionState = true;\r\n $: pointerMargin = 10;\r\n $: hateDisplay = \"none\";\r\n $: dislikeDisplay = \"none\";\r\n $: neutralDisplay = \"none\";\r\n $: likeDisplay = \"none\";\r\n $: loveDisplay = \"none\";\r\n $: buttonColor = feedbackData.wgAccentColor;\r\n $: widgetQuestion = feedbackData.wgQuestion;\r\n $: widgetEmailReqMsg = feedbackData.wgEmailReqMsg;\r\n $: widgetPlaceholder = feedbackData.wgFeedbackPlaceholder;\r\n $: widgetEmotIconType = feedbackData.wgReactionStyle;\r\n $: document.documentElement.style.setProperty(\r\n \"--pointerMargin\",\r\n pointerMargin + \"%\"\r\n );\r\n $: document.documentElement.style.setProperty(\"--hateDisplay\", hateDisplay);\r\n $: document.documentElement.style.setProperty(\r\n \"--dislikeDisplay\",\r\n dislikeDisplay\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--neutralDisplay\",\r\n neutralDisplay\r\n );\r\n $: document.documentElement.style.setProperty(\"--likeDisplay\", likeDisplay);\r\n $: document.documentElement.style.setProperty(\"--loveDisplay\", loveDisplay);\r\n $: document.documentElement.style.setProperty(\"--buttonColor\", buttonColor);\r\n\r\n let count = 0;\r\n $: buttonState = false;\r\n let checkTextAreaInterval;\r\n let checkEmailAreaInterval;\r\n\r\n export let closeHandler = (\r\n email,\r\n comment,\r\n reactionType,\r\n questionAnswer\r\n ) => {};\r\n export let closeHandlerBeforeFinishing = (email, comment, reactionType) => {};\r\n\r\n // const commentButtonDisable = () =>{\r\n\r\n // let source = document.querySelector(\".fsTextArea\");\r\n\r\n // source.addEventListener('propertychange', commentHandler);\r\n\r\n // }\r\n const commentHandler = () => {\r\n let input = document.querySelector(\".fsTextArea\");\r\n\r\n if (input.value === \"\") {\r\n buttonState = false; //button remains disabled\r\n } else {\r\n buttonState = true; //button is enabled\r\n }\r\n comment = \"\";\r\n comment = input.value;\r\n };\r\n\r\n // const EmailButtonDisable = () =>{\r\n\r\n // let source = document.querySelector(\"#fsEmailTextArea\");\r\n\r\n // source.addEventListener('propertychange', emailHandler);\r\n\r\n // }\r\n\r\n const emailHandler = () => {\r\n let input = document.querySelector(\"#fsEmailTextArea\");\r\n\r\n if (\r\n !/^\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,3})+$/.test(input.value) ||\r\n input.value === \"\"\r\n ) {\r\n buttonState = false; //button remains disabled\r\n } else {\r\n buttonState = true; //button is enabled\r\n email = \"\";\r\n email = document.getElementById(\"fsEmailTextArea\").value;\r\n }\r\n };\r\n\r\n const changeStyle = (prevState) => {\r\n if (prevState == \"hate\") {\r\n hateDisplay = \"none\";\r\n } else if (prevState == \"dislike\") {\r\n dislikeDisplay = \"none\";\r\n } else if (prevState == \"neutral\") {\r\n neutralDisplay = \"none\";\r\n } else if (prevState == \"like\") {\r\n likeDisplay = \"none\";\r\n } else if (prevState == \"love\") {\r\n loveDisplay = \"none\";\r\n }\r\n };\r\n\r\n const openComment = (state, rating, name) => {\r\n let prevName = reactionName;\r\n reactionName = name;\r\n\r\n widgetComponent = state;\r\n reactionType = String(rating);\r\n changingReactionNames = [\r\n \"unSelectedHate\",\r\n \"unSelectedDislike\",\r\n \"unSelectedNeutral\",\r\n \"unSelectedLike\",\r\n \"unSelectedLove\",\r\n ];\r\n closeHandlerBeforeFinishing(email, comment, reactionType);\r\n if (count > 0) {\r\n changeStyle(prevName);\r\n }\r\n // changeStyle(prevName,reactionName)\r\n count++;\r\n if (rating == 1) {\r\n pointerMargin = 11;\r\n hateDisplay = \"block\";\r\n changingReactionNames[0] = reactionNames[0];\r\n reactionState = !reactionState;\r\n } else if (rating == 2) {\r\n changingReactionNames[1] = reactionNames[1];\r\n pointerMargin = 30;\r\n dislikeDisplay = \"block\";\r\n reactionState = !reactionState;\r\n } else if (rating == 3) {\r\n changingReactionNames[2] = reactionNames[2];\r\n pointerMargin = 49;\r\n neutralDisplay = \"block\";\r\n reactionState = !reactionState;\r\n } else if (rating == 4) {\r\n changingReactionNames[3] = reactionNames[3];\r\n pointerMargin = 68;\r\n likeDisplay = \"block\";\r\n reactionState = !reactionState;\r\n } else if (rating == 5) {\r\n changingReactionNames[4] = reactionNames[4];\r\n pointerMargin = 87;\r\n loveDisplay = \"block\";\r\n reactionState = !reactionState;\r\n }\r\n };\r\n\r\n const openEmailStep = (state, rating) => {\r\n widgetComponent = state;\r\n reactionType = String(rating);\r\n\r\n closeHandlerBeforeFinishing(email, comment, reactionType);\r\n };\r\n\r\n const questionHandler = (state, question) => {\r\n let input = document.querySelector(\".fsAnswerTextArea\");\r\n\r\n if (input.value === \"\") {\r\n buttonState = false;\r\n } else {\r\n buttonState = true;\r\n }\r\n questionAnswer = \"\";\r\n questionAnswer = input.value;\r\n };\r\n\r\n const openEmailCont = (state) => {\r\n clearInterval(checkTextAreaInterval);\r\n document.querySelector(\".fsTextArea\").value = \"\";\r\n buttonState = false;\r\n widgetComponent = state;\r\n };\r\n\r\n const openEmailView = (state) => {\r\n clearInterval(checkTextAreaInterval);\r\n document.querySelector(\".fsAnswerTextArea\").value = \"\";\r\n buttonState = false;\r\n widgetComponent = state;\r\n };\r\n\r\n const endEmailInterval = () => {\r\n clearInterval(checkEmailAreaInterval);\r\n document.querySelector(\"#fsEmailTextArea\").value = \"\";\r\n };\r\n</script>\r\n\r\n{#if widgetComponent === 1}\r\n <div id=\"fsTxt\">{widgetQuestion}</div>\r\n {#if wgType === 0}\r\n <div class=\"fsReactionsContainer\">\r\n <div class=\"fsIcons\">\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 1, \"hate\")}>\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[0]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n\r\n <p class=\"fsReactionText\" class:fs-icons3-text-2={widgetEmotIconType === \"2\"}>Hate</p>\r\n </div>\r\n\r\n <div\r\n class=\"fsIconTextCont\"\r\n on:click={() => openComment(2, 2, \"dislike\")}\r\n >\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[1]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n\r\n <p class=\"fsReactionText\" class:fs-icons3-text={widgetEmotIconType === \"2\"}>Dislike</p>\r\n </div>\r\n <div\r\n class=\"fsIconTextCont\"\r\n on:click={() => openComment(2, 3, \"neutral\")}\r\n >\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[2]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n\r\n <p class=\"fsReactionText\">Neutral</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 4, \"like\")}>\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[3]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n <p class=\"fsReactionText\" class:fs-icons3-text={widgetEmotIconType === \"2\"}>Like</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 5, \"love\")}>\r\n <div class=\"fsReactionIcon\">\r\n <Icons bind:name={changingReactionNames[4]} bind:emotIconType={widgetEmotIconType} />\r\n </div>\r\n <p class=\"fsReactionText\" class:fs-icons3-text-2={widgetEmotIconType === \"2\"}>Love</p>\r\n </div>\r\n </div>\r\n </div>\r\n {:else if wgType === 1}\r\n <div class=\"fsQuestionContainer\">\r\n <div class=\"fsTextAreaCont-qa-view\">\r\n <textarea\r\n class=\"fsAnswerTextArea\"\r\n placeholder=\"Answer Here...\"\r\n on:keyup={() => questionHandler()}\r\n />\r\n </div>\r\n <div class=\"fsFooter\">\r\n {#if buttonState == false}\r\n <button class=\"fsCommentButtonContDisable\" disabled>\r\n <p class=\"fsCommentButtonTxtDisable\">Send</p>\r\n </button>\r\n {:else if buttonState == true}\r\n <button\r\n class=\"fsSendButtonContCommentComp\"\r\n on:click={() => openEmailView(3)}\r\n >\r\n <p class=\"fsSendButtonCommentComponent\">Send</p>\r\n </button>\r\n {/if}\r\n </div>\r\n </div>\r\n {:else if wgType === 2}\r\n <div class=\"fsNpsContainer\">\r\n <div class=\"fsNpsNumbers\">\r\n {#each {length: 11} as _, i}\r\n <div class={i > 8 ? \"fsNpsNumber fsHighNps\" : i > 6 ? \"fsNpsNumber fsMediumNps\" : \"fsNpsNumber fsLowNps\"}\r\n on:click={() => openEmailStep(3, i)}>\r\n <span>{i}</span>\r\n </div>\r\n {/each}\r\n </div>\r\n <div class=\"fsNpsFooter\">\r\n <div class=\"fsNpsText\">not likely at all</div>\r\n <div class=\"fsNpsText\">extremely likely </div>\r\n </div>\r\n </div>\r\n {/if}\r\n{:else if widgetComponent === 2 && wgType !== 1}\r\n <div class=\"fsCommentContainer\">\r\n <div class=\"fsIcons-second\">\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 1, \"hate\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[0]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[0]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n\r\n <p class=\"fsReactionText\" id=\"fsHateDiv\" class:fs-icons3-text-2={widgetEmotIconType === \"2\"}>Hate</p>\r\n </div>\r\n\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 2, \"dislike\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[1]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[1]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n\r\n <p class=\"fsReactionText\" id=\"fsDislikeDiv\" class:fs-icons3-text={widgetEmotIconType === \"2\"}>Dislike</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 3, \"neutral\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[2]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[2]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n\r\n <p class=\"fsReactionText\" id=\"fsNeutralDiv\">Neutral</p>\r\n </div>\r\n <div class=\"fsIconTextCont\" on:click={() => openComment(2, 4, \"like\")}>\r\n <div class=\"fsReactionIcon\">\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[3]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[3]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n <p class=\"fsReactionText\" id=\"fsLikeDiv\" class:fs-icons3-text={widgetEmotIconType === \"2\"}>Like</p>\r\n </div>\r\n <div class=\"fsIconTextCont\">\r\n <div class=\"fsReactionIcon\" on:click={() => openComment(2, 5, \"love\")}>\r\n {#if reactionState}\r\n <Icons bind:name={changingReactionNames[4]} bind:emotIconType={widgetEmotIconType} />\r\n {:else if reactionState == false}\r\n <Icons bind:name={changingReactionNames[4]} bind:emotIconType={widgetEmotIconType} />\r\n {/if}\r\n </div>\r\n <p class=\"fsReactionText\" id=\"fsLoveDiv\" class:fs-icons3-text-2={widgetEmotIconType === \"2\"}>Love</p>\r\n </div>\r\n </div>\r\n\r\n <div class={wgType === 0 ? \"fsTextAreaCont\" : \"fsTextAreaCont-qa-view\"}>\r\n <div class=\"fsPointerDiv\" id=\"fsPointer\" />\r\n <textarea\r\n class=\"fsTextArea\"\r\n placeholder={widgetPlaceholder}\r\n on:keyup={() => commentHandler()}\r\n />\r\n </div>\r\n\r\n <div class=\"fsFooter\">\r\n {#if buttonState == false}\r\n <button class=\"fsCommentButtonContDisable\" disabled>\r\n <p class=\"fsCommentButtonTxtDisable\">Send</p>\r\n </button>\r\n {:else if buttonState == true}\r\n <button\r\n class=\"fsSendButtonContCommentComp\"\r\n on:click={() => openEmailCont(3)}\r\n >\r\n <p class=\"fsSendButtonCommentComponent\">Send</p>\r\n </button>\r\n {/if}\r\n </div>\r\n </div>\r\n{:else if widgetComponent === 3}\r\n <div class=\"fsEmailContainer\">\r\n <div id=\"fsEmailText\">\r\n {widgetEmailReqMsg}\r\n </div>\r\n <div id=\"fsEmailInputCont\">\r\n <input\r\n type=\"text\"\r\n id=\"fsEmailTextArea\"\r\n placeholder=\"email@domain.com\"\r\n on:keyup={() => emailHandler()}\r\n />\r\n </div>\r\n <div class=\"fsEmailFooter\">\r\n <p\r\n id=\"fsSkipText\"\r\n on:click={() =>\r\n closeHandler(email, comment, reactionType, questionAnswer)}\r\n >\r\n <u>Skip</u>\r\n </p>\r\n {#if buttonState == false}\r\n <button class=\"fsCommentButtonContDisable\" disabled>\r\n <p class=\"fsCommentButtonTxtDisable\">Send</p>\r\n </button>\r\n {:else if buttonState == true}\r\n <button\r\n class=\"fsSendButtonContCommentComp\"\r\n on:click={() =>\r\n closeHandler(email, comment, reactionType, questionAnswer)}\r\n on:click={() => endEmailInterval()}\r\n >\r\n <p class=\"fsSendButtonCommentComponent\">Send</p>\r\n </button>\r\n {/if}\r\n </div>\r\n </div>\r\n{/if}\r\n","export { identity as linear } from '../internal/index.mjs';\n\n/*\nAdapted from https://github.com/mattdesl\nDistributed under MIT License https://github.com/mattdesl/eases/blob/master/LICENSE.md\n*/\nfunction backInOut(t) {\n const s = 1.70158 * 1.525;\n if ((t *= 2) < 1)\n return 0.5 * (t * t * ((s + 1) * t - s));\n return 0.5 * ((t -= 2) * t * ((s + 1) * t + s) + 2);\n}\nfunction backIn(t) {\n const s = 1.70158;\n return t * t * ((s + 1) * t - s);\n}\nfunction backOut(t) {\n const s = 1.70158;\n return --t * t * ((s + 1) * t + s) + 1;\n}\nfunction bounceOut(t) {\n const a = 4.0 / 11.0;\n const b = 8.0 / 11.0;\n const c = 9.0 / 10.0;\n const ca = 4356.0 / 361.0;\n const cb = 35442.0 / 1805.0;\n const cc = 16061.0 / 1805.0;\n const t2 = t * t;\n return t < a\n ? 7.5625 * t2\n : t < b\n ? 9.075 * t2 - 9.9 * t + 3.4\n : t < c\n ? ca * t2 - cb * t + cc\n : 10.8 * t * t - 20.52 * t + 10.72;\n}\nfunction bounceInOut(t) {\n return t < 0.5\n ? 0.5 * (1.0 - bounceOut(1.0 - t * 2.0))\n : 0.5 * bounceOut(t * 2.0 - 1.0) + 0.5;\n}\nfunction bounceIn(t) {\n return 1.0 - bounceOut(1.0 - t);\n}\nfunction circInOut(t) {\n if ((t *= 2) < 1)\n return -0.5 * (Math.sqrt(1 - t * t) - 1);\n return 0.5 * (Math.sqrt(1 - (t -= 2) * t) + 1);\n}\nfunction circIn(t) {\n return 1.0 - Math.sqrt(1.0 - t * t);\n}\nfunction circOut(t) {\n return Math.sqrt(1 - --t * t);\n}\nfunction cubicInOut(t) {\n return t < 0.5 ? 4.0 * t * t * t : 0.5 * Math.pow(2.0 * t - 2.0, 3.0) + 1.0;\n}\nfunction cubicIn(t) {\n return t * t * t;\n}\nfunction cubicOut(t) {\n const f = t - 1.0;\n return f * f * f + 1.0;\n}\nfunction elasticInOut(t) {\n return t < 0.5\n ? 0.5 *\n Math.sin(((+13.0 * Math.PI) / 2) * 2.0 * t) *\n Math.pow(2.0, 10.0 * (2.0 * t - 1.0))\n : 0.5 *\n Math.sin(((-13.0 * Math.PI) / 2) * (2.0 * t - 1.0 + 1.0)) *\n Math.pow(2.0, -10.0 * (2.0 * t - 1.0)) +\n 1.0;\n}\nfunction elasticIn(t) {\n return Math.sin((13.0 * t * Math.PI) / 2) * Math.pow(2.0, 10.0 * (t - 1.0));\n}\nfunction elasticOut(t) {\n return (Math.sin((-13.0 * (t + 1.0) * Math.PI) / 2) * Math.pow(2.0, -10.0 * t) + 1.0);\n}\nfunction expoInOut(t) {\n return t === 0.0 || t === 1.0\n ? t\n : t < 0.5\n ? +0.5 * Math.pow(2.0, 20.0 * t - 10.0)\n : -0.5 * Math.pow(2.0, 10.0 - t * 20.0) + 1.0;\n}\nfunction expoIn(t) {\n return t === 0.0 ? t : Math.pow(2.0, 10.0 * (t - 1.0));\n}\nfunction expoOut(t) {\n return t === 1.0 ? t : 1.0 - Math.pow(2.0, -10.0 * t);\n}\nfunction quadInOut(t) {\n t /= 0.5;\n if (t < 1)\n return 0.5 * t * t;\n t--;\n return -0.5 * (t * (t - 2) - 1);\n}\nfunction quadIn(t) {\n return t * t;\n}\nfunction quadOut(t) {\n return -t * (t - 2.0);\n}\nfunction quartInOut(t) {\n return t < 0.5\n ? +8.0 * Math.pow(t, 4.0)\n : -8.0 * Math.pow(t - 1.0, 4.0) + 1.0;\n}\nfunction quartIn(t) {\n return Math.pow(t, 4.0);\n}\nfunction quartOut(t) {\n return Math.pow(t - 1.0, 3.0) * (1.0 - t) + 1.0;\n}\nfunction quintInOut(t) {\n if ((t *= 2) < 1)\n return 0.5 * t * t * t * t * t;\n return 0.5 * ((t -= 2) * t * t * t * t + 2);\n}\nfunction quintIn(t) {\n return t * t * t * t * t;\n}\nfunction quintOut(t) {\n return --t * t * t * t * t + 1;\n}\nfunction sineInOut(t) {\n return -0.5 * (Math.cos(Math.PI * t) - 1);\n}\nfunction sineIn(t) {\n const v = Math.cos(t * Math.PI * 0.5);\n if (Math.abs(v) < 1e-14)\n return 1;\n else\n return 1 - v;\n}\nfunction sineOut(t) {\n return Math.sin((t * Math.PI) / 2);\n}\n\nexport { backIn, backInOut, backOut, bounceIn, bounceInOut, bounceOut, circIn, circInOut, circOut, cubicIn, cubicInOut, cubicOut, elasticIn, elasticInOut, elasticOut, expoIn, expoInOut, expoOut, quadIn, quadInOut, quadOut, quartIn, quartInOut, quartOut, quintIn, quintInOut, quintOut, sineIn, sineInOut, sineOut };\n","import { cubicInOut, linear, cubicOut } from '../easing/index.mjs';\nimport { is_function, assign } from '../internal/index.mjs';\n\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\n\nfunction blur(node, { delay = 0, duration = 400, easing = cubicInOut, amount = 5, opacity = 0 } = {}) {\n const style = getComputedStyle(node);\n const target_opacity = +style.opacity;\n const f = style.filter === 'none' ? '' : style.filter;\n const od = target_opacity * (1 - opacity);\n return {\n delay,\n duration,\n easing,\n css: (_t, u) => `opacity: ${target_opacity - (od * u)}; filter: ${f} blur(${u * amount}px);`\n };\n}\nfunction fade(node, { delay = 0, duration = 400, easing = linear } = {}) {\n const o = +getComputedStyle(node).opacity;\n return {\n delay,\n duration,\n easing,\n css: t => `opacity: ${t * o}`\n };\n}\nfunction fly(node, { delay = 0, duration = 400, easing = cubicOut, x = 0, y = 0, opacity = 0 } = {}) {\n const style = getComputedStyle(node);\n const target_opacity = +style.opacity;\n const transform = style.transform === 'none' ? '' : style.transform;\n const od = target_opacity * (1 - opacity);\n return {\n delay,\n duration,\n easing,\n css: (t, u) => `\n\t\t\ttransform: ${transform} translate(${(1 - t) * x}px, ${(1 - t) * y}px);\n\t\t\topacity: ${target_opacity - (od * u)}`\n };\n}\nfunction slide(node, { delay = 0, duration = 400, easing = cubicOut } = {}) {\n const style = getComputedStyle(node);\n const opacity = +style.opacity;\n const height = parseFloat(style.height);\n const padding_top = parseFloat(style.paddingTop);\n const padding_bottom = parseFloat(style.paddingBottom);\n const margin_top = parseFloat(style.marginTop);\n const margin_bottom = parseFloat(style.marginBottom);\n const border_top_width = parseFloat(style.borderTopWidth);\n const border_bottom_width = parseFloat(style.borderBottomWidth);\n return {\n delay,\n duration,\n easing,\n css: t => 'overflow: hidden;' +\n `opacity: ${Math.min(t * 20, 1) * opacity};` +\n `height: ${t * height}px;` +\n `padding-top: ${t * padding_top}px;` +\n `padding-bottom: ${t * padding_bottom}px;` +\n `margin-top: ${t * margin_top}px;` +\n `margin-bottom: ${t * margin_bottom}px;` +\n `border-top-width: ${t * border_top_width}px;` +\n `border-bottom-width: ${t * border_bottom_width}px;`\n };\n}\nfunction scale(node, { delay = 0, duration = 400, easing = cubicOut, start = 0, opacity = 0 } = {}) {\n const style = getComputedStyle(node);\n const target_opacity = +style.opacity;\n const transform = style.transform === 'none' ? '' : style.transform;\n const sd = 1 - start;\n const od = target_opacity * (1 - opacity);\n return {\n delay,\n duration,\n easing,\n css: (_t, u) => `\n\t\t\ttransform: ${transform} scale(${1 - (sd * u)});\n\t\t\topacity: ${target_opacity - (od * u)}\n\t\t`\n };\n}\nfunction draw(node, { delay = 0, speed, duration, easing = cubicInOut } = {}) {\n let len = node.getTotalLength();\n const style = getComputedStyle(node);\n if (style.strokeLinecap !== 'butt') {\n len += parseInt(style.strokeWidth);\n }\n if (duration === undefined) {\n if (speed === undefined) {\n duration = 800;\n }\n else {\n duration = len / speed;\n }\n }\n else if (typeof duration === 'function') {\n duration = duration(len);\n }\n return {\n delay,\n duration,\n easing,\n css: (t, u) => `stroke-dasharray: ${t * len} ${u * len}`\n };\n}\nfunction crossfade(_a) {\n var { fallback } = _a, defaults = __rest(_a, [\"fallback\"]);\n const to_receive = new Map();\n const to_send = new Map();\n function crossfade(from, node, params) {\n const { delay = 0, duration = d => Math.sqrt(d) * 30, easing = cubicOut } = assign(assign({}, defaults), params);\n const to = node.getBoundingClientRect();\n const dx = from.left - to.left;\n const dy = from.top - to.top;\n const dw = from.width / to.width;\n const dh = from.height / to.height;\n const d = Math.sqrt(dx * dx + dy * dy);\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n const opacity = +style.opacity;\n return {\n delay,\n duration: is_function(duration) ? duration(d) : duration,\n easing,\n css: (t, u) => `\n\t\t\t\topacity: ${t * opacity};\n\t\t\t\ttransform-origin: top left;\n\t\t\t\ttransform: ${transform} translate(${u * dx}px,${u * dy}px) scale(${t + (1 - t) * dw}, ${t + (1 - t) * dh});\n\t\t\t`\n };\n }\n function transition(items, counterparts, intro) {\n return (node, params) => {\n items.set(params.key, {\n rect: node.getBoundingClientRect()\n });\n return () => {\n if (counterparts.has(params.key)) {\n const { rect } = counterparts.get(params.key);\n counterparts.delete(params.key);\n return crossfade(rect, node, params);\n }\n // if the node is disappearing altogether\n // (i.e. wasn't claimed by the other list)\n // then we need to supply an outro\n items.delete(params.key);\n return fallback && fallback(node, params, intro);\n };\n };\n }\n return [\n transition(to_send, to_receive, false),\n transition(to_receive, to_send, true)\n ];\n}\n\nexport { blur, crossfade, draw, fade, fly, scale, slide };\n","<script>\r\n import MainIcon from \"./Icons/mainIcon.svelte\";\r\n import ReactionPage from \"./widgetPages/reactionPage.svelte\";\r\n export let feedback;\r\n export let widgetPosition;\r\n import { fly } from \"svelte/transition\";\r\n import \"../src/widgetPages/App.css\";\r\n import { scale } from \"svelte/transition\";\r\n import { onMount } from \"svelte\";\r\n\r\n $: widgetId = feedback.id;\r\n $: widgetColor = feedback.wgAccentColor;\r\n $: widgetDisplayMode = feedback.wgDisplayMode;\r\n $: widgetType = feedback.wgType;\r\n $: widgetLanguage = feedback.wgLanguage;\r\n $: widgetAlternateColor = feedback.wgAlternateColor;\r\n $: wgPosition = feedback.wgPosition;\r\n $: widgetThanksMsg = feedback.wgThanksMsg;\r\n $: WidgetTriggers = feedback.wgTriggers;\r\n $: document.documentElement.style.setProperty(\"--widgetColor\", widgetColor);\r\n $: transition = widgetDisplayMode === 1 ? scale : fly;\r\n\r\n let widgetTextColor = \"\";\r\n let iconColor = \"\";\r\n let widgetName = \"Feedback\";\r\n $: if (widgetLanguage == \"en\") {\r\n widgetName = \" Feedback\";\r\n } else if (widgetLanguage == \"ar\") {\r\n widgetName = \"رأي\";\r\n } else {\r\n widgetName = \"Rétroaction\";\r\n }\r\n\r\n $: if (widgetAlternateColor === true) {\r\n widgetTextColor = \"white\";\r\n iconColor = \"white\";\r\n } else {\r\n widgetTextColor = \"black\";\r\n iconColor = \"black\";\r\n }\r\n\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetTextColor\",\r\n widgetTextColor,\r\n );\r\n\r\n let wgPositionHorizintal = \"\";\r\n let wgPositionVertical = \"\";\r\n let widgetLeftSideBorder = 0;\r\n let widgetRightSideBorder = 0;\r\n let widgetMarginRight = 0;\r\n let widgetMarginLeft = 0;\r\n let visible = false;\r\n let buttonVisible = true;\r\n let thanksMessageVisible = false;\r\n let inTransitionX = 0;\r\n let outTransitionX = 0;\r\n let positionState = \"\";\r\n\r\n onMount(() => {\r\n if (widgetDisplayMode === 1 && WidgetTriggers.type !== 0) {\r\n buttonVisible = false;\r\n visible = true;\r\n }\r\n });\r\n\r\n if (widgetPosition == \"fixed\") {\r\n positionState = \"fixed\";\r\n } else {\r\n positionState = \"absolute\";\r\n }\r\n $: document.documentElement.style.setProperty(\r\n \"--positionState\",\r\n positionState,\r\n );\r\n $: if (Number(wgPosition) == 0) {\r\n wgPositionHorizintal = \"center\";\r\n wgPositionVertical = \"row-reverse\";\r\n widgetLeftSideBorder = 5;\r\n widgetRightSideBorder = 0;\r\n widgetMarginRight = 30;\r\n widgetMarginLeft = 0;\r\n inTransitionX = -100;\r\n outTransitionX = 20;\r\n } else if (Number(wgPosition) == 1) {\r\n wgPositionHorizintal = \"center\";\r\n wgPositionVertical = \"row\";\r\n widgetLeftSideBorder = 0;\r\n widgetRightSideBorder = 5;\r\n widgetMarginRight = 0;\r\n widgetMarginLeft = 30;\r\n inTransitionX = 100;\r\n outTransitionX = -20;\r\n } else if (Number(wgPosition) == 2) {\r\n wgPositionHorizintal = \"flex-end\";\r\n wgPositionVertical = \"row-reverse\";\r\n widgetLeftSideBorder = 5;\r\n widgetMarginRight = 30;\r\n widgetMarginLeft = 0;\r\n inTransitionX = -100;\r\n outTransitionX = 20;\r\n } else if (Number(wgPosition) == 3) {\r\n wgPositionHorizintal = \"flex-end\";\r\n wgPositionVertical = \"row\";\r\n widgetLeftSideBorder = 0;\r\n widgetRightSideBorder = 5;\r\n widgetMarginRight = 0;\r\n widgetMarginLeft = 30;\r\n inTransitionX = 100;\r\n outTransitionX = -20;\r\n }\r\n $: document.documentElement.style.setProperty(\r\n \"--wgPositionHorizintal\",\r\n wgPositionHorizintal,\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--wgPositionVertical\",\r\n wgPositionVertical,\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetLeftSideBorder\",\r\n widgetLeftSideBorder + \"px\",\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetRightSideBorder\",\r\n widgetRightSideBorder + \"px\",\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetMarginRight\",\r\n widgetMarginRight + \"px\",\r\n );\r\n $: document.documentElement.style.setProperty(\r\n \"--widgetMarginLeft\",\r\n widgetMarginLeft + \"px\",\r\n );\r\n\r\n $: transitionInParams =\r\n widgetDisplayMode === 1\r\n ? { duration: 500 }\r\n : { x: inTransitionX, duration: 500 };\r\n $: transitionOutParams =\r\n widgetDisplayMode === 1\r\n ? { duration: 500 }\r\n : { x: outTransitionX, duration: 300 };\r\n\r\n let userClosedWidget = 0;\r\n let emailx = \"\";\r\n let commentx = \"\";\r\n let reactionTypex = \"\";\r\n const closeOne = (email, comment, reactionType, questionAnswer) => {\r\n let widgetResponse;\r\n if (widgetType === 0) {\r\n widgetResponse = {\r\n id: widgetId,\r\n email: email,\r\n comment: comment,\r\n reaction: Number(reactionType),\r\n type: widgetType,\r\n };\r\n } else if (widgetType === 1) {\r\n widgetResponse = {\r\n id: widgetId,\r\n email: email,\r\n questionAnswer: questionAnswer,\r\n type: widgetType,\r\n };\r\n } else if (widgetType === 2) {\r\n widgetResponse = {\r\n id: widgetId,\r\n email: email,\r\n reaction: Number(reactionType),\r\n type: widgetType,\r\n };\r\n }\r\n\r\n let event = new CustomEvent(\"fbEvent\", {\r\n bubbles: false,\r\n detail: widgetResponse,\r\n });\r\n\r\n window.dispatchEvent(event);\r\n openThanksMessage();\r\n };\r\n\r\n // const closeBeforeFinsihing = (email, comment, reactionType) => {\r\n // emailx = email;\r\n // commentx = comment;\r\n // reactionTypex = Number(reactionType);\r\n // let widgetResponse = {\r\n // email: email,\r\n // comment: comment,\r\n // reaction: reactionType,\r\n // };\r\n // if (userClosedWidget == 1) {\r\n // console.log(\"hi\", widgetResponse);\r\n // let event = new CustomEvent(\"fbEvent\", {\r\n // bubbles: false,\r\n // detail: widgetResponse,\r\n // });\r\n // window.dispatchEvent(event);\r\n // console.log(widgetResponse);\r\n // }\r\n // };\r\n\r\n const openThanksMessage = () => {\r\n visible = !visible;\r\n thanksMessageVisible = !thanksMessageVisible;\r\n };\r\n\r\n const closeThanksMessage = () => {\r\n thanksMessageVisible = !thanksMessageVisible;\r\n setTimeout(function () {\r\n buttonVisible = !buttonVisible;\r\n }, 350);\r\n };\r\n\r\n const openWidget = () => {\r\n visible = !visible;\r\n buttonVisible = !buttonVisible;\r\n };\r\n\r\n const closeWidget = () => {\r\n userClosedWidget = 1;\r\n if (reactionTypex != 0) {\r\n closeBeforeFinsihing(emailx, commentx, reactionTypex);\r\n }\r\n visible = !visible;\r\n setTimeout(function () {\r\n buttonVisible = !buttonVisible;\r\n }, 350);\r\n };\r\n</script>\r\n\r\n<fsContainer\r\n class={!buttonVisible && widgetDisplayMode == 1 ? \"fs-feedback-modal\" : \"fs-side\"}\r\n style=\"position: fixed; top: 0; right: 0; bottom: 0; left: 0;\"\r\n dir=\"ltr\"\r\n>\r\n {#if buttonVisible}\r\n <div class=\"fsWidget\" on:click={openWidget}>\r\n <div id=\"fsFeedbackTxt\">{widgetName}</div>\r\n <div id=\"fsMainIcon\">\r\n <MainIcon bind:fill={iconColor} />\r\n </div>\r\n </div>\r\n {/if}\r\n\r\n {#if visible}\r\n <div\r\n class=\"fsCont\"\r\n class:fsContModal={widgetDisplayMode === 1}\r\n class:fsContNps={widgetType === 2}\r\n in:transition={transitionInParams}\r\n >\r\n <div class=\"fsCloseCont\" class:fsNpsCloseCont={widgetType === 2} on:click={closeWidget}>\r\n <p id=\"fsCloseIcon\">X</p>\r\n </div>\r\n <ReactionPage\r\n closeHandler={closeOne}\r\n bind:feedbackData={feedback}\r\n bind:wgType={widgetType}\r\n />\r\n </div>\r\n {/if}\r\n {#if thanksMessageVisible}\r\n <div class=\"fsThanksMessageCont\" out:transition={transitionOutParams}>\r\n <div class=\"fsCloseCont\" on:click={closeThanksMessage}>\r\n <p id=\"fsCloseIcon\">X</p>\r\n </div>\r\n <div class=\"fs-thanks-txt\">\r\n {widgetThanksMsg}\r\n </div>\r\n </div>\r\n {/if}\r\n</fsContainer>\r\n","import App from './App.svelte';\r\n\r\nexport function feedbackCreator(response, htmlElement) {\r\n\tlet view;\r\n\tlet position;\r\n\tif (htmlElement == null || htmlElement == undefined) {\r\n\t\tview = document.body\r\n\t\tposition = 'fixed';\r\n\t}\r\n\telse {\r\n\t\tview = htmlElement;\r\n\t\tposition = 'absolute';\r\n\t}\r\n\tconst app = new App({\r\n\t\ttarget: view,\r\n\t\tprops: {\r\n\t\t\tfeedback: response,\r\n\t\t\twidgetPosition: position,\r\n\t\t}\r\n\t});\r\n\r\n\treturn app;\r\n}\r\n\r\n// let widget ={id: 1,\r\n// \twgStatus: 1,\r\n// \twgName: \"ask\",\r\n// \twgDescription: \"test\",\r\n// \twgCrtDt: \"2021-12-05 10:49:14\",\r\n// \twgResponses: null,\r\n// \twgUpdTime: null,\r\n// \tSiteId: 98,\r\n// \tUserId: 262,\r\n// \twgLanguage: \"en\",\r\n// \twgPosition: \"0\",\r\n// \twgAccentColor: \"#51797b\",\r\n// \twgAlternateColor: true,\r\n// \twgQuestion: \"How would you rate your experience?\" ,\r\n// \twgUserScreenshot: 1,\r\n// \twgEmailReqMsg: \"We may wish to follow up. Enter your email if you're happy for us to contact you.\" ,\r\n// \twgEmailReqActivation: 1,\r\n// \twgAdditionalMsg: \"Heads up! This is for feedback only. Need help? Contact us via our [link to Help Center].\",\r\n// \twgAdditionalMsgActivation: 1,\r\n// \twgThanksMsg: \"Thank you for sharing your feedback with us\",\r\n// \twgThanksMsgActivation: 1,\r\n// \twgDesktop: 1,\r\n// \twgPhone: 1,\r\n// \twgTablet:1,\r\n// \twgPages: [{\"id\":0,\"name\":\"*\"}],\r\n// \twgWidgetToUsers: 0,\r\n// \twgPercentage:100,\r\n// \twgEmail: \"abd@gmail.com\",\r\n// \twgWidgetToAllPages: 1,\r\n// \twgReactionStyle: 0,\r\n// \twgResponseViaEmail: 1}\r\n// feedbackCreator(widget,null);\r\n"],"names":["noop","identity","x","assign","tar","src","k","run","fn","blank_object","Object","create","run_all","fns","forEach","is_function","thing","safe_not_equal","a","b","exclude_internal_props","props","result","is_client","window","now","performance","Date","raf","cb","requestAnimationFrame","tasks","Set","run_tasks","task","c","delete","f","size","loop","callback","promise","Promise","fulfill","add","abort","append","target","node","appendChild","get_root_for_style","document","root","getRootNode","ownerDocument","host","append_empty_stylesheet","style_element","element","style","head","append_stylesheet","sheet","insert","anchor","insertBefore","detach","parentNode","removeChild","name","createElement","svg_element","createElementNS","text","data","createTextNode","space","empty","listen","event","handler","options","addEventListener","removeEventListener","attr","attribute","value","removeAttribute","getAttribute","setAttribute","set_data","wholeText","set_style","key","important","removeProperty","setProperty","toggle_class","toggle","classList","managed_styles","Map","current_component","active","create_rule","duration","delay","ease","uid","step","keyframes","p","t","rule","str","hash","i","length","charCodeAt","doc","stylesheet","rules","get","info","set","create_style_information","insertRule","cssRules","animation","delete_rule","previous","split","next","filter","anim","indexOf","deleted","join","deleteRule","clear","set_current_component","component","onMount","Error","get_current_component","$$","on_mount","push","dirty_components","binding_callbacks","render_callbacks","flush_callbacks","resolved_promise","resolve","update_scheduled","add_render_callback","add_flush_callback","seen_callbacks","flushidx","flush","saved_component","update","pop","has","fragment","before_update","dirty","ctx","after_update","wait","then","dispatch","direction","kind","dispatchEvent","type","detail","bubbles","e","createEvent","initCustomEvent","custom_event","outroing","outros","group_outros","r","check_outros","transition_in","block","local","transition_out","o","d","null_transition","bind","index","undefined","bound","create_component","mount_component","customElement","on_destroy","m","new_on_destroy","map","destroy_component","detaching","make_dirty","fill","init","instance","create_fragment","not_equal","append_styles","parent_component","on_disconnect","context","callbacks","skip_bound","ready","ret","rest","hydrate","nodes","Array","from","childNodes","children","l","intro","SvelteComponent","$destroy","this","$on","splice","$set","$$props","obj","$$set","keys","icons_1","icons_2","icons_3","svg","class","box","focusable","emotIconType","width","height","emotIcons","displayIcon","find","styleInject","css","ref","insertAt","getElementsByTagName","firstChild","styleSheet","cssText","iterations","checkTextAreaInterval","feedbackData","wgType","reactionNames","changingReactionNames","reactionType","comment","email","questionAnswer","reactionName","reactionState","count","closeHandler","closeHandlerBeforeFinishing","commentHandler","input","querySelector","buttonState","emailHandler","test","getElementById","openComment","state","rating","prevName","prevState","widgetComponent","String","hateDisplay","dislikeDisplay","neutralDisplay","likeDisplay","loveDisplay","pointerMargin","openEmailStep","questionHandler","question","openEmailCont","clearInterval","openEmailView","endEmailInterval","checkEmailAreaInterval","buttonColor","wgAccentColor","widgetQuestion","wgQuestion","widgetEmailReqMsg","wgEmailReqMsg","widgetPlaceholder","wgFeedbackPlaceholder","widgetEmotIconType","wgReactionStyle","documentElement","cubicOut","fly","easing","y","opacity","getComputedStyle","target_opacity","transform","od","u","scale","start","sd","_t","params","animation_name","config","running","cleanup","go","tick","start_time","end_time","started","invalidate","end","group","reset","feedback","widgetPosition","widgetTextColor","iconColor","widgetName","wgPositionHorizintal","wgPositionVertical","widgetLeftSideBorder","widgetRightSideBorder","widgetMarginRight","widgetMarginLeft","visible","buttonVisible","thanksMessageVisible","inTransitionX","outTransitionX","positionState","widgetDisplayMode","WidgetTriggers","openThanksMessage","widgetId","id","widgetColor","wgDisplayMode","widgetType","widgetLanguage","wgLanguage","widgetAlternateColor","wgAlternateColor","wgPosition","widgetThanksMsg","wgThanksMsg","wgTriggers","transition","Number","transitionInParams","transitionOutParams","widgetResponse","reaction","CustomEvent","setTimeout","feedbackCreator","response","htmlElement","view","position","body","App"],"mappings":"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"}
|