{"version":3,"file":"static/chunks/pages/faq-608a6599f9b0f936.js","sources":["webpack://_N_E/./node_modules/linkify-it/index.js","webpack://_N_E/./node_modules/linkify-it/lib/re.js","webpack://_N_E/./src/common/components/seo/AnyJsonLd.tsx","webpack://_N_E/./src/common/components/seo/BreadcrumbDomainJsonLd.tsx","webpack://_N_E/./src/common/methods/getBreadcrumbs.ts","webpack://_N_E/./src/LegacyApp/client/pages/faq.page/Faq.global.styled.ts","webpack://_N_E/./src/LegacyApp/client/pages/faq.page/FaqList.styled.ts","webpack://_N_E/./src/LegacyApp/mocks/faq.tsx","webpack://_N_E/./src/LegacyApp/client/components/linkify/linkify.jsx","webpack://_N_E/./src/LegacyApp/client/components/linkify/linkify.container.js","webpack://_N_E/./src/LegacyApp/client/pages/faq.page/faq.page.tsx","webpack://_N_E/./src/pages/faq.tsx","webpack://_N_E/?d9f8","webpack://_N_E/./node_modules/react-linkify/dist/components/Linkify.js","webpack://_N_E/./node_modules/react-linkify/dist/decorators/defaultComponentDecorator.js","webpack://_N_E/./node_modules/react-linkify/dist/decorators/defaultHrefDecorator.js","webpack://_N_E/./node_modules/react-linkify/dist/decorators/defaultMatchDecorator.js","webpack://_N_E/./node_modules/react-linkify/dist/decorators/defaultTextDecorator.js","webpack://_N_E/./node_modules/react-linkify/dist/index.js","webpack://_N_E/./node_modules/uc.micro/categories/Cc/regex.js","webpack://_N_E/./node_modules/uc.micro/categories/P/regex.js","webpack://_N_E/./node_modules/uc.micro/categories/Z/regex.js","webpack://_N_E/./node_modules/uc.micro/properties/Any/regex.js"],"sourceRoot":"","sourcesContent":["'use strict';\n\n\n////////////////////////////////////////////////////////////////////////////////\n// Helpers\n\n// Merge objects\n//\nfunction assign(obj /*from1, from2, from3, ...*/) {\n var sources = Array.prototype.slice.call(arguments, 1);\n\n sources.forEach(function (source) {\n if (!source) { return; }\n\n Object.keys(source).forEach(function (key) {\n obj[key] = source[key];\n });\n });\n\n return obj;\n}\n\nfunction _class(obj) { return Object.prototype.toString.call(obj); }\nfunction isString(obj) { return _class(obj) === '[object String]'; }\nfunction isObject(obj) { return _class(obj) === '[object Object]'; }\nfunction isRegExp(obj) { return _class(obj) === '[object RegExp]'; }\nfunction isFunction(obj) { return _class(obj) === '[object Function]'; }\n\n\nfunction escapeRE(str) { return str.replace(/[.?*+^$[\\]\\\\(){}|-]/g, '\\\\$&'); }\n\n////////////////////////////////////////////////////////////////////////////////\n\n\nvar defaultOptions = {\n fuzzyLink: true,\n fuzzyEmail: true,\n fuzzyIP: false\n};\n\n\nfunction isOptionsObj(obj) {\n return Object.keys(obj || {}).reduce(function (acc, k) {\n return acc || defaultOptions.hasOwnProperty(k);\n }, false);\n}\n\n\nvar defaultSchemas = {\n 'http:': {\n validate: function (text, pos, self) {\n var tail = text.slice(pos);\n\n if (!self.re.http) {\n // compile lazily, because \"host\"-containing variables can change on tlds update.\n self.re.http = new RegExp(\n '^\\\\/\\\\/' + self.re.src_auth + self.re.src_host_port_strict + self.re.src_path, 'i'\n );\n }\n if (self.re.http.test(tail)) {\n return tail.match(self.re.http)[0].length;\n }\n return 0;\n }\n },\n 'https:': 'http:',\n 'ftp:': 'http:',\n '//': {\n validate: function (text, pos, self) {\n var tail = text.slice(pos);\n\n if (!self.re.no_http) {\n // compile lazily, because \"host\"-containing variables can change on tlds update.\n self.re.no_http = new RegExp(\n '^' +\n self.re.src_auth +\n // Don't allow single-level domains, because of false positives like '//test'\n // with code comments\n '(?:localhost|(?:(?:' + self.re.src_domain + ')\\\\.)+' + self.re.src_domain_root + ')' +\n self.re.src_port +\n self.re.src_host_terminator +\n self.re.src_path,\n\n 'i'\n );\n }\n\n if (self.re.no_http.test(tail)) {\n // should not be `://` & `///`, that protects from errors in protocol name\n if (pos >= 3 && text[pos - 3] === ':') { return 0; }\n if (pos >= 3 && text[pos - 3] === '/') { return 0; }\n return tail.match(self.re.no_http)[0].length;\n }\n return 0;\n }\n },\n 'mailto:': {\n validate: function (text, pos, self) {\n var tail = text.slice(pos);\n\n if (!self.re.mailto) {\n self.re.mailto = new RegExp(\n '^' + self.re.src_email_name + '@' + self.re.src_host_strict, 'i'\n );\n }\n if (self.re.mailto.test(tail)) {\n return tail.match(self.re.mailto)[0].length;\n }\n return 0;\n }\n }\n};\n\n/*eslint-disable max-len*/\n\n// RE pattern for 2-character tlds (autogenerated by ./support/tlds_2char_gen.js)\nvar tlds_2ch_src_re = 'a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]';\n\n// DON'T try to make PRs with changes. Extend TLDs with LinkifyIt.tlds() instead\nvar tlds_default = 'biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф'.split('|');\n\n/*eslint-enable max-len*/\n\n////////////////////////////////////////////////////////////////////////////////\n\nfunction resetScanCache(self) {\n self.__index__ = -1;\n self.__text_cache__ = '';\n}\n\nfunction createValidator(re) {\n return function (text, pos) {\n var tail = text.slice(pos);\n\n if (re.test(tail)) {\n return tail.match(re)[0].length;\n }\n return 0;\n };\n}\n\nfunction createNormalizer() {\n return function (match, self) {\n self.normalize(match);\n };\n}\n\n// Schemas compiler. Build regexps.\n//\nfunction compile(self) {\n\n // Load & clone RE patterns.\n var re = self.re = require('./lib/re')(self.__opts__);\n\n // Define dynamic patterns\n var tlds = self.__tlds__.slice();\n\n self.onCompile();\n\n if (!self.__tlds_replaced__) {\n tlds.push(tlds_2ch_src_re);\n }\n tlds.push(re.src_xn);\n\n re.src_tlds = tlds.join('|');\n\n function untpl(tpl) { return tpl.replace('%TLDS%', re.src_tlds); }\n\n re.email_fuzzy = RegExp(untpl(re.tpl_email_fuzzy), 'i');\n re.link_fuzzy = RegExp(untpl(re.tpl_link_fuzzy), 'i');\n re.link_no_ip_fuzzy = RegExp(untpl(re.tpl_link_no_ip_fuzzy), 'i');\n re.host_fuzzy_test = RegExp(untpl(re.tpl_host_fuzzy_test), 'i');\n\n //\n // Compile each schema\n //\n\n var aliases = [];\n\n self.__compiled__ = {}; // Reset compiled data\n\n function schemaError(name, val) {\n throw new Error('(LinkifyIt) Invalid schema \"' + name + '\": ' + val);\n }\n\n Object.keys(self.__schemas__).forEach(function (name) {\n var val = self.__schemas__[name];\n\n // skip disabled methods\n if (val === null) { return; }\n\n var compiled = { validate: null, link: null };\n\n self.__compiled__[name] = compiled;\n\n if (isObject(val)) {\n if (isRegExp(val.validate)) {\n compiled.validate = createValidator(val.validate);\n } else if (isFunction(val.validate)) {\n compiled.validate = val.validate;\n } else {\n schemaError(name, val);\n }\n\n if (isFunction(val.normalize)) {\n compiled.normalize = val.normalize;\n } else if (!val.normalize) {\n compiled.normalize = createNormalizer();\n } else {\n schemaError(name, val);\n }\n\n return;\n }\n\n if (isString(val)) {\n aliases.push(name);\n return;\n }\n\n schemaError(name, val);\n });\n\n //\n // Compile postponed aliases\n //\n\n aliases.forEach(function (alias) {\n if (!self.__compiled__[self.__schemas__[alias]]) {\n // Silently fail on missed schemas to avoid errons on disable.\n // schemaError(alias, self.__schemas__[alias]);\n return;\n }\n\n self.__compiled__[alias].validate =\n self.__compiled__[self.__schemas__[alias]].validate;\n self.__compiled__[alias].normalize =\n self.__compiled__[self.__schemas__[alias]].normalize;\n });\n\n //\n // Fake record for guessed links\n //\n self.__compiled__[''] = { validate: null, normalize: createNormalizer() };\n\n //\n // Build schema condition\n //\n var slist = Object.keys(self.__compiled__)\n .filter(function (name) {\n // Filter disabled & fake schemas\n return name.length > 0 && self.__compiled__[name];\n })\n .map(escapeRE)\n .join('|');\n // (?!_) cause 1.5x slowdown\n self.re.schema_test = RegExp('(^|(?!_)(?:[><\\uff5c]|' + re.src_ZPCc + '))(' + slist + ')', 'i');\n self.re.schema_search = RegExp('(^|(?!_)(?:[><\\uff5c]|' + re.src_ZPCc + '))(' + slist + ')', 'ig');\n\n self.re.pretest = RegExp(\n '(' + self.re.schema_test.source + ')|(' + self.re.host_fuzzy_test.source + ')|@',\n 'i'\n );\n\n //\n // Cleanup\n //\n\n resetScanCache(self);\n}\n\n/**\n * class Match\n *\n * Match result. Single element of array, returned by [[LinkifyIt#match]]\n **/\nfunction Match(self, shift) {\n var start = self.__index__,\n end = self.__last_index__,\n text = self.__text_cache__.slice(start, end);\n\n /**\n * Match#schema -> String\n *\n * Prefix (protocol) for matched string.\n **/\n this.schema = self.__schema__.toLowerCase();\n /**\n * Match#index -> Number\n *\n * First position of matched string.\n **/\n this.index = start + shift;\n /**\n * Match#lastIndex -> Number\n *\n * Next position after matched string.\n **/\n this.lastIndex = end + shift;\n /**\n * Match#raw -> String\n *\n * Matched string.\n **/\n this.raw = text;\n /**\n * Match#text -> String\n *\n * Notmalized text of matched string.\n **/\n this.text = text;\n /**\n * Match#url -> String\n *\n * Normalized url of matched string.\n **/\n this.url = text;\n}\n\nfunction createMatch(self, shift) {\n var match = new Match(self, shift);\n\n self.__compiled__[match.schema].normalize(match, self);\n\n return match;\n}\n\n\n/**\n * class LinkifyIt\n **/\n\n/**\n * new LinkifyIt(schemas, options)\n * - schemas (Object): Optional. Additional schemas to validate (prefix/validator)\n * - options (Object): { fuzzyLink|fuzzyEmail|fuzzyIP: true|false }\n *\n * Creates new linkifier instance with optional additional schemas.\n * Can be called without `new` keyword for convenience.\n *\n * By default understands:\n *\n * - `http(s)://...` , `ftp://...`, `mailto:...` & `//...` links\n * - \"fuzzy\" links and emails (example.com, foo@bar.com).\n *\n * `schemas` is an object, where each key/value describes protocol/rule:\n *\n * - __key__ - link prefix (usually, protocol name with `:` at the end, `skype:`\n * for example). `linkify-it` makes shure that prefix is not preceeded with\n * alphanumeric char and symbols. Only whitespaces and punctuation allowed.\n * - __value__ - rule to check tail after link prefix\n * - _String_ - just alias to existing rule\n * - _Object_\n * - _validate_ - validator function (should return matched length on success),\n * or `RegExp`.\n * - _normalize_ - optional function to normalize text & url of matched result\n * (for example, for @twitter mentions).\n *\n * `options`:\n *\n * - __fuzzyLink__ - recognige URL-s without `http(s):` prefix. Default `true`.\n * - __fuzzyIP__ - allow IPs in fuzzy links above. Can conflict with some texts\n * like version numbers. Default `false`.\n * - __fuzzyEmail__ - recognize emails without `mailto:` prefix.\n *\n **/\nfunction LinkifyIt(schemas, options) {\n if (!(this instanceof LinkifyIt)) {\n return new LinkifyIt(schemas, options);\n }\n\n if (!options) {\n if (isOptionsObj(schemas)) {\n options = schemas;\n schemas = {};\n }\n }\n\n this.__opts__ = assign({}, defaultOptions, options);\n\n // Cache last tested result. Used to skip repeating steps on next `match` call.\n this.__index__ = -1;\n this.__last_index__ = -1; // Next scan position\n this.__schema__ = '';\n this.__text_cache__ = '';\n\n this.__schemas__ = assign({}, defaultSchemas, schemas);\n this.__compiled__ = {};\n\n this.__tlds__ = tlds_default;\n this.__tlds_replaced__ = false;\n\n this.re = {};\n\n compile(this);\n}\n\n\n/** chainable\n * LinkifyIt#add(schema, definition)\n * - schema (String): rule name (fixed pattern prefix)\n * - definition (String|RegExp|Object): schema definition\n *\n * Add new rule definition. See constructor description for details.\n **/\nLinkifyIt.prototype.add = function add(schema, definition) {\n this.__schemas__[schema] = definition;\n compile(this);\n return this;\n};\n\n\n/** chainable\n * LinkifyIt#set(options)\n * - options (Object): { fuzzyLink|fuzzyEmail|fuzzyIP: true|false }\n *\n * Set recognition options for links without schema.\n **/\nLinkifyIt.prototype.set = function set(options) {\n this.__opts__ = assign(this.__opts__, options);\n return this;\n};\n\n\n/**\n * LinkifyIt#test(text) -> Boolean\n *\n * Searches linkifiable pattern and returns `true` on success or `false` on fail.\n **/\nLinkifyIt.prototype.test = function test(text) {\n // Reset scan cache\n this.__text_cache__ = text;\n this.__index__ = -1;\n\n if (!text.length) { return false; }\n\n var m, ml, me, len, shift, next, re, tld_pos, at_pos;\n\n // try to scan for link with schema - that's the most simple rule\n if (this.re.schema_test.test(text)) {\n re = this.re.schema_search;\n re.lastIndex = 0;\n while ((m = re.exec(text)) !== null) {\n len = this.testSchemaAt(text, m[2], re.lastIndex);\n if (len) {\n this.__schema__ = m[2];\n this.__index__ = m.index + m[1].length;\n this.__last_index__ = m.index + m[0].length + len;\n break;\n }\n }\n }\n\n if (this.__opts__.fuzzyLink && this.__compiled__['http:']) {\n // guess schemaless links\n tld_pos = text.search(this.re.host_fuzzy_test);\n if (tld_pos >= 0) {\n // if tld is located after found link - no need to check fuzzy pattern\n if (this.__index__ < 0 || tld_pos < this.__index__) {\n if ((ml = text.match(this.__opts__.fuzzyIP ? this.re.link_fuzzy : this.re.link_no_ip_fuzzy)) !== null) {\n\n shift = ml.index + ml[1].length;\n\n if (this.__index__ < 0 || shift < this.__index__) {\n this.__schema__ = '';\n this.__index__ = shift;\n this.__last_index__ = ml.index + ml[0].length;\n }\n }\n }\n }\n }\n\n if (this.__opts__.fuzzyEmail && this.__compiled__['mailto:']) {\n // guess schemaless emails\n at_pos = text.indexOf('@');\n if (at_pos >= 0) {\n // We can't skip this check, because this cases are possible:\n // 192.168.1.1@gmail.com, my.in@example.com\n if ((me = text.match(this.re.email_fuzzy)) !== null) {\n\n shift = me.index + me[1].length;\n next = me.index + me[0].length;\n\n if (this.__index__ < 0 || shift < this.__index__ ||\n (shift === this.__index__ && next > this.__last_index__)) {\n this.__schema__ = 'mailto:';\n this.__index__ = shift;\n this.__last_index__ = next;\n }\n }\n }\n }\n\n return this.__index__ >= 0;\n};\n\n\n/**\n * LinkifyIt#pretest(text) -> Boolean\n *\n * Very quick check, that can give false positives. Returns true if link MAY BE\n * can exists. Can be used for speed optimization, when you need to check that\n * link NOT exists.\n **/\nLinkifyIt.prototype.pretest = function pretest(text) {\n return this.re.pretest.test(text);\n};\n\n\n/**\n * LinkifyIt#testSchemaAt(text, name, position) -> Number\n * - text (String): text to scan\n * - name (String): rule (schema) name\n * - position (Number): text offset to check from\n *\n * Similar to [[LinkifyIt#test]] but checks only specific protocol tail exactly\n * at given position. Returns length of found pattern (0 on fail).\n **/\nLinkifyIt.prototype.testSchemaAt = function testSchemaAt(text, schema, pos) {\n // If not supported schema check requested - terminate\n if (!this.__compiled__[schema.toLowerCase()]) {\n return 0;\n }\n return this.__compiled__[schema.toLowerCase()].validate(text, pos, this);\n};\n\n\n/**\n * LinkifyIt#match(text) -> Array|null\n *\n * Returns array of found link descriptions or `null` on fail. We strongly\n * recommend to use [[LinkifyIt#test]] first, for best speed.\n *\n * ##### Result match description\n *\n * - __schema__ - link schema, can be empty for fuzzy links, or `//` for\n * protocol-neutral links.\n * - __index__ - offset of matched text\n * - __lastIndex__ - index of next char after mathch end\n * - __raw__ - matched text\n * - __text__ - normalized text\n * - __url__ - link, generated from matched text\n **/\nLinkifyIt.prototype.match = function match(text) {\n var shift = 0, result = [];\n\n // Try to take previous element from cache, if .test() called before\n if (this.__index__ >= 0 && this.__text_cache__ === text) {\n result.push(createMatch(this, shift));\n shift = this.__last_index__;\n }\n\n // Cut head if cache was used\n var tail = shift ? text.slice(shift) : text;\n\n // Scan string until end reached\n while (this.test(tail)) {\n result.push(createMatch(this, shift));\n\n tail = tail.slice(this.__last_index__);\n shift += this.__last_index__;\n }\n\n if (result.length) {\n return result;\n }\n\n return null;\n};\n\n\n/** chainable\n * LinkifyIt#tlds(list [, keepOld]) -> this\n * - list (Array): list of tlds\n * - keepOld (Boolean): merge with current list if `true` (`false` by default)\n *\n * Load (or merge) new tlds list. Those are user for fuzzy links (without prefix)\n * to avoid false positives. By default this algorythm used:\n *\n * - hostname with any 2-letter root zones are ok.\n * - biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф\n * are ok.\n * - encoded (`xn--...`) root zones are ok.\n *\n * If list is replaced, then exact match for 2-chars root zones will be checked.\n **/\nLinkifyIt.prototype.tlds = function tlds(list, keepOld) {\n list = Array.isArray(list) ? list : [ list ];\n\n if (!keepOld) {\n this.__tlds__ = list.slice();\n this.__tlds_replaced__ = true;\n compile(this);\n return this;\n }\n\n this.__tlds__ = this.__tlds__.concat(list)\n .sort()\n .filter(function (el, idx, arr) {\n return el !== arr[idx - 1];\n })\n .reverse();\n\n compile(this);\n return this;\n};\n\n/**\n * LinkifyIt#normalize(match)\n *\n * Default normalizer (if schema does not define it's own).\n **/\nLinkifyIt.prototype.normalize = function normalize(match) {\n\n // Do minimal possible changes by default. Need to collect feedback prior\n // to move forward https://github.com/markdown-it/linkify-it/issues/1\n\n if (!match.schema) { match.url = 'http://' + match.url; }\n\n if (match.schema === 'mailto:' && !/^mailto:/i.test(match.url)) {\n match.url = 'mailto:' + match.url;\n }\n};\n\n\n/**\n * LinkifyIt#onCompile()\n *\n * Override to modify basic RegExp-s.\n **/\nLinkifyIt.prototype.onCompile = function onCompile() {\n};\n\n\nmodule.exports = LinkifyIt;\n","'use strict';\n\n\nmodule.exports = function (opts) {\n var re = {};\n\n // Use direct extract instead of `regenerate` to reduse browserified size\n re.src_Any = require('uc.micro/properties/Any/regex').source;\n re.src_Cc = require('uc.micro/categories/Cc/regex').source;\n re.src_Z = require('uc.micro/categories/Z/regex').source;\n re.src_P = require('uc.micro/categories/P/regex').source;\n\n // \\p{\\Z\\P\\Cc\\CF} (white spaces + control + format + punctuation)\n re.src_ZPCc = [ re.src_Z, re.src_P, re.src_Cc ].join('|');\n\n // \\p{\\Z\\Cc} (white spaces + control)\n re.src_ZCc = [ re.src_Z, re.src_Cc ].join('|');\n\n // Experimental. List of chars, completely prohibited in links\n // because can separate it from other part of text\n var text_separators = '[><\\uff5c]';\n\n // All possible word characters (everything without punctuation, spaces & controls)\n // Defined via punctuation & spaces to save space\n // Should be something like \\p{\\L\\N\\S\\M} (\\w but without `_`)\n re.src_pseudo_letter = '(?:(?!' + text_separators + '|' + re.src_ZPCc + ')' + re.src_Any + ')';\n // The same as abothe but without [0-9]\n // var src_pseudo_letter_non_d = '(?:(?![0-9]|' + src_ZPCc + ')' + src_Any + ')';\n\n ////////////////////////////////////////////////////////////////////////////////\n\n re.src_ip4 =\n\n '(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)';\n\n // Prohibit any of \"@/[]()\" in user/pass to avoid wrong domain fetch.\n re.src_auth = '(?:(?:(?!' + re.src_ZCc + '|[@/\\\\[\\\\]()]).)+@)?';\n\n re.src_port =\n\n '(?::(?:6(?:[0-4]\\\\d{3}|5(?:[0-4]\\\\d{2}|5(?:[0-2]\\\\d|3[0-5])))|[1-5]?\\\\d{1,4}))?';\n\n re.src_host_terminator =\n\n '(?=$|' + text_separators + '|' + re.src_ZPCc + ')(?!-|_|:\\\\d|\\\\.-|\\\\.(?!$|' + re.src_ZPCc + '))';\n\n re.src_path =\n\n '(?:' +\n '[/?#]' +\n '(?:' +\n '(?!' + re.src_ZCc + '|' + text_separators + '|[()[\\\\]{}.,\"\\'?!\\\\-]).|' +\n '\\\\[(?:(?!' + re.src_ZCc + '|\\\\]).)*\\\\]|' +\n '\\\\((?:(?!' + re.src_ZCc + '|[)]).)*\\\\)|' +\n '\\\\{(?:(?!' + re.src_ZCc + '|[}]).)*\\\\}|' +\n '\\\\\"(?:(?!' + re.src_ZCc + '|[\"]).)+\\\\\"|' +\n \"\\\\'(?:(?!\" + re.src_ZCc + \"|[']).)+\\\\'|\" +\n \"\\\\'(?=\" + re.src_pseudo_letter + '|[-]).|' + // allow `I'm_king` if no pair found\n '\\\\.{2,4}[a-zA-Z0-9%/]|' + // github has ... in commit range links,\n // google has .... in links (issue #66)\n // Restrict to\n // - english\n // - percent-encoded\n // - parts of file path\n // until more examples found.\n '\\\\.(?!' + re.src_ZCc + '|[.]).|' +\n (opts && opts['---'] ?\n '\\\\-(?!--(?:[^-]|$))(?:-*)|' // `---` => long dash, terminate\n :\n '\\\\-+|'\n ) +\n '\\\\,(?!' + re.src_ZCc + ').|' + // allow `,,,` in paths\n '\\\\!(?!' + re.src_ZCc + '|[!]).|' +\n '\\\\?(?!' + re.src_ZCc + '|[?]).' +\n ')+' +\n '|\\\\/' +\n ')?';\n\n // Allow anything in markdown spec, forbid quote (\") at the first position\n // because emails enclosed in quotes are far more common\n re.src_email_name =\n\n '[\\\\-;:&=\\\\+\\\\$,\\\\.a-zA-Z0-9_][\\\\-;:&=\\\\+\\\\$,\\\\\"\\\\.a-zA-Z0-9_]*';\n\n re.src_xn =\n\n 'xn--[a-z0-9\\\\-]{1,59}';\n\n // More to read about domain names\n // http://serverfault.com/questions/638260/\n\n re.src_domain_root =\n\n // Allow letters & digits (http://test1)\n '(?:' +\n re.src_xn +\n '|' +\n re.src_pseudo_letter + '{1,63}' +\n ')';\n\n re.src_domain =\n\n '(?:' +\n re.src_xn +\n '|' +\n '(?:' + re.src_pseudo_letter + ')' +\n '|' +\n '(?:' + re.src_pseudo_letter + '(?:-|' + re.src_pseudo_letter + '){0,61}' + re.src_pseudo_letter + ')' +\n ')';\n\n re.src_host =\n\n '(?:' +\n // Don't need IP check, because digits are already allowed in normal domain names\n // src_ip4 +\n // '|' +\n '(?:(?:(?:' + re.src_domain + ')\\\\.)*' + re.src_domain/*_root*/ + ')' +\n ')';\n\n re.tpl_host_fuzzy =\n\n '(?:' +\n re.src_ip4 +\n '|' +\n '(?:(?:(?:' + re.src_domain + ')\\\\.)+(?:%TLDS%))' +\n ')';\n\n re.tpl_host_no_ip_fuzzy =\n\n '(?:(?:(?:' + re.src_domain + ')\\\\.)+(?:%TLDS%))';\n\n re.src_host_strict =\n\n re.src_host + re.src_host_terminator;\n\n re.tpl_host_fuzzy_strict =\n\n re.tpl_host_fuzzy + re.src_host_terminator;\n\n re.src_host_port_strict =\n\n re.src_host + re.src_port + re.src_host_terminator;\n\n re.tpl_host_port_fuzzy_strict =\n\n re.tpl_host_fuzzy + re.src_port + re.src_host_terminator;\n\n re.tpl_host_port_no_ip_fuzzy_strict =\n\n re.tpl_host_no_ip_fuzzy + re.src_port + re.src_host_terminator;\n\n\n ////////////////////////////////////////////////////////////////////////////////\n // Main rules\n\n // Rude test fuzzy links by host, for quick deny\n re.tpl_host_fuzzy_test =\n\n 'localhost|www\\\\.|\\\\.\\\\d{1,3}\\\\.|(?:\\\\.(?:%TLDS%)(?:' + re.src_ZPCc + '|>|$))';\n\n re.tpl_email_fuzzy =\n\n '(^|' + text_separators + '|\"|\\\\(|' + re.src_ZCc + ')' +\n '(' + re.src_email_name + '@' + re.tpl_host_fuzzy_strict + ')';\n\n re.tpl_link_fuzzy =\n // Fuzzy link can't be prepended with .:/\\- and non punctuation.\n // but can start with > (markdown blockquote)\n '(^|(?![.:/\\\\-_@])(?:[$+<=>^`|\\uff5c]|' + re.src_ZPCc + '))' +\n '((?![$+<=>^`|\\uff5c])' + re.tpl_host_port_fuzzy_strict + re.src_path + ')';\n\n re.tpl_link_no_ip_fuzzy =\n // Fuzzy link can't be prepended with .:/\\- and non punctuation.\n // but can start with > (markdown blockquote)\n '(^|(?![.:/\\\\-_@])(?:[$+<=>^`|\\uff5c]|' + re.src_ZPCc + '))' +\n '((?![$+<=>^`|\\uff5c])' + re.tpl_host_port_no_ip_fuzzy_strict + re.src_path + ')';\n\n return re;\n};\n","import { FC } from 'react';\nimport Head from 'next/head';\nimport { config } from '@legacyApp/client/config';\nimport { StructuredData } from '@legacyApp/types/default/StructuredData';\nimport { socialConfig } from '@server/config/social.config';\nimport { jsonToString } from '@common/methods/jsonToString';\n\ninterface Props extends StructuredData {\n\turl?: string;\n}\n\nexport interface AnyJsonLdProps {\n\tkeyOverride?: string;\n\tprops?: Props;\n}\n\nexport const parseUrlJsonLd = (uri?: string) =>\n\t`https://${config.domain}${uri ?? ''}`;\n\nexport const SAME_AS = Object.keys(socialConfig).map(\n\t(key) => socialConfig[key],\n);\n\nexport const AnyJsonLd: FC = ({ keyOverride, props }) => {\n\tconst url = parseUrlJsonLd(props.url);\n\tconst jslonld = {\n\t\t'@context': 'https://schema.org',\n\t\tname: config.appName,\n\t\turl,\n\t\tmainEntityOfPage: {\n\t\t\t'@type': 'WebPage',\n\t\t\t'@id': `${url}`,\n\t\t},\n\t\t...props,\n\t};\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\n\t);\n};\n","import { BreadcrumbJsonLd } from 'next-seo';\nimport { ItemListElements } from 'next-seo/lib/jsonld/breadcrumb';\nimport { FC } from 'react';\n\nimport { parseUrlJsonLd } from '@common/components/seo/AnyJsonLd';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { BreadcrumbData } from '@common/methods/getBreadcrumbs';\nimport { checkIsTransProps } from '@legacyApp/client/modules/translation/checkIsTransProps';\n\nconst mapBreadcrumbToJsonLd = (item: BreadcrumbData): BreadcrumbData => ({\n\t...item,\n\tname: checkIsTransProps(item.name)\n\t\t? simpleTrans(\n\t\t\t\titem.name.label as string,\n\t\t\t\titem.name?.options,\n\t\t\t\titem.name?.namespace,\n\t\t )\n\t\t: item.name,\n\titem: parseUrlJsonLd(item.item),\n});\n\nexport const BreadcrumbDomainJsonLd: FC<{\n\titemListElements: BreadcrumbData[];\n}> = ({ itemListElements }) => (\n\t\n);\n","import { config } from '@legacyApp/client/config';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { TransProps } from '@legacyApp/client/modules/translation/translate';\n\nexport type BreadcrumbData = {\n\tlocale?: string;\n\tposition?: number;\n\tname?: string | TransProps;\n\tpathname?: string;\n\titem?: string;\n};\n\nexport const getBreadcrumb = ({\n\tlocale,\n\tposition = 1,\n\tname = config.appName,\n\tpathname = '/',\n}: BreadcrumbData) => ({\n\tposition,\n\tname,\n\titem: getPathLocalized({\n\t\tpathname,\n\t\tlocale,\n\t}),\n});\n\nexport const getBreadcrumbs = (locale: string, data: Array) => [\n\tgetBreadcrumb({ locale }),\n\t...data.map((el, index) =>\n\t\tgetBreadcrumb({\n\t\t\tlocale,\n\t\t\tposition: index + 2,\n\t\t\tname: el.name,\n\t\t\tpathname: el.pathname,\n\t\t}),\n\t),\n];\n","import { createGlobalStyle } from 'styled-components';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport { ThemeType } from '../../modules/style/theme';\n\nexport const StyledFaqGlobal = createGlobalStyle<{ theme: ThemeType }>`\n\t.page-faq {\n\t\t.page-title:after {\n\t\t\tcontent: url(${parseImageSrc('/img/main/icon-faq.svg')});\n\t\t}\n\n\t\t.main-dashboard li {\n\t\t\ta {\n\t\t\t\ttext-decoration: underline !important;\n\t\t\t}\n\t\t}\n\t}\n`;\n","import styled, { css } from 'styled-components';\nimport classnames from 'classnames';\nimport { borderRadius, box, boxNoHeight } from '../../modules/style/defaults';\n\nexport const StyledFaqElementQuestion = styled.h3.attrs((props) => {\n\tclassnames(props.className, 'text-style-xl-regular');\n})`\n\tbackground-color: ${(props) => props.theme.colors.inputButton};\n\t${borderRadius};\n\tpadding: 20px 30px;\n\ttext-transform: uppercase;\n\twidth: 100%;\n\n\t[class*='icon'] {\n\t\tright: 30px;\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthSmallTablet}) {\n\t\tpadding: 10px 25px 10px 15px;\n\n\t\t[class*='icon'] {\n\t\t\tright: 12px;\n\t\t}\n\t}\n\n\tuser-select: text !important;\n\t* {\n\t\tuser-select: text !important;\n\t}\n`;\n\nexport const StyledFaqElementAnswer = styled.div.attrs<{\n\t$opened?: boolean;\n}>({\n\tclassName: 'text-style-md-regular',\n})<{\n\t$opened?: boolean;\n}>`\n\theight: 0;\n\tline-height: 1.7;\n\toverflow: hidden;\n\tpadding: 0 30px;\n\tuser-select: text !important;\n\twidth: 100%;\n\n\t* {\n\t\tuser-select: text !important;\n\t}\n\n\t${(props) =>\n\t\tprops.$opened\n\t\t\t? css`\n\t\t\t\t\theight: auto;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tpadding-top: 20px;\n\t\t\t `\n\t\t\t: ''};\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthSmallTablet}) {\n\t\tpadding: 0 10px;\n\n\t\t${(props) =>\n\t\t\tprops.$opened\n\t\t\t\t? css`\n\t\t\t\t\t\tpadding-bottom: 10px;\n\t\t\t\t\t\tpadding-top: 10px;\n\t\t\t\t `\n\t\t\t\t: ''}\n\t}\n`;\n\nexport const StyledFaqList = styled.ul.attrs({\n\tclassName: 'text-style-md-regular',\n})`\n\t${boxNoHeight};\n\tmargin: 0;\n\tpadding: 0 30px;\n\n\t${StyledFaqElementAnswer}, ${StyledFaqElementQuestion} {\n\t\tmargin: 0;\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthSmallTablet}) {\n\t\tpadding: 0;\n\t}\n`;\n\nexport const StyledFaqElement = styled.li`\n\t${box};\n\tlist-style: none;\n\tmargin: 10px 0;\n\tmargin-bottom: 10px;\n`;\n","import { WalletSettings } from '@common/context/wallet/WalletSettingsContext';\nimport { TokenNames } from '@common/constants/currency/settings/tokenNames';\nimport {\n\tmapApiCurrencyToLayoutCurrency,\n\tmapApiTokenToLayoutToken,\n} from '@common/controllers/currency/currenciesSettings';\nimport { useCurrenciesSettings } from '@legacyApp/hooks/wallet/useCurrenciesSettings';\nimport {\n\tCurrencyNetworkType,\n\tCurrencyTokenType,\n\tCurrencyType,\n} from '@legacyApp/types/wallet/CurrencyType';\nimport { getLimits } from '@legacyApp/methods/currency/getLimits';\nimport { getWalletSettings } from '@legacyApp/methods/wallet/getWalletSettings';\nimport { scientificToDecimal } from '@legacyApp/methods/math/scientificToDecimal';\nimport { useDispatchCallback } from '@legacyApp/hooks/store/useAppDispatch';\nimport { openModal } from '@modules/modals/store/modal.actions';\nimport { MODAL_ID } from '@common/constants/modal/ids.modal.constants';\nimport routingService from '@legacyApp/client/modules/app/routingService';\nimport { LinkTo } from '@common/components/default/LinkTo/LinkTo';\nimport { WalletTabId } from '@modules/wallet/components/WalletTabs/WalletTabs';\nimport { Redirect } from '@common/components/default/Redirect/Redirect';\nimport { config } from '@legacyApp/client/config';\n\nconst Faq = ({\n\twalletsSettings,\n\tcurrenciesSettings,\n}: {\n\twalletsSettings?: WalletSettings;\n\tcurrenciesSettings?: ReturnType;\n}) => {\n\tconst openModal_ = useDispatchCallback(openModal);\n\n\tconst openWalletDeposit = () => openModal_(MODAL_ID.WALLET, 'faq');\n\tconst openWalletWithdraw = () =>\n\t\topenModal_(MODAL_ID.WALLET, 'faq', { activeTabId: WalletTabId.WITHDRAW });\n\n\tconst walletsList: Array<{\n\t\tcurrency: CurrencyType;\n\t\tnetwork: CurrencyNetworkType;\n\t\ttoken: CurrencyTokenType;\n\t}> = [];\n\n\t// console.log({ walletsSettings });\n\n\tif (walletsSettings) {\n\t\tObject.keys(walletsSettings).forEach((currency: CurrencyType) => {\n\t\t\tObject.keys(walletsSettings[currency]).forEach(\n\t\t\t\t(network: CurrencyNetworkType) => {\n\t\t\t\t\twalletsSettings[currency][network].tokens.forEach((token) => {\n\t\t\t\t\t\tif (!walletsList.some((el) => el.token === token)) {\n\t\t\t\t\t\t\twalletsList.push({\n\t\t\t\t\t\t\t\tcurrency,\n\t\t\t\t\t\t\t\tnetwork,\n\t\t\t\t\t\t\t\ttoken,\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t},\n\t\t\t);\n\t\t});\n\t}\n\n\treturn [\n\t\t{\n\t\t\tquestion: 'What is Wolfbet?',\n\t\t\tanswer:\n\t\t\t\t'Wolfbet is a provably fair gambling casino site with a unique design and mobile first approach. Our team consists of developers, graphic designer, community manager, and support specialists. We are all crypto and gambling enthusiasts and we promise to continually improve Wolfbet by everyday hard work!',\n\t\t},\n\t\t{\n\t\t\tquestion: 'Which cryptocurrencies do you support?',\n\t\t\tanswer: {\n\t\t\t\ttitle: 'As for the moment we support',\n\t\t\t\tlist: currenciesSettings.tokens.map(\n\t\t\t\t\t(token) =>\n\t\t\t\t\t\t`${TokenNames[token]} (${mapApiTokenToLayoutToken(\n\t\t\t\t\t\t\ttoken,\n\t\t\t\t\t\t).toUpperCase()})`,\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How to get in touch with support team?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'Please use our widget chat or email us at <0>support@wolfbet.com',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{config.emails.support}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How to secure my account?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'The best way to secure your account is to activate 2FA which can be found here <0>wolfbet.com/user/settings. What is also important is that you use a complicated password which is long, not easy to guess and contains letters, numbers, and special symbols.',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\twolfbet.com/user/settings\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How can I change server seed?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'There are two ways to change your server seed, the first one is by visiting <0>wolfbet.com/provably-fair?tab=session and clicking Generate new server seed, the second possibility is by entering your Bet ID and clicking Change next to Server seed form.',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\twolfbet.com/provably-fair?tab=session\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'What is the house edge in Wolfbet?',\n\t\t\tanswer:\n\t\t\t\t'Wolfbet house edge is 1% for both dice and hilo game. To check all the details please visit our provably fair tool where you can analyze and verify each bet.',\n\t\t},\n\t\t{\n\t\t\tquestion: 'How can I deposit cryptocurrencies?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'In order to deposit cryptocurrencies please visit <0>the deposit in the wallet and click Generate new address to obtain your unique address for each cryptocurrency.',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tthe deposit in the wallet\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'What is the minimum deposit amount?',\n\t\t\tanswer: {\n\t\t\t\ttitle: 'There is only minimum deposit for',\n\t\t\t\tlabel: '{{currency}} - {{amount}}',\n\t\t\t\toptions: walletsList\n\t\t\t\t\t.filter(\n\t\t\t\t\t\t({ currency, network }) =>\n\t\t\t\t\t\t\tgetWalletSettings(walletsSettings, currency, network)?.deposit\n\t\t\t\t\t\t\t\t?.amount_minimum,\n\t\t\t\t\t)\n\t\t\t\t\t.map(({ currency, network, token }) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tcurrency: TokenNames[token],\n\t\t\t\t\t\t\tamount: getWalletSettings(walletsSettings, currency, network)\n\t\t\t\t\t\t\t\t?.deposit.amount_minimum,\n\t\t\t\t\t\t};\n\t\t\t\t\t}),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How can I withdraw winnings?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'In order to withdraw cryptocurrencies please visit <0>the withdraw in the wallet. Here you can check your available balance as well as current withdrawal fees.',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tthe withdraw in the wallet\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'What is the minimum withdrawal amount?',\n\t\t\tanswer: {\n\t\t\t\tlabel: 'For {{currency}} - {{amount}}',\n\t\t\t\toptions: walletsList.map(({ token, currency, network }) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tcurrency: TokenNames[token],\n\t\t\t\t\t\tamount: getWalletSettings(walletsSettings, currency, network)\n\t\t\t\t\t\t\t?.withdraw?.amount_minimum,\n\t\t\t\t\t};\n\t\t\t\t}),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How long does the deposit process take?',\n\t\t\tanswer:\n\t\t\t\t'We try to credit each deposit once it is distributed to the network which means we do not wait for any confirmation in the blockchain.',\n\t\t},\n\t\t{\n\t\t\tquestion: 'How long does the withdrawal process take?',\n\t\t\tanswer:\n\t\t\t\t'Most of the withdrawals are processed immediately. However, due to security reasons, your withdrawal might fall under manual check which might extend the process to up to 24 hours.',\n\t\t},\n\t\t{\n\t\t\tquestion: 'How long is the deposit address valid?',\n\t\t\tanswer:\n\t\t\t\t'In some situations, your deposit address might CHANGE so always DOUBLE CHECK if you use the active one.',\n\t\t},\n\t\t{\n\t\t\tquestion: 'What are the max bet and max profit per casino bet?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'For {{currency}} - max bet is {{maxBetAmount}} {{currency}} and max profit is {{maxProfitAmount}} {{currency}}',\n\t\t\t\toptions: currenciesSettings.list.map((el) => ({\n\t\t\t\t\tcurrency: mapApiCurrencyToLayoutCurrency(el).toUpperCase(),\n\t\t\t\t\tmaxBetAmount: getLimits({ currency: el }).amount_maximum,\n\t\t\t\t\tmaxProfitAmount: getLimits({ currency: el }).profit_maximum,\n\t\t\t\t})),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'What are the max bet and max profit per sportsbook bet?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'For {{currency}} - max bet is {{maxBetAmount}} {{currency}} and max profit is {{maxProfitAmount}} {{currency}}',\n\t\t\t\toptions: currenciesSettings.list.map((el) => ({\n\t\t\t\t\tcurrency: mapApiCurrencyToLayoutCurrency(el).toUpperCase(),\n\t\t\t\t\tmaxBetAmount: getLimits({ currency: el, game: 'sports' })\n\t\t\t\t\t\t.amount_maximum,\n\t\t\t\t\tmaxProfitAmount: getLimits({ currency: el, game: 'sports' })\n\t\t\t\t\t\t.profit_maximum,\n\t\t\t\t})),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How can I report a bug?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'If you found a bug or want to report something unusual happening on the site please reach out to our support team via widget chat or email us at <0>support@wolfbet.com',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{config.emails.support}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'How can I cooperate with you?',\n\t\t\tanswer: {\n\t\t\t\tlabel:\n\t\t\t\t\t'If you are a marketer, streamer or you just want to join our Wolf community, please send us an email at <0>marketing@wolfbet.com',\n\t\t\t\tcomponents: (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{config.emails.marketing}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tquestion: 'What is the maximum multiplier possible on Hilo?',\n\t\t\tanswer: 'There is no limit',\n\t\t},\n\t\t{\n\t\t\tquestion: 'How many decks of cards are used?',\n\t\t\tanswer: 'Unlimited',\n\t\t},\n\t\t{\n\t\t\tquestion: 'Is there any limit on cards that can be skipped?',\n\t\t\tanswer: '52 cards',\n\t\t},\n\t\t{\n\t\t\tquestion: 'What are the min bet amounts in flashbet mode?',\n\t\t\tanswer: {\n\t\t\t\tlabel: 'For {{currency}} - min bet is {{minBetAmount}} {{currency}}',\n\t\t\t\toptions: currenciesSettings.list.map((el) => ({\n\t\t\t\t\tcurrency: mapApiCurrencyToLayoutCurrency(el).toUpperCase(),\n\t\t\t\t\tminBetAmount: scientificToDecimal(\n\t\t\t\t\t\tgetLimits({ currency: el }).amount_flash_minimum,\n\t\t\t\t\t),\n\t\t\t\t})),\n\t\t\t},\n\t\t},\n\t];\n};\n\nexport default Faq;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport LinkifyPlugin from 'react-linkify';\nimport { enhanceComponent } from '../../wrappers/enhanceComponent';\n\nclass Linkify extends React.Component {\n\tstatic propTypes = {\n\t\tchildren: PropTypes.any,\n\t};\n\n\trender() {\n\t\treturn {this.props.children};\n\t}\n}\n\nLinkify = enhanceComponent({\n\tLinkify,\n});\n\nexport { Linkify };\n","import { Linkify } from './linkify';\n\nconst LinkifyContainer = Linkify;\n\nexport { LinkifyContainer };\n","import React, { FC, useCallback, useState } from 'react';\nimport classnames from 'classnames';\n\nimport {\n\tcreateNamespaceTrans,\n\tTrans,\n} from '@legacyApp/client/modules/translation/translate';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledFaqGlobal } from '@legacyApp/client/pages/faq.page/Faq.global.styled';\nimport {\n\tStyledFaqElement,\n\tStyledFaqElementAnswer,\n\tStyledFaqElementQuestion,\n\tStyledFaqList,\n} from '@legacyApp/client/pages/faq.page/FaqList.styled';\nimport { useCurrenciesSettings } from '@legacyApp/hooks/wallet/useCurrenciesSettings';\nimport { useWalletSettings } from '@legacyApp/hooks/wallet/useWalletSettings';\nimport getFaqData from '@legacyApp/mocks/faq';\n\nimport { LinkifyContainer } from '@legacyApp/client/components/linkify';\nimport { StyledMainDashboardV2 } from '@legacyApp/client/modules/style/components/MainDashboard.styled';\nimport { jsonToString } from '@common/methods/jsonToString';\n\nexport const transFaq = createNamespaceTrans(TransNamespace.FAQ_PAGE);\n\nexport const FaqPage: FC = () => {\n\tconst { settings } = useWalletSettings();\n\n\tconst currenciesSettings = useCurrenciesSettings();\n\n\tconst [_activeIndex, setActiveIndex] = useState(-1);\n\n\tconst _list = getFaqData({ walletsSettings: settings, currenciesSettings });\n\n\tconst _toggleAnswer = useCallback(\n\t\t(index) => {\n\t\t\tsetActiveIndex(index === _activeIndex ? -1 : index);\n\t\t},\n\t\t[_activeIndex],\n\t);\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\t

{transFaq({ label: 'FAQs' })}

\n\t\t\t\n\t\t\t\t{_list.map(({ question, answer }, index) => {\n\t\t\t\t\tconst opened = index === _activeIndex;\n\n\t\t\t\t\tconst iconClasses = classnames('icon__arrow-down', {\n\t\t\t\t\t\topened,\n\t\t\t\t\t});\n\n\t\t\t\t\treturn (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t _toggleAnswer(index)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{transFaq({ label: question })}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t{typeof answer === 'string' ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{transFaq({ label: answer })}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : answer.label && answer.components ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : Array.isArray(answer) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{answer.map((answer) => {\n\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t
  • \n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{transFaq({ label: answer })}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
  • \n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t) : answer.title && answer.list ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
    {transFaq({ label: answer.title })}
    \n\n\t\t\t\t\t\t\t\t\t
      \n\t\t\t\t\t\t\t\t\t\t{answer.list.map((listEl) => {\n\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t
    • \n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{transFaq({ label: listEl })}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t
    • \n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t) : answer.label && answer.options ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{answer.title && (\n\t\t\t\t\t\t\t\t\t\t
    {transFaq({ label: answer.title })}
    \n\t\t\t\t\t\t\t\t\t)}\n\n\t\t\t\t\t\t\t\t\t
      \n\t\t\t\t\t\t\t\t\t\t{answer.options.map((options) => {\n\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t
    • \n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{transFaq({ label: answer.label, options })}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t
    • \n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\tfalse\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
    \n\t\t\t\t\t);\n\t\t\t\t})}\n\t\t\t
    \n\t\t
    \n\t);\n};\n\nexport default FaqPage;\n","import { FC } from 'react';\nimport { FAQPageJsonLd } from 'next-seo';\n\nimport { pageEnhancer } from '@common/hoc/pageEnhancer';\nimport { handleGetStaticProps } from '@legacyApp/methods/router/handleGetStaticProps';\nimport { ROUTING_ID } from '@common/constants/routing/ids.routing.constants';\nimport { DEFAULT_NAMESPACE } from '@legacyApp/client/modules/translation/translate.constants';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { useCurrenciesSettings } from '@legacyApp/hooks/wallet/useCurrenciesSettings';\nimport FaqPage from '@legacyApp/client/pages/faq.page/faq.page';\nimport getFaqData from '@legacyApp/mocks/faq';\nimport routingService from '@legacyApp/client/modules/app/routingService';\nimport { getBreadcrumbs } from '@common/methods/getBreadcrumbs';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\n\nconst id = ROUTING_ID.FAQ;\n\nconst getBreadcrumbsFaq = (locale) =>\n\tgetBreadcrumbs(locale, [\n\t\t{\n\t\t\tname: { label: 'FAQ' },\n\t\t\tpathname: `/${routingService.getUri(ROUTING_ID.FAQ)}`,\n\t\t},\n\t]);\n\nconst StructuredData: FC<{ locale: string }> = ({ locale }) => {\n\tconst settings = useCurrenciesSettings();\n\n\treturn (\n\t\t<>\n\t\t\t typeof el.answer === 'string')\n\t\t\t\t\t.map((el) => ({\n\t\t\t\t\t\tquestionName: el.question,\n\t\t\t\t\t\tacceptedAnswerText: el.answer,\n\t\t\t\t\t}))}\n\t\t\t/>\n\n\t\t\t\n\t\t\n\t);\n};\n\nexport async function getStaticProps(props) {\n\treturn await handleGetStaticProps(props, [\n\t\tDEFAULT_NAMESPACE,\n\t\tTransNamespace.FAQ_PAGE,\n\t]);\n}\n\nexport default pageEnhancer(FaqPage, {\n\tid,\n\tstructuredData: (locale) => ,\n\tgetBreadcrumbs: getBreadcrumbsFaq,\n});\n","\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/faq\",\n function () {\n return require(\"private-next-pages/faq.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/faq\"])\n });\n }\n ","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _react = require('react');\n\nvar React = _interopRequireWildcard(_react);\n\nvar _defaultComponentDecorator = require('../decorators/defaultComponentDecorator');\n\nvar _defaultComponentDecorator2 = _interopRequireDefault(_defaultComponentDecorator);\n\nvar _defaultHrefDecorator = require('../decorators/defaultHrefDecorator');\n\nvar _defaultHrefDecorator2 = _interopRequireDefault(_defaultHrefDecorator);\n\nvar _defaultMatchDecorator = require('../decorators/defaultMatchDecorator');\n\nvar _defaultMatchDecorator2 = _interopRequireDefault(_defaultMatchDecorator);\n\nvar _defaultTextDecorator = require('../decorators/defaultTextDecorator');\n\nvar _defaultTextDecorator2 = _interopRequireDefault(_defaultTextDecorator);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar Linkify = function (_React$Component) {\n _inherits(Linkify, _React$Component);\n\n function Linkify() {\n _classCallCheck(this, Linkify);\n\n return _possibleConstructorReturn(this, (Linkify.__proto__ || Object.getPrototypeOf(Linkify)).apply(this, arguments));\n }\n\n _createClass(Linkify, [{\n key: 'parseString',\n value: function parseString(string) {\n var _this2 = this;\n\n if (string === '') {\n return string;\n }\n\n var matches = this.props.matchDecorator(string);\n if (!matches) {\n return string;\n }\n\n var elements = [];\n var lastIndex = 0;\n matches.forEach(function (match, i) {\n // Push preceding text if there is any\n if (match.index > lastIndex) {\n elements.push(string.substring(lastIndex, match.index));\n }\n\n var decoratedHref = _this2.props.hrefDecorator(match.url);\n var decoratedText = _this2.props.textDecorator(match.text);\n var decoratedComponent = _this2.props.componentDecorator(decoratedHref, decoratedText, i);\n elements.push(decoratedComponent);\n\n lastIndex = match.lastIndex;\n });\n\n // Push remaining text if there is any\n if (string.length > lastIndex) {\n elements.push(string.substring(lastIndex));\n }\n\n return elements.length === 1 ? elements[0] : elements;\n }\n }, {\n key: 'parse',\n value: function parse(children) {\n var _this3 = this;\n\n var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n\n if (typeof children === 'string') {\n return this.parseString(children);\n } else if (React.isValidElement(children) && children.type !== 'a' && children.type !== 'button') {\n return React.cloneElement(children, { key: key }, this.parse(children.props.children));\n } else if (Array.isArray(children)) {\n return children.map(function (child, i) {\n return _this3.parse(child, i);\n });\n }\n\n return children;\n }\n }, {\n key: 'render',\n value: function render() {\n return React.createElement(\n React.Fragment,\n null,\n this.parse(this.props.children)\n );\n }\n }]);\n\n return Linkify;\n}(React.Component);\n\nLinkify.defaultProps = {\n componentDecorator: _defaultComponentDecorator2.default,\n hrefDecorator: _defaultHrefDecorator2.default,\n matchDecorator: _defaultMatchDecorator2.default,\n textDecorator: _defaultTextDecorator2.default\n};\nexports.default = Linkify;","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _react = require('react');\n\nvar React = _interopRequireWildcard(_react);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nexports.default = function (decoratedHref, decoratedText, key) {\n return React.createElement(\n 'a',\n { href: decoratedHref, key: key },\n decoratedText\n );\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nexports.default = function (href) {\n return href;\n};","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _linkifyIt = require('linkify-it');\n\nvar _linkifyIt2 = _interopRequireDefault(_linkifyIt);\n\nvar _tlds = require('tlds');\n\nvar _tlds2 = _interopRequireDefault(_tlds);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar linkify = new _linkifyIt2.default();\nlinkify.tlds(_tlds2.default);\n\nexports.default = function (text) {\n return linkify.match(text);\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nexports.default = function (text) {\n return text;\n};","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _Linkify = require('./components/Linkify');\n\nvar _Linkify2 = _interopRequireDefault(_Linkify);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nexports.default = _Linkify2.default;","module.exports=/[\\0-\\x1F\\x7F-\\x9F]/","module.exports=/[!-#%-\\*,-\\/:;\\?@\\[-\\]_\\{\\}\\xA1\\xA7\\xAB\\xB6\\xB7\\xBB\\xBF\\u037E\\u0387\\u055A-\\u055F\\u0589\\u058A\\u05BE\\u05C0\\u05C3\\u05C6\\u05F3\\u05F4\\u0609\\u060A\\u060C\\u060D\\u061B\\u061E\\u061F\\u066A-\\u066D\\u06D4\\u0700-\\u070D\\u07F7-\\u07F9\\u0830-\\u083E\\u085E\\u0964\\u0965\\u0970\\u09FD\\u0A76\\u0AF0\\u0C84\\u0DF4\\u0E4F\\u0E5A\\u0E5B\\u0F04-\\u0F12\\u0F14\\u0F3A-\\u0F3D\\u0F85\\u0FD0-\\u0FD4\\u0FD9\\u0FDA\\u104A-\\u104F\\u10FB\\u1360-\\u1368\\u1400\\u166D\\u166E\\u169B\\u169C\\u16EB-\\u16ED\\u1735\\u1736\\u17D4-\\u17D6\\u17D8-\\u17DA\\u1800-\\u180A\\u1944\\u1945\\u1A1E\\u1A1F\\u1AA0-\\u1AA6\\u1AA8-\\u1AAD\\u1B5A-\\u1B60\\u1BFC-\\u1BFF\\u1C3B-\\u1C3F\\u1C7E\\u1C7F\\u1CC0-\\u1CC7\\u1CD3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205E\\u207D\\u207E\\u208D\\u208E\\u2308-\\u230B\\u2329\\u232A\\u2768-\\u2775\\u27C5\\u27C6\\u27E6-\\u27EF\\u2983-\\u2998\\u29D8-\\u29DB\\u29FC\\u29FD\\u2CF9-\\u2CFC\\u2CFE\\u2CFF\\u2D70\\u2E00-\\u2E2E\\u2E30-\\u2E4E\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301F\\u3030\\u303D\\u30A0\\u30FB\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA673\\uA67E\\uA6F2-\\uA6F7\\uA874-\\uA877\\uA8CE\\uA8CF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA95F\\uA9C1-\\uA9CD\\uA9DE\\uA9DF\\uAA5C-\\uAA5F\\uAADE\\uAADF\\uAAF0\\uAAF1\\uABEB\\uFD3E\\uFD3F\\uFE10-\\uFE19\\uFE30-\\uFE52\\uFE54-\\uFE61\\uFE63\\uFE68\\uFE6A\\uFE6B\\uFF01-\\uFF03\\uFF05-\\uFF0A\\uFF0C-\\uFF0F\\uFF1A\\uFF1B\\uFF1F\\uFF20\\uFF3B-\\uFF3D\\uFF3F\\uFF5B\\uFF5D\\uFF5F-\\uFF65]|\\uD800[\\uDD00-\\uDD02\\uDF9F\\uDFD0]|\\uD801\\uDD6F|\\uD802[\\uDC57\\uDD1F\\uDD3F\\uDE50-\\uDE58\\uDE7F\\uDEF0-\\uDEF6\\uDF39-\\uDF3F\\uDF99-\\uDF9C]|\\uD803[\\uDF55-\\uDF59]|\\uD804[\\uDC47-\\uDC4D\\uDCBB\\uDCBC\\uDCBE-\\uDCC1\\uDD40-\\uDD43\\uDD74\\uDD75\\uDDC5-\\uDDC8\\uDDCD\\uDDDB\\uDDDD-\\uDDDF\\uDE38-\\uDE3D\\uDEA9]|\\uD805[\\uDC4B-\\uDC4F\\uDC5B\\uDC5D\\uDCC6\\uDDC1-\\uDDD7\\uDE41-\\uDE43\\uDE60-\\uDE6C\\uDF3C-\\uDF3E]|\\uD806[\\uDC3B\\uDE3F-\\uDE46\\uDE9A-\\uDE9C\\uDE9E-\\uDEA2]|\\uD807[\\uDC41-\\uDC45\\uDC70\\uDC71\\uDEF7\\uDEF8]|\\uD809[\\uDC70-\\uDC74]|\\uD81A[\\uDE6E\\uDE6F\\uDEF5\\uDF37-\\uDF3B\\uDF44]|\\uD81B[\\uDE97-\\uDE9A]|\\uD82F\\uDC9F|\\uD836[\\uDE87-\\uDE8B]|\\uD83A[\\uDD5E\\uDD5F]/","module.exports=/[ \\xA0\\u1680\\u2000-\\u200A\\u2028\\u2029\\u202F\\u205F\\u3000]/","module.exports=/[\\0-\\uD7FF\\uE000-\\uFFFF]|[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/"],"names":["assign","obj","sources","Array","prototype","slice","call","arguments","forEach","source","Object","keys","key","_class","toString","isFunction","escapeRE","str","replace","defaultOptions","fuzzyLink","fuzzyEmail","fuzzyIP","defaultSchemas","validate","text","pos","self","tail","re","http","RegExp","src_auth","src_host_port_strict","src_path","test","match","length","no_http","src_domain","src_domain_root","src_port","src_host_terminator","mailto","src_email_name","src_host_strict","tlds_default","split","compile","__opts__","tlds","__tlds__","untpl","tpl","src_tlds","onCompile","__tlds_replaced__","push","src_xn","join","email_fuzzy","tpl_email_fuzzy","link_fuzzy","tpl_link_fuzzy","link_no_ip_fuzzy","tpl_link_no_ip_fuzzy","host_fuzzy_test","tpl_host_fuzzy_test","aliases","schemaError","name","val","Error","__compiled__","__schemas__","compiled","link","isRegExp","createValidator","normalize","isString","alias","slist","filter","map","schema_test","src_ZPCc","schema_search","pretest","__index__","__text_cache__","resetScanCache","Match","shift","start","end","__last_index__","this","schema","__schema__","toLowerCase","index","lastIndex","raw","url","createMatch","LinkifyIt","schemas","options","reduce","acc","k","hasOwnProperty","add","definition","set","m","ml","me","len","next","tld_pos","exec","testSchemaAt","search","indexOf","result","list","keepOld","isArray","concat","sort","el","idx","arr","reverse","module","exports","opts","src_Any","src_Cc","src_Z","src_P","src_ZCc","src_pseudo_letter","src_ip4","src_host","tpl_host_fuzzy","tpl_host_no_ip_fuzzy","tpl_host_fuzzy_strict","tpl_host_port_fuzzy_strict","tpl_host_port_no_ip_fuzzy_strict","parseUrlJsonLd","uri","config","SAME_AS","socialConfig","AnyJsonLd","keyOverride","props","jslonld","mainEntityOfPage","type","dangerouslySetInnerHTML","__html","jsonToString","mapBreadcrumbToJsonLd","item","checkIsTransProps","simpleTrans","label","namespace","BreadcrumbDomainJsonLd","itemListElements","getBreadcrumb","locale","position","pathname","getPathLocalized","getBreadcrumbs","data","StyledFaqGlobal","createGlobalStyle","parseImageSrc","StyledFaqElementQuestion","styled","classnames","className","theme","colors","inputButton","borderRadius","media","maxWidthSmallTablet","StyledFaqElementAnswer","$opened","css","StyledFaqList","boxNoHeight","StyledFaqElement","box","walletsSettings","currenciesSettings","openModal_","useDispatchCallback","openModal","walletsList","currency","network","tokens","token","some","question","answer","title","TokenNames","mapApiTokenToLayoutToken","toUpperCase","components","Redirect","target","rel","href","LinkTo","forceATag","routingService","onClick","MODAL_ID","getWalletSettings","deposit","amount_minimum","amount","activeTabId","WalletTabId","withdraw","mapApiCurrencyToLayoutCurrency","maxBetAmount","getLimits","amount_maximum","maxProfitAmount","profit_maximum","game","minBetAmount","scientificToDecimal","amount_flash_minimum","Linkify","children","React","LinkifyContainer","enhanceComponent","transFaq","createNamespaceTrans","TransNamespace","settings","useWalletSettings","useCurrenciesSettings","useState","_activeIndex","setActiveIndex","_list","getFaqData","_toggleAnswer","useCallback","opened","iconClasses","as","listEl","id","ROUTING_ID","getBreadcrumbsFaq","StructuredData","mainEntity","questionName","acceptedAnswerText","pageEnhancer","FaqPage","structuredData","window","__NEXT_P","defineProperty","value","_createClass","defineProperties","i","descriptor","enumerable","configurable","writable","Constructor","protoProps","staticProps","__esModule","newObj","default","_interopRequireWildcard","_defaultComponentDecorator2","_interopRequireDefault","_defaultHrefDecorator2","_defaultMatchDecorator2","_defaultTextDecorator2","_classCallCheck","instance","TypeError","_possibleConstructorReturn","ReferenceError","_React$Component","__proto__","getPrototypeOf","apply","subClass","superClass","create","constructor","setPrototypeOf","_inherits","string","_this2","matches","matchDecorator","elements","substring","decoratedHref","hrefDecorator","decoratedText","textDecorator","decoratedComponent","componentDecorator","_this3","undefined","parseString","isValidElement","cloneElement","parse","child","createElement","Fragment","Component","defaultProps","_linkifyIt2","_tlds2","linkify","_Linkify","_Linkify2"],"mappings":"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","debug_id":"459d5ea0-c519-5138-9fb1-02a68543ea0f"}