diff --git a/babele-register.js b/babele-register.js index c49c29e..b18e382 100644 --- a/babele-register.js +++ b/babele-register.js @@ -1,20 +1,6 @@ -/************************************************************************************/ -//import WFRP_Tables from "/systems/wfrp4e/modules/system/tables-wfrp4e.js"; -//import WFRP4E from "/systems/wfrp4e/modules/system/config-wfrp4e.js"; -//import ActorWfrp4e from "/systems/wfrp4e//modules/actor/actor-wfrp4e.js"; -import ActorWfrp4e_fr from "./modules/fr-actor-wfrp4e.js" - -/************************************************************************************/ -/* Override some methods of the WFRP4 actor class, mainly to compute spells/weapons */ - /************************************************************************************/ var compmod = "wfrp4e"; -Hooks.once('ready', () => { - -} ); - - /************************************************************************************/ Hooks.once('init', () => { @@ -27,8 +13,130 @@ Hooks.once('init', () => { //WFRP_Tables = game.wfrp4e.tables; //WFRP4E = game.wfrp4e.config; - CONFIG.Actor.entityClass = ActorWfrp4e_fr; + //CONFIG.Actor.entityClass = ActorWfrp4e_fr; + game.wfrp4e.entities.ActorWfrp4e.prototype.calculateRangeOrDamage = function(formula) + { + //console.log("FR function calculateRangeOrDamage !", formula); + let actorData = this.data + try + { + formula = formula.toLowerCase(); + // Iterate through characteristics + for(let ch in actorData.data.characteristics) + { + // Determine if the formula includes the characteristic's abbreviation + B (SB, WPB, etc.) + if (formula.includes(ch.concat('b'))) + { + // Replace that abbreviation with the Bonus value + formula = formula.replace(ch.concat('b'), actorData.data.characteristics[ch].bonus.toString()); + } + } + if (formula.includes("yard") ) + formula = formula.replace('yard', "mètre" ); + if (formula.includes("yds") ) + formula = formula.replace('yds', "m." ); + // To evaluate multiplication, replace x with * + formula = formula.replace('x', '*'); + + return eval(formula); + } + catch + { + return formula + } + } + game.wfrp4e.entities.ActorWfrp4e.prototype.calculateSpellDamage = function(formula, isMagicMissile) { + //console.log("Compute FR") + let actorData = this.data + formula = formula.toLowerCase(); + if (isMagicMissile) // If it's a magic missile, damage includes willpower bonus + { + formula += "+ " + actorData.data.characteristics["wp"].bonus + } + + // Specific case, to avoid wrong matching with "Force" + if (formula.includes("force mentale")) + { + // Determine if it's looking for the bonus or the value + if (formula.includes('bonus')) { + formula = formula.replace( "bonus de force mentale", actorData.data.characteristics["wp"].bonus); + formula = formula.replace( "force mentale bonus", actorData.data.characteristics["wp"].bonus); + } else + formula = formula.replace("force mentale", actorData.data.characteristics["wp"].value); + } + + // Iterate through characteristics + for(let ch in actorData.data.characteristics) + { + // If formula includes characteristic name + while (formula.includes(actorData.data.characteristics[ch].label.toLowerCase())) + { + // Determine if it's looking for the bonus or the value + if (formula.includes('bonus')) { + formula = formula.replace("bonus de " + game.wfrp4e.config.characteristics[ch].toLowerCase(), actorData.data.characteristics[ch].bonus); + formula = formula.replace(game.wfrp4e.config.characteristics[ch].toLowerCase() + " bonus", actorData.data.characteristics[ch].bonus); + } + else + formula = formula.replace(game.wfrp4e.config.characteristics[ch].toLowerCase(), actorData.data.characteristics[ch].value); + } + } + + //console.log("calculateSpellDamage -> " + formula ); + return eval(formula); + } + + game.wfrp4e.entities.ActorWfrp4e.prototype.calculateSpellAttributes = function(formula, aoe=false) { + //console.log("Compute FR") + let actorData = this.data + formula = formula.toLowerCase(); + + // Do not process these special values + if (formula != game.i18n.localize("You").toLowerCase() && formula != game.i18n.localize("Special").toLowerCase() && formula != game.i18n.localize("Instant").toLowerCase()) + { + // Specific case, to avoid wrong matching with "Force" + if (formula.includes("force mentale")) + { + // Determine if it's looking for the bonus or the value + if (formula.includes('bonus')) { + formula = formula.replace( "bonus de force mentale", actorData.data.characteristics["wp"].bonus); + formula = formula.replace( "force mentale bonus", actorData.data.characteristics["wp"].bonus); + } + else + formula = formula.replace("force mentale", actorData.data.characteristics["wp"].value); + } + if (formula.includes("yard") ) + formula = formula.replace('yard', "mètre" ); + if (formula.includes("yds") ) + formula = formula.replace('yds', "m." ); + // Iterate through remaining characteristics + for(let ch in actorData.data.characteristics) + { + // If formula includes characteristic name + //console.log("Testing :", ch, WFRP4E.characteristics[ch].toLowerCase()); + if (formula.includes(game.wfrp4e.config.characteristics[ch].toLowerCase())) + { + // Determine if it's looking for the bonus or the value + if (formula.includes('bonus')) { + formula = formula.replace("bonus de " + game.wfrp4e.config.characteristics[ch].toLowerCase(), actorData.data.characteristics[ch].bonus); + formula = formula.replace(game.wfrp4e.config.characteristics[ch].toLowerCase() + " bonus", actorData.data.characteristics[ch].bonus); + } + else + formula = formula.replace(game.wfrp4e.config.characteristics[ch].toLowerCase(), actorData.data.characteristics[ch].value); + } + } + } + + // If AoE - wrap with AoE ( ) + if (aoe) + formula = "AoE (" + formula.capitalize() + ")"; + + //console.log("calculateSpellAttributes -> " + formula ); + return formula.capitalize(); + } + + console.log("PROTO", game.wfrp4e.entities.ActorWfrp4e.prototype); + // Babele stuff if(typeof Babele !== 'undefined') { diff --git a/module.json b/module.json index 25007b2..2994755 100644 --- a/module.json +++ b/module.json @@ -3,7 +3,7 @@ "name": "WH4-fr-translation", "title": "Traduction du module WH4 en Français.", "description": "La traduction du module WH4.", - "version": "1.3.15", + "version": "1.3.16", "minimumCoreVersion" : "0.6.6", "compatibleCoreVersion": "1.0.0", "author": "LeRatierBretonnien", @@ -20,7 +20,7 @@ "esmodules": [ "babele-register.js", "addon-register.js", - "modules/fr-actor-wfrp4e.js" + "modules/import-stat-2.js" ], "scripts": [ ], "styles": [], diff --git a/modules/import-stat-2.js b/modules/import-stat-2.js new file mode 100644 index 0000000..3779bc7 --- /dev/null +++ b/modules/import-stat-2.js @@ -0,0 +1,34 @@ +let str = `JABBERSLYTHE +M WS BS S T I Agi Dex + Int WP Fel W +7 45 40 55 +50 20 35 - 10 20 - 20 +Traits: Armour 3, Bestial, Bite+9, Bounce, Corrosive +Blood, Distracting, Infected, Maddening Aura (see +page 17), Night Vision, Size (Enormous), Tail +8, +Tongue Attack +5 (12), Venom, Weapon +9. +`; + +import "./xregexp-all.js"; +const us_carac = 'm\\s+ws\\s+bs\\s+s\\s+t\\s+i\\s+agi?\\s+dex\\s+int\\s+\\wp\\s+fel\\s+w'; +const fr_carac = 'm\\s+ws\\s+bs\\s+s\\s+t\\s+i\\s+agi?\\s+dex\\s+int\\s+\\wp\\s+fel\\s+w'; +const carac_val = '(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)\\s+(?[0-9-]+)'; +const traits = "Traits:" + +Hooks.once('init', () => { + + let t1 = "agi"; + let reg0 = XRegExp('agi?', 'gi'); + //console.log("PARSER pos 1: ", reg0.test( t1 ) ); + + let reg1 = XRegExp(us_carac, 'gi'); + let res = reg1.test(str); + //console.log("PARSER pos 2: ", res); + if (res) { //stat block identified + let reg2 = XRegExp(carac_val, 'gi') + let res = XRegExp.exec(str, reg2); + //console.log("Movement is : ", res); + } + //Do we have Traits ? +}) + diff --git a/modules/xregexp-all.js b/modules/xregexp-all.js new file mode 100644 index 0000000..19543a6 --- /dev/null +++ b/modules/xregexp-all.js @@ -0,0 +1,8225 @@ +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.XRegExp = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i + * Steven Levithan (c) 2012-present MIT License + */ +var _default = function _default(XRegExp) { + var REGEX_DATA = 'xregexp'; + var subParts = /(\()(?!\?)|\\([1-9]\d*)|\\[\s\S]|\[(?:[^\\\]]|\\[\s\S])*\]/g; + var parts = XRegExp.union([/\({{([\w$]+)}}\)|{{([\w$]+)}}/, subParts], 'g', { + conjunction: 'or' + }); + /** + * Strips a leading `^` and trailing unescaped `$`, if both are present. + * + * @private + * @param {String} pattern Pattern to process. + * @returns {String} Pattern with edge anchors removed. + */ + + function deanchor(pattern) { + // Allow any number of empty noncapturing groups before/after anchors, because regexes + // built/generated by XRegExp sometimes include them + var leadingAnchor = /^(?:\(\?:\))*\^/; + var trailingAnchor = /\$(?:\(\?:\))*$/; + + if (leadingAnchor.test(pattern) && trailingAnchor.test(pattern) && // Ensure that the trailing `$` isn't escaped + trailingAnchor.test(pattern.replace(/\\[\s\S]/g, ''))) { + return pattern.replace(leadingAnchor, '').replace(trailingAnchor, ''); + } + + return pattern; + } + /** + * Converts the provided value to an XRegExp. Native RegExp flags are not preserved. + * + * @private + * @param {String|RegExp} value Value to convert. + * @param {Boolean} [addFlagX] Whether to apply the `x` flag in cases when `value` is not + * already a regex generated by XRegExp + * @returns {RegExp} XRegExp object with XRegExp syntax applied. + */ + + + function asXRegExp(value, addFlagX) { + var flags = addFlagX ? 'x' : ''; + return XRegExp.isRegExp(value) ? value[REGEX_DATA] && value[REGEX_DATA].captureNames ? // Don't recompile, to preserve capture names + value : // Recompile as XRegExp + XRegExp(value.source, flags) : // Compile string as XRegExp + XRegExp(value, flags); + } + + function interpolate(substitution) { + return substitution instanceof RegExp ? substitution : XRegExp.escape(substitution); + } + + function reduceToSubpatternsObject(subpatterns, interpolated, subpatternIndex) { + subpatterns["subpattern".concat(subpatternIndex)] = interpolated; + return subpatterns; + } + + function embedSubpatternAfter(raw, subpatternIndex, rawLiterals) { + var hasSubpattern = subpatternIndex < rawLiterals.length - 1; + return raw + (hasSubpattern ? "{{subpattern".concat(subpatternIndex, "}}") : ''); + } + /** + * Provides tagged template literals that create regexes with XRegExp syntax and flags. The + * provided pattern is handled as a raw string, so backslashes don't need to be escaped. + * + * Interpolation of strings and regexes shares the features of `XRegExp.build`. Interpolated + * patterns are treated as atomic units when quantified, interpolated strings have their special + * characters escaped, a leading `^` and trailing unescaped `$` are stripped from interpolated + * regexes if both are present, and any backreferences within an interpolated regex are + * rewritten to work within the overall pattern. + * + * @memberOf XRegExp + * @param {String} [flags] Any combination of XRegExp flags. + * @returns {Function} Handler for template literals that construct regexes with XRegExp syntax. + * @example + * + * const h12 = /1[0-2]|0?[1-9]/; + * const h24 = /2[0-3]|[01][0-9]/; + * const hours = XRegExp.tag('x')`${h12} : | ${h24}`; + * const minutes = /^[0-5][0-9]$/; + * // Note that explicitly naming the 'minutes' group is required for named backreferences + * const time = XRegExp.tag('x')`^ ${hours} (?${minutes}) $`; + * time.test('10:59'); // -> true + * XRegExp.exec('10:59', time).minutes; // -> '59' + */ + + + XRegExp.tag = function (flags) { + return function (literals) { + var _context, _context2; + + for (var _len = arguments.length, substitutions = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + substitutions[_key - 1] = arguments[_key]; + } + + var subpatterns = (0, _reduce["default"])(_context = (0, _map["default"])(substitutions).call(substitutions, interpolate)).call(_context, reduceToSubpatternsObject, {}); + var pattern = (0, _map["default"])(_context2 = literals.raw).call(_context2, embedSubpatternAfter).join(''); + return XRegExp.build(pattern, subpatterns, flags); + }; + }; + /** + * Builds regexes using named subpatterns, for readability and pattern reuse. Backreferences in + * the outer pattern and provided subpatterns are automatically renumbered to work correctly. + * Native flags used by provided subpatterns are ignored in favor of the `flags` argument. + * + * @memberOf XRegExp + * @param {String} pattern XRegExp pattern using `{{name}}` for embedded subpatterns. Allows + * `({{name}})` as shorthand for `(?{{name}})`. Patterns cannot be embedded within + * character classes. + * @param {Object} subs Lookup object for named subpatterns. Values can be strings or regexes. A + * leading `^` and trailing unescaped `$` are stripped from subpatterns, if both are present. + * @param {String} [flags] Any combination of XRegExp flags. + * @returns {RegExp} Regex with interpolated subpatterns. + * @example + * + * const time = XRegExp.build('(?x)^ {{hours}} ({{minutes}}) $', { + * hours: XRegExp.build('{{h12}} : | {{h24}}', { + * h12: /1[0-2]|0?[1-9]/, + * h24: /2[0-3]|[01][0-9]/ + * }, 'x'), + * minutes: /^[0-5][0-9]$/ + * }); + * time.test('10:59'); // -> true + * XRegExp.exec('10:59', time).minutes; // -> '59' + */ + + + XRegExp.build = function (pattern, subs, flags) { + flags = flags || ''; // Used with `asXRegExp` calls for `pattern` and subpatterns in `subs`, to work around how + // some browsers convert `RegExp('\n')` to a regex that contains the literal characters `\` + // and `n`. See more details at . + + var addFlagX = (0, _includes["default"])(flags).call(flags, 'x'); + var inlineFlags = /^\(\?([\w$]+)\)/.exec(pattern); // Add flags within a leading mode modifier to the overall pattern's flags + + if (inlineFlags) { + flags = XRegExp._clipDuplicates(flags + inlineFlags[1]); + } + + var data = {}; + + for (var p in subs) { + if (subs.hasOwnProperty(p)) { + // Passing to XRegExp enables extended syntax and ensures independent validity, + // lest an unescaped `(`, `)`, `[`, or trailing `\` breaks the `(?:)` wrapper. For + // subpatterns provided as native regexes, it dies on octals and adds the property + // used to hold extended regex instance data, for simplicity. + var sub = asXRegExp(subs[p], addFlagX); + data[p] = { + // Deanchoring allows embedding independently useful anchored regexes. If you + // really need to keep your anchors, double them (i.e., `^^...$$`). + pattern: deanchor(sub.source), + names: sub[REGEX_DATA].captureNames || [] + }; + } + } // Passing to XRegExp dies on octals and ensures the outer pattern is independently valid; + // helps keep this simple. Named captures will be put back. + + + var patternAsRegex = asXRegExp(pattern, addFlagX); // 'Caps' is short for 'captures' + + var numCaps = 0; + var numPriorCaps; + var numOuterCaps = 0; + var outerCapsMap = [0]; + var outerCapNames = patternAsRegex[REGEX_DATA].captureNames || []; + var output = patternAsRegex.source.replace(parts, function ($0, $1, $2, $3, $4) { + var subName = $1 || $2; + var capName; + var intro; + var localCapIndex; // Named subpattern + + if (subName) { + var _context3; + + if (!data.hasOwnProperty(subName)) { + throw new ReferenceError("Undefined property ".concat($0)); + } // Named subpattern was wrapped in a capturing group + + + if ($1) { + capName = outerCapNames[numOuterCaps]; + outerCapsMap[++numOuterCaps] = ++numCaps; // If it's a named group, preserve the name. Otherwise, use the subpattern name + // as the capture name + + intro = "(?<".concat(capName || subName, ">"); + } else { + intro = '(?:'; + } + + numPriorCaps = numCaps; + var rewrittenSubpattern = data[subName].pattern.replace(subParts, function (match, paren, backref) { + // Capturing group + if (paren) { + capName = data[subName].names[numCaps - numPriorCaps]; + ++numCaps; // If the current capture has a name, preserve the name + + if (capName) { + return "(?<".concat(capName, ">"); + } // Backreference + + } else if (backref) { + localCapIndex = +backref - 1; // Rewrite the backreference + + return data[subName].names[localCapIndex] ? // Need to preserve the backreference name in case using flag `n` + "\\k<".concat(data[subName].names[localCapIndex], ">") : "\\".concat(+backref + numPriorCaps); + } + + return match; + }); + return (0, _concat["default"])(_context3 = "".concat(intro)).call(_context3, rewrittenSubpattern, ")"); + } // Capturing group + + + if ($3) { + capName = outerCapNames[numOuterCaps]; + outerCapsMap[++numOuterCaps] = ++numCaps; // If the current capture has a name, preserve the name + + if (capName) { + return "(?<".concat(capName, ">"); + } // Backreference + + } else if ($4) { + localCapIndex = +$4 - 1; // Rewrite the backreference + + return outerCapNames[localCapIndex] ? // Need to preserve the backreference name in case using flag `n` + "\\k<".concat(outerCapNames[localCapIndex], ">") : "\\".concat(outerCapsMap[+$4]); + } + + return $0; + }); + return XRegExp(output, flags); + }; +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"@babel/runtime-corejs3/core-js-stable/instance/concat":12,"@babel/runtime-corejs3/core-js-stable/instance/includes":15,"@babel/runtime-corejs3/core-js-stable/instance/map":17,"@babel/runtime-corejs3/core-js-stable/instance/reduce":18,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],2:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _slice = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/slice")); + +var _concat = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/concat")); + +var _includes = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/includes")); + +/*! + * XRegExp.matchRecursive 4.4.0 + * + * Steven Levithan (c) 2009-present MIT License + */ +var _default = function _default(XRegExp) { + /** + * Returns a match detail object composed of the provided values. + * + * @private + */ + function row(name, value, start, end) { + return { + name: name, + value: value, + start: start, + end: end + }; + } + /** + * Returns an array of match strings between outermost left and right delimiters, or an array of + * objects with detailed match parts and position data. An error is thrown if delimiters are + * unbalanced within the data. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {String} left Left delimiter as an XRegExp pattern. + * @param {String} right Right delimiter as an XRegExp pattern. + * @param {String} [flags] Any native or XRegExp flags, used for the left and right delimiters. + * @param {Object} [options] Lets you specify `valueNames` and `escapeChar` options. + * @returns {!Array} Array of matches, or an empty array. + * @example + * + * // Basic usage + * let str = '(t((e))s)t()(ing)'; + * XRegExp.matchRecursive(str, '\\(', '\\)', 'g'); + * // -> ['t((e))s', '', 'ing'] + * + * // Extended information mode with valueNames + * str = 'Here is
an
example'; + * XRegExp.matchRecursive(str, '', '', 'gi', { + * valueNames: ['between', 'left', 'match', 'right'] + * }); + * // -> [ + * // {name: 'between', value: 'Here is ', start: 0, end: 8}, + * // {name: 'left', value: '
', start: 8, end: 13}, + * // {name: 'match', value: '
an
', start: 13, end: 27}, + * // {name: 'right', value: '
', start: 27, end: 33}, + * // {name: 'between', value: ' example', start: 33, end: 41} + * // ] + * + * // Omitting unneeded parts with null valueNames, and using escapeChar + * str = '...{1}.\\{{function(x,y){return {y:x}}}'; + * XRegExp.matchRecursive(str, '{', '}', 'g', { + * valueNames: ['literal', null, 'value', null], + * escapeChar: '\\' + * }); + * // -> [ + * // {name: 'literal', value: '...', start: 0, end: 3}, + * // {name: 'value', value: '1', start: 4, end: 5}, + * // {name: 'literal', value: '.\\{', start: 6, end: 9}, + * // {name: 'value', value: 'function(x,y){return {y:x}}', start: 10, end: 37} + * // ] + * + * // Sticky mode via flag y + * str = '<1><<<2>>><3>4<5>'; + * XRegExp.matchRecursive(str, '<', '>', 'gy'); + * // -> ['1', '<<2>>', '3'] + */ + + + XRegExp.matchRecursive = function (str, left, right, flags, options) { + flags = flags || ''; + options = options || {}; + var global = (0, _includes["default"])(flags).call(flags, 'g'); + var sticky = (0, _includes["default"])(flags).call(flags, 'y'); // Flag `y` is controlled internally + + var basicFlags = flags.replace(/y/g, ''); + var _options = options, + escapeChar = _options.escapeChar; + var vN = options.valueNames; + var output = []; + var openTokens = 0; + var delimStart = 0; + var delimEnd = 0; + var lastOuterEnd = 0; + var outerStart; + var innerStart; + var leftMatch; + var rightMatch; + var esc; + left = XRegExp(left, basicFlags); + right = XRegExp(right, basicFlags); + + if (escapeChar) { + var _context, _context2; + + if (escapeChar.length > 1) { + throw new Error('Cannot use more than one escape character'); + } + + escapeChar = XRegExp.escape(escapeChar); // Example of concatenated `esc` regex: + // `escapeChar`: '%' + // `left`: '<' + // `right`: '>' + // Regex is: /(?:%[\S\s]|(?:(?!<|>)[^%])+)+/ + + esc = new RegExp((0, _concat["default"])(_context = (0, _concat["default"])(_context2 = "(?:".concat(escapeChar, "[\\S\\s]|(?:(?!")).call(_context2, // Using `XRegExp.union` safely rewrites backreferences in `left` and `right`. + // Intentionally not passing `basicFlags` to `XRegExp.union` since any syntax + // transformation resulting from those flags was already applied to `left` and + // `right` when they were passed through the XRegExp constructor above. + XRegExp.union([left, right], '', { + conjunction: 'or' + }).source, ")[^")).call(_context, escapeChar, "])+)+"), // Flags `gy` not needed here + flags.replace(/[^imu]+/g, '')); + } + + while (true) { + // If using an escape character, advance to the delimiter's next starting position, + // skipping any escaped characters in between + if (escapeChar) { + delimEnd += (XRegExp.exec(str, esc, delimEnd, 'sticky') || [''])[0].length; + } + + leftMatch = XRegExp.exec(str, left, delimEnd); + rightMatch = XRegExp.exec(str, right, delimEnd); // Keep the leftmost match only + + if (leftMatch && rightMatch) { + if (leftMatch.index <= rightMatch.index) { + rightMatch = null; + } else { + leftMatch = null; + } + } // Paths (LM: leftMatch, RM: rightMatch, OT: openTokens): + // LM | RM | OT | Result + // 1 | 0 | 1 | loop + // 1 | 0 | 0 | loop + // 0 | 1 | 1 | loop + // 0 | 1 | 0 | throw + // 0 | 0 | 1 | throw + // 0 | 0 | 0 | break + // The paths above don't include the sticky mode special case. The loop ends after the + // first completed match if not `global`. + + + if (leftMatch || rightMatch) { + delimStart = (leftMatch || rightMatch).index; + delimEnd = delimStart + (leftMatch || rightMatch)[0].length; + } else if (!openTokens) { + break; + } + + if (sticky && !openTokens && delimStart > lastOuterEnd) { + break; + } + + if (leftMatch) { + if (!openTokens) { + outerStart = delimStart; + innerStart = delimEnd; + } + + ++openTokens; + } else if (rightMatch && openTokens) { + if (! --openTokens) { + if (vN) { + if (vN[0] && outerStart > lastOuterEnd) { + output.push(row(vN[0], (0, _slice["default"])(str).call(str, lastOuterEnd, outerStart), lastOuterEnd, outerStart)); + } + + if (vN[1]) { + output.push(row(vN[1], (0, _slice["default"])(str).call(str, outerStart, innerStart), outerStart, innerStart)); + } + + if (vN[2]) { + output.push(row(vN[2], (0, _slice["default"])(str).call(str, innerStart, delimStart), innerStart, delimStart)); + } + + if (vN[3]) { + output.push(row(vN[3], (0, _slice["default"])(str).call(str, delimStart, delimEnd), delimStart, delimEnd)); + } + } else { + output.push((0, _slice["default"])(str).call(str, innerStart, delimStart)); + } + + lastOuterEnd = delimEnd; + + if (!global) { + break; + } + } + } else { + throw new Error('Unbalanced delimiter found in string'); + } // If the delimiter matched an empty string, avoid an infinite loop + + + if (delimStart === delimEnd) { + ++delimEnd; + } + } + + if (global && !sticky && vN && vN[0] && str.length > lastOuterEnd) { + output.push(row(vN[0], (0, _slice["default"])(str).call(str, lastOuterEnd), lastOuterEnd, str.length)); + } + + return output; + }; +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"@babel/runtime-corejs3/core-js-stable/instance/concat":12,"@babel/runtime-corejs3/core-js-stable/instance/includes":15,"@babel/runtime-corejs3/core-js-stable/instance/slice":19,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],3:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _getIterator2 = _interopRequireDefault(require("@babel/runtime-corejs3/core-js/get-iterator")); + +var _isArray = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/array/is-array")); + +var _getIteratorMethod2 = _interopRequireDefault(require("@babel/runtime-corejs3/core-js/get-iterator-method")); + +var _symbol = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/symbol")); + +var _from = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/array/from")); + +var _slice = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/slice")); + +var _includes = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/includes")); + +var _concat = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/concat")); + +var _forEach = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/for-each")); + +function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof _symbol["default"] === "undefined" || (0, _getIteratorMethod2["default"])(o) == null) { if ((0, _isArray["default"])(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = (0, _getIterator2["default"])(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } + +function _unsupportedIterableToArray(o, minLen) { var _context4; if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = (0, _slice["default"])(_context4 = Object.prototype.toString.call(o)).call(_context4, 8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return (0, _from["default"])(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +/*! + * XRegExp Unicode Base 4.4.0 + * + * Steven Levithan (c) 2008-present MIT License + */ +var _default = function _default(XRegExp) { + /** + * Adds base support for Unicode matching: + * - Adds syntax `\p{..}` for matching Unicode tokens. Tokens can be inverted using `\P{..}` or + * `\p{^..}`. Token names ignore case, spaces, hyphens, and underscores. You can omit the + * braces for token names that are a single letter (e.g. `\pL` or `PL`). + * - Adds flag A (astral), which enables 21-bit Unicode support. + * - Adds the `XRegExp.addUnicodeData` method used by other addons to provide character data. + * + * Unicode Base relies on externally provided Unicode character data. Official addons are + * available to provide data for Unicode categories, scripts, blocks, and properties. + * + * @requires XRegExp + */ + // ==--------------------------== + // Private stuff + // ==--------------------------== + // Storage for Unicode data + var unicode = {}; // Reuse utils + + var dec = XRegExp._dec; + var hex = XRegExp._hex; + var pad4 = XRegExp._pad4; // Generates a token lookup name: lowercase, with hyphens, spaces, and underscores removed + + function normalize(name) { + return name.replace(/[- _]+/g, '').toLowerCase(); + } // Gets the decimal code of a literal code unit, \xHH, \uHHHH, or a backslash-escaped literal + + + function charCode(chr) { + var esc = /^\\[xu](.+)/.exec(chr); + return esc ? dec(esc[1]) : chr.charCodeAt(chr[0] === '\\' ? 1 : 0); + } // Inverts a list of ordered BMP characters and ranges + + + function invertBmp(range) { + var output = ''; + var lastEnd = -1; + (0, _forEach["default"])(XRegExp).call(XRegExp, range, /(\\x..|\\u....|\\?[\s\S])(?:-(\\x..|\\u....|\\?[\s\S]))?/, function (m) { + var start = charCode(m[1]); + + if (start > lastEnd + 1) { + output += "\\u".concat(pad4(hex(lastEnd + 1))); + + if (start > lastEnd + 2) { + output += "-\\u".concat(pad4(hex(start - 1))); + } + } + + lastEnd = charCode(m[2] || m[1]); + }); + + if (lastEnd < 0xFFFF) { + output += "\\u".concat(pad4(hex(lastEnd + 1))); + + if (lastEnd < 0xFFFE) { + output += '-\\uFFFF'; + } + } + + return output; + } // Generates an inverted BMP range on first use + + + function cacheInvertedBmp(slug) { + var prop = 'b!'; + return unicode[slug][prop] || (unicode[slug][prop] = invertBmp(unicode[slug].bmp)); + } // Combines and optionally negates BMP and astral data + + + function buildAstral(slug, isNegated) { + var item = unicode[slug]; + var combined = ''; + + if (item.bmp && !item.isBmpLast) { + var _context; + + combined = (0, _concat["default"])(_context = "[".concat(item.bmp, "]")).call(_context, item.astral ? '|' : ''); + } + + if (item.astral) { + combined += item.astral; + } + + if (item.isBmpLast && item.bmp) { + var _context2; + + combined += (0, _concat["default"])(_context2 = "".concat(item.astral ? '|' : '', "[")).call(_context2, item.bmp, "]"); + } // Astral Unicode tokens always match a code point, never a code unit + + + return isNegated ? "(?:(?!".concat(combined, ")(?:[\uD800-\uDBFF][\uDC00-\uDFFF]|[\0-\uFFFF]))") : "(?:".concat(combined, ")"); + } // Builds a complete astral pattern on first use + + + function cacheAstral(slug, isNegated) { + var prop = isNegated ? 'a!' : 'a='; + return unicode[slug][prop] || (unicode[slug][prop] = buildAstral(slug, isNegated)); + } // ==--------------------------== + // Core functionality + // ==--------------------------== + + /* + * Add astral mode (flag A) and Unicode token syntax: `\p{..}`, `\P{..}`, `\p{^..}`, `\pC`. + */ + + + XRegExp.addToken( // Use `*` instead of `+` to avoid capturing `^` as the token name in `\p{^}` + /\\([pP])(?:{(\^?)([^}]*)}|([A-Za-z]))/, function (match, scope, flags) { + var ERR_DOUBLE_NEG = 'Invalid double negation '; + var ERR_UNKNOWN_NAME = 'Unknown Unicode token '; + var ERR_UNKNOWN_REF = 'Unicode token missing data '; + var ERR_ASTRAL_ONLY = 'Astral mode required for Unicode token '; + var ERR_ASTRAL_IN_CLASS = 'Astral mode does not support Unicode tokens within character classes'; // Negated via \P{..} or \p{^..} + + var isNegated = match[1] === 'P' || !!match[2]; // Switch from BMP (0-FFFF) to astral (0-10FFFF) mode via flag A + + var isAstralMode = (0, _includes["default"])(flags).call(flags, 'A'); // Token lookup name. Check `[4]` first to avoid passing `undefined` via `\p{}` + + var slug = normalize(match[4] || match[3]); // Token data object + + var item = unicode[slug]; + + if (match[1] === 'P' && match[2]) { + throw new SyntaxError(ERR_DOUBLE_NEG + match[0]); + } + + if (!unicode.hasOwnProperty(slug)) { + throw new SyntaxError(ERR_UNKNOWN_NAME + match[0]); + } // Switch to the negated form of the referenced Unicode token + + + if (item.inverseOf) { + slug = normalize(item.inverseOf); + + if (!unicode.hasOwnProperty(slug)) { + var _context3; + + throw new ReferenceError((0, _concat["default"])(_context3 = "".concat(ERR_UNKNOWN_REF + match[0], " -> ")).call(_context3, item.inverseOf)); + } + + item = unicode[slug]; + isNegated = !isNegated; + } + + if (!(item.bmp || isAstralMode)) { + throw new SyntaxError(ERR_ASTRAL_ONLY + match[0]); + } + + if (isAstralMode) { + if (scope === 'class') { + throw new SyntaxError(ERR_ASTRAL_IN_CLASS); + } + + return cacheAstral(slug, isNegated); + } + + return scope === 'class' ? isNegated ? cacheInvertedBmp(slug) : item.bmp : "".concat((isNegated ? '[^' : '[') + item.bmp, "]"); + }, { + scope: 'all', + optionalFlags: 'A', + leadChar: '\\' + }); + /** + * Adds to the list of Unicode tokens that XRegExp regexes can match via `\p` or `\P`. + * + * @memberOf XRegExp + * @param {Array} data Objects with named character ranges. Each object may have properties + * `name`, `alias`, `isBmpLast`, `inverseOf`, `bmp`, and `astral`. All but `name` are + * optional, although one of `bmp` or `astral` is required (unless `inverseOf` is set). If + * `astral` is absent, the `bmp` data is used for BMP and astral modes. If `bmp` is absent, + * the name errors in BMP mode but works in astral mode. If both `bmp` and `astral` are + * provided, the `bmp` data only is used in BMP mode, and the combination of `bmp` and + * `astral` data is used in astral mode. `isBmpLast` is needed when a token matches orphan + * high surrogates *and* uses surrogate pairs to match astral code points. The `bmp` and + * `astral` data should be a combination of literal characters and `\xHH` or `\uHHHH` escape + * sequences, with hyphens to create ranges. Any regex metacharacters in the data should be + * escaped, apart from range-creating hyphens. The `astral` data can additionally use + * character classes and alternation, and should use surrogate pairs to represent astral code + * points. `inverseOf` can be used to avoid duplicating character data if a Unicode token is + * defined as the exact inverse of another token. + * @example + * + * // Basic use + * XRegExp.addUnicodeData([{ + * name: 'XDigit', + * alias: 'Hexadecimal', + * bmp: '0-9A-Fa-f' + * }]); + * XRegExp('\\p{XDigit}:\\p{Hexadecimal}+').test('0:3D'); // -> true + */ + + XRegExp.addUnicodeData = function (data) { + var ERR_NO_NAME = 'Unicode token requires name'; + var ERR_NO_DATA = 'Unicode token has no character data '; + + var _iterator = _createForOfIteratorHelper(data), + _step; + + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var item = _step.value; + + if (!item.name) { + throw new Error(ERR_NO_NAME); + } + + if (!(item.inverseOf || item.bmp || item.astral)) { + throw new Error(ERR_NO_DATA + item.name); + } + + unicode[normalize(item.name)] = item; + + if (item.alias) { + unicode[normalize(item.alias)] = item; + } + } // Reset the pattern cache used by the `XRegExp` constructor, since the same pattern and + // flags might now produce different results + + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + + XRegExp.cache.flush('patterns'); + }; + /** + * @ignore + * + * Return a reference to the internal Unicode definition structure for the given Unicode + * Property if the given name is a legal Unicode Property for use in XRegExp `\p` or `\P` regex + * constructs. + * + * @memberOf XRegExp + * @param {String} name Name by which the Unicode Property may be recognized (case-insensitive), + * e.g. `'N'` or `'Number'`. The given name is matched against all registered Unicode + * Properties and Property Aliases. + * @returns {Object} Reference to definition structure when the name matches a Unicode Property. + * + * @note + * For more info on Unicode Properties, see also http://unicode.org/reports/tr18/#Categories. + * + * @note + * This method is *not* part of the officially documented API and may change or be removed in + * the future. It is meant for userland code that wishes to reuse the (large) internal Unicode + * structures set up by XRegExp. + */ + + + XRegExp._getUnicodeProperty = function (name) { + var slug = normalize(name); + return unicode[slug]; + }; +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"@babel/runtime-corejs3/core-js-stable/array/from":10,"@babel/runtime-corejs3/core-js-stable/array/is-array":11,"@babel/runtime-corejs3/core-js-stable/instance/concat":12,"@babel/runtime-corejs3/core-js-stable/instance/for-each":14,"@babel/runtime-corejs3/core-js-stable/instance/includes":15,"@babel/runtime-corejs3/core-js-stable/instance/slice":19,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/core-js-stable/symbol":24,"@babel/runtime-corejs3/core-js/get-iterator":28,"@babel/runtime-corejs3/core-js/get-iterator-method":27,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],4:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _blocks = _interopRequireDefault(require("../../tools/output/blocks")); + +/*! + * XRegExp Unicode Blocks 4.4.0 + * + * Steven Levithan (c) 2010-present MIT License + * Unicode data by Mathias Bynens + */ +var _default = function _default(XRegExp) { + /** + * Adds support for all Unicode blocks. Block names use the prefix 'In'. E.g., + * `\p{InBasicLatin}`. Token names are case insensitive, and any spaces, hyphens, and + * underscores are ignored. + * + * Uses Unicode 13.0.0. + * + * @requires XRegExp, Unicode Base + */ + if (!XRegExp.addUnicodeData) { + throw new ReferenceError('Unicode Base must be loaded before Unicode Blocks'); + } + + XRegExp.addUnicodeData(_blocks["default"]); +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"../../tools/output/blocks":222,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],5:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _categories = _interopRequireDefault(require("../../tools/output/categories")); + +/*! + * XRegExp Unicode Categories 4.4.0 + * + * Steven Levithan (c) 2010-present MIT License + * Unicode data by Mathias Bynens + */ +var _default = function _default(XRegExp) { + /** + * Adds support for Unicode's general categories. E.g., `\p{Lu}` or `\p{Uppercase Letter}`. See + * category descriptions in UAX #44 . Token + * names are case insensitive, and any spaces, hyphens, and underscores are ignored. + * + * Uses Unicode 13.0.0. + * + * @requires XRegExp, Unicode Base + */ + if (!XRegExp.addUnicodeData) { + throw new ReferenceError('Unicode Base must be loaded before Unicode Categories'); + } + + XRegExp.addUnicodeData(_categories["default"]); +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"../../tools/output/categories":223,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],6:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _properties = _interopRequireDefault(require("../../tools/output/properties")); + +/*! + * XRegExp Unicode Properties 4.4.0 + * + * Steven Levithan (c) 2012-present MIT License + * Unicode data by Mathias Bynens + */ +var _default = function _default(XRegExp) { + /** + * Adds properties to meet the UTS #18 Level 1 RL1.2 requirements for Unicode regex support. See + * . Following are definitions of these properties from + * UAX #44 : + * + * - Alphabetic + * Characters with the Alphabetic property. Generated from: Lowercase + Uppercase + Lt + Lm + + * Lo + Nl + Other_Alphabetic. + * + * - Default_Ignorable_Code_Point + * For programmatic determination of default ignorable code points. New characters that should + * be ignored in rendering (unless explicitly supported) will be assigned in these ranges, + * permitting programs to correctly handle the default rendering of such characters when not + * otherwise supported. + * + * - Lowercase + * Characters with the Lowercase property. Generated from: Ll + Other_Lowercase. + * + * - Noncharacter_Code_Point + * Code points permanently reserved for internal use. + * + * - Uppercase + * Characters with the Uppercase property. Generated from: Lu + Other_Uppercase. + * + * - White_Space + * Spaces, separator characters and other control characters which should be treated by + * programming languages as "white space" for the purpose of parsing elements. + * + * The properties ASCII, Any, and Assigned are also included but are not defined in UAX #44. UTS + * #18 RL1.2 additionally requires support for Unicode scripts and general categories. These are + * included in XRegExp's Unicode Categories and Unicode Scripts addons. + * + * Token names are case insensitive, and any spaces, hyphens, and underscores are ignored. + * + * Uses Unicode 13.0.0. + * + * @requires XRegExp, Unicode Base + */ + if (!XRegExp.addUnicodeData) { + throw new ReferenceError('Unicode Base must be loaded before Unicode Properties'); + } + + var unicodeData = _properties["default"]; // Add non-generated data + + unicodeData.push({ + name: 'Assigned', + // Since this is defined as the inverse of Unicode category Cn (Unassigned), the Unicode + // Categories addon is required to use this property + inverseOf: 'Cn' + }); + XRegExp.addUnicodeData(unicodeData); +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"../../tools/output/properties":224,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],7:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _scripts = _interopRequireDefault(require("../../tools/output/scripts")); + +/*! + * XRegExp Unicode Scripts 4.4.0 + * + * Steven Levithan (c) 2010-present MIT License + * Unicode data by Mathias Bynens + */ +var _default = function _default(XRegExp) { + /** + * Adds support for all Unicode scripts. E.g., `\p{Latin}`. Token names are case insensitive, + * and any spaces, hyphens, and underscores are ignored. + * + * Uses Unicode 13.0.0. + * + * @requires XRegExp, Unicode Base + */ + if (!XRegExp.addUnicodeData) { + throw new ReferenceError('Unicode Base must be loaded before Unicode Scripts'); + } + + XRegExp.addUnicodeData(_scripts["default"]); +}; + +exports["default"] = _default; +module.exports = exports.default; +},{"../../tools/output/scripts":225,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],8:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _xregexp = _interopRequireDefault(require("./xregexp")); + +var _build = _interopRequireDefault(require("./addons/build")); + +var _matchrecursive = _interopRequireDefault(require("./addons/matchrecursive")); + +var _unicodeBase = _interopRequireDefault(require("./addons/unicode-base")); + +var _unicodeBlocks = _interopRequireDefault(require("./addons/unicode-blocks")); + +var _unicodeCategories = _interopRequireDefault(require("./addons/unicode-categories")); + +var _unicodeProperties = _interopRequireDefault(require("./addons/unicode-properties")); + +var _unicodeScripts = _interopRequireDefault(require("./addons/unicode-scripts")); + +(0, _build["default"])(_xregexp["default"]); +(0, _matchrecursive["default"])(_xregexp["default"]); +(0, _unicodeBase["default"])(_xregexp["default"]); +(0, _unicodeBlocks["default"])(_xregexp["default"]); +(0, _unicodeCategories["default"])(_xregexp["default"]); +(0, _unicodeProperties["default"])(_xregexp["default"]); +(0, _unicodeScripts["default"])(_xregexp["default"]); +var _default = _xregexp["default"]; +exports["default"] = _default; +module.exports = exports.default; +},{"./addons/build":1,"./addons/matchrecursive":2,"./addons/unicode-base":3,"./addons/unicode-blocks":4,"./addons/unicode-categories":5,"./addons/unicode-properties":6,"./addons/unicode-scripts":7,"./xregexp":9,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/helpers/interopRequireDefault":34}],9:[function(require,module,exports){ +"use strict"; + +var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault"); + +var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property"); + +_Object$defineProperty(exports, "__esModule", { + value: true +}); + +exports["default"] = void 0; + +var _getIterator2 = _interopRequireDefault(require("@babel/runtime-corejs3/core-js/get-iterator")); + +var _isArray = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/array/is-array")); + +var _getIteratorMethod2 = _interopRequireDefault(require("@babel/runtime-corejs3/core-js/get-iterator-method")); + +var _symbol = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/symbol")); + +var _from = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/array/from")); + +var _concat = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/concat")); + +var _indexOf = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/index-of")); + +var _create = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/create")); + +var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/slicedToArray")); + +var _forEach = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/for-each")); + +var _includes = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/includes")); + +var _parseInt2 = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/parse-int")); + +var _slice = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/slice")); + +var _sort = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/sort")); + +var _flags = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/flags")); + +function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof _symbol["default"] === "undefined" || (0, _getIteratorMethod2["default"])(o) == null) { if ((0, _isArray["default"])(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = (0, _getIterator2["default"])(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } + +function _unsupportedIterableToArray(o, minLen) { var _context9; if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = (0, _slice["default"])(_context9 = Object.prototype.toString.call(o)).call(_context9, 8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return (0, _from["default"])(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +/*! + * XRegExp 4.4.0 + * + * Steven Levithan (c) 2007-present MIT License + */ + +/** + * XRegExp provides augmented, extensible regular expressions. You get additional regex syntax and + * flags, beyond what browsers support natively. XRegExp is also a regex utility belt with tools to + * make your client-side grepping simpler and more powerful, while freeing you from related + * cross-browser inconsistencies. + */ +// ==--------------------------== +// Private stuff +// ==--------------------------== +// Property name used for extended regex instance data +var REGEX_DATA = 'xregexp'; // Optional features that can be installed and uninstalled + +var features = { + astral: false, + namespacing: false +}; // Native methods to use and restore ('native' is an ES3 reserved keyword) + +var nativ = { + exec: RegExp.prototype.exec, + test: RegExp.prototype.test, + match: String.prototype.match, + replace: String.prototype.replace, + split: String.prototype.split +}; // Storage for fixed/extended native methods + +var fixed = {}; // Storage for regexes cached by `XRegExp.cache` + +var regexCache = {}; // Storage for pattern details cached by the `XRegExp` constructor + +var patternCache = {}; // Storage for regex syntax tokens added internally or by `XRegExp.addToken` + +var tokens = []; // Token scopes + +var defaultScope = 'default'; +var classScope = 'class'; // Regexes that match native regex syntax, including octals + +var nativeTokens = { + // Any native multicharacter token in default scope, or any single character + 'default': /\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9]\d*|x[\dA-Fa-f]{2}|u(?:[\dA-Fa-f]{4}|{[\dA-Fa-f]+})|c[A-Za-z]|[\s\S])|\(\?(?:[:=!]|<[=!])|[?*+]\?|{\d+(?:,\d*)?}\??|[\s\S]/, + // Any native multicharacter token in character class scope, or any single character + 'class': /\\(?:[0-3][0-7]{0,2}|[4-7][0-7]?|x[\dA-Fa-f]{2}|u(?:[\dA-Fa-f]{4}|{[\dA-Fa-f]+})|c[A-Za-z]|[\s\S])|[\s\S]/ +}; // Any backreference or dollar-prefixed character in replacement strings + +var replacementToken = /\$(?:{([\w$]+)}|<([\w$]+)>|(\d\d?|[\s\S]))/g; // Check for correct `exec` handling of nonparticipating capturing groups + +var correctExecNpcg = nativ.exec.call(/()??/, '')[1] === undefined; // Check for ES6 `flags` prop support + +var hasFlagsProp = (0, _flags["default"])(/x/) !== undefined; // Shortcut to `Object.prototype.toString` + +var _ref = {}, + toString = _ref.toString; + +function hasNativeFlag(flag) { + // Can't check based on the presence of properties/getters since browsers might support such + // properties even when they don't support the corresponding flag in regex construction (tested + // in Chrome 48, where `'unicode' in /x/` is true but trying to construct a regex with flag `u` + // throws an error) + var isSupported = true; + + try { + // Can't use regex literals for testing even in a `try` because regex literals with + // unsupported flags cause a compilation error in IE + new RegExp('', flag); // Work around a broken/incomplete IE11 polyfill for sticky introduced in core-js 3.6.0 + + if (flag === 'y') { + // Using function to avoid babel transform to regex literal + var gy = function () { + return 'gy'; + }(); + + var incompleteY = '.a'.replace(new RegExp('a', gy), '.') === '..'; + + if (incompleteY) { + isSupported = false; + } + } + } catch (exception) { + isSupported = false; + } + + return isSupported; +} // Check for ES6 `u` flag support + + +var hasNativeU = hasNativeFlag('u'); // Check for ES6 `y` flag support + +var hasNativeY = hasNativeFlag('y'); // Tracker for known flags, including addon flags + +var registeredFlags = { + g: true, + i: true, + m: true, + u: hasNativeU, + y: hasNativeY +}; +/** + * Attaches extended data and `XRegExp.prototype` properties to a regex object. + * + * @private + * @param {RegExp} regex Regex to augment. + * @param {Array} captureNames Array with capture names, or `null`. + * @param {String} xSource XRegExp pattern used to generate `regex`, or `null` if N/A. + * @param {String} xFlags XRegExp flags used to generate `regex`, or `null` if N/A. + * @param {Boolean} [isInternalOnly=false] Whether the regex will be used only for internal + * operations, and never exposed to users. For internal-only regexes, we can improve perf by + * skipping some operations like attaching `XRegExp.prototype` properties. + * @returns {!RegExp} Augmented regex. + */ + +function augment(regex, captureNames, xSource, xFlags, isInternalOnly) { + var _context; + + regex[REGEX_DATA] = { + captureNames: captureNames + }; + + if (isInternalOnly) { + return regex; + } // Can't auto-inherit these since the XRegExp constructor returns a nonprimitive value + + + if (regex.__proto__) { + regex.__proto__ = XRegExp.prototype; + } else { + for (var p in XRegExp.prototype) { + // An `XRegExp.prototype.hasOwnProperty(p)` check wouldn't be worth it here, since this + // is performance sensitive, and enumerable `Object.prototype` or `RegExp.prototype` + // extensions exist on `regex.prototype` anyway + regex[p] = XRegExp.prototype[p]; + } + } + + regex[REGEX_DATA].source = xSource; // Emulate the ES6 `flags` prop by ensuring flags are in alphabetical order + + regex[REGEX_DATA].flags = xFlags ? (0, _sort["default"])(_context = xFlags.split('')).call(_context).join('') : xFlags; + return regex; +} +/** + * Removes any duplicate characters from the provided string. + * + * @private + * @param {String} str String to remove duplicate characters from. + * @returns {string} String with any duplicate characters removed. + */ + + +function clipDuplicates(str) { + return nativ.replace.call(str, /([\s\S])(?=[\s\S]*\1)/g, ''); +} +/** + * Copies a regex object while preserving extended data and augmenting with `XRegExp.prototype` + * properties. The copy has a fresh `lastIndex` property (set to zero). Allows adding and removing + * flags g and y while copying the regex. + * + * @private + * @param {RegExp} regex Regex to copy. + * @param {Object} [options] Options object with optional properties: + * - `addG` {Boolean} Add flag g while copying the regex. + * - `addY` {Boolean} Add flag y while copying the regex. + * - `removeG` {Boolean} Remove flag g while copying the regex. + * - `removeY` {Boolean} Remove flag y while copying the regex. + * - `isInternalOnly` {Boolean} Whether the copied regex will be used only for internal + * operations, and never exposed to users. For internal-only regexes, we can improve perf by + * skipping some operations like attaching `XRegExp.prototype` properties. + * - `source` {String} Overrides `.source`, for special cases. + * @returns {RegExp} Copy of the provided regex, possibly with modified flags. + */ + + +function copyRegex(regex, options) { + var _context2; + + if (!XRegExp.isRegExp(regex)) { + throw new TypeError('Type RegExp expected'); + } + + var xData = regex[REGEX_DATA] || {}; + var flags = getNativeFlags(regex); + var flagsToAdd = ''; + var flagsToRemove = ''; + var xregexpSource = null; + var xregexpFlags = null; + options = options || {}; + + if (options.removeG) { + flagsToRemove += 'g'; + } + + if (options.removeY) { + flagsToRemove += 'y'; + } + + if (flagsToRemove) { + flags = nativ.replace.call(flags, new RegExp("[".concat(flagsToRemove, "]+"), 'g'), ''); + } + + if (options.addG) { + flagsToAdd += 'g'; + } + + if (options.addY) { + flagsToAdd += 'y'; + } + + if (flagsToAdd) { + flags = clipDuplicates(flags + flagsToAdd); + } + + if (!options.isInternalOnly) { + if (xData.source !== undefined) { + xregexpSource = xData.source; + } // null or undefined; don't want to add to `flags` if the previous value was null, since + // that indicates we're not tracking original precompilation flags + + + if ((0, _flags["default"])(xData) != null) { + // Flags are only added for non-internal regexes by `XRegExp.globalize`. Flags are never + // removed for non-internal regexes, so don't need to handle it + xregexpFlags = flagsToAdd ? clipDuplicates((0, _flags["default"])(xData) + flagsToAdd) : (0, _flags["default"])(xData); + } + } // Augment with `XRegExp.prototype` properties, but use the native `RegExp` constructor to avoid + // searching for special tokens. That would be wrong for regexes constructed by `RegExp`, and + // unnecessary for regexes constructed by `XRegExp` because the regex has already undergone the + // translation to native regex syntax + + + regex = augment(new RegExp(options.source || regex.source, flags), hasNamedCapture(regex) ? (0, _slice["default"])(_context2 = xData.captureNames).call(_context2, 0) : null, xregexpSource, xregexpFlags, options.isInternalOnly); + return regex; +} +/** + * Converts hexadecimal to decimal. + * + * @private + * @param {String} hex + * @returns {number} + */ + + +function dec(hex) { + return (0, _parseInt2["default"])(hex, 16); +} +/** + * Returns a pattern that can be used in a native RegExp in place of an ignorable token such as an + * inline comment or whitespace with flag x. This is used directly as a token handler function + * passed to `XRegExp.addToken`. + * + * @private + * @param {String} match Match arg of `XRegExp.addToken` handler + * @param {String} scope Scope arg of `XRegExp.addToken` handler + * @param {String} flags Flags arg of `XRegExp.addToken` handler + * @returns {string} Either '' or '(?:)', depending on which is needed in the context of the match. + */ + + +function getContextualTokenSeparator(match, scope, flags) { + if ( // No need to separate tokens if at the beginning or end of a group + match.input[match.index - 1] === '(' || match.input[match.index + match[0].length] === ')' || // No need to separate tokens if before or after a `|` + match.input[match.index - 1] === '|' || match.input[match.index + match[0].length] === '|' || // No need to separate tokens if at the beginning or end of the pattern + match.index < 1 || match.index + match[0].length >= match.input.length || // No need to separate tokens if at the beginning of a noncapturing group or lookahead. + // The way this is written relies on: + // - The search regex matching only 3-char strings. + // - Although `substr` gives chars from the end of the string if given a negative index, + // the resulting substring will be too short to match. Ex: `'abcd'.substr(-1, 3) === 'd'` + nativ.test.call(/^\(\?[:=!]/, match.input.substr(match.index - 3, 3)) || // Avoid separating tokens when the following token is a quantifier + isQuantifierNext(match.input, match.index + match[0].length, flags)) { + return ''; + } // Keep tokens separated. This avoids e.g. inadvertedly changing `\1 1` or `\1(?#)1` to `\11`. + // This also ensures all tokens remain as discrete atoms, e.g. it avoids converting the syntax + // error `(? :` into `(?:`. + + + return '(?:)'; +} +/** + * Returns native `RegExp` flags used by a regex object. + * + * @private + * @param {RegExp} regex Regex to check. + * @returns {string} Native flags in use. + */ + + +function getNativeFlags(regex) { + return hasFlagsProp ? (0, _flags["default"])(regex) : // Explicitly using `RegExp.prototype.toString` (rather than e.g. `String` or concatenation + // with an empty string) allows this to continue working predictably when + // `XRegExp.proptotype.toString` is overridden + nativ.exec.call(/\/([a-z]*)$/i, RegExp.prototype.toString.call(regex))[1]; +} +/** + * Determines whether a regex has extended instance data used to track capture names. + * + * @private + * @param {RegExp} regex Regex to check. + * @returns {boolean} Whether the regex uses named capture. + */ + + +function hasNamedCapture(regex) { + return !!(regex[REGEX_DATA] && regex[REGEX_DATA].captureNames); +} +/** + * Converts decimal to hexadecimal. + * + * @private + * @param {Number|String} dec + * @returns {string} + */ + + +function hex(dec) { + return (0, _parseInt2["default"])(dec, 10).toString(16); +} +/** + * Checks whether the next nonignorable token after the specified position is a quantifier. + * + * @private + * @param {String} pattern Pattern to search within. + * @param {Number} pos Index in `pattern` to search at. + * @param {String} flags Flags used by the pattern. + * @returns {Boolean} Whether the next nonignorable token is a quantifier. + */ + + +function isQuantifierNext(pattern, pos, flags) { + var inlineCommentPattern = '\\(\\?#[^)]*\\)'; + var lineCommentPattern = '#[^#\\n]*'; + var quantifierPattern = '[?*+]|{\\d+(?:,\\d*)?}'; + return nativ.test.call((0, _includes["default"])(flags).call(flags, 'x') ? // Ignore any leading whitespace, line comments, and inline comments + /^(?:\s|#[^#\n]*|\(\?#[^)]*\))*(?:[?*+]|{\d+(?:,\d*)?})/ : // Ignore any leading inline comments + /^(?:\(\?#[^)]*\))*(?:[?*+]|{\d+(?:,\d*)?})/, (0, _slice["default"])(pattern).call(pattern, pos)); +} +/** + * Determines whether a value is of the specified type, by resolving its internal [[Class]]. + * + * @private + * @param {*} value Object to check. + * @param {String} type Type to check for, in TitleCase. + * @returns {boolean} Whether the object matches the type. + */ + + +function isType(value, type) { + return toString.call(value) === "[object ".concat(type, "]"); +} +/** + * Adds leading zeros if shorter than four characters. Used for fixed-length hexadecimal values. + * + * @private + * @param {String} str + * @returns {string} + */ + + +function pad4(str) { + while (str.length < 4) { + str = "0".concat(str); + } + + return str; +} +/** + * Checks for flag-related errors, and strips/applies flags in a leading mode modifier. Offloads + * the flag preparation logic from the `XRegExp` constructor. + * + * @private + * @param {String} pattern Regex pattern, possibly with a leading mode modifier. + * @param {String} flags Any combination of flags. + * @returns {!Object} Object with properties `pattern` and `flags`. + */ + + +function prepareFlags(pattern, flags) { + // Recent browsers throw on duplicate flags, so copy this behavior for nonnative flags + if (clipDuplicates(flags) !== flags) { + throw new SyntaxError("Invalid duplicate regex flag ".concat(flags)); + } // Strip and apply a leading mode modifier with any combination of flags except g or y + + + pattern = nativ.replace.call(pattern, /^\(\?([\w$]+)\)/, function ($0, $1) { + if (nativ.test.call(/[gy]/, $1)) { + throw new SyntaxError("Cannot use flag g or y in mode modifier ".concat($0)); + } // Allow duplicate flags within the mode modifier + + + flags = clipDuplicates(flags + $1); + return ''; + }); // Throw on unknown native or nonnative flags + + var _iterator = _createForOfIteratorHelper(flags), + _step; + + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var flag = _step.value; + + if (!registeredFlags[flag]) { + throw new SyntaxError("Unknown regex flag ".concat(flag)); + } + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + + return { + pattern: pattern, + flags: flags + }; +} +/** + * Prepares an options object from the given value. + * + * @private + * @param {String|Object} value Value to convert to an options object. + * @returns {Object} Options object. + */ + + +function prepareOptions(value) { + var options = {}; + + if (isType(value, 'String')) { + (0, _forEach["default"])(XRegExp).call(XRegExp, value, /[^\s,]+/, function (match) { + options[match] = true; + }); + return options; + } + + return value; +} +/** + * Registers a flag so it doesn't throw an 'unknown flag' error. + * + * @private + * @param {String} flag Single-character flag to register. + */ + + +function registerFlag(flag) { + if (!/^[\w$]$/.test(flag)) { + throw new Error('Flag must be a single character A-Za-z0-9_$'); + } + + registeredFlags[flag] = true; +} +/** + * Runs built-in and custom regex syntax tokens in reverse insertion order at the specified + * position, until a match is found. + * + * @private + * @param {String} pattern Original pattern from which an XRegExp object is being built. + * @param {String} flags Flags being used to construct the regex. + * @param {Number} pos Position to search for tokens within `pattern`. + * @param {Number} scope Regex scope to apply: 'default' or 'class'. + * @param {Object} context Context object to use for token handler functions. + * @returns {Object} Object with properties `matchLength`, `output`, and `reparse`; or `null`. + */ + + +function runTokens(pattern, flags, pos, scope, context) { + var i = tokens.length; + var leadChar = pattern[pos]; + var result = null; + var match; + var t; // Run in reverse insertion order + + while (i--) { + t = tokens[i]; + + if (t.leadChar && t.leadChar !== leadChar || t.scope !== scope && t.scope !== 'all' || t.flag && !(0, _includes["default"])(flags).call(flags, t.flag)) { + continue; + } + + match = XRegExp.exec(pattern, t.regex, pos, 'sticky'); + + if (match) { + result = { + matchLength: match[0].length, + output: t.handler.call(context, match, scope, flags), + reparse: t.reparse + }; // Finished with token tests + + break; + } + } + + return result; +} +/** + * Enables or disables implicit astral mode opt-in. When enabled, flag A is automatically added to + * all new regexes created by XRegExp. This causes an error to be thrown when creating regexes if + * the Unicode Base addon is not available, since flag A is registered by that addon. + * + * @private + * @param {Boolean} on `true` to enable; `false` to disable. + */ + + +function setAstral(on) { + features.astral = on; +} +/** + * Adds named capture groups to the `groups` property of match arrays. See here for details: + * https://github.com/tc39/proposal-regexp-named-groups + * + * @private + * @param {Boolean} on `true` to enable; `false` to disable. + */ + + +function setNamespacing(on) { + features.namespacing = on; +} +/** + * Returns the object, or throws an error if it is `null` or `undefined`. This is used to follow + * the ES5 abstract operation `ToObject`. + * + * @private + * @param {*} value Object to check and return. + * @returns {*} The provided object. + */ + + +function toObject(value) { + // null or undefined + if (value == null) { + throw new TypeError('Cannot convert null or undefined to object'); + } + + return value; +} // ==--------------------------== +// Constructor +// ==--------------------------== + +/** + * Creates an extended regular expression object for matching text with a pattern. Differs from a + * native regular expression in that additional syntax and flags are supported. The returned object + * is in fact a native `RegExp` and works with all native methods. + * + * @class XRegExp + * @constructor + * @param {String|RegExp} pattern Regex pattern string, or an existing regex object to copy. + * @param {String} [flags] Any combination of flags. + * Native flags: + * - `g` - global + * - `i` - ignore case + * - `m` - multiline anchors + * - `u` - unicode (ES6) + * - `y` - sticky (Firefox 3+, ES6) + * Additional XRegExp flags: + * - `n` - explicit capture + * - `s` - dot matches all (aka singleline) + * - `x` - free-spacing and line comments (aka extended) + * - `A` - astral (requires the Unicode Base addon) + * Flags cannot be provided when constructing one `RegExp` from another. + * @returns {RegExp} Extended regular expression object. + * @example + * + * // With named capture and flag x + * XRegExp(`(? [0-9]{4} ) -? # year + * (? [0-9]{2} ) -? # month + * (? [0-9]{2} ) # day`, 'x'); + * + * // Providing a regex object copies it. Native regexes are recompiled using native (not XRegExp) + * // syntax. Copies maintain extended data, are augmented with `XRegExp.prototype` properties, and + * // have fresh `lastIndex` properties (set to zero). + * XRegExp(/regex/); + */ + + +function XRegExp(pattern, flags) { + if (XRegExp.isRegExp(pattern)) { + if (flags !== undefined) { + throw new TypeError('Cannot supply flags when copying a RegExp'); + } + + return copyRegex(pattern); + } // Copy the argument behavior of `RegExp` + + + pattern = pattern === undefined ? '' : String(pattern); + flags = flags === undefined ? '' : String(flags); + + if (XRegExp.isInstalled('astral') && !(0, _includes["default"])(flags).call(flags, 'A')) { + // This causes an error to be thrown if the Unicode Base addon is not available + flags += 'A'; + } + + if (!patternCache[pattern]) { + patternCache[pattern] = {}; + } + + if (!patternCache[pattern][flags]) { + var context = { + hasNamedCapture: false, + captureNames: [] + }; + var scope = defaultScope; + var output = ''; + var pos = 0; + var result; // Check for flag-related errors, and strip/apply flags in a leading mode modifier + + var applied = prepareFlags(pattern, flags); + var appliedPattern = applied.pattern; + var appliedFlags = (0, _flags["default"])(applied); // Use XRegExp's tokens to translate the pattern to a native regex pattern. + // `appliedPattern.length` may change on each iteration if tokens use `reparse` + + while (pos < appliedPattern.length) { + do { + // Check for custom tokens at the current position + result = runTokens(appliedPattern, appliedFlags, pos, scope, context); // If the matched token used the `reparse` option, splice its output into the + // pattern before running tokens again at the same position + + if (result && result.reparse) { + appliedPattern = (0, _slice["default"])(appliedPattern).call(appliedPattern, 0, pos) + result.output + (0, _slice["default"])(appliedPattern).call(appliedPattern, pos + result.matchLength); + } + } while (result && result.reparse); + + if (result) { + output += result.output; + pos += result.matchLength || 1; + } else { + // Get the native token at the current position + var _XRegExp$exec = XRegExp.exec(appliedPattern, nativeTokens[scope], pos, 'sticky'), + _XRegExp$exec2 = (0, _slicedToArray2["default"])(_XRegExp$exec, 1), + token = _XRegExp$exec2[0]; + + output += token; + pos += token.length; + + if (token === '[' && scope === defaultScope) { + scope = classScope; + } else if (token === ']' && scope === classScope) { + scope = defaultScope; + } + } + } + + patternCache[pattern][flags] = { + // Use basic cleanup to collapse repeated empty groups like `(?:)(?:)` to `(?:)`. Empty + // groups are sometimes inserted during regex transpilation in order to keep tokens + // separated. However, more than one empty group in a row is never needed. + pattern: nativ.replace.call(output, /(?:\(\?:\))+/g, '(?:)'), + // Strip all but native flags + flags: nativ.replace.call(appliedFlags, /[^gimuy]+/g, ''), + // `context.captureNames` has an item for each capturing group, even if unnamed + captures: context.hasNamedCapture ? context.captureNames : null + }; + } + + var generated = patternCache[pattern][flags]; + return augment(new RegExp(generated.pattern, (0, _flags["default"])(generated)), generated.captures, pattern, flags); +} // Add `RegExp.prototype` to the prototype chain + + +XRegExp.prototype = /(?:)/; // ==--------------------------== +// Public properties +// ==--------------------------== + +/** + * The XRegExp version number as a string containing three dot-separated parts. For example, + * '2.0.0-beta-3'. + * + * @static + * @memberOf XRegExp + * @type String + */ + +XRegExp.version = '4.4.0'; // ==--------------------------== +// Public methods +// ==--------------------------== +// Intentionally undocumented; used in tests and addons + +XRegExp._clipDuplicates = clipDuplicates; +XRegExp._hasNativeFlag = hasNativeFlag; +XRegExp._dec = dec; +XRegExp._hex = hex; +XRegExp._pad4 = pad4; +/** + * Extends XRegExp syntax and allows custom flags. This is used internally and can be used to + * create XRegExp addons. If more than one token can match the same string, the last added wins. + * + * @memberOf XRegExp + * @param {RegExp} regex Regex object that matches the new token. + * @param {Function} handler Function that returns a new pattern string (using native regex syntax) + * to replace the matched token within all future XRegExp regexes. Has access to persistent + * properties of the regex being built, through `this`. Invoked with three arguments: + * - The match array, with named backreference properties. + * - The regex scope where the match was found: 'default' or 'class'. + * - The flags used by the regex, including any flags in a leading mode modifier. + * The handler function becomes part of the XRegExp construction process, so be careful not to + * construct XRegExps within the function or you will trigger infinite recursion. + * @param {Object} [options] Options object with optional properties: + * - `scope` {String} Scope where the token applies: 'default', 'class', or 'all'. + * - `flag` {String} Single-character flag that triggers the token. This also registers the + * flag, which prevents XRegExp from throwing an 'unknown flag' error when the flag is used. + * - `optionalFlags` {String} Any custom flags checked for within the token `handler` that are + * not required to trigger the token. This registers the flags, to prevent XRegExp from + * throwing an 'unknown flag' error when any of the flags are used. + * - `reparse` {Boolean} Whether the `handler` function's output should not be treated as + * final, and instead be reparseable by other tokens (including the current token). Allows + * token chaining or deferring. + * - `leadChar` {String} Single character that occurs at the beginning of any successful match + * of the token (not always applicable). This doesn't change the behavior of the token unless + * you provide an erroneous value. However, providing it can increase the token's performance + * since the token can be skipped at any positions where this character doesn't appear. + * @example + * + * // Basic usage: Add \a for the ALERT control code + * XRegExp.addToken( + * /\\a/, + * () => '\\x07', + * {scope: 'all'} + * ); + * XRegExp('\\a[\\a-\\n]+').test('\x07\n\x07'); // -> true + * + * // Add the U (ungreedy) flag from PCRE and RE2, which reverses greedy and lazy quantifiers. + * // Since `scope` is not specified, it uses 'default' (i.e., transformations apply outside of + * // character classes only) + * XRegExp.addToken( + * /([?*+]|{\d+(?:,\d*)?})(\??)/, + * (match) => `${match[1]}${match[2] ? '' : '?'}`, + * {flag: 'U'} + * ); + * XRegExp('a+', 'U').exec('aaa')[0]; // -> 'a' + * XRegExp('a+?', 'U').exec('aaa')[0]; // -> 'aaa' + */ + +XRegExp.addToken = function (regex, handler, options) { + options = options || {}; + var _options = options, + optionalFlags = _options.optionalFlags; + + if (options.flag) { + registerFlag(options.flag); + } + + if (optionalFlags) { + optionalFlags = nativ.split.call(optionalFlags, ''); + + var _iterator2 = _createForOfIteratorHelper(optionalFlags), + _step2; + + try { + for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) { + var flag = _step2.value; + registerFlag(flag); + } + } catch (err) { + _iterator2.e(err); + } finally { + _iterator2.f(); + } + } // Add to the private list of syntax tokens + + + tokens.push({ + regex: copyRegex(regex, { + addG: true, + addY: hasNativeY, + isInternalOnly: true + }), + handler: handler, + scope: options.scope || defaultScope, + flag: options.flag, + reparse: options.reparse, + leadChar: options.leadChar + }); // Reset the pattern cache used by the `XRegExp` constructor, since the same pattern and flags + // might now produce different results + + XRegExp.cache.flush('patterns'); +}; +/** + * Caches and returns the result of calling `XRegExp(pattern, flags)`. On any subsequent call with + * the same pattern and flag combination, the cached copy of the regex is returned. + * + * @memberOf XRegExp + * @param {String} pattern Regex pattern string. + * @param {String} [flags] Any combination of XRegExp flags. + * @returns {RegExp} Cached XRegExp object. + * @example + * + * while (match = XRegExp.cache('.', 'gs').exec(str)) { + * // The regex is compiled once only + * } + */ + + +XRegExp.cache = function (pattern, flags) { + if (!regexCache[pattern]) { + regexCache[pattern] = {}; + } + + return regexCache[pattern][flags] || (regexCache[pattern][flags] = XRegExp(pattern, flags)); +}; // Intentionally undocumented; used in tests + + +XRegExp.cache.flush = function (cacheName) { + if (cacheName === 'patterns') { + // Flush the pattern cache used by the `XRegExp` constructor + patternCache = {}; + } else { + // Flush the regex cache populated by `XRegExp.cache` + regexCache = {}; + } +}; +/** + * Escapes any regular expression metacharacters, for use when matching literal strings. The result + * can safely be used at any point within a regex that uses any flags. + * + * @memberOf XRegExp + * @param {String} str String to escape. + * @returns {string} String with regex metacharacters escaped. + * @example + * + * XRegExp.escape('Escaped? <.>'); + * // -> 'Escaped\?\ <\.>' + */ + + +XRegExp.escape = function (str) { + return nativ.replace.call(toObject(str), /[-\[\]{}()*+?.,\\^$|#\s]/g, '\\$&'); +}; +/** + * Executes a regex search in a specified string. Returns a match array or `null`. If the provided + * regex uses named capture, named backreference properties are included on the match array. + * Optional `pos` and `sticky` arguments specify the search start position, and whether the match + * must start at the specified position only. The `lastIndex` property of the provided regex is not + * used, but is updated for compatibility. Also fixes browser bugs compared to the native + * `RegExp.prototype.exec` and can be used reliably cross-browser. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {RegExp} regex Regex to search with. + * @param {Number} [pos=0] Zero-based index at which to start the search. + * @param {Boolean|String} [sticky=false] Whether the match must start at the specified position + * only. The string `'sticky'` is accepted as an alternative to `true`. + * @returns {Array} Match array with named backreference properties, or `null`. + * @example + * + * // Basic use, with named backreference + * let match = XRegExp.exec('U+2620', XRegExp('U\\+(?[0-9A-F]{4})')); + * match.hex; // -> '2620' + * + * // With pos and sticky, in a loop + * let pos = 2, result = [], match; + * while (match = XRegExp.exec('<1><2><3><4>5<6>', /<(\d)>/, pos, 'sticky')) { + * result.push(match[1]); + * pos = match.index + match[0].length; + * } + * // result -> ['2', '3', '4'] + */ + + +XRegExp.exec = function (str, regex, pos, sticky) { + var cacheKey = 'g'; + var addY = false; + var fakeY = false; + var match; + addY = hasNativeY && !!(sticky || regex.sticky && sticky !== false); + + if (addY) { + cacheKey += 'y'; + } else if (sticky) { + // Simulate sticky matching by appending an empty capture to the original regex. The + // resulting regex will succeed no matter what at the current index (set with `lastIndex`), + // and will not search the rest of the subject string. We'll know that the original regex + // has failed if that last capture is `''` rather than `undefined` (i.e., if that last + // capture participated in the match). + fakeY = true; + cacheKey += 'FakeY'; + } + + regex[REGEX_DATA] = regex[REGEX_DATA] || {}; // Shares cached copies with `XRegExp.match`/`replace` + + var r2 = regex[REGEX_DATA][cacheKey] || (regex[REGEX_DATA][cacheKey] = copyRegex(regex, { + addG: true, + addY: addY, + source: fakeY ? "".concat(regex.source, "|()") : undefined, + removeY: sticky === false, + isInternalOnly: true + })); + pos = pos || 0; + r2.lastIndex = pos; // Fixed `exec` required for `lastIndex` fix, named backreferences, etc. + + match = fixed.exec.call(r2, str); // Get rid of the capture added by the pseudo-sticky matcher if needed. An empty string means + // the original regexp failed (see above). + + if (fakeY && match && match.pop() === '') { + match = null; + } + + if (regex.global) { + regex.lastIndex = match ? r2.lastIndex : 0; + } + + return match; +}; +/** + * Executes a provided function once per regex match. Searches always start at the beginning of the + * string and continue until the end, regardless of the state of the regex's `global` property and + * initial `lastIndex`. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {RegExp} regex Regex to search with. + * @param {Function} callback Function to execute for each match. Invoked with four arguments: + * - The match array, with named backreference properties. + * - The zero-based match index. + * - The string being traversed. + * - The regex object being used to traverse the string. + * @example + * + * // Extracts every other digit from a string + * const evens = []; + * XRegExp.forEach('1a2345', /\d/, (match, i) => { + * if (i % 2) evens.push(+match[0]); + * }); + * // evens -> [2, 4] + */ + + +XRegExp.forEach = function (str, regex, callback) { + var pos = 0; + var i = -1; + var match; + + while (match = XRegExp.exec(str, regex, pos)) { + // Because `regex` is provided to `callback`, the function could use the deprecated/ + // nonstandard `RegExp.prototype.compile` to mutate the regex. However, since `XRegExp.exec` + // doesn't use `lastIndex` to set the search position, this can't lead to an infinite loop, + // at least. Actually, because of the way `XRegExp.exec` caches globalized versions of + // regexes, mutating the regex will not have any effect on the iteration or matched strings, + // which is a nice side effect that brings extra safety. + callback(match, ++i, str, regex); + pos = match.index + (match[0].length || 1); + } +}; +/** + * Copies a regex object and adds flag `g`. The copy maintains extended data, is augmented with + * `XRegExp.prototype` properties, and has a fresh `lastIndex` property (set to zero). Native + * regexes are not recompiled using XRegExp syntax. + * + * @memberOf XRegExp + * @param {RegExp} regex Regex to globalize. + * @returns {RegExp} Copy of the provided regex with flag `g` added. + * @example + * + * const globalCopy = XRegExp.globalize(/regex/); + * globalCopy.global; // -> true + */ + + +XRegExp.globalize = function (regex) { + return copyRegex(regex, { + addG: true + }); +}; +/** + * Installs optional features according to the specified options. Can be undone using + * `XRegExp.uninstall`. + * + * @memberOf XRegExp + * @param {Object|String} options Options object or string. + * @example + * + * // With an options object + * XRegExp.install({ + * // Enables support for astral code points in Unicode addons (implicitly sets flag A) + * astral: true, + * + * // Adds named capture groups to the `groups` property of matches + * namespacing: true + * }); + * + * // With an options string + * XRegExp.install('astral namespacing'); + */ + + +XRegExp.install = function (options) { + options = prepareOptions(options); + + if (!features.astral && options.astral) { + setAstral(true); + } + + if (!features.namespacing && options.namespacing) { + setNamespacing(true); + } +}; +/** + * Checks whether an individual optional feature is installed. + * + * @memberOf XRegExp + * @param {String} feature Name of the feature to check. One of: + * - `astral` + * - `namespacing` + * @returns {boolean} Whether the feature is installed. + * @example + * + * XRegExp.isInstalled('astral'); + */ + + +XRegExp.isInstalled = function (feature) { + return !!features[feature]; +}; +/** + * Returns `true` if an object is a regex; `false` if it isn't. This works correctly for regexes + * created in another frame, when `instanceof` and `constructor` checks would fail. + * + * @memberOf XRegExp + * @param {*} value Object to check. + * @returns {boolean} Whether the object is a `RegExp` object. + * @example + * + * XRegExp.isRegExp('string'); // -> false + * XRegExp.isRegExp(/regex/i); // -> true + * XRegExp.isRegExp(RegExp('^', 'm')); // -> true + * XRegExp.isRegExp(XRegExp('(?s).')); // -> true + */ + + +XRegExp.isRegExp = function (value) { + return toString.call(value) === '[object RegExp]'; +}; // isType(value, 'RegExp'); + +/** + * Returns the first matched string, or in global mode, an array containing all matched strings. + * This is essentially a more convenient re-implementation of `String.prototype.match` that gives + * the result types you actually want (string instead of `exec`-style array in match-first mode, + * and an empty array instead of `null` when no matches are found in match-all mode). It also lets + * you override flag g and ignore `lastIndex`, and fixes browser bugs. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {RegExp} regex Regex to search with. + * @param {String} [scope='one'] Use 'one' to return the first match as a string. Use 'all' to + * return an array of all matched strings. If not explicitly specified and `regex` uses flag g, + * `scope` is 'all'. + * @returns {String|Array} In match-first mode: First match as a string, or `null`. In match-all + * mode: Array of all matched strings, or an empty array. + * @example + * + * // Match first + * XRegExp.match('abc', /\w/); // -> 'a' + * XRegExp.match('abc', /\w/g, 'one'); // -> 'a' + * XRegExp.match('abc', /x/g, 'one'); // -> null + * + * // Match all + * XRegExp.match('abc', /\w/g); // -> ['a', 'b', 'c'] + * XRegExp.match('abc', /\w/, 'all'); // -> ['a', 'b', 'c'] + * XRegExp.match('abc', /x/, 'all'); // -> [] + */ + + +XRegExp.match = function (str, regex, scope) { + var global = regex.global && scope !== 'one' || scope === 'all'; + var cacheKey = (global ? 'g' : '') + (regex.sticky ? 'y' : '') || 'noGY'; + regex[REGEX_DATA] = regex[REGEX_DATA] || {}; // Shares cached copies with `XRegExp.exec`/`replace` + + var r2 = regex[REGEX_DATA][cacheKey] || (regex[REGEX_DATA][cacheKey] = copyRegex(regex, { + addG: !!global, + removeG: scope === 'one', + isInternalOnly: true + })); + var result = nativ.match.call(toObject(str), r2); + + if (regex.global) { + regex.lastIndex = scope === 'one' && result ? // Can't use `r2.lastIndex` since `r2` is nonglobal in this case + result.index + result[0].length : 0; + } + + return global ? result || [] : result && result[0]; +}; +/** + * Retrieves the matches from searching a string using a chain of regexes that successively search + * within previous matches. The provided `chain` array can contain regexes and or objects with + * `regex` and `backref` properties. When a backreference is specified, the named or numbered + * backreference is passed forward to the next regex or returned. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {Array} chain Regexes that each search for matches within preceding results. + * @returns {Array} Matches by the last regex in the chain, or an empty array. + * @example + * + * // Basic usage; matches numbers within tags + * XRegExp.matchChain('1 2 3 4 a 56', [ + * XRegExp('(?is).*?'), + * /\d+/ + * ]); + * // -> ['2', '4', '56'] + * + * // Passing forward and returning specific backreferences + * html = 'XRegExp\ + * Google'; + * XRegExp.matchChain(html, [ + * {regex: //i, backref: 1}, + * {regex: XRegExp('(?i)^https?://(?[^/?#]+)'), backref: 'domain'} + * ]); + * // -> ['xregexp.com', 'www.google.com'] + */ + + +XRegExp.matchChain = function (str, chain) { + return function recurseChain(values, level) { + var item = chain[level].regex ? chain[level] : { + regex: chain[level] + }; + var matches = []; + + function addMatch(match) { + if (item.backref) { + var ERR_UNDEFINED_GROUP = "Backreference to undefined group: ".concat(item.backref); + var isNamedBackref = isNaN(item.backref); + + if (isNamedBackref && XRegExp.isInstalled('namespacing')) { + // `groups` has `null` as prototype, so using `in` instead of `hasOwnProperty` + if (!(item.backref in match.groups)) { + throw new ReferenceError(ERR_UNDEFINED_GROUP); + } + } else if (!match.hasOwnProperty(item.backref)) { + throw new ReferenceError(ERR_UNDEFINED_GROUP); + } + + var backrefValue = isNamedBackref && XRegExp.isInstalled('namespacing') ? match.groups[item.backref] : match[item.backref]; + matches.push(backrefValue || ''); + } else { + matches.push(match[0]); + } + } + + var _iterator3 = _createForOfIteratorHelper(values), + _step3; + + try { + for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) { + var value = _step3.value; + (0, _forEach["default"])(XRegExp).call(XRegExp, value, item.regex, addMatch); + } + } catch (err) { + _iterator3.e(err); + } finally { + _iterator3.f(); + } + + return level === chain.length - 1 || !matches.length ? matches : recurseChain(matches, level + 1); + }([str], 0); +}; +/** + * Returns a new string with one or all matches of a pattern replaced. The pattern can be a string + * or regex, and the replacement can be a string or a function to be called for each match. To + * perform a global search and replace, use the optional `scope` argument or include flag g if using + * a regex. Replacement strings can use `${n}` or `$` for named and numbered backreferences. + * Replacement functions can use named backreferences via `arguments[0].name`. Also fixes browser + * bugs compared to the native `String.prototype.replace` and can be used reliably cross-browser. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {RegExp|String} search Search pattern to be replaced. + * @param {String|Function} replacement Replacement string or a function invoked to create it. + * Replacement strings can include special replacement syntax: + * - $$ - Inserts a literal $ character. + * - $&, $0 - Inserts the matched substring. + * - $` - Inserts the string that precedes the matched substring (left context). + * - $' - Inserts the string that follows the matched substring (right context). + * - $n, $nn - Where n/nn are digits referencing an existent capturing group, inserts + * backreference n/nn. + * - ${n}, $ - Where n is a name or any number of digits that reference an existent capturing + * group, inserts backreference n. + * Replacement functions are invoked with three or more arguments: + * - The matched substring (corresponds to $& above). Named backreferences are accessible as + * properties of this first argument. + * - 0..n arguments, one for each backreference (corresponding to $1, $2, etc. above). + * - The zero-based index of the match within the total search string. + * - The total string being searched. + * @param {String} [scope='one'] Use 'one' to replace the first match only, or 'all'. If not + * explicitly specified and using a regex with flag g, `scope` is 'all'. + * @returns {String} New string with one or all matches replaced. + * @example + * + * // Regex search, using named backreferences in replacement string + * const name = XRegExp('(?\\w+) (?\\w+)'); + * XRegExp.replace('John Smith', name, '$, $'); + * // -> 'Smith, John' + * + * // Regex search, using named backreferences in replacement function + * XRegExp.replace('John Smith', name, (match) => `${match.last}, ${match.first}`); + * // -> 'Smith, John' + * + * // String search, with replace-all + * XRegExp.replace('RegExp builds RegExps', 'RegExp', 'XRegExp', 'all'); + * // -> 'XRegExp builds XRegExps' + */ + + +XRegExp.replace = function (str, search, replacement, scope) { + var isRegex = XRegExp.isRegExp(search); + var global = search.global && scope !== 'one' || scope === 'all'; + var cacheKey = (global ? 'g' : '') + (search.sticky ? 'y' : '') || 'noGY'; + var s2 = search; + + if (isRegex) { + search[REGEX_DATA] = search[REGEX_DATA] || {}; // Shares cached copies with `XRegExp.exec`/`match`. Since a copy is used, `search`'s + // `lastIndex` isn't updated *during* replacement iterations + + s2 = search[REGEX_DATA][cacheKey] || (search[REGEX_DATA][cacheKey] = copyRegex(search, { + addG: !!global, + removeG: scope === 'one', + isInternalOnly: true + })); + } else if (global) { + s2 = new RegExp(XRegExp.escape(String(search)), 'g'); + } // Fixed `replace` required for named backreferences, etc. + + + var result = fixed.replace.call(toObject(str), s2, replacement); + + if (isRegex && search.global) { + // Fixes IE, Safari bug (last tested IE 9, Safari 5.1) + search.lastIndex = 0; + } + + return result; +}; +/** + * Performs batch processing of string replacements. Used like `XRegExp.replace`, but accepts an + * array of replacement details. Later replacements operate on the output of earlier replacements. + * Replacement details are accepted as an array with a regex or string to search for, the + * replacement string or function, and an optional scope of 'one' or 'all'. Uses the XRegExp + * replacement text syntax, which supports named backreference properties via `${name}` or + * `$`. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {Array} replacements Array of replacement detail arrays. + * @returns {String} New string with all replacements. + * @example + * + * str = XRegExp.replaceEach(str, [ + * [XRegExp('(?a)'), 'z${name}'], + * [/b/gi, 'y'], + * [/c/g, 'x', 'one'], // scope 'one' overrides /g + * [/d/, 'w', 'all'], // scope 'all' overrides lack of /g + * ['e', 'v', 'all'], // scope 'all' allows replace-all for strings + * [/f/g, ($0) => $0.toUpperCase()] + * ]); + */ + + +XRegExp.replaceEach = function (str, replacements) { + var _iterator4 = _createForOfIteratorHelper(replacements), + _step4; + + try { + for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) { + var r = _step4.value; + str = XRegExp.replace(str, r[0], r[1], r[2]); + } + } catch (err) { + _iterator4.e(err); + } finally { + _iterator4.f(); + } + + return str; +}; +/** + * Splits a string into an array of strings using a regex or string separator. Matches of the + * separator are not included in the result array. However, if `separator` is a regex that contains + * capturing groups, backreferences are spliced into the result each time `separator` is matched. + * Fixes browser bugs compared to the native `String.prototype.split` and can be used reliably + * cross-browser. + * + * @memberOf XRegExp + * @param {String} str String to split. + * @param {RegExp|String} separator Regex or string to use for separating the string. + * @param {Number} [limit] Maximum number of items to include in the result array. + * @returns {Array} Array of substrings. + * @example + * + * // Basic use + * XRegExp.split('a b c', ' '); + * // -> ['a', 'b', 'c'] + * + * // With limit + * XRegExp.split('a b c', ' ', 2); + * // -> ['a', 'b'] + * + * // Backreferences in result array + * XRegExp.split('..word1..', /([a-z]+)(\d+)/i); + * // -> ['..', 'word', '1', '..'] + */ + + +XRegExp.split = function (str, separator, limit) { + return fixed.split.call(toObject(str), separator, limit); +}; +/** + * Executes a regex search in a specified string. Returns `true` or `false`. Optional `pos` and + * `sticky` arguments specify the search start position, and whether the match must start at the + * specified position only. The `lastIndex` property of the provided regex is not used, but is + * updated for compatibility. Also fixes browser bugs compared to the native + * `RegExp.prototype.test` and can be used reliably cross-browser. + * + * @memberOf XRegExp + * @param {String} str String to search. + * @param {RegExp} regex Regex to search with. + * @param {Number} [pos=0] Zero-based index at which to start the search. + * @param {Boolean|String} [sticky=false] Whether the match must start at the specified position + * only. The string `'sticky'` is accepted as an alternative to `true`. + * @returns {boolean} Whether the regex matched the provided value. + * @example + * + * // Basic use + * XRegExp.test('abc', /c/); // -> true + * + * // With pos and sticky + * XRegExp.test('abc', /c/, 0, 'sticky'); // -> false + * XRegExp.test('abc', /c/, 2, 'sticky'); // -> true + */ +// Do this the easy way :-) + + +XRegExp.test = function (str, regex, pos, sticky) { + return !!XRegExp.exec(str, regex, pos, sticky); +}; +/** + * Uninstalls optional features according to the specified options. All optional features start out + * uninstalled, so this is used to undo the actions of `XRegExp.install`. + * + * @memberOf XRegExp + * @param {Object|String} options Options object or string. + * @example + * + * // With an options object + * XRegExp.uninstall({ + * // Disables support for astral code points in Unicode addons + * astral: true, + * + * // Don't add named capture groups to the `groups` property of matches + * namespacing: true + * }); + * + * // With an options string + * XRegExp.uninstall('astral namespacing'); + */ + + +XRegExp.uninstall = function (options) { + options = prepareOptions(options); + + if (features.astral && options.astral) { + setAstral(false); + } + + if (features.namespacing && options.namespacing) { + setNamespacing(false); + } +}; +/** + * Returns an XRegExp object that is the union of the given patterns. Patterns can be provided as + * regex objects or strings. Metacharacters are escaped in patterns provided as strings. + * Backreferences in provided regex objects are automatically renumbered to work correctly within + * the larger combined pattern. Native flags used by provided regexes are ignored in favor of the + * `flags` argument. + * + * @memberOf XRegExp + * @param {Array} patterns Regexes and strings to combine. + * @param {String} [flags] Any combination of XRegExp flags. + * @param {Object} [options] Options object with optional properties: + * - `conjunction` {String} Type of conjunction to use: 'or' (default) or 'none'. + * @returns {RegExp} Union of the provided regexes and strings. + * @example + * + * XRegExp.union(['a+b*c', /(dogs)\1/, /(cats)\1/], 'i'); + * // -> /a\+b\*c|(dogs)\1|(cats)\2/i + * + * XRegExp.union([/man/, /bear/, /pig/], 'i', {conjunction: 'none'}); + * // -> /manbearpig/i + */ + + +XRegExp.union = function (patterns, flags, options) { + options = options || {}; + var conjunction = options.conjunction || 'or'; + var numCaptures = 0; + var numPriorCaptures; + var captureNames; + + function rewrite(match, paren, backref) { + var name = captureNames[numCaptures - numPriorCaptures]; // Capturing group + + if (paren) { + ++numCaptures; // If the current capture has a name, preserve the name + + if (name) { + return "(?<".concat(name, ">"); + } // Backreference + + } else if (backref) { + // Rewrite the backreference + return "\\".concat(+backref + numPriorCaptures); + } + + return match; + } + + if (!(isType(patterns, 'Array') && patterns.length)) { + throw new TypeError('Must provide a nonempty array of patterns to merge'); + } + + var parts = /(\()(?!\?)|\\([1-9]\d*)|\\[\s\S]|\[(?:[^\\\]]|\\[\s\S])*\]/g; + var output = []; + + var _iterator5 = _createForOfIteratorHelper(patterns), + _step5; + + try { + for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) { + var pattern = _step5.value; + + if (XRegExp.isRegExp(pattern)) { + numPriorCaptures = numCaptures; + captureNames = pattern[REGEX_DATA] && pattern[REGEX_DATA].captureNames || []; // Rewrite backreferences. Passing to XRegExp dies on octals and ensures patterns are + // independently valid; helps keep this simple. Named captures are put back + + output.push(nativ.replace.call(XRegExp(pattern.source).source, parts, rewrite)); + } else { + output.push(XRegExp.escape(pattern)); + } + } + } catch (err) { + _iterator5.e(err); + } finally { + _iterator5.f(); + } + + var separator = conjunction === 'none' ? '' : '|'; + return XRegExp(output.join(separator), flags); +}; // ==--------------------------== +// Fixed/extended native methods +// ==--------------------------== + +/** + * Adds named capture support (with backreferences returned as `result.name`), and fixes browser + * bugs in the native `RegExp.prototype.exec`. Use via `XRegExp.exec`. + * + * @memberOf RegExp + * @param {String} str String to search. + * @returns {Array} Match array with named backreference properties, or `null`. + */ + + +fixed.exec = function (str) { + var origLastIndex = this.lastIndex; + var match = nativ.exec.apply(this, arguments); + + if (match) { + // Fix browsers whose `exec` methods don't return `undefined` for nonparticipating capturing + // groups. This fixes IE 5.5-8, but not IE 9's quirks mode or emulation of older IEs. IE 9 + // in standards mode follows the spec. + if (!correctExecNpcg && match.length > 1 && (0, _includes["default"])(match).call(match, '')) { + var _context3; + + var r2 = copyRegex(this, { + removeG: true, + isInternalOnly: true + }); // Using `str.slice(match.index)` rather than `match[0]` in case lookahead allowed + // matching due to characters outside the match + + nativ.replace.call((0, _slice["default"])(_context3 = String(str)).call(_context3, match.index), r2, function () { + var len = arguments.length; // Skip index 0 and the last 2 + + for (var i = 1; i < len - 2; ++i) { + if ((i < 0 || arguments.length <= i ? undefined : arguments[i]) === undefined) { + match[i] = undefined; + } + } + }); + } // Attach named capture properties + + + var groupsObject = match; + + if (XRegExp.isInstalled('namespacing')) { + // https://tc39.github.io/proposal-regexp-named-groups/#sec-regexpbuiltinexec + match.groups = (0, _create["default"])(null); + groupsObject = match.groups; + } + + if (this[REGEX_DATA] && this[REGEX_DATA].captureNames) { + // Skip index 0 + for (var i = 1; i < match.length; ++i) { + var name = this[REGEX_DATA].captureNames[i - 1]; + + if (name) { + groupsObject[name] = match[i]; + } + } + } // Fix browsers that increment `lastIndex` after zero-length matches + + + if (this.global && !match[0].length && this.lastIndex > match.index) { + this.lastIndex = match.index; + } + } + + if (!this.global) { + // Fixes IE, Opera bug (last tested IE 9, Opera 11.6) + this.lastIndex = origLastIndex; + } + + return match; +}; +/** + * Fixes browser bugs in the native `RegExp.prototype.test`. + * + * @memberOf RegExp + * @param {String} str String to search. + * @returns {boolean} Whether the regex matched the provided value. + */ + + +fixed.test = function (str) { + // Do this the easy way :-) + return !!fixed.exec.call(this, str); +}; +/** + * Adds named capture support (with backreferences returned as `result.name`), and fixes browser + * bugs in the native `String.prototype.match`. + * + * @memberOf String + * @param {RegExp|*} regex Regex to search with. If not a regex object, it is passed to `RegExp`. + * @returns {Array} If `regex` uses flag g, an array of match strings or `null`. Without flag g, + * the result of calling `regex.exec(this)`. + */ + + +fixed.match = function (regex) { + if (!XRegExp.isRegExp(regex)) { + // Use the native `RegExp` rather than `XRegExp` + regex = new RegExp(regex); + } else if (regex.global) { + var result = nativ.match.apply(this, arguments); // Fixes IE bug + + regex.lastIndex = 0; + return result; + } + + return fixed.exec.call(regex, toObject(this)); +}; +/** + * Adds support for `${n}` (or `$`) tokens for named and numbered backreferences in replacement + * text, and provides named backreferences to replacement functions as `arguments[0].name`. Also + * fixes browser bugs in replacement text syntax when performing a replacement using a nonregex + * search value, and the value of a replacement regex's `lastIndex` property during replacement + * iterations and upon completion. Note that this doesn't support SpiderMonkey's proprietary third + * (`flags`) argument. Use via `XRegExp.replace`. + * + * @memberOf String + * @param {RegExp|String} search Search pattern to be replaced. + * @param {String|Function} replacement Replacement string or a function invoked to create it. + * @returns {string} New string with one or all matches replaced. + */ + + +fixed.replace = function (search, replacement) { + var isRegex = XRegExp.isRegExp(search); + var origLastIndex; + var captureNames; + var result; + + if (isRegex) { + if (search[REGEX_DATA]) { + captureNames = search[REGEX_DATA].captureNames; + } // Only needed if `search` is nonglobal + + + origLastIndex = search.lastIndex; + } else { + search += ''; // Type-convert + } // Don't use `typeof`; some older browsers return 'function' for regex objects + + + if (isType(replacement, 'Function')) { + // Stringifying `this` fixes a bug in IE < 9 where the last argument in replacement + // functions isn't type-converted to a string + result = nativ.replace.call(String(this), search, function () { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + if (captureNames) { + var groupsObject; + + if (XRegExp.isInstalled('namespacing')) { + // https://tc39.github.io/proposal-regexp-named-groups/#sec-regexpbuiltinexec + groupsObject = (0, _create["default"])(null); + args.push(groupsObject); + } else { + // Change the `args[0]` string primitive to a `String` object that can store + // properties. This really does need to use `String` as a constructor + args[0] = new String(args[0]); + groupsObject = args[0]; + } // Store named backreferences + + + for (var i = 0; i < captureNames.length; ++i) { + if (captureNames[i]) { + groupsObject[captureNames[i]] = args[i + 1]; + } + } + } // Update `lastIndex` before calling `replacement`. Fixes IE, Chrome, Firefox, Safari + // bug (last tested IE 9, Chrome 17, Firefox 11, Safari 5.1) + + + if (isRegex && search.global) { + search.lastIndex = args[args.length - 2] + args[0].length; + } // ES6 specs the context for replacement functions as `undefined` + + + return replacement.apply(void 0, args); + }); + } else { + // Ensure that the last value of `args` will be a string when given nonstring `this`, + // while still throwing on null or undefined context + result = nativ.replace.call(this == null ? this : String(this), search, function () { + for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { + args[_key2] = arguments[_key2]; + } + + return nativ.replace.call(String(replacement), replacementToken, replacer); + + function replacer($0, bracketed, angled, dollarToken) { + bracketed = bracketed || angled; // Named or numbered backreference with curly or angled braces + + if (bracketed) { + // XRegExp behavior for `${n}` or `$`: + // 1. Backreference to numbered capture, if `n` is an integer. Use `0` for the + // entire match. Any number of leading zeros may be used. + // 2. Backreference to named capture `n`, if it exists and is not an integer + // overridden by numbered capture. In practice, this does not overlap with + // numbered capture since XRegExp does not allow named capture to use a bare + // integer as the name. + // 3. If the name or number does not refer to an existing capturing group, it's + // an error. + var n = +bracketed; // Type-convert; drop leading zeros + + if (n <= args.length - 3) { + return args[n] || ''; + } // Groups with the same name is an error, else would need `lastIndexOf` + + + n = captureNames ? (0, _indexOf["default"])(captureNames).call(captureNames, bracketed) : -1; + + if (n < 0) { + throw new SyntaxError("Backreference to undefined group ".concat($0)); + } + + return args[n + 1] || ''; + } // Else, special variable or numbered backreference without curly braces + + + if (dollarToken === '$') { + // $$ + return '$'; + } + + if (dollarToken === '&' || +dollarToken === 0) { + // $&, $0 (not followed by 1-9), $00 + return args[0]; + } + + if (dollarToken === '`') { + var _context4; + + // $` (left context) + return (0, _slice["default"])(_context4 = args[args.length - 1]).call(_context4, 0, args[args.length - 2]); + } + + if (dollarToken === "'") { + var _context5; + + // $' (right context) + return (0, _slice["default"])(_context5 = args[args.length - 1]).call(_context5, args[args.length - 2] + args[0].length); + } // Else, numbered backreference without braces + + + dollarToken = +dollarToken; // Type-convert; drop leading zero + // XRegExp behavior for `$n` and `$nn`: + // - Backrefs end after 1 or 2 digits. Use `${..}` or `$<..>` for more digits. + // - `$1` is an error if no capturing groups. + // - `$10` is an error if less than 10 capturing groups. Use `${1}0` or `$<1>0` + // instead. + // - `$01` is `$1` if at least one capturing group, else it's an error. + // - `$0` (not followed by 1-9) and `$00` are the entire match. + // Native behavior, for comparison: + // - Backrefs end after 1 or 2 digits. Cannot reference capturing group 100+. + // - `$1` is a literal `$1` if no capturing groups. + // - `$10` is `$1` followed by a literal `0` if less than 10 capturing groups. + // - `$01` is `$1` if at least one capturing group, else it's a literal `$01`. + // - `$0` is a literal `$0`. + + if (!isNaN(dollarToken)) { + if (dollarToken > args.length - 3) { + throw new SyntaxError("Backreference to undefined group ".concat($0)); + } + + return args[dollarToken] || ''; + } // `$` followed by an unsupported char is an error, unlike native JS + + + throw new SyntaxError("Invalid token ".concat($0)); + } + }); + } + + if (isRegex) { + if (search.global) { + // Fixes IE, Safari bug (last tested IE 9, Safari 5.1) + search.lastIndex = 0; + } else { + // Fixes IE, Opera bug (last tested IE 9, Opera 11.6) + search.lastIndex = origLastIndex; + } + } + + return result; +}; +/** + * Fixes browser bugs in the native `String.prototype.split`. Use via `XRegExp.split`. + * + * @memberOf String + * @param {RegExp|String} separator Regex or string to use for separating the string. + * @param {Number} [limit] Maximum number of items to include in the result array. + * @returns {!Array} Array of substrings. + */ + + +fixed.split = function (separator, limit) { + if (!XRegExp.isRegExp(separator)) { + // Browsers handle nonregex split correctly, so use the faster native method + return nativ.split.apply(this, arguments); + } + + var str = String(this); + var output = []; + var origLastIndex = separator.lastIndex; + var lastLastIndex = 0; + var lastLength; // Values for `limit`, per the spec: + // If undefined: pow(2,32) - 1 + // If 0, Infinity, or NaN: 0 + // If positive number: limit = floor(limit); if (limit >= pow(2,32)) limit -= pow(2,32); + // If negative number: pow(2,32) - floor(abs(limit)) + // If other: Type-convert, then use the above rules + // This line fails in very strange ways for some values of `limit` in Opera 10.5-10.63, unless + // Opera Dragonfly is open (go figure). It works in at least Opera 9.5-10.1 and 11+ + + limit = (limit === undefined ? -1 : limit) >>> 0; + (0, _forEach["default"])(XRegExp).call(XRegExp, str, separator, function (match) { + // This condition is not the same as `if (match[0].length)` + if (match.index + match[0].length > lastLastIndex) { + output.push((0, _slice["default"])(str).call(str, lastLastIndex, match.index)); + + if (match.length > 1 && match.index < str.length) { + Array.prototype.push.apply(output, (0, _slice["default"])(match).call(match, 1)); + } + + lastLength = match[0].length; + lastLastIndex = match.index + lastLength; + } + }); + + if (lastLastIndex === str.length) { + if (!nativ.test.call(separator, '') || lastLength) { + output.push(''); + } + } else { + output.push((0, _slice["default"])(str).call(str, lastLastIndex)); + } + + separator.lastIndex = origLastIndex; + return output.length > limit ? (0, _slice["default"])(output).call(output, 0, limit) : output; +}; // ==--------------------------== +// Built-in syntax/flag tokens +// ==--------------------------== + +/* + * Letter escapes that natively match literal characters: `\a`, `\A`, etc. These should be + * SyntaxErrors but are allowed in web reality. XRegExp makes them errors for cross-browser + * consistency and to reserve their syntax, but lets them be superseded by addons. + */ + + +XRegExp.addToken(/\\([ABCE-RTUVXYZaeg-mopqyz]|c(?![A-Za-z])|u(?![\dA-Fa-f]{4}|{[\dA-Fa-f]+})|x(?![\dA-Fa-f]{2}))/, function (match, scope) { + // \B is allowed in default scope only + if (match[1] === 'B' && scope === defaultScope) { + return match[0]; + } + + throw new SyntaxError("Invalid escape ".concat(match[0])); +}, { + scope: 'all', + leadChar: '\\' +}); +/* + * Unicode code point escape with curly braces: `\u{N..}`. `N..` is any one or more digit + * hexadecimal number from 0-10FFFF, and can include leading zeros. Requires the native ES6 `u` flag + * to support code points greater than U+FFFF. Avoids converting code points above U+FFFF to + * surrogate pairs (which could be done without flag `u`), since that could lead to broken behavior + * if you follow a `\u{N..}` token that references a code point above U+FFFF with a quantifier, or + * if you use the same in a character class. + */ + +XRegExp.addToken(/\\u{([\dA-Fa-f]+)}/, function (match, scope, flags) { + var code = dec(match[1]); + + if (code > 0x10FFFF) { + throw new SyntaxError("Invalid Unicode code point ".concat(match[0])); + } + + if (code <= 0xFFFF) { + // Converting to \uNNNN avoids needing to escape the literal character and keep it + // separate from preceding tokens + return "\\u".concat(pad4(hex(code))); + } // If `code` is between 0xFFFF and 0x10FFFF, require and defer to native handling + + + if (hasNativeU && (0, _includes["default"])(flags).call(flags, 'u')) { + return match[0]; + } + + throw new SyntaxError('Cannot use Unicode code point above \\u{FFFF} without flag u'); +}, { + scope: 'all', + leadChar: '\\' +}); +/* + * Empty character class: `[]` or `[^]`. This fixes a critical cross-browser syntax inconsistency. + * Unless this is standardized (per the ES spec), regex syntax can't be accurately parsed because + * character class endings can't be determined. + */ + +XRegExp.addToken(/\[(\^?)\]/, // For cross-browser compatibility with ES3, convert [] to \b\B and [^] to [\s\S]. +// (?!) should work like \b\B, but is unreliable in some versions of Firefox + +/* eslint-disable no-confusing-arrow */ +function (match) { + return match[1] ? '[\\s\\S]' : '\\b\\B'; +}, +/* eslint-enable no-confusing-arrow */ +{ + leadChar: '[' +}); +/* + * Comment pattern: `(?# )`. Inline comments are an alternative to the line comments allowed in + * free-spacing mode (flag x). + */ + +XRegExp.addToken(/\(\?#[^)]*\)/, getContextualTokenSeparator, { + leadChar: '(' +}); +/* + * Whitespace and line comments, in free-spacing mode (aka extended mode, flag x) only. + */ + +XRegExp.addToken(/\s+|#[^\n]*\n?/, getContextualTokenSeparator, { + flag: 'x' +}); +/* + * Dot, in dotall mode (aka singleline mode, flag s) only. + */ + +XRegExp.addToken(/\./, function () { + return '[\\s\\S]'; +}, { + flag: 's', + leadChar: '.' +}); +/* + * Named backreference: `\k`. Backreference names can use the characters A-Z, a-z, 0-9, _, + * and $ only. Also allows numbered backreferences as `\k`. + */ + +XRegExp.addToken(/\\k<([\w$]+)>/, function (match) { + var _context6, _context7; + + // Groups with the same name is an error, else would need `lastIndexOf` + var index = isNaN(match[1]) ? (0, _indexOf["default"])(_context6 = this.captureNames).call(_context6, match[1]) + 1 : +match[1]; + var endIndex = match.index + match[0].length; + + if (!index || index > this.captureNames.length) { + throw new SyntaxError("Backreference to undefined group ".concat(match[0])); + } // Keep backreferences separate from subsequent literal numbers. This avoids e.g. + // inadvertedly changing `(?)\k1` to `()\11`. + + + return (0, _concat["default"])(_context7 = "\\".concat(index)).call(_context7, endIndex === match.input.length || isNaN(match.input[endIndex]) ? '' : '(?:)'); +}, { + leadChar: '\\' +}); +/* + * Numbered backreference or octal, plus any following digits: `\0`, `\11`, etc. Octals except `\0` + * not followed by 0-9 and backreferences to unopened capture groups throw an error. Other matches + * are returned unaltered. IE < 9 doesn't support backreferences above `\99` in regex syntax. + */ + +XRegExp.addToken(/\\(\d+)/, function (match, scope) { + if (!(scope === defaultScope && /^[1-9]/.test(match[1]) && +match[1] <= this.captureNames.length) && match[1] !== '0') { + throw new SyntaxError("Cannot use octal escape or backreference to undefined group ".concat(match[0])); + } + + return match[0]; +}, { + scope: 'all', + leadChar: '\\' +}); +/* + * Named capturing group; match the opening delimiter only: `(?`. Capture names can use the + * characters A-Z, a-z, 0-9, _, and $ only. Names can't be integers. Supports Python-style + * `(?P` as an alternate syntax to avoid issues in some older versions of Opera which natively + * supported the Python-style syntax. Otherwise, XRegExp might treat numbered backreferences to + * Python-style named capture as octals. + */ + +XRegExp.addToken(/\(\?P?<([\w$]+)>/, function (match) { + var _context8; + + // Disallow bare integers as names because named backreferences are added to match arrays + // and therefore numeric properties may lead to incorrect lookups + if (!isNaN(match[1])) { + throw new SyntaxError("Cannot use integer as capture name ".concat(match[0])); + } + + if (!XRegExp.isInstalled('namespacing') && (match[1] === 'length' || match[1] === '__proto__')) { + throw new SyntaxError("Cannot use reserved word as capture name ".concat(match[0])); + } + + if ((0, _includes["default"])(_context8 = this.captureNames).call(_context8, match[1])) { + throw new SyntaxError("Cannot use same name for multiple groups ".concat(match[0])); + } + + this.captureNames.push(match[1]); + this.hasNamedCapture = true; + return '('; +}, { + leadChar: '(' +}); +/* + * Capturing group; match the opening parenthesis only. Required for support of named capturing + * groups. Also adds explicit capture mode (flag n). + */ + +XRegExp.addToken(/\((?!\?)/, function (match, scope, flags) { + if ((0, _includes["default"])(flags).call(flags, 'n')) { + return '(?:'; + } + + this.captureNames.push(null); + return '('; +}, { + optionalFlags: 'n', + leadChar: '(' +}); +var _default = XRegExp; +exports["default"] = _default; +module.exports = exports.default; +},{"@babel/runtime-corejs3/core-js-stable/array/from":10,"@babel/runtime-corejs3/core-js-stable/array/is-array":11,"@babel/runtime-corejs3/core-js-stable/instance/concat":12,"@babel/runtime-corejs3/core-js-stable/instance/flags":13,"@babel/runtime-corejs3/core-js-stable/instance/for-each":14,"@babel/runtime-corejs3/core-js-stable/instance/includes":15,"@babel/runtime-corejs3/core-js-stable/instance/index-of":16,"@babel/runtime-corejs3/core-js-stable/instance/slice":19,"@babel/runtime-corejs3/core-js-stable/instance/sort":20,"@babel/runtime-corejs3/core-js-stable/object/create":21,"@babel/runtime-corejs3/core-js-stable/object/define-property":22,"@babel/runtime-corejs3/core-js-stable/parse-int":23,"@babel/runtime-corejs3/core-js-stable/symbol":24,"@babel/runtime-corejs3/core-js/get-iterator":28,"@babel/runtime-corejs3/core-js/get-iterator-method":27,"@babel/runtime-corejs3/helpers/interopRequireDefault":34,"@babel/runtime-corejs3/helpers/slicedToArray":37}],10:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/array/from"); +},{"core-js-pure/stable/array/from":206}],11:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/array/is-array"); +},{"core-js-pure/stable/array/is-array":207}],12:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/concat"); +},{"core-js-pure/stable/instance/concat":209}],13:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/flags"); +},{"core-js-pure/stable/instance/flags":210}],14:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/for-each"); +},{"core-js-pure/stable/instance/for-each":211}],15:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/includes"); +},{"core-js-pure/stable/instance/includes":212}],16:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/index-of"); +},{"core-js-pure/stable/instance/index-of":213}],17:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/map"); +},{"core-js-pure/stable/instance/map":214}],18:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/reduce"); +},{"core-js-pure/stable/instance/reduce":215}],19:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/slice"); +},{"core-js-pure/stable/instance/slice":216}],20:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/instance/sort"); +},{"core-js-pure/stable/instance/sort":217}],21:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/object/create"); +},{"core-js-pure/stable/object/create":218}],22:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/object/define-property"); +},{"core-js-pure/stable/object/define-property":219}],23:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/parse-int"); +},{"core-js-pure/stable/parse-int":220}],24:[function(require,module,exports){ +module.exports = require("core-js-pure/stable/symbol"); +},{"core-js-pure/stable/symbol":221}],25:[function(require,module,exports){ +module.exports = require("core-js-pure/features/array/from"); +},{"core-js-pure/features/array/from":63}],26:[function(require,module,exports){ +module.exports = require("core-js-pure/features/array/is-array"); +},{"core-js-pure/features/array/is-array":64}],27:[function(require,module,exports){ +module.exports = require("core-js-pure/features/get-iterator-method"); +},{"core-js-pure/features/get-iterator-method":65}],28:[function(require,module,exports){ +module.exports = require("core-js-pure/features/get-iterator"); +},{"core-js-pure/features/get-iterator":66}],29:[function(require,module,exports){ +module.exports = require("core-js-pure/features/instance/slice"); +},{"core-js-pure/features/instance/slice":67}],30:[function(require,module,exports){ +module.exports = require("core-js-pure/features/is-iterable"); +},{"core-js-pure/features/is-iterable":68}],31:[function(require,module,exports){ +module.exports = require("core-js-pure/features/symbol"); +},{"core-js-pure/features/symbol":69}],32:[function(require,module,exports){ +function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + + for (var i = 0, arr2 = new Array(len); i < len; i++) { + arr2[i] = arr[i]; + } + + return arr2; +} + +module.exports = _arrayLikeToArray; +},{}],33:[function(require,module,exports){ +var _Array$isArray = require("@babel/runtime-corejs3/core-js/array/is-array"); + +function _arrayWithHoles(arr) { + if (_Array$isArray(arr)) return arr; +} + +module.exports = _arrayWithHoles; +},{"@babel/runtime-corejs3/core-js/array/is-array":26}],34:[function(require,module,exports){ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { + "default": obj + }; +} + +module.exports = _interopRequireDefault; +},{}],35:[function(require,module,exports){ +var _getIterator = require("@babel/runtime-corejs3/core-js/get-iterator"); + +var _isIterable = require("@babel/runtime-corejs3/core-js/is-iterable"); + +var _Symbol = require("@babel/runtime-corejs3/core-js/symbol"); + +function _iterableToArrayLimit(arr, i) { + if (typeof _Symbol === "undefined" || !_isIterable(Object(arr))) return; + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = _getIterator(arr), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; +} + +module.exports = _iterableToArrayLimit; +},{"@babel/runtime-corejs3/core-js/get-iterator":28,"@babel/runtime-corejs3/core-js/is-iterable":30,"@babel/runtime-corejs3/core-js/symbol":31}],36:[function(require,module,exports){ +function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); +} + +module.exports = _nonIterableRest; +},{}],37:[function(require,module,exports){ +var arrayWithHoles = require("./arrayWithHoles"); + +var iterableToArrayLimit = require("./iterableToArrayLimit"); + +var unsupportedIterableToArray = require("./unsupportedIterableToArray"); + +var nonIterableRest = require("./nonIterableRest"); + +function _slicedToArray(arr, i) { + return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest(); +} + +module.exports = _slicedToArray; +},{"./arrayWithHoles":33,"./iterableToArrayLimit":35,"./nonIterableRest":36,"./unsupportedIterableToArray":38}],38:[function(require,module,exports){ +var _Array$from = require("@babel/runtime-corejs3/core-js/array/from"); + +var _sliceInstanceProperty = require("@babel/runtime-corejs3/core-js/instance/slice"); + +var arrayLikeToArray = require("./arrayLikeToArray"); + +function _unsupportedIterableToArray(o, minLen) { + var _context; + + if (!o) return; + if (typeof o === "string") return arrayLikeToArray(o, minLen); + + var n = _sliceInstanceProperty(_context = Object.prototype.toString.call(o)).call(_context, 8, -1); + + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return _Array$from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen); +} + +module.exports = _unsupportedIterableToArray; +},{"./arrayLikeToArray":32,"@babel/runtime-corejs3/core-js/array/from":25,"@babel/runtime-corejs3/core-js/instance/slice":29}],39:[function(require,module,exports){ +require('../../modules/es.string.iterator'); +require('../../modules/es.array.from'); +var path = require('../../internals/path'); + +module.exports = path.Array.from; + +},{"../../internals/path":142,"../../modules/es.array.from":167,"../../modules/es.string.iterator":184}],40:[function(require,module,exports){ +require('../../modules/es.array.is-array'); +var path = require('../../internals/path'); + +module.exports = path.Array.isArray; + +},{"../../internals/path":142,"../../modules/es.array.is-array":170}],41:[function(require,module,exports){ +require('../../../modules/es.array.concat'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').concat; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.concat":165}],42:[function(require,module,exports){ +require('../../../modules/es.array.for-each'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').forEach; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.for-each":166}],43:[function(require,module,exports){ +require('../../../modules/es.array.includes'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').includes; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.includes":168}],44:[function(require,module,exports){ +require('../../../modules/es.array.index-of'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').indexOf; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.index-of":169}],45:[function(require,module,exports){ +require('../../../modules/es.array.map'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').map; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.map":172}],46:[function(require,module,exports){ +require('../../../modules/es.array.reduce'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').reduce; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.reduce":173}],47:[function(require,module,exports){ +require('../../../modules/es.array.slice'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').slice; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.slice":174}],48:[function(require,module,exports){ +require('../../../modules/es.array.sort'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('Array').sort; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.array.sort":175}],49:[function(require,module,exports){ +var concat = require('../array/virtual/concat'); + +var ArrayPrototype = Array.prototype; + +module.exports = function (it) { + var own = it.concat; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.concat) ? concat : own; +}; + +},{"../array/virtual/concat":41}],50:[function(require,module,exports){ +var flags = require('../regexp/flags'); + +var RegExpPrototype = RegExp.prototype; + +module.exports = function (it) { + return (it === RegExpPrototype || it instanceof RegExp) && !('flags' in it) ? flags(it) : it.flags; +}; + +},{"../regexp/flags":60}],51:[function(require,module,exports){ +var arrayIncludes = require('../array/virtual/includes'); +var stringIncludes = require('../string/virtual/includes'); + +var ArrayPrototype = Array.prototype; +var StringPrototype = String.prototype; + +module.exports = function (it) { + var own = it.includes; + if (it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.includes)) return arrayIncludes; + if (typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.includes)) { + return stringIncludes; + } return own; +}; + +},{"../array/virtual/includes":43,"../string/virtual/includes":61}],52:[function(require,module,exports){ +var indexOf = require('../array/virtual/index-of'); + +var ArrayPrototype = Array.prototype; + +module.exports = function (it) { + var own = it.indexOf; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.indexOf) ? indexOf : own; +}; + +},{"../array/virtual/index-of":44}],53:[function(require,module,exports){ +var map = require('../array/virtual/map'); + +var ArrayPrototype = Array.prototype; + +module.exports = function (it) { + var own = it.map; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.map) ? map : own; +}; + +},{"../array/virtual/map":45}],54:[function(require,module,exports){ +var reduce = require('../array/virtual/reduce'); + +var ArrayPrototype = Array.prototype; + +module.exports = function (it) { + var own = it.reduce; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduce) ? reduce : own; +}; + +},{"../array/virtual/reduce":46}],55:[function(require,module,exports){ +var slice = require('../array/virtual/slice'); + +var ArrayPrototype = Array.prototype; + +module.exports = function (it) { + var own = it.slice; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own; +}; + +},{"../array/virtual/slice":47}],56:[function(require,module,exports){ +var sort = require('../array/virtual/sort'); + +var ArrayPrototype = Array.prototype; + +module.exports = function (it) { + var own = it.sort; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.sort) ? sort : own; +}; + +},{"../array/virtual/sort":48}],57:[function(require,module,exports){ +require('../../modules/es.object.create'); +var path = require('../../internals/path'); + +var Object = path.Object; + +module.exports = function create(P, D) { + return Object.create(P, D); +}; + +},{"../../internals/path":142,"../../modules/es.object.create":178}],58:[function(require,module,exports){ +require('../../modules/es.object.define-property'); +var path = require('../../internals/path'); + +var Object = path.Object; + +var defineProperty = module.exports = function defineProperty(it, key, desc) { + return Object.defineProperty(it, key, desc); +}; + +if (Object.defineProperty.sham) defineProperty.sham = true; + +},{"../../internals/path":142,"../../modules/es.object.define-property":179}],59:[function(require,module,exports){ +require('../modules/es.parse-int'); +var path = require('../internals/path'); + +module.exports = path.parseInt; + +},{"../internals/path":142,"../modules/es.parse-int":181}],60:[function(require,module,exports){ +require('../../modules/es.regexp.flags'); +var flags = require('../../internals/regexp-flags'); + +module.exports = function (it) { + return flags.call(it); +}; + +},{"../../internals/regexp-flags":144,"../../modules/es.regexp.flags":182}],61:[function(require,module,exports){ +require('../../../modules/es.string.includes'); +var entryVirtual = require('../../../internals/entry-virtual'); + +module.exports = entryVirtual('String').includes; + +},{"../../../internals/entry-virtual":100,"../../../modules/es.string.includes":183}],62:[function(require,module,exports){ +require('../../modules/es.array.concat'); +require('../../modules/es.object.to-string'); +require('../../modules/es.symbol'); +require('../../modules/es.symbol.async-iterator'); +require('../../modules/es.symbol.description'); +require('../../modules/es.symbol.has-instance'); +require('../../modules/es.symbol.is-concat-spreadable'); +require('../../modules/es.symbol.iterator'); +require('../../modules/es.symbol.match'); +require('../../modules/es.symbol.match-all'); +require('../../modules/es.symbol.replace'); +require('../../modules/es.symbol.search'); +require('../../modules/es.symbol.species'); +require('../../modules/es.symbol.split'); +require('../../modules/es.symbol.to-primitive'); +require('../../modules/es.symbol.to-string-tag'); +require('../../modules/es.symbol.unscopables'); +require('../../modules/es.math.to-string-tag'); +require('../../modules/es.json.to-string-tag'); +var path = require('../../internals/path'); + +module.exports = path.Symbol; + +},{"../../internals/path":142,"../../modules/es.array.concat":165,"../../modules/es.json.to-string-tag":176,"../../modules/es.math.to-string-tag":177,"../../modules/es.object.to-string":180,"../../modules/es.symbol":190,"../../modules/es.symbol.async-iterator":185,"../../modules/es.symbol.description":186,"../../modules/es.symbol.has-instance":187,"../../modules/es.symbol.is-concat-spreadable":188,"../../modules/es.symbol.iterator":189,"../../modules/es.symbol.match":192,"../../modules/es.symbol.match-all":191,"../../modules/es.symbol.replace":193,"../../modules/es.symbol.search":194,"../../modules/es.symbol.species":195,"../../modules/es.symbol.split":196,"../../modules/es.symbol.to-primitive":197,"../../modules/es.symbol.to-string-tag":198,"../../modules/es.symbol.unscopables":199}],63:[function(require,module,exports){ +var parent = require('../../es/array/from'); + +module.exports = parent; + +},{"../../es/array/from":39}],64:[function(require,module,exports){ +var parent = require('../../es/array/is-array'); + +module.exports = parent; + +},{"../../es/array/is-array":40}],65:[function(require,module,exports){ +require('../modules/web.dom-collections.iterator'); +require('../modules/es.string.iterator'); +var getIteratorMethod = require('../internals/get-iterator-method'); + +module.exports = getIteratorMethod; + +},{"../internals/get-iterator-method":106,"../modules/es.string.iterator":184,"../modules/web.dom-collections.iterator":205}],66:[function(require,module,exports){ +require('../modules/web.dom-collections.iterator'); +require('../modules/es.string.iterator'); +var getIterator = require('../internals/get-iterator'); + +module.exports = getIterator; + +},{"../internals/get-iterator":107,"../modules/es.string.iterator":184,"../modules/web.dom-collections.iterator":205}],67:[function(require,module,exports){ +var parent = require('../../es/instance/slice'); + +module.exports = parent; + +},{"../../es/instance/slice":55}],68:[function(require,module,exports){ +require('../modules/web.dom-collections.iterator'); +require('../modules/es.string.iterator'); +var isIterable = require('../internals/is-iterable'); + +module.exports = isIterable; + +},{"../internals/is-iterable":119,"../modules/es.string.iterator":184,"../modules/web.dom-collections.iterator":205}],69:[function(require,module,exports){ +var parent = require('../../es/symbol'); +require('../../modules/esnext.symbol.async-dispose'); +require('../../modules/esnext.symbol.dispose'); +require('../../modules/esnext.symbol.observable'); +require('../../modules/esnext.symbol.pattern-match'); +// TODO: Remove from `core-js@4` +require('../../modules/esnext.symbol.replace-all'); + +module.exports = parent; + +},{"../../es/symbol":62,"../../modules/esnext.symbol.async-dispose":200,"../../modules/esnext.symbol.dispose":201,"../../modules/esnext.symbol.observable":202,"../../modules/esnext.symbol.pattern-match":203,"../../modules/esnext.symbol.replace-all":204}],70:[function(require,module,exports){ +module.exports = function (it) { + if (typeof it != 'function') { + throw TypeError(String(it) + ' is not a function'); + } return it; +}; + +},{}],71:[function(require,module,exports){ +var isObject = require('../internals/is-object'); + +module.exports = function (it) { + if (!isObject(it) && it !== null) { + throw TypeError("Can't set " + String(it) + ' as a prototype'); + } return it; +}; + +},{"../internals/is-object":120}],72:[function(require,module,exports){ +module.exports = function () { /* empty */ }; + +},{}],73:[function(require,module,exports){ +var isObject = require('../internals/is-object'); + +module.exports = function (it) { + if (!isObject(it)) { + throw TypeError(String(it) + ' is not an object'); + } return it; +}; + +},{"../internals/is-object":120}],74:[function(require,module,exports){ +'use strict'; +var $forEach = require('../internals/array-iteration').forEach; +var arrayMethodIsStrict = require('../internals/array-method-is-strict'); +var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length'); + +var STRICT_METHOD = arrayMethodIsStrict('forEach'); +var USES_TO_LENGTH = arrayMethodUsesToLength('forEach'); + +// `Array.prototype.forEach` method implementation +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +module.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) { + return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); +} : [].forEach; + +},{"../internals/array-iteration":77,"../internals/array-method-is-strict":79,"../internals/array-method-uses-to-length":80}],75:[function(require,module,exports){ +'use strict'; +var bind = require('../internals/function-bind-context'); +var toObject = require('../internals/to-object'); +var callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing'); +var isArrayIteratorMethod = require('../internals/is-array-iterator-method'); +var toLength = require('../internals/to-length'); +var createProperty = require('../internals/create-property'); +var getIteratorMethod = require('../internals/get-iterator-method'); + +// `Array.from` method implementation +// https://tc39.github.io/ecma262/#sec-array.from +module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) { + var O = toObject(arrayLike); + var C = typeof this == 'function' ? this : Array; + var argumentsLength = arguments.length; + var mapfn = argumentsLength > 1 ? arguments[1] : undefined; + var mapping = mapfn !== undefined; + var iteratorMethod = getIteratorMethod(O); + var index = 0; + var length, result, step, iterator, next, value; + if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2); + // if the target is not iterable or it's an array with the default iterator - use a simple case + if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) { + iterator = iteratorMethod.call(O); + next = iterator.next; + result = new C(); + for (;!(step = next.call(iterator)).done; index++) { + value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value; + createProperty(result, index, value); + } + } else { + length = toLength(O.length); + result = new C(length); + for (;length > index; index++) { + value = mapping ? mapfn(O[index], index) : O[index]; + createProperty(result, index, value); + } + } + result.length = index; + return result; +}; + +},{"../internals/call-with-safe-iteration-closing":83,"../internals/create-property":92,"../internals/function-bind-context":104,"../internals/get-iterator-method":106,"../internals/is-array-iterator-method":116,"../internals/to-length":156,"../internals/to-object":157}],76:[function(require,module,exports){ +var toIndexedObject = require('../internals/to-indexed-object'); +var toLength = require('../internals/to-length'); +var toAbsoluteIndex = require('../internals/to-absolute-index'); + +// `Array.prototype.{ indexOf, includes }` methods implementation +var createMethod = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + var O = toIndexedObject($this); + var length = toLength(O.length); + var index = toAbsoluteIndex(fromIndex, length); + var value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + if (IS_INCLUDES && el != el) while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } else for (;length > index; index++) { + if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; + } return !IS_INCLUDES && -1; + }; +}; + +module.exports = { + // `Array.prototype.includes` method + // https://tc39.github.io/ecma262/#sec-array.prototype.includes + includes: createMethod(true), + // `Array.prototype.indexOf` method + // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + indexOf: createMethod(false) +}; + +},{"../internals/to-absolute-index":153,"../internals/to-indexed-object":154,"../internals/to-length":156}],77:[function(require,module,exports){ +var bind = require('../internals/function-bind-context'); +var IndexedObject = require('../internals/indexed-object'); +var toObject = require('../internals/to-object'); +var toLength = require('../internals/to-length'); +var arraySpeciesCreate = require('../internals/array-species-create'); + +var push = [].push; + +// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation +var createMethod = function (TYPE) { + var IS_MAP = TYPE == 1; + var IS_FILTER = TYPE == 2; + var IS_SOME = TYPE == 3; + var IS_EVERY = TYPE == 4; + var IS_FIND_INDEX = TYPE == 6; + var NO_HOLES = TYPE == 5 || IS_FIND_INDEX; + return function ($this, callbackfn, that, specificCreate) { + var O = toObject($this); + var self = IndexedObject(O); + var boundFunction = bind(callbackfn, that, 3); + var length = toLength(self.length); + var index = 0; + var create = specificCreate || arraySpeciesCreate; + var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined; + var value, result; + for (;length > index; index++) if (NO_HOLES || index in self) { + value = self[index]; + result = boundFunction(value, index, O); + if (TYPE) { + if (IS_MAP) target[index] = result; // map + else if (result) switch (TYPE) { + case 3: return true; // some + case 5: return value; // find + case 6: return index; // findIndex + case 2: push.call(target, value); // filter + } else if (IS_EVERY) return false; // every + } + } + return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target; + }; +}; + +module.exports = { + // `Array.prototype.forEach` method + // https://tc39.github.io/ecma262/#sec-array.prototype.foreach + forEach: createMethod(0), + // `Array.prototype.map` method + // https://tc39.github.io/ecma262/#sec-array.prototype.map + map: createMethod(1), + // `Array.prototype.filter` method + // https://tc39.github.io/ecma262/#sec-array.prototype.filter + filter: createMethod(2), + // `Array.prototype.some` method + // https://tc39.github.io/ecma262/#sec-array.prototype.some + some: createMethod(3), + // `Array.prototype.every` method + // https://tc39.github.io/ecma262/#sec-array.prototype.every + every: createMethod(4), + // `Array.prototype.find` method + // https://tc39.github.io/ecma262/#sec-array.prototype.find + find: createMethod(5), + // `Array.prototype.findIndex` method + // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex + findIndex: createMethod(6) +}; + +},{"../internals/array-species-create":82,"../internals/function-bind-context":104,"../internals/indexed-object":113,"../internals/to-length":156,"../internals/to-object":157}],78:[function(require,module,exports){ +var fails = require('../internals/fails'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var V8_VERSION = require('../internals/engine-v8-version'); + +var SPECIES = wellKnownSymbol('species'); + +module.exports = function (METHOD_NAME) { + // We can't use this feature detection in V8 since it causes + // deoptimization and serious performance degradation + // https://github.com/zloirock/core-js/issues/677 + return V8_VERSION >= 51 || !fails(function () { + var array = []; + var constructor = array.constructor = {}; + constructor[SPECIES] = function () { + return { foo: 1 }; + }; + return array[METHOD_NAME](Boolean).foo !== 1; + }); +}; + +},{"../internals/engine-v8-version":99,"../internals/fails":103,"../internals/well-known-symbol":163}],79:[function(require,module,exports){ +'use strict'; +var fails = require('../internals/fails'); + +module.exports = function (METHOD_NAME, argument) { + var method = [][METHOD_NAME]; + return !!method && fails(function () { + // eslint-disable-next-line no-useless-call,no-throw-literal + method.call(null, argument || function () { throw 1; }, 1); + }); +}; + +},{"../internals/fails":103}],80:[function(require,module,exports){ +var DESCRIPTORS = require('../internals/descriptors'); +var fails = require('../internals/fails'); +var has = require('../internals/has'); + +var defineProperty = Object.defineProperty; +var cache = {}; + +var thrower = function (it) { throw it; }; + +module.exports = function (METHOD_NAME, options) { + if (has(cache, METHOD_NAME)) return cache[METHOD_NAME]; + if (!options) options = {}; + var method = [][METHOD_NAME]; + var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false; + var argument0 = has(options, 0) ? options[0] : thrower; + var argument1 = has(options, 1) ? options[1] : undefined; + + return cache[METHOD_NAME] = !!method && !fails(function () { + if (ACCESSORS && !DESCRIPTORS) return true; + var O = { length: -1 }; + + if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower }); + else O[1] = 1; + + method.call(O, argument0, argument1); + }); +}; + +},{"../internals/descriptors":95,"../internals/fails":103,"../internals/has":109}],81:[function(require,module,exports){ +var aFunction = require('../internals/a-function'); +var toObject = require('../internals/to-object'); +var IndexedObject = require('../internals/indexed-object'); +var toLength = require('../internals/to-length'); + +// `Array.prototype.{ reduce, reduceRight }` methods implementation +var createMethod = function (IS_RIGHT) { + return function (that, callbackfn, argumentsLength, memo) { + aFunction(callbackfn); + var O = toObject(that); + var self = IndexedObject(O); + var length = toLength(O.length); + var index = IS_RIGHT ? length - 1 : 0; + var i = IS_RIGHT ? -1 : 1; + if (argumentsLength < 2) while (true) { + if (index in self) { + memo = self[index]; + index += i; + break; + } + index += i; + if (IS_RIGHT ? index < 0 : length <= index) { + throw TypeError('Reduce of empty array with no initial value'); + } + } + for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) { + memo = callbackfn(memo, self[index], index, O); + } + return memo; + }; +}; + +module.exports = { + // `Array.prototype.reduce` method + // https://tc39.github.io/ecma262/#sec-array.prototype.reduce + left: createMethod(false), + // `Array.prototype.reduceRight` method + // https://tc39.github.io/ecma262/#sec-array.prototype.reduceright + right: createMethod(true) +}; + +},{"../internals/a-function":70,"../internals/indexed-object":113,"../internals/to-length":156,"../internals/to-object":157}],82:[function(require,module,exports){ +var isObject = require('../internals/is-object'); +var isArray = require('../internals/is-array'); +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var SPECIES = wellKnownSymbol('species'); + +// `ArraySpeciesCreate` abstract operation +// https://tc39.github.io/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray, length) { + var C; + if (isArray(originalArray)) { + C = originalArray.constructor; + // cross-realm fallback + if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined; + else if (isObject(C)) { + C = C[SPECIES]; + if (C === null) C = undefined; + } + } return new (C === undefined ? Array : C)(length === 0 ? 0 : length); +}; + +},{"../internals/is-array":117,"../internals/is-object":120,"../internals/well-known-symbol":163}],83:[function(require,module,exports){ +var anObject = require('../internals/an-object'); + +// call something on iterator step with safe closing on error +module.exports = function (iterator, fn, value, ENTRIES) { + try { + return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); + // 7.4.6 IteratorClose(iterator, completion) + } catch (error) { + var returnMethod = iterator['return']; + if (returnMethod !== undefined) anObject(returnMethod.call(iterator)); + throw error; + } +}; + +},{"../internals/an-object":73}],84:[function(require,module,exports){ +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var ITERATOR = wellKnownSymbol('iterator'); +var SAFE_CLOSING = false; + +try { + var called = 0; + var iteratorWithReturn = { + next: function () { + return { done: !!called++ }; + }, + 'return': function () { + SAFE_CLOSING = true; + } + }; + iteratorWithReturn[ITERATOR] = function () { + return this; + }; + // eslint-disable-next-line no-throw-literal + Array.from(iteratorWithReturn, function () { throw 2; }); +} catch (error) { /* empty */ } + +module.exports = function (exec, SKIP_CLOSING) { + if (!SKIP_CLOSING && !SAFE_CLOSING) return false; + var ITERATION_SUPPORT = false; + try { + var object = {}; + object[ITERATOR] = function () { + return { + next: function () { + return { done: ITERATION_SUPPORT = true }; + } + }; + }; + exec(object); + } catch (error) { /* empty */ } + return ITERATION_SUPPORT; +}; + +},{"../internals/well-known-symbol":163}],85:[function(require,module,exports){ +var toString = {}.toString; + +module.exports = function (it) { + return toString.call(it).slice(8, -1); +}; + +},{}],86:[function(require,module,exports){ +var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support'); +var classofRaw = require('../internals/classof-raw'); +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +// ES3 wrong here +var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; + +// fallback for IE11 Script Access Denied error +var tryGet = function (it, key) { + try { + return it[key]; + } catch (error) { /* empty */ } +}; + +// getting tag from ES6+ `Object.prototype.toString` +module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) { + var O, tag, result; + return it === undefined ? 'Undefined' : it === null ? 'Null' + // @@toStringTag case + : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag + // builtinTag case + : CORRECT_ARGUMENTS ? classofRaw(O) + // ES3 arguments fallback + : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result; +}; + +},{"../internals/classof-raw":85,"../internals/to-string-tag-support":159,"../internals/well-known-symbol":163}],87:[function(require,module,exports){ +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var MATCH = wellKnownSymbol('match'); + +module.exports = function (METHOD_NAME) { + var regexp = /./; + try { + '/./'[METHOD_NAME](regexp); + } catch (e) { + try { + regexp[MATCH] = false; + return '/./'[METHOD_NAME](regexp); + } catch (f) { /* empty */ } + } return false; +}; + +},{"../internals/well-known-symbol":163}],88:[function(require,module,exports){ +var fails = require('../internals/fails'); + +module.exports = !fails(function () { + function F() { /* empty */ } + F.prototype.constructor = null; + return Object.getPrototypeOf(new F()) !== F.prototype; +}); + +},{"../internals/fails":103}],89:[function(require,module,exports){ +'use strict'; +var IteratorPrototype = require('../internals/iterators-core').IteratorPrototype; +var create = require('../internals/object-create'); +var createPropertyDescriptor = require('../internals/create-property-descriptor'); +var setToStringTag = require('../internals/set-to-string-tag'); +var Iterators = require('../internals/iterators'); + +var returnThis = function () { return this; }; + +module.exports = function (IteratorConstructor, NAME, next) { + var TO_STRING_TAG = NAME + ' Iterator'; + IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) }); + setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); + Iterators[TO_STRING_TAG] = returnThis; + return IteratorConstructor; +}; + +},{"../internals/create-property-descriptor":91,"../internals/iterators":124,"../internals/iterators-core":123,"../internals/object-create":129,"../internals/set-to-string-tag":147}],90:[function(require,module,exports){ +var DESCRIPTORS = require('../internals/descriptors'); +var definePropertyModule = require('../internals/object-define-property'); +var createPropertyDescriptor = require('../internals/create-property-descriptor'); + +module.exports = DESCRIPTORS ? function (object, key, value) { + return definePropertyModule.f(object, key, createPropertyDescriptor(1, value)); +} : function (object, key, value) { + object[key] = value; + return object; +}; + +},{"../internals/create-property-descriptor":91,"../internals/descriptors":95,"../internals/object-define-property":131}],91:[function(require,module,exports){ +module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value: value + }; +}; + +},{}],92:[function(require,module,exports){ +'use strict'; +var toPrimitive = require('../internals/to-primitive'); +var definePropertyModule = require('../internals/object-define-property'); +var createPropertyDescriptor = require('../internals/create-property-descriptor'); + +module.exports = function (object, key, value) { + var propertyKey = toPrimitive(key); + if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); + else object[propertyKey] = value; +}; + +},{"../internals/create-property-descriptor":91,"../internals/object-define-property":131,"../internals/to-primitive":158}],93:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var createIteratorConstructor = require('../internals/create-iterator-constructor'); +var getPrototypeOf = require('../internals/object-get-prototype-of'); +var setPrototypeOf = require('../internals/object-set-prototype-of'); +var setToStringTag = require('../internals/set-to-string-tag'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var redefine = require('../internals/redefine'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var IS_PURE = require('../internals/is-pure'); +var Iterators = require('../internals/iterators'); +var IteratorsCore = require('../internals/iterators-core'); + +var IteratorPrototype = IteratorsCore.IteratorPrototype; +var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS; +var ITERATOR = wellKnownSymbol('iterator'); +var KEYS = 'keys'; +var VALUES = 'values'; +var ENTRIES = 'entries'; + +var returnThis = function () { return this; }; + +module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { + createIteratorConstructor(IteratorConstructor, NAME, next); + + var getIterationMethod = function (KIND) { + if (KIND === DEFAULT && defaultIterator) return defaultIterator; + if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND]; + switch (KIND) { + case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; + case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; + case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; + } return function () { return new IteratorConstructor(this); }; + }; + + var TO_STRING_TAG = NAME + ' Iterator'; + var INCORRECT_VALUES_NAME = false; + var IterablePrototype = Iterable.prototype; + var nativeIterator = IterablePrototype[ITERATOR] + || IterablePrototype['@@iterator'] + || DEFAULT && IterablePrototype[DEFAULT]; + var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT); + var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; + var CurrentIteratorPrototype, methods, KEY; + + // fix native + if (anyNativeIterator) { + CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable())); + if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) { + if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) { + if (setPrototypeOf) { + setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype); + } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') { + createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis); + } + } + // Set @@toStringTag to native iterators + setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true); + if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis; + } + } + + // fix Array#{values, @@iterator}.name in V8 / FF + if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { + INCORRECT_VALUES_NAME = true; + defaultIterator = function values() { return nativeIterator.call(this); }; + } + + // define iterator + if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) { + createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator); + } + Iterators[NAME] = defaultIterator; + + // export additional methods + if (DEFAULT) { + methods = { + values: getIterationMethod(VALUES), + keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), + entries: getIterationMethod(ENTRIES) + }; + if (FORCED) for (KEY in methods) { + if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { + redefine(IterablePrototype, KEY, methods[KEY]); + } + } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods); + } + + return methods; +}; + +},{"../internals/create-iterator-constructor":89,"../internals/create-non-enumerable-property":90,"../internals/export":102,"../internals/is-pure":121,"../internals/iterators":124,"../internals/iterators-core":123,"../internals/object-get-prototype-of":136,"../internals/object-set-prototype-of":140,"../internals/redefine":143,"../internals/set-to-string-tag":147,"../internals/well-known-symbol":163}],94:[function(require,module,exports){ +var path = require('../internals/path'); +var has = require('../internals/has'); +var wrappedWellKnownSymbolModule = require('../internals/well-known-symbol-wrapped'); +var defineProperty = require('../internals/object-define-property').f; + +module.exports = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, { + value: wrappedWellKnownSymbolModule.f(NAME) + }); +}; + +},{"../internals/has":109,"../internals/object-define-property":131,"../internals/path":142,"../internals/well-known-symbol-wrapped":162}],95:[function(require,module,exports){ +var fails = require('../internals/fails'); + +// Thank's IE8 for his funny defineProperty +module.exports = !fails(function () { + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; +}); + +},{"../internals/fails":103}],96:[function(require,module,exports){ +var global = require('../internals/global'); +var isObject = require('../internals/is-object'); + +var document = global.document; +// typeof document.createElement is 'object' in old IE +var EXISTS = isObject(document) && isObject(document.createElement); + +module.exports = function (it) { + return EXISTS ? document.createElement(it) : {}; +}; + +},{"../internals/global":108,"../internals/is-object":120}],97:[function(require,module,exports){ +// iterable DOM collections +// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods +module.exports = { + CSSRuleList: 0, + CSSStyleDeclaration: 0, + CSSValueList: 0, + ClientRectList: 0, + DOMRectList: 0, + DOMStringList: 0, + DOMTokenList: 1, + DataTransferItemList: 0, + FileList: 0, + HTMLAllCollection: 0, + HTMLCollection: 0, + HTMLFormElement: 0, + HTMLSelectElement: 0, + MediaList: 0, + MimeTypeArray: 0, + NamedNodeMap: 0, + NodeList: 1, + PaintRequestList: 0, + Plugin: 0, + PluginArray: 0, + SVGLengthList: 0, + SVGNumberList: 0, + SVGPathSegList: 0, + SVGPointList: 0, + SVGStringList: 0, + SVGTransformList: 0, + SourceBufferList: 0, + StyleSheetList: 0, + TextTrackCueList: 0, + TextTrackList: 0, + TouchList: 0 +}; + +},{}],98:[function(require,module,exports){ +var getBuiltIn = require('../internals/get-built-in'); + +module.exports = getBuiltIn('navigator', 'userAgent') || ''; + +},{"../internals/get-built-in":105}],99:[function(require,module,exports){ +var global = require('../internals/global'); +var userAgent = require('../internals/engine-user-agent'); + +var process = global.process; +var versions = process && process.versions; +var v8 = versions && versions.v8; +var match, version; + +if (v8) { + match = v8.split('.'); + version = match[0] + match[1]; +} else if (userAgent) { + match = userAgent.match(/Edge\/(\d+)/); + if (!match || match[1] >= 74) { + match = userAgent.match(/Chrome\/(\d+)/); + if (match) version = match[1]; + } +} + +module.exports = version && +version; + +},{"../internals/engine-user-agent":98,"../internals/global":108}],100:[function(require,module,exports){ +var path = require('../internals/path'); + +module.exports = function (CONSTRUCTOR) { + return path[CONSTRUCTOR + 'Prototype']; +}; + +},{"../internals/path":142}],101:[function(require,module,exports){ +// IE8- don't enum bug keys +module.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf' +]; + +},{}],102:[function(require,module,exports){ +'use strict'; +var global = require('../internals/global'); +var getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f; +var isForced = require('../internals/is-forced'); +var path = require('../internals/path'); +var bind = require('../internals/function-bind-context'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var has = require('../internals/has'); + +var wrapConstructor = function (NativeConstructor) { + var Wrapper = function (a, b, c) { + if (this instanceof NativeConstructor) { + switch (arguments.length) { + case 0: return new NativeConstructor(); + case 1: return new NativeConstructor(a); + case 2: return new NativeConstructor(a, b); + } return new NativeConstructor(a, b, c); + } return NativeConstructor.apply(this, arguments); + }; + Wrapper.prototype = NativeConstructor.prototype; + return Wrapper; +}; + +/* + options.target - name of the target object + options.global - target is the global object + options.stat - export as static methods of target + options.proto - export as prototype methods of target + options.real - real prototype method for the `pure` version + options.forced - export even if the native feature is available + options.bind - bind methods to the target, required for the `pure` version + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version + options.unsafe - use the simple assignment of property instead of delete + defineProperty + options.sham - add a flag to not completely full polyfills + options.enumerable - export as enumerable property + options.noTargetGet - prevent calling a getter on target +*/ +module.exports = function (options, source) { + var TARGET = options.target; + var GLOBAL = options.global; + var STATIC = options.stat; + var PROTO = options.proto; + + var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : (global[TARGET] || {}).prototype; + + var target = GLOBAL ? path : path[TARGET] || (path[TARGET] = {}); + var targetPrototype = target.prototype; + + var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE; + var key, sourceProperty, targetProperty, nativeProperty, resultProperty, descriptor; + + for (key in source) { + FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); + // contains in native + USE_NATIVE = !FORCED && nativeSource && has(nativeSource, key); + + targetProperty = target[key]; + + if (USE_NATIVE) if (options.noTargetGet) { + descriptor = getOwnPropertyDescriptor(nativeSource, key); + nativeProperty = descriptor && descriptor.value; + } else nativeProperty = nativeSource[key]; + + // export native or implementation + sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key]; + + if (USE_NATIVE && typeof targetProperty === typeof sourceProperty) continue; + + // bind timers to global for call from export context + if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global); + // wrap global constructors for prevent changs in this version + else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty); + // make static versions for prototype methods + else if (PROTO && typeof sourceProperty == 'function') resultProperty = bind(Function.call, sourceProperty); + // default case + else resultProperty = sourceProperty; + + // add a flag to not completely full polyfills + if (options.sham || (sourceProperty && sourceProperty.sham) || (targetProperty && targetProperty.sham)) { + createNonEnumerableProperty(resultProperty, 'sham', true); + } + + target[key] = resultProperty; + + if (PROTO) { + VIRTUAL_PROTOTYPE = TARGET + 'Prototype'; + if (!has(path, VIRTUAL_PROTOTYPE)) { + createNonEnumerableProperty(path, VIRTUAL_PROTOTYPE, {}); + } + // export virtual prototype methods + path[VIRTUAL_PROTOTYPE][key] = sourceProperty; + // export real prototype methods + if (options.real && targetPrototype && !targetPrototype[key]) { + createNonEnumerableProperty(targetPrototype, key, sourceProperty); + } + } + } +}; + +},{"../internals/create-non-enumerable-property":90,"../internals/function-bind-context":104,"../internals/global":108,"../internals/has":109,"../internals/is-forced":118,"../internals/object-get-own-property-descriptor":132,"../internals/path":142}],103:[function(require,module,exports){ +module.exports = function (exec) { + try { + return !!exec(); + } catch (error) { + return true; + } +}; + +},{}],104:[function(require,module,exports){ +var aFunction = require('../internals/a-function'); + +// optional / simple context binding +module.exports = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + switch (length) { + case 0: return function () { + return fn.call(that); + }; + case 1: return function (a) { + return fn.call(that, a); + }; + case 2: return function (a, b) { + return fn.call(that, a, b); + }; + case 3: return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; +}; + +},{"../internals/a-function":70}],105:[function(require,module,exports){ +var path = require('../internals/path'); +var global = require('../internals/global'); + +var aFunction = function (variable) { + return typeof variable == 'function' ? variable : undefined; +}; + +module.exports = function (namespace, method) { + return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace]) + : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method]; +}; + +},{"../internals/global":108,"../internals/path":142}],106:[function(require,module,exports){ +var classof = require('../internals/classof'); +var Iterators = require('../internals/iterators'); +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var ITERATOR = wellKnownSymbol('iterator'); + +module.exports = function (it) { + if (it != undefined) return it[ITERATOR] + || it['@@iterator'] + || Iterators[classof(it)]; +}; + +},{"../internals/classof":86,"../internals/iterators":124,"../internals/well-known-symbol":163}],107:[function(require,module,exports){ +var anObject = require('../internals/an-object'); +var getIteratorMethod = require('../internals/get-iterator-method'); + +module.exports = function (it) { + var iteratorMethod = getIteratorMethod(it); + if (typeof iteratorMethod != 'function') { + throw TypeError(String(it) + ' is not iterable'); + } return anObject(iteratorMethod.call(it)); +}; + +},{"../internals/an-object":73,"../internals/get-iterator-method":106}],108:[function(require,module,exports){ +(function (global){(function (){ +var check = function (it) { + return it && it.Math == Math && it; +}; + +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +module.exports = + // eslint-disable-next-line no-undef + check(typeof globalThis == 'object' && globalThis) || + check(typeof window == 'object' && window) || + check(typeof self == 'object' && self) || + check(typeof global == 'object' && global) || + // eslint-disable-next-line no-new-func + Function('return this')(); + +}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{}],109:[function(require,module,exports){ +var hasOwnProperty = {}.hasOwnProperty; + +module.exports = function (it, key) { + return hasOwnProperty.call(it, key); +}; + +},{}],110:[function(require,module,exports){ +module.exports = {}; + +},{}],111:[function(require,module,exports){ +var getBuiltIn = require('../internals/get-built-in'); + +module.exports = getBuiltIn('document', 'documentElement'); + +},{"../internals/get-built-in":105}],112:[function(require,module,exports){ +var DESCRIPTORS = require('../internals/descriptors'); +var fails = require('../internals/fails'); +var createElement = require('../internals/document-create-element'); + +// Thank's IE8 for his funny defineProperty +module.exports = !DESCRIPTORS && !fails(function () { + return Object.defineProperty(createElement('div'), 'a', { + get: function () { return 7; } + }).a != 7; +}); + +},{"../internals/descriptors":95,"../internals/document-create-element":96,"../internals/fails":103}],113:[function(require,module,exports){ +var fails = require('../internals/fails'); +var classof = require('../internals/classof-raw'); + +var split = ''.split; + +// fallback for non-array-like ES3 and non-enumerable old V8 strings +module.exports = fails(function () { + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 + // eslint-disable-next-line no-prototype-builtins + return !Object('z').propertyIsEnumerable(0); +}) ? function (it) { + return classof(it) == 'String' ? split.call(it, '') : Object(it); +} : Object; + +},{"../internals/classof-raw":85,"../internals/fails":103}],114:[function(require,module,exports){ +var store = require('../internals/shared-store'); + +var functionToString = Function.toString; + +// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper +if (typeof store.inspectSource != 'function') { + store.inspectSource = function (it) { + return functionToString.call(it); + }; +} + +module.exports = store.inspectSource; + +},{"../internals/shared-store":149}],115:[function(require,module,exports){ +var NATIVE_WEAK_MAP = require('../internals/native-weak-map'); +var global = require('../internals/global'); +var isObject = require('../internals/is-object'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var objectHas = require('../internals/has'); +var sharedKey = require('../internals/shared-key'); +var hiddenKeys = require('../internals/hidden-keys'); + +var WeakMap = global.WeakMap; +var set, get, has; + +var enforce = function (it) { + return has(it) ? get(it) : set(it, {}); +}; + +var getterFor = function (TYPE) { + return function (it) { + var state; + if (!isObject(it) || (state = get(it)).type !== TYPE) { + throw TypeError('Incompatible receiver, ' + TYPE + ' required'); + } return state; + }; +}; + +if (NATIVE_WEAK_MAP) { + var store = new WeakMap(); + var wmget = store.get; + var wmhas = store.has; + var wmset = store.set; + set = function (it, metadata) { + wmset.call(store, it, metadata); + return metadata; + }; + get = function (it) { + return wmget.call(store, it) || {}; + }; + has = function (it) { + return wmhas.call(store, it); + }; +} else { + var STATE = sharedKey('state'); + hiddenKeys[STATE] = true; + set = function (it, metadata) { + createNonEnumerableProperty(it, STATE, metadata); + return metadata; + }; + get = function (it) { + return objectHas(it, STATE) ? it[STATE] : {}; + }; + has = function (it) { + return objectHas(it, STATE); + }; +} + +module.exports = { + set: set, + get: get, + has: has, + enforce: enforce, + getterFor: getterFor +}; + +},{"../internals/create-non-enumerable-property":90,"../internals/global":108,"../internals/has":109,"../internals/hidden-keys":110,"../internals/is-object":120,"../internals/native-weak-map":126,"../internals/shared-key":148}],116:[function(require,module,exports){ +var wellKnownSymbol = require('../internals/well-known-symbol'); +var Iterators = require('../internals/iterators'); + +var ITERATOR = wellKnownSymbol('iterator'); +var ArrayPrototype = Array.prototype; + +// check on default Array iterator +module.exports = function (it) { + return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it); +}; + +},{"../internals/iterators":124,"../internals/well-known-symbol":163}],117:[function(require,module,exports){ +var classof = require('../internals/classof-raw'); + +// `IsArray` abstract operation +// https://tc39.github.io/ecma262/#sec-isarray +module.exports = Array.isArray || function isArray(arg) { + return classof(arg) == 'Array'; +}; + +},{"../internals/classof-raw":85}],118:[function(require,module,exports){ +var fails = require('../internals/fails'); + +var replacement = /#|\.prototype\./; + +var isForced = function (feature, detection) { + var value = data[normalize(feature)]; + return value == POLYFILL ? true + : value == NATIVE ? false + : typeof detection == 'function' ? fails(detection) + : !!detection; +}; + +var normalize = isForced.normalize = function (string) { + return String(string).replace(replacement, '.').toLowerCase(); +}; + +var data = isForced.data = {}; +var NATIVE = isForced.NATIVE = 'N'; +var POLYFILL = isForced.POLYFILL = 'P'; + +module.exports = isForced; + +},{"../internals/fails":103}],119:[function(require,module,exports){ +var classof = require('../internals/classof'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var Iterators = require('../internals/iterators'); + +var ITERATOR = wellKnownSymbol('iterator'); + +module.exports = function (it) { + var O = Object(it); + return O[ITERATOR] !== undefined + || '@@iterator' in O + // eslint-disable-next-line no-prototype-builtins + || Iterators.hasOwnProperty(classof(O)); +}; + +},{"../internals/classof":86,"../internals/iterators":124,"../internals/well-known-symbol":163}],120:[function(require,module,exports){ +module.exports = function (it) { + return typeof it === 'object' ? it !== null : typeof it === 'function'; +}; + +},{}],121:[function(require,module,exports){ +module.exports = true; + +},{}],122:[function(require,module,exports){ +var isObject = require('../internals/is-object'); +var classof = require('../internals/classof-raw'); +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var MATCH = wellKnownSymbol('match'); + +// `IsRegExp` abstract operation +// https://tc39.github.io/ecma262/#sec-isregexp +module.exports = function (it) { + var isRegExp; + return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); +}; + +},{"../internals/classof-raw":85,"../internals/is-object":120,"../internals/well-known-symbol":163}],123:[function(require,module,exports){ +'use strict'; +var getPrototypeOf = require('../internals/object-get-prototype-of'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var has = require('../internals/has'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var IS_PURE = require('../internals/is-pure'); + +var ITERATOR = wellKnownSymbol('iterator'); +var BUGGY_SAFARI_ITERATORS = false; + +var returnThis = function () { return this; }; + +// `%IteratorPrototype%` object +// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object +var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; + +if ([].keys) { + arrayIterator = [].keys(); + // Safari 8 has buggy iterators w/o `next` + if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; + else { + PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator)); + if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; + } +} + +if (IteratorPrototype == undefined) IteratorPrototype = {}; + +// 25.1.2.1.1 %IteratorPrototype%[@@iterator]() +if (!IS_PURE && !has(IteratorPrototype, ITERATOR)) { + createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis); +} + +module.exports = { + IteratorPrototype: IteratorPrototype, + BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS +}; + +},{"../internals/create-non-enumerable-property":90,"../internals/has":109,"../internals/is-pure":121,"../internals/object-get-prototype-of":136,"../internals/well-known-symbol":163}],124:[function(require,module,exports){ +arguments[4][110][0].apply(exports,arguments) +},{"dup":110}],125:[function(require,module,exports){ +var fails = require('../internals/fails'); + +module.exports = !!Object.getOwnPropertySymbols && !fails(function () { + // Chrome 38 Symbol has incorrect toString conversion + // eslint-disable-next-line no-undef + return !String(Symbol()); +}); + +},{"../internals/fails":103}],126:[function(require,module,exports){ +var global = require('../internals/global'); +var inspectSource = require('../internals/inspect-source'); + +var WeakMap = global.WeakMap; + +module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap)); + +},{"../internals/global":108,"../internals/inspect-source":114}],127:[function(require,module,exports){ +var isRegExp = require('../internals/is-regexp'); + +module.exports = function (it) { + if (isRegExp(it)) { + throw TypeError("The method doesn't accept regular expressions"); + } return it; +}; + +},{"../internals/is-regexp":122}],128:[function(require,module,exports){ +var global = require('../internals/global'); +var trim = require('../internals/string-trim').trim; +var whitespaces = require('../internals/whitespaces'); + +var $parseInt = global.parseInt; +var hex = /^[+-]?0[Xx]/; +var FORCED = $parseInt(whitespaces + '08') !== 8 || $parseInt(whitespaces + '0x16') !== 22; + +// `parseInt` method +// https://tc39.github.io/ecma262/#sec-parseint-string-radix +module.exports = FORCED ? function parseInt(string, radix) { + var S = trim(String(string)); + return $parseInt(S, (radix >>> 0) || (hex.test(S) ? 16 : 10)); +} : $parseInt; + +},{"../internals/global":108,"../internals/string-trim":152,"../internals/whitespaces":164}],129:[function(require,module,exports){ +var anObject = require('../internals/an-object'); +var defineProperties = require('../internals/object-define-properties'); +var enumBugKeys = require('../internals/enum-bug-keys'); +var hiddenKeys = require('../internals/hidden-keys'); +var html = require('../internals/html'); +var documentCreateElement = require('../internals/document-create-element'); +var sharedKey = require('../internals/shared-key'); + +var GT = '>'; +var LT = '<'; +var PROTOTYPE = 'prototype'; +var SCRIPT = 'script'; +var IE_PROTO = sharedKey('IE_PROTO'); + +var EmptyConstructor = function () { /* empty */ }; + +var scriptTag = function (content) { + return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT; +}; + +// Create object with fake `null` prototype: use ActiveX Object with cleared prototype +var NullProtoObjectViaActiveX = function (activeXDocument) { + activeXDocument.write(scriptTag('')); + activeXDocument.close(); + var temp = activeXDocument.parentWindow.Object; + activeXDocument = null; // avoid memory leak + return temp; +}; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var NullProtoObjectViaIFrame = function () { + // Thrash, waste and sodomy: IE GC bug + var iframe = documentCreateElement('iframe'); + var JS = 'java' + SCRIPT + ':'; + var iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + // https://github.com/zloirock/core-js/issues/475 + iframe.src = String(JS); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(scriptTag('document.F=Object')); + iframeDocument.close(); + return iframeDocument.F; +}; + +// Check for document.domain and active x support +// No need to use active x approach when document.domain is not set +// see https://github.com/es-shims/es5-shim/issues/150 +// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346 +// avoid IE GC bug +var activeXDocument; +var NullProtoObject = function () { + try { + /* global ActiveXObject */ + activeXDocument = document.domain && new ActiveXObject('htmlfile'); + } catch (error) { /* ignore */ } + NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame(); + var length = enumBugKeys.length; + while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; + return NullProtoObject(); +}; + +hiddenKeys[IE_PROTO] = true; + +// `Object.create` method +// https://tc39.github.io/ecma262/#sec-object.create +module.exports = Object.create || function create(O, Properties) { + var result; + if (O !== null) { + EmptyConstructor[PROTOTYPE] = anObject(O); + result = new EmptyConstructor(); + EmptyConstructor[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = NullProtoObject(); + return Properties === undefined ? result : defineProperties(result, Properties); +}; + +},{"../internals/an-object":73,"../internals/document-create-element":96,"../internals/enum-bug-keys":101,"../internals/hidden-keys":110,"../internals/html":111,"../internals/object-define-properties":130,"../internals/shared-key":148}],130:[function(require,module,exports){ +var DESCRIPTORS = require('../internals/descriptors'); +var definePropertyModule = require('../internals/object-define-property'); +var anObject = require('../internals/an-object'); +var objectKeys = require('../internals/object-keys'); + +// `Object.defineProperties` method +// https://tc39.github.io/ecma262/#sec-object.defineproperties +module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + var keys = objectKeys(Properties); + var length = keys.length; + var index = 0; + var key; + while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]); + return O; +}; + +},{"../internals/an-object":73,"../internals/descriptors":95,"../internals/object-define-property":131,"../internals/object-keys":138}],131:[function(require,module,exports){ +var DESCRIPTORS = require('../internals/descriptors'); +var IE8_DOM_DEFINE = require('../internals/ie8-dom-define'); +var anObject = require('../internals/an-object'); +var toPrimitive = require('../internals/to-primitive'); + +var nativeDefineProperty = Object.defineProperty; + +// `Object.defineProperty` method +// https://tc39.github.io/ecma262/#sec-object.defineproperty +exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPrimitive(P, true); + anObject(Attributes); + if (IE8_DOM_DEFINE) try { + return nativeDefineProperty(O, P, Attributes); + } catch (error) { /* empty */ } + if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported'); + if ('value' in Attributes) O[P] = Attributes.value; + return O; +}; + +},{"../internals/an-object":73,"../internals/descriptors":95,"../internals/ie8-dom-define":112,"../internals/to-primitive":158}],132:[function(require,module,exports){ +var DESCRIPTORS = require('../internals/descriptors'); +var propertyIsEnumerableModule = require('../internals/object-property-is-enumerable'); +var createPropertyDescriptor = require('../internals/create-property-descriptor'); +var toIndexedObject = require('../internals/to-indexed-object'); +var toPrimitive = require('../internals/to-primitive'); +var has = require('../internals/has'); +var IE8_DOM_DEFINE = require('../internals/ie8-dom-define'); + +var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; + +// `Object.getOwnPropertyDescriptor` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor +exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { + O = toIndexedObject(O); + P = toPrimitive(P, true); + if (IE8_DOM_DEFINE) try { + return nativeGetOwnPropertyDescriptor(O, P); + } catch (error) { /* empty */ } + if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]); +}; + +},{"../internals/create-property-descriptor":91,"../internals/descriptors":95,"../internals/has":109,"../internals/ie8-dom-define":112,"../internals/object-property-is-enumerable":139,"../internals/to-indexed-object":154,"../internals/to-primitive":158}],133:[function(require,module,exports){ +var toIndexedObject = require('../internals/to-indexed-object'); +var nativeGetOwnPropertyNames = require('../internals/object-get-own-property-names').f; + +var toString = {}.toString; + +var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames + ? Object.getOwnPropertyNames(window) : []; + +var getWindowNames = function (it) { + try { + return nativeGetOwnPropertyNames(it); + } catch (error) { + return windowNames.slice(); + } +}; + +// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window +module.exports.f = function getOwnPropertyNames(it) { + return windowNames && toString.call(it) == '[object Window]' + ? getWindowNames(it) + : nativeGetOwnPropertyNames(toIndexedObject(it)); +}; + +},{"../internals/object-get-own-property-names":134,"../internals/to-indexed-object":154}],134:[function(require,module,exports){ +var internalObjectKeys = require('../internals/object-keys-internal'); +var enumBugKeys = require('../internals/enum-bug-keys'); + +var hiddenKeys = enumBugKeys.concat('length', 'prototype'); + +// `Object.getOwnPropertyNames` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertynames +exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return internalObjectKeys(O, hiddenKeys); +}; + +},{"../internals/enum-bug-keys":101,"../internals/object-keys-internal":137}],135:[function(require,module,exports){ +exports.f = Object.getOwnPropertySymbols; + +},{}],136:[function(require,module,exports){ +var has = require('../internals/has'); +var toObject = require('../internals/to-object'); +var sharedKey = require('../internals/shared-key'); +var CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter'); + +var IE_PROTO = sharedKey('IE_PROTO'); +var ObjectPrototype = Object.prototype; + +// `Object.getPrototypeOf` method +// https://tc39.github.io/ecma262/#sec-object.getprototypeof +module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) { + O = toObject(O); + if (has(O, IE_PROTO)) return O[IE_PROTO]; + if (typeof O.constructor == 'function' && O instanceof O.constructor) { + return O.constructor.prototype; + } return O instanceof Object ? ObjectPrototype : null; +}; + +},{"../internals/correct-prototype-getter":88,"../internals/has":109,"../internals/shared-key":148,"../internals/to-object":157}],137:[function(require,module,exports){ +var has = require('../internals/has'); +var toIndexedObject = require('../internals/to-indexed-object'); +var indexOf = require('../internals/array-includes').indexOf; +var hiddenKeys = require('../internals/hidden-keys'); + +module.exports = function (object, names) { + var O = toIndexedObject(object); + var i = 0; + var result = []; + var key; + for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while (names.length > i) if (has(O, key = names[i++])) { + ~indexOf(result, key) || result.push(key); + } + return result; +}; + +},{"../internals/array-includes":76,"../internals/has":109,"../internals/hidden-keys":110,"../internals/to-indexed-object":154}],138:[function(require,module,exports){ +var internalObjectKeys = require('../internals/object-keys-internal'); +var enumBugKeys = require('../internals/enum-bug-keys'); + +// `Object.keys` method +// https://tc39.github.io/ecma262/#sec-object.keys +module.exports = Object.keys || function keys(O) { + return internalObjectKeys(O, enumBugKeys); +}; + +},{"../internals/enum-bug-keys":101,"../internals/object-keys-internal":137}],139:[function(require,module,exports){ +'use strict'; +var nativePropertyIsEnumerable = {}.propertyIsEnumerable; +var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; + +// Nashorn ~ JDK8 bug +var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1); + +// `Object.prototype.propertyIsEnumerable` method implementation +// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable +exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) { + var descriptor = getOwnPropertyDescriptor(this, V); + return !!descriptor && descriptor.enumerable; +} : nativePropertyIsEnumerable; + +},{}],140:[function(require,module,exports){ +var anObject = require('../internals/an-object'); +var aPossiblePrototype = require('../internals/a-possible-prototype'); + +// `Object.setPrototypeOf` method +// https://tc39.github.io/ecma262/#sec-object.setprototypeof +// Works with __proto__ only. Old v8 can't work with null proto objects. +/* eslint-disable no-proto */ +module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { + var CORRECT_SETTER = false; + var test = {}; + var setter; + try { + setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set; + setter.call(test, []); + CORRECT_SETTER = test instanceof Array; + } catch (error) { /* empty */ } + return function setPrototypeOf(O, proto) { + anObject(O); + aPossiblePrototype(proto); + if (CORRECT_SETTER) setter.call(O, proto); + else O.__proto__ = proto; + return O; + }; +}() : undefined); + +},{"../internals/a-possible-prototype":71,"../internals/an-object":73}],141:[function(require,module,exports){ +'use strict'; +var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support'); +var classof = require('../internals/classof'); + +// `Object.prototype.toString` method implementation +// https://tc39.github.io/ecma262/#sec-object.prototype.tostring +module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() { + return '[object ' + classof(this) + ']'; +}; + +},{"../internals/classof":86,"../internals/to-string-tag-support":159}],142:[function(require,module,exports){ +arguments[4][110][0].apply(exports,arguments) +},{"dup":110}],143:[function(require,module,exports){ +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); + +module.exports = function (target, key, value, options) { + if (options && options.enumerable) target[key] = value; + else createNonEnumerableProperty(target, key, value); +}; + +},{"../internals/create-non-enumerable-property":90}],144:[function(require,module,exports){ +'use strict'; +var anObject = require('../internals/an-object'); + +// `RegExp.prototype.flags` getter implementation +// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags +module.exports = function () { + var that = anObject(this); + var result = ''; + if (that.global) result += 'g'; + if (that.ignoreCase) result += 'i'; + if (that.multiline) result += 'm'; + if (that.dotAll) result += 's'; + if (that.unicode) result += 'u'; + if (that.sticky) result += 'y'; + return result; +}; + +},{"../internals/an-object":73}],145:[function(require,module,exports){ +// `RequireObjectCoercible` abstract operation +// https://tc39.github.io/ecma262/#sec-requireobjectcoercible +module.exports = function (it) { + if (it == undefined) throw TypeError("Can't call method on " + it); + return it; +}; + +},{}],146:[function(require,module,exports){ +var global = require('../internals/global'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); + +module.exports = function (key, value) { + try { + createNonEnumerableProperty(global, key, value); + } catch (error) { + global[key] = value; + } return value; +}; + +},{"../internals/create-non-enumerable-property":90,"../internals/global":108}],147:[function(require,module,exports){ +var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support'); +var defineProperty = require('../internals/object-define-property').f; +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var has = require('../internals/has'); +var toString = require('../internals/object-to-string'); +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + +module.exports = function (it, TAG, STATIC, SET_METHOD) { + if (it) { + var target = STATIC ? it : it.prototype; + if (!has(target, TO_STRING_TAG)) { + defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG }); + } + if (SET_METHOD && !TO_STRING_TAG_SUPPORT) { + createNonEnumerableProperty(target, 'toString', toString); + } + } +}; + +},{"../internals/create-non-enumerable-property":90,"../internals/has":109,"../internals/object-define-property":131,"../internals/object-to-string":141,"../internals/to-string-tag-support":159,"../internals/well-known-symbol":163}],148:[function(require,module,exports){ +var shared = require('../internals/shared'); +var uid = require('../internals/uid'); + +var keys = shared('keys'); + +module.exports = function (key) { + return keys[key] || (keys[key] = uid(key)); +}; + +},{"../internals/shared":150,"../internals/uid":160}],149:[function(require,module,exports){ +var global = require('../internals/global'); +var setGlobal = require('../internals/set-global'); + +var SHARED = '__core-js_shared__'; +var store = global[SHARED] || setGlobal(SHARED, {}); + +module.exports = store; + +},{"../internals/global":108,"../internals/set-global":146}],150:[function(require,module,exports){ +var IS_PURE = require('../internals/is-pure'); +var store = require('../internals/shared-store'); + +(module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); +})('versions', []).push({ + version: '3.6.4', + mode: IS_PURE ? 'pure' : 'global', + copyright: '© 2020 Denis Pushkarev (zloirock.ru)' +}); + +},{"../internals/is-pure":121,"../internals/shared-store":149}],151:[function(require,module,exports){ +var toInteger = require('../internals/to-integer'); +var requireObjectCoercible = require('../internals/require-object-coercible'); + +// `String.prototype.{ codePointAt, at }` methods implementation +var createMethod = function (CONVERT_TO_STRING) { + return function ($this, pos) { + var S = String(requireObjectCoercible($this)); + var position = toInteger(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; + first = S.charCodeAt(position); + return first < 0xD800 || first > 0xDBFF || position + 1 === size + || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF + ? CONVERT_TO_STRING ? S.charAt(position) : first + : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + }; +}; + +module.exports = { + // `String.prototype.codePointAt` method + // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat + codeAt: createMethod(false), + // `String.prototype.at` method + // https://github.com/mathiasbynens/String.prototype.at + charAt: createMethod(true) +}; + +},{"../internals/require-object-coercible":145,"../internals/to-integer":155}],152:[function(require,module,exports){ +var requireObjectCoercible = require('../internals/require-object-coercible'); +var whitespaces = require('../internals/whitespaces'); + +var whitespace = '[' + whitespaces + ']'; +var ltrim = RegExp('^' + whitespace + whitespace + '*'); +var rtrim = RegExp(whitespace + whitespace + '*$'); + +// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation +var createMethod = function (TYPE) { + return function ($this) { + var string = String(requireObjectCoercible($this)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; +}; + +module.exports = { + // `String.prototype.{ trimLeft, trimStart }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart + start: createMethod(1), + // `String.prototype.{ trimRight, trimEnd }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimend + end: createMethod(2), + // `String.prototype.trim` method + // https://tc39.github.io/ecma262/#sec-string.prototype.trim + trim: createMethod(3) +}; + +},{"../internals/require-object-coercible":145,"../internals/whitespaces":164}],153:[function(require,module,exports){ +var toInteger = require('../internals/to-integer'); + +var max = Math.max; +var min = Math.min; + +// Helper for a popular repeating case of the spec: +// Let integer be ? ToInteger(index). +// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length). +module.exports = function (index, length) { + var integer = toInteger(index); + return integer < 0 ? max(integer + length, 0) : min(integer, length); +}; + +},{"../internals/to-integer":155}],154:[function(require,module,exports){ +// toObject with fallback for non-array-like ES3 strings +var IndexedObject = require('../internals/indexed-object'); +var requireObjectCoercible = require('../internals/require-object-coercible'); + +module.exports = function (it) { + return IndexedObject(requireObjectCoercible(it)); +}; + +},{"../internals/indexed-object":113,"../internals/require-object-coercible":145}],155:[function(require,module,exports){ +var ceil = Math.ceil; +var floor = Math.floor; + +// `ToInteger` abstract operation +// https://tc39.github.io/ecma262/#sec-tointeger +module.exports = function (argument) { + return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument); +}; + +},{}],156:[function(require,module,exports){ +var toInteger = require('../internals/to-integer'); + +var min = Math.min; + +// `ToLength` abstract operation +// https://tc39.github.io/ecma262/#sec-tolength +module.exports = function (argument) { + return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 +}; + +},{"../internals/to-integer":155}],157:[function(require,module,exports){ +var requireObjectCoercible = require('../internals/require-object-coercible'); + +// `ToObject` abstract operation +// https://tc39.github.io/ecma262/#sec-toobject +module.exports = function (argument) { + return Object(requireObjectCoercible(argument)); +}; + +},{"../internals/require-object-coercible":145}],158:[function(require,module,exports){ +var isObject = require('../internals/is-object'); + +// `ToPrimitive` abstract operation +// https://tc39.github.io/ecma262/#sec-toprimitive +// instead of the ES6 spec version, we didn't implement @@toPrimitive case +// and the second argument - flag - preferred type is a string +module.exports = function (input, PREFERRED_STRING) { + if (!isObject(input)) return input; + var fn, val; + if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val; + if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val; + if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val; + throw TypeError("Can't convert object to primitive value"); +}; + +},{"../internals/is-object":120}],159:[function(require,module,exports){ +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var test = {}; + +test[TO_STRING_TAG] = 'z'; + +module.exports = String(test) === '[object z]'; + +},{"../internals/well-known-symbol":163}],160:[function(require,module,exports){ +var id = 0; +var postfix = Math.random(); + +module.exports = function (key) { + return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36); +}; + +},{}],161:[function(require,module,exports){ +var NATIVE_SYMBOL = require('../internals/native-symbol'); + +module.exports = NATIVE_SYMBOL + // eslint-disable-next-line no-undef + && !Symbol.sham + // eslint-disable-next-line no-undef + && typeof Symbol.iterator == 'symbol'; + +},{"../internals/native-symbol":125}],162:[function(require,module,exports){ +var wellKnownSymbol = require('../internals/well-known-symbol'); + +exports.f = wellKnownSymbol; + +},{"../internals/well-known-symbol":163}],163:[function(require,module,exports){ +var global = require('../internals/global'); +var shared = require('../internals/shared'); +var has = require('../internals/has'); +var uid = require('../internals/uid'); +var NATIVE_SYMBOL = require('../internals/native-symbol'); +var USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid'); + +var WellKnownSymbolsStore = shared('wks'); +var Symbol = global.Symbol; +var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid; + +module.exports = function (name) { + if (!has(WellKnownSymbolsStore, name)) { + if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name]; + else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name); + } return WellKnownSymbolsStore[name]; +}; + +},{"../internals/global":108,"../internals/has":109,"../internals/native-symbol":125,"../internals/shared":150,"../internals/uid":160,"../internals/use-symbol-as-uid":161}],164:[function(require,module,exports){ +// a string of all valid unicode whitespaces +// eslint-disable-next-line max-len +module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + +},{}],165:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var fails = require('../internals/fails'); +var isArray = require('../internals/is-array'); +var isObject = require('../internals/is-object'); +var toObject = require('../internals/to-object'); +var toLength = require('../internals/to-length'); +var createProperty = require('../internals/create-property'); +var arraySpeciesCreate = require('../internals/array-species-create'); +var arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var V8_VERSION = require('../internals/engine-v8-version'); + +var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable'); +var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; +var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded'; + +// We can't use this feature detection in V8 since it causes +// deoptimization and serious performance degradation +// https://github.com/zloirock/core-js/issues/679 +var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () { + var array = []; + array[IS_CONCAT_SPREADABLE] = false; + return array.concat()[0] !== array; +}); + +var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat'); + +var isConcatSpreadable = function (O) { + if (!isObject(O)) return false; + var spreadable = O[IS_CONCAT_SPREADABLE]; + return spreadable !== undefined ? !!spreadable : isArray(O); +}; + +var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT; + +// `Array.prototype.concat` method +// https://tc39.github.io/ecma262/#sec-array.prototype.concat +// with adding support of @@isConcatSpreadable and @@species +$({ target: 'Array', proto: true, forced: FORCED }, { + concat: function concat(arg) { // eslint-disable-line no-unused-vars + var O = toObject(this); + var A = arraySpeciesCreate(O, 0); + var n = 0; + var i, k, length, len, E; + for (i = -1, length = arguments.length; i < length; i++) { + E = i === -1 ? O : arguments[i]; + if (isConcatSpreadable(E)) { + len = toLength(E.length); + if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]); + } else { + if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + createProperty(A, n++, E); + } + } + A.length = n; + return A; + } +}); + +},{"../internals/array-method-has-species-support":78,"../internals/array-species-create":82,"../internals/create-property":92,"../internals/engine-v8-version":99,"../internals/export":102,"../internals/fails":103,"../internals/is-array":117,"../internals/is-object":120,"../internals/to-length":156,"../internals/to-object":157,"../internals/well-known-symbol":163}],166:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var forEach = require('../internals/array-for-each'); + +// `Array.prototype.forEach` method +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +$({ target: 'Array', proto: true, forced: [].forEach != forEach }, { + forEach: forEach +}); + +},{"../internals/array-for-each":74,"../internals/export":102}],167:[function(require,module,exports){ +var $ = require('../internals/export'); +var from = require('../internals/array-from'); +var checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration'); + +var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { + Array.from(iterable); +}); + +// `Array.from` method +// https://tc39.github.io/ecma262/#sec-array.from +$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { + from: from +}); + +},{"../internals/array-from":75,"../internals/check-correctness-of-iteration":84,"../internals/export":102}],168:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var $includes = require('../internals/array-includes').includes; +var addToUnscopables = require('../internals/add-to-unscopables'); +var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length'); + +var USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); + +// `Array.prototype.includes` method +// https://tc39.github.io/ecma262/#sec-array.prototype.includes +$({ target: 'Array', proto: true, forced: !USES_TO_LENGTH }, { + includes: function includes(el /* , fromIndex = 0 */) { + return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables('includes'); + +},{"../internals/add-to-unscopables":72,"../internals/array-includes":76,"../internals/array-method-uses-to-length":80,"../internals/export":102}],169:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var $indexOf = require('../internals/array-includes').indexOf; +var arrayMethodIsStrict = require('../internals/array-method-is-strict'); +var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length'); + +var nativeIndexOf = [].indexOf; + +var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0; +var STRICT_METHOD = arrayMethodIsStrict('indexOf'); +var USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); + +// `Array.prototype.indexOf` method +// https://tc39.github.io/ecma262/#sec-array.prototype.indexof +$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD || !USES_TO_LENGTH }, { + indexOf: function indexOf(searchElement /* , fromIndex = 0 */) { + return NEGATIVE_ZERO + // convert -0 to +0 + ? nativeIndexOf.apply(this, arguments) || 0 + : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +},{"../internals/array-includes":76,"../internals/array-method-is-strict":79,"../internals/array-method-uses-to-length":80,"../internals/export":102}],170:[function(require,module,exports){ +var $ = require('../internals/export'); +var isArray = require('../internals/is-array'); + +// `Array.isArray` method +// https://tc39.github.io/ecma262/#sec-array.isarray +$({ target: 'Array', stat: true }, { + isArray: isArray +}); + +},{"../internals/export":102,"../internals/is-array":117}],171:[function(require,module,exports){ +'use strict'; +var toIndexedObject = require('../internals/to-indexed-object'); +var addToUnscopables = require('../internals/add-to-unscopables'); +var Iterators = require('../internals/iterators'); +var InternalStateModule = require('../internals/internal-state'); +var defineIterator = require('../internals/define-iterator'); + +var ARRAY_ITERATOR = 'Array Iterator'; +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR); + +// `Array.prototype.entries` method +// https://tc39.github.io/ecma262/#sec-array.prototype.entries +// `Array.prototype.keys` method +// https://tc39.github.io/ecma262/#sec-array.prototype.keys +// `Array.prototype.values` method +// https://tc39.github.io/ecma262/#sec-array.prototype.values +// `Array.prototype[@@iterator]` method +// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator +// `CreateArrayIterator` internal method +// https://tc39.github.io/ecma262/#sec-createarrayiterator +module.exports = defineIterator(Array, 'Array', function (iterated, kind) { + setInternalState(this, { + type: ARRAY_ITERATOR, + target: toIndexedObject(iterated), // target + index: 0, // next index + kind: kind // kind + }); +// `%ArrayIteratorPrototype%.next` method +// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next +}, function () { + var state = getInternalState(this); + var target = state.target; + var kind = state.kind; + var index = state.index++; + if (!target || index >= target.length) { + state.target = undefined; + return { value: undefined, done: true }; + } + if (kind == 'keys') return { value: index, done: false }; + if (kind == 'values') return { value: target[index], done: false }; + return { value: [index, target[index]], done: false }; +}, 'values'); + +// argumentsList[@@iterator] is %ArrayProto_values% +// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject +// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject +Iterators.Arguments = Iterators.Array; + +// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables('keys'); +addToUnscopables('values'); +addToUnscopables('entries'); + +},{"../internals/add-to-unscopables":72,"../internals/define-iterator":93,"../internals/internal-state":115,"../internals/iterators":124,"../internals/to-indexed-object":154}],172:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var $map = require('../internals/array-iteration').map; +var arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support'); +var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length'); + +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map'); +// FF49- issue +var USES_TO_LENGTH = arrayMethodUsesToLength('map'); + +// `Array.prototype.map` method +// https://tc39.github.io/ecma262/#sec-array.prototype.map +// with adding support of @@species +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, { + map: function map(callbackfn /* , thisArg */) { + return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +},{"../internals/array-iteration":77,"../internals/array-method-has-species-support":78,"../internals/array-method-uses-to-length":80,"../internals/export":102}],173:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var $reduce = require('../internals/array-reduce').left; +var arrayMethodIsStrict = require('../internals/array-method-is-strict'); +var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length'); + +var STRICT_METHOD = arrayMethodIsStrict('reduce'); +var USES_TO_LENGTH = arrayMethodUsesToLength('reduce', { 1: 0 }); + +// `Array.prototype.reduce` method +// https://tc39.github.io/ecma262/#sec-array.prototype.reduce +$({ target: 'Array', proto: true, forced: !STRICT_METHOD || !USES_TO_LENGTH }, { + reduce: function reduce(callbackfn /* , initialValue */) { + return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +},{"../internals/array-method-is-strict":79,"../internals/array-method-uses-to-length":80,"../internals/array-reduce":81,"../internals/export":102}],174:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var isObject = require('../internals/is-object'); +var isArray = require('../internals/is-array'); +var toAbsoluteIndex = require('../internals/to-absolute-index'); +var toLength = require('../internals/to-length'); +var toIndexedObject = require('../internals/to-indexed-object'); +var createProperty = require('../internals/create-property'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support'); +var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length'); + +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice'); +var USES_TO_LENGTH = arrayMethodUsesToLength('slice', { ACCESSORS: true, 0: 0, 1: 2 }); + +var SPECIES = wellKnownSymbol('species'); +var nativeSlice = [].slice; +var max = Math.max; + +// `Array.prototype.slice` method +// https://tc39.github.io/ecma262/#sec-array.prototype.slice +// fallback for not array-like ES3 strings and DOM objects +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, { + slice: function slice(start, end) { + var O = toIndexedObject(this); + var length = toLength(O.length); + var k = toAbsoluteIndex(start, length); + var fin = toAbsoluteIndex(end === undefined ? length : end, length); + // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible + var Constructor, result, n; + if (isArray(O)) { + Constructor = O.constructor; + // cross-realm fallback + if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) { + Constructor = undefined; + } else if (isObject(Constructor)) { + Constructor = Constructor[SPECIES]; + if (Constructor === null) Constructor = undefined; + } + if (Constructor === Array || Constructor === undefined) { + return nativeSlice.call(O, k, fin); + } + } + result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0)); + for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); + result.length = n; + return result; + } +}); + +},{"../internals/array-method-has-species-support":78,"../internals/array-method-uses-to-length":80,"../internals/create-property":92,"../internals/export":102,"../internals/is-array":117,"../internals/is-object":120,"../internals/to-absolute-index":153,"../internals/to-indexed-object":154,"../internals/to-length":156,"../internals/well-known-symbol":163}],175:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var aFunction = require('../internals/a-function'); +var toObject = require('../internals/to-object'); +var fails = require('../internals/fails'); +var arrayMethodIsStrict = require('../internals/array-method-is-strict'); + +var test = []; +var nativeSort = test.sort; + +// IE8- +var FAILS_ON_UNDEFINED = fails(function () { + test.sort(undefined); +}); +// V8 bug +var FAILS_ON_NULL = fails(function () { + test.sort(null); +}); +// Old WebKit +var STRICT_METHOD = arrayMethodIsStrict('sort'); + +var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD; + +// `Array.prototype.sort` method +// https://tc39.github.io/ecma262/#sec-array.prototype.sort +$({ target: 'Array', proto: true, forced: FORCED }, { + sort: function sort(comparefn) { + return comparefn === undefined + ? nativeSort.call(toObject(this)) + : nativeSort.call(toObject(this), aFunction(comparefn)); + } +}); + +},{"../internals/a-function":70,"../internals/array-method-is-strict":79,"../internals/export":102,"../internals/fails":103,"../internals/to-object":157}],176:[function(require,module,exports){ +var global = require('../internals/global'); +var setToStringTag = require('../internals/set-to-string-tag'); + +// JSON[@@toStringTag] property +// https://tc39.github.io/ecma262/#sec-json-@@tostringtag +setToStringTag(global.JSON, 'JSON', true); + +},{"../internals/global":108,"../internals/set-to-string-tag":147}],177:[function(require,module,exports){ +var setToStringTag = require('../internals/set-to-string-tag'); + +// Math[@@toStringTag] property +// https://tc39.github.io/ecma262/#sec-math-@@tostringtag +setToStringTag(Math, 'Math', true); + +},{"../internals/set-to-string-tag":147}],178:[function(require,module,exports){ +var $ = require('../internals/export'); +var DESCRIPTORS = require('../internals/descriptors'); +var create = require('../internals/object-create'); + +// `Object.create` method +// https://tc39.github.io/ecma262/#sec-object.create +$({ target: 'Object', stat: true, sham: !DESCRIPTORS }, { + create: create +}); + +},{"../internals/descriptors":95,"../internals/export":102,"../internals/object-create":129}],179:[function(require,module,exports){ +var $ = require('../internals/export'); +var DESCRIPTORS = require('../internals/descriptors'); +var objectDefinePropertyModile = require('../internals/object-define-property'); + +// `Object.defineProperty` method +// https://tc39.github.io/ecma262/#sec-object.defineproperty +$({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, { + defineProperty: objectDefinePropertyModile.f +}); + +},{"../internals/descriptors":95,"../internals/export":102,"../internals/object-define-property":131}],180:[function(require,module,exports){ +// empty + +},{}],181:[function(require,module,exports){ +var $ = require('../internals/export'); +var parseIntImplementation = require('../internals/number-parse-int'); + +// `parseInt` method +// https://tc39.github.io/ecma262/#sec-parseint-string-radix +$({ global: true, forced: parseInt != parseIntImplementation }, { + parseInt: parseIntImplementation +}); + +},{"../internals/export":102,"../internals/number-parse-int":128}],182:[function(require,module,exports){ +arguments[4][180][0].apply(exports,arguments) +},{"dup":180}],183:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var notARegExp = require('../internals/not-a-regexp'); +var requireObjectCoercible = require('../internals/require-object-coercible'); +var correctIsRegExpLogic = require('../internals/correct-is-regexp-logic'); + +// `String.prototype.includes` method +// https://tc39.github.io/ecma262/#sec-string.prototype.includes +$({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, { + includes: function includes(searchString /* , position = 0 */) { + return !!~String(requireObjectCoercible(this)) + .indexOf(notARegExp(searchString), arguments.length > 1 ? arguments[1] : undefined); + } +}); + +},{"../internals/correct-is-regexp-logic":87,"../internals/export":102,"../internals/not-a-regexp":127,"../internals/require-object-coercible":145}],184:[function(require,module,exports){ +'use strict'; +var charAt = require('../internals/string-multibyte').charAt; +var InternalStateModule = require('../internals/internal-state'); +var defineIterator = require('../internals/define-iterator'); + +var STRING_ITERATOR = 'String Iterator'; +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); + +// `String.prototype[@@iterator]` method +// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator +defineIterator(String, 'String', function (iterated) { + setInternalState(this, { + type: STRING_ITERATOR, + string: String(iterated), + index: 0 + }); +// `%StringIteratorPrototype%.next` method +// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next +}, function next() { + var state = getInternalState(this); + var string = state.string; + var index = state.index; + var point; + if (index >= string.length) return { value: undefined, done: true }; + point = charAt(string, index); + state.index += point.length; + return { value: point, done: false }; +}); + +},{"../internals/define-iterator":93,"../internals/internal-state":115,"../internals/string-multibyte":151}],185:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.asyncIterator` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.asynciterator +defineWellKnownSymbol('asyncIterator'); + +},{"../internals/define-well-known-symbol":94}],186:[function(require,module,exports){ +arguments[4][180][0].apply(exports,arguments) +},{"dup":180}],187:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.hasInstance` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.hasinstance +defineWellKnownSymbol('hasInstance'); + +},{"../internals/define-well-known-symbol":94}],188:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.isConcatSpreadable` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.isconcatspreadable +defineWellKnownSymbol('isConcatSpreadable'); + +},{"../internals/define-well-known-symbol":94}],189:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.iterator` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.iterator +defineWellKnownSymbol('iterator'); + +},{"../internals/define-well-known-symbol":94}],190:[function(require,module,exports){ +'use strict'; +var $ = require('../internals/export'); +var global = require('../internals/global'); +var getBuiltIn = require('../internals/get-built-in'); +var IS_PURE = require('../internals/is-pure'); +var DESCRIPTORS = require('../internals/descriptors'); +var NATIVE_SYMBOL = require('../internals/native-symbol'); +var USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid'); +var fails = require('../internals/fails'); +var has = require('../internals/has'); +var isArray = require('../internals/is-array'); +var isObject = require('../internals/is-object'); +var anObject = require('../internals/an-object'); +var toObject = require('../internals/to-object'); +var toIndexedObject = require('../internals/to-indexed-object'); +var toPrimitive = require('../internals/to-primitive'); +var createPropertyDescriptor = require('../internals/create-property-descriptor'); +var nativeObjectCreate = require('../internals/object-create'); +var objectKeys = require('../internals/object-keys'); +var getOwnPropertyNamesModule = require('../internals/object-get-own-property-names'); +var getOwnPropertyNamesExternal = require('../internals/object-get-own-property-names-external'); +var getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols'); +var getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor'); +var definePropertyModule = require('../internals/object-define-property'); +var propertyIsEnumerableModule = require('../internals/object-property-is-enumerable'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var redefine = require('../internals/redefine'); +var shared = require('../internals/shared'); +var sharedKey = require('../internals/shared-key'); +var hiddenKeys = require('../internals/hidden-keys'); +var uid = require('../internals/uid'); +var wellKnownSymbol = require('../internals/well-known-symbol'); +var wrappedWellKnownSymbolModule = require('../internals/well-known-symbol-wrapped'); +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); +var setToStringTag = require('../internals/set-to-string-tag'); +var InternalStateModule = require('../internals/internal-state'); +var $forEach = require('../internals/array-iteration').forEach; + +var HIDDEN = sharedKey('hidden'); +var SYMBOL = 'Symbol'; +var PROTOTYPE = 'prototype'; +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(SYMBOL); +var ObjectPrototype = Object[PROTOTYPE]; +var $Symbol = global.Symbol; +var $stringify = getBuiltIn('JSON', 'stringify'); +var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; +var nativeDefineProperty = definePropertyModule.f; +var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f; +var nativePropertyIsEnumerable = propertyIsEnumerableModule.f; +var AllSymbols = shared('symbols'); +var ObjectPrototypeSymbols = shared('op-symbols'); +var StringToSymbolRegistry = shared('string-to-symbol-registry'); +var SymbolToStringRegistry = shared('symbol-to-string-registry'); +var WellKnownSymbolsStore = shared('wks'); +var QObject = global.QObject; +// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173 +var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild; + +// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687 +var setSymbolDescriptor = DESCRIPTORS && fails(function () { + return nativeObjectCreate(nativeDefineProperty({}, 'a', { + get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; } + })).a != 7; +}) ? function (O, P, Attributes) { + var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P); + if (ObjectPrototypeDescriptor) delete ObjectPrototype[P]; + nativeDefineProperty(O, P, Attributes); + if (ObjectPrototypeDescriptor && O !== ObjectPrototype) { + nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor); + } +} : nativeDefineProperty; + +var wrap = function (tag, description) { + var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]); + setInternalState(symbol, { + type: SYMBOL, + tag: tag, + description: description + }); + if (!DESCRIPTORS) symbol.description = description; + return symbol; +}; + +var isSymbol = USE_SYMBOL_AS_UID ? function (it) { + return typeof it == 'symbol'; +} : function (it) { + return Object(it) instanceof $Symbol; +}; + +var $defineProperty = function defineProperty(O, P, Attributes) { + if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes); + anObject(O); + var key = toPrimitive(P, true); + anObject(Attributes); + if (has(AllSymbols, key)) { + if (!Attributes.enumerable) { + if (!has(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {})); + O[HIDDEN][key] = true; + } else { + if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false; + Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) }); + } return setSymbolDescriptor(O, key, Attributes); + } return nativeDefineProperty(O, key, Attributes); +}; + +var $defineProperties = function defineProperties(O, Properties) { + anObject(O); + var properties = toIndexedObject(Properties); + var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties)); + $forEach(keys, function (key) { + if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]); + }); + return O; +}; + +var $create = function create(O, Properties) { + return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties); +}; + +var $propertyIsEnumerable = function propertyIsEnumerable(V) { + var P = toPrimitive(V, true); + var enumerable = nativePropertyIsEnumerable.call(this, P); + if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false; + return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true; +}; + +var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) { + var it = toIndexedObject(O); + var key = toPrimitive(P, true); + if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return; + var descriptor = nativeGetOwnPropertyDescriptor(it, key); + if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) { + descriptor.enumerable = true; + } + return descriptor; +}; + +var $getOwnPropertyNames = function getOwnPropertyNames(O) { + var names = nativeGetOwnPropertyNames(toIndexedObject(O)); + var result = []; + $forEach(names, function (key) { + if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key); + }); + return result; +}; + +var $getOwnPropertySymbols = function getOwnPropertySymbols(O) { + var IS_OBJECT_PROTOTYPE = O === ObjectPrototype; + var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O)); + var result = []; + $forEach(names, function (key) { + if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) { + result.push(AllSymbols[key]); + } + }); + return result; +}; + +// `Symbol` constructor +// https://tc39.github.io/ecma262/#sec-symbol-constructor +if (!NATIVE_SYMBOL) { + $Symbol = function Symbol() { + if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor'); + var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]); + var tag = uid(description); + var setter = function (value) { + if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value); + if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false; + setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value)); + }; + if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter }); + return wrap(tag, description); + }; + + redefine($Symbol[PROTOTYPE], 'toString', function toString() { + return getInternalState(this).tag; + }); + + redefine($Symbol, 'withoutSetter', function (description) { + return wrap(uid(description), description); + }); + + propertyIsEnumerableModule.f = $propertyIsEnumerable; + definePropertyModule.f = $defineProperty; + getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor; + getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames; + getOwnPropertySymbolsModule.f = $getOwnPropertySymbols; + + wrappedWellKnownSymbolModule.f = function (name) { + return wrap(wellKnownSymbol(name), name); + }; + + if (DESCRIPTORS) { + // https://github.com/tc39/proposal-Symbol-description + nativeDefineProperty($Symbol[PROTOTYPE], 'description', { + configurable: true, + get: function description() { + return getInternalState(this).description; + } + }); + if (!IS_PURE) { + redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true }); + } + } +} + +$({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, { + Symbol: $Symbol +}); + +$forEach(objectKeys(WellKnownSymbolsStore), function (name) { + defineWellKnownSymbol(name); +}); + +$({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, { + // `Symbol.for` method + // https://tc39.github.io/ecma262/#sec-symbol.for + 'for': function (key) { + var string = String(key); + if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string]; + var symbol = $Symbol(string); + StringToSymbolRegistry[string] = symbol; + SymbolToStringRegistry[symbol] = string; + return symbol; + }, + // `Symbol.keyFor` method + // https://tc39.github.io/ecma262/#sec-symbol.keyfor + keyFor: function keyFor(sym) { + if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol'); + if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym]; + }, + useSetter: function () { USE_SETTER = true; }, + useSimple: function () { USE_SETTER = false; } +}); + +$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, { + // `Object.create` method + // https://tc39.github.io/ecma262/#sec-object.create + create: $create, + // `Object.defineProperty` method + // https://tc39.github.io/ecma262/#sec-object.defineproperty + defineProperty: $defineProperty, + // `Object.defineProperties` method + // https://tc39.github.io/ecma262/#sec-object.defineproperties + defineProperties: $defineProperties, + // `Object.getOwnPropertyDescriptor` method + // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors + getOwnPropertyDescriptor: $getOwnPropertyDescriptor +}); + +$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, { + // `Object.getOwnPropertyNames` method + // https://tc39.github.io/ecma262/#sec-object.getownpropertynames + getOwnPropertyNames: $getOwnPropertyNames, + // `Object.getOwnPropertySymbols` method + // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols + getOwnPropertySymbols: $getOwnPropertySymbols +}); + +// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives +// https://bugs.chromium.org/p/v8/issues/detail?id=3443 +$({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, { + getOwnPropertySymbols: function getOwnPropertySymbols(it) { + return getOwnPropertySymbolsModule.f(toObject(it)); + } +}); + +// `JSON.stringify` method behavior with symbols +// https://tc39.github.io/ecma262/#sec-json.stringify +if ($stringify) { + var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () { + var symbol = $Symbol(); + // MS Edge converts symbol values to JSON as {} + return $stringify([symbol]) != '[null]' + // WebKit converts symbol values to JSON as null + || $stringify({ a: symbol }) != '{}' + // V8 throws on boxed symbols + || $stringify(Object(symbol)) != '{}'; + }); + + $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, { + // eslint-disable-next-line no-unused-vars + stringify: function stringify(it, replacer, space) { + var args = [it]; + var index = 1; + var $replacer; + while (arguments.length > index) args.push(arguments[index++]); + $replacer = replacer; + if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined + if (!isArray(replacer)) replacer = function (key, value) { + if (typeof $replacer == 'function') value = $replacer.call(this, key, value); + if (!isSymbol(value)) return value; + }; + args[1] = replacer; + return $stringify.apply(null, args); + } + }); +} + +// `Symbol.prototype[@@toPrimitive]` method +// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive +if (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) { + createNonEnumerableProperty($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf); +} +// `Symbol.prototype[@@toStringTag]` property +// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag +setToStringTag($Symbol, SYMBOL); + +hiddenKeys[HIDDEN] = true; + +},{"../internals/an-object":73,"../internals/array-iteration":77,"../internals/create-non-enumerable-property":90,"../internals/create-property-descriptor":91,"../internals/define-well-known-symbol":94,"../internals/descriptors":95,"../internals/export":102,"../internals/fails":103,"../internals/get-built-in":105,"../internals/global":108,"../internals/has":109,"../internals/hidden-keys":110,"../internals/internal-state":115,"../internals/is-array":117,"../internals/is-object":120,"../internals/is-pure":121,"../internals/native-symbol":125,"../internals/object-create":129,"../internals/object-define-property":131,"../internals/object-get-own-property-descriptor":132,"../internals/object-get-own-property-names":134,"../internals/object-get-own-property-names-external":133,"../internals/object-get-own-property-symbols":135,"../internals/object-keys":138,"../internals/object-property-is-enumerable":139,"../internals/redefine":143,"../internals/set-to-string-tag":147,"../internals/shared":150,"../internals/shared-key":148,"../internals/to-indexed-object":154,"../internals/to-object":157,"../internals/to-primitive":158,"../internals/uid":160,"../internals/use-symbol-as-uid":161,"../internals/well-known-symbol":163,"../internals/well-known-symbol-wrapped":162}],191:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.matchAll` well-known symbol +defineWellKnownSymbol('matchAll'); + +},{"../internals/define-well-known-symbol":94}],192:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.match` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.match +defineWellKnownSymbol('match'); + +},{"../internals/define-well-known-symbol":94}],193:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.replace` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.replace +defineWellKnownSymbol('replace'); + +},{"../internals/define-well-known-symbol":94}],194:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.search` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.search +defineWellKnownSymbol('search'); + +},{"../internals/define-well-known-symbol":94}],195:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.species` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.species +defineWellKnownSymbol('species'); + +},{"../internals/define-well-known-symbol":94}],196:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.split` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.split +defineWellKnownSymbol('split'); + +},{"../internals/define-well-known-symbol":94}],197:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.toPrimitive` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.toprimitive +defineWellKnownSymbol('toPrimitive'); + +},{"../internals/define-well-known-symbol":94}],198:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.toStringTag` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.tostringtag +defineWellKnownSymbol('toStringTag'); + +},{"../internals/define-well-known-symbol":94}],199:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.unscopables` well-known symbol +// https://tc39.github.io/ecma262/#sec-symbol.unscopables +defineWellKnownSymbol('unscopables'); + +},{"../internals/define-well-known-symbol":94}],200:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.asyncDispose` well-known symbol +// https://github.com/tc39/proposal-using-statement +defineWellKnownSymbol('asyncDispose'); + +},{"../internals/define-well-known-symbol":94}],201:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.dispose` well-known symbol +// https://github.com/tc39/proposal-using-statement +defineWellKnownSymbol('dispose'); + +},{"../internals/define-well-known-symbol":94}],202:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.observable` well-known symbol +// https://github.com/tc39/proposal-observable +defineWellKnownSymbol('observable'); + +},{"../internals/define-well-known-symbol":94}],203:[function(require,module,exports){ +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +// `Symbol.patternMatch` well-known symbol +// https://github.com/tc39/proposal-pattern-matching +defineWellKnownSymbol('patternMatch'); + +},{"../internals/define-well-known-symbol":94}],204:[function(require,module,exports){ +// TODO: remove from `core-js@4` +var defineWellKnownSymbol = require('../internals/define-well-known-symbol'); + +defineWellKnownSymbol('replaceAll'); + +},{"../internals/define-well-known-symbol":94}],205:[function(require,module,exports){ +require('./es.array.iterator'); +var DOMIterables = require('../internals/dom-iterables'); +var global = require('../internals/global'); +var classof = require('../internals/classof'); +var createNonEnumerableProperty = require('../internals/create-non-enumerable-property'); +var Iterators = require('../internals/iterators'); +var wellKnownSymbol = require('../internals/well-known-symbol'); + +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + +for (var COLLECTION_NAME in DOMIterables) { + var Collection = global[COLLECTION_NAME]; + var CollectionPrototype = Collection && Collection.prototype; + if (CollectionPrototype && classof(CollectionPrototype) !== TO_STRING_TAG) { + createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME); + } + Iterators[COLLECTION_NAME] = Iterators.Array; +} + +},{"../internals/classof":86,"../internals/create-non-enumerable-property":90,"../internals/dom-iterables":97,"../internals/global":108,"../internals/iterators":124,"../internals/well-known-symbol":163,"./es.array.iterator":171}],206:[function(require,module,exports){ +arguments[4][63][0].apply(exports,arguments) +},{"../../es/array/from":39,"dup":63}],207:[function(require,module,exports){ +arguments[4][64][0].apply(exports,arguments) +},{"../../es/array/is-array":40,"dup":64}],208:[function(require,module,exports){ +var parent = require('../../../es/array/virtual/for-each'); + +module.exports = parent; + +},{"../../../es/array/virtual/for-each":42}],209:[function(require,module,exports){ +var parent = require('../../es/instance/concat'); + +module.exports = parent; + +},{"../../es/instance/concat":49}],210:[function(require,module,exports){ +var parent = require('../../es/instance/flags'); + +module.exports = parent; + +},{"../../es/instance/flags":50}],211:[function(require,module,exports){ +require('../../modules/web.dom-collections.iterator'); +var forEach = require('../array/virtual/for-each'); +var classof = require('../../internals/classof'); +var ArrayPrototype = Array.prototype; + +var DOMIterables = { + DOMTokenList: true, + NodeList: true +}; + +module.exports = function (it) { + var own = it.forEach; + return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.forEach) + // eslint-disable-next-line no-prototype-builtins + || DOMIterables.hasOwnProperty(classof(it)) ? forEach : own; +}; + +},{"../../internals/classof":86,"../../modules/web.dom-collections.iterator":205,"../array/virtual/for-each":208}],212:[function(require,module,exports){ +var parent = require('../../es/instance/includes'); + +module.exports = parent; + +},{"../../es/instance/includes":51}],213:[function(require,module,exports){ +var parent = require('../../es/instance/index-of'); + +module.exports = parent; + +},{"../../es/instance/index-of":52}],214:[function(require,module,exports){ +var parent = require('../../es/instance/map'); + +module.exports = parent; + +},{"../../es/instance/map":53}],215:[function(require,module,exports){ +var parent = require('../../es/instance/reduce'); + +module.exports = parent; + +},{"../../es/instance/reduce":54}],216:[function(require,module,exports){ +arguments[4][67][0].apply(exports,arguments) +},{"../../es/instance/slice":55,"dup":67}],217:[function(require,module,exports){ +var parent = require('../../es/instance/sort'); + +module.exports = parent; + +},{"../../es/instance/sort":56}],218:[function(require,module,exports){ +var parent = require('../../es/object/create'); + +module.exports = parent; + +},{"../../es/object/create":57}],219:[function(require,module,exports){ +var parent = require('../../es/object/define-property'); + +module.exports = parent; + +},{"../../es/object/define-property":58}],220:[function(require,module,exports){ +var parent = require('../es/parse-int'); + +module.exports = parent; + +},{"../es/parse-int":59}],221:[function(require,module,exports){ +var parent = require('../../es/symbol'); + +module.exports = parent; + +},{"../../es/symbol":62}],222:[function(require,module,exports){ +module.exports = [ + { + 'name': 'InAdlam', + 'astral': '\uD83A[\uDD00-\uDD5F]' + }, + { + 'name': 'InAegean_Numbers', + 'astral': '\uD800[\uDD00-\uDD3F]' + }, + { + 'name': 'InAhom', + 'astral': '\uD805[\uDF00-\uDF3F]' + }, + { + 'name': 'InAlchemical_Symbols', + 'astral': '\uD83D[\uDF00-\uDF7F]' + }, + { + 'name': 'InAlphabetic_Presentation_Forms', + 'bmp': '\uFB00-\uFB4F' + }, + { + 'name': 'InAnatolian_Hieroglyphs', + 'astral': '\uD811[\uDC00-\uDE7F]' + }, + { + 'name': 'InAncient_Greek_Musical_Notation', + 'astral': '\uD834[\uDE00-\uDE4F]' + }, + { + 'name': 'InAncient_Greek_Numbers', + 'astral': '\uD800[\uDD40-\uDD8F]' + }, + { + 'name': 'InAncient_Symbols', + 'astral': '\uD800[\uDD90-\uDDCF]' + }, + { + 'name': 'InArabic', + 'bmp': '\u0600-\u06FF' + }, + { + 'name': 'InArabic_Extended_A', + 'bmp': '\u08A0-\u08FF' + }, + { + 'name': 'InArabic_Mathematical_Alphabetic_Symbols', + 'astral': '\uD83B[\uDE00-\uDEFF]' + }, + { + 'name': 'InArabic_Presentation_Forms_A', + 'bmp': '\uFB50-\uFDFF' + }, + { + 'name': 'InArabic_Presentation_Forms_B', + 'bmp': '\uFE70-\uFEFF' + }, + { + 'name': 'InArabic_Supplement', + 'bmp': '\u0750-\u077F' + }, + { + 'name': 'InArmenian', + 'bmp': '\u0530-\u058F' + }, + { + 'name': 'InArrows', + 'bmp': '\u2190-\u21FF' + }, + { + 'name': 'InAvestan', + 'astral': '\uD802[\uDF00-\uDF3F]' + }, + { + 'name': 'InBalinese', + 'bmp': '\u1B00-\u1B7F' + }, + { + 'name': 'InBamum', + 'bmp': '\uA6A0-\uA6FF' + }, + { + 'name': 'InBamum_Supplement', + 'astral': '\uD81A[\uDC00-\uDE3F]' + }, + { + 'name': 'InBasic_Latin', + 'bmp': '\0-\x7F' + }, + { + 'name': 'InBassa_Vah', + 'astral': '\uD81A[\uDED0-\uDEFF]' + }, + { + 'name': 'InBatak', + 'bmp': '\u1BC0-\u1BFF' + }, + { + 'name': 'InBengali', + 'bmp': '\u0980-\u09FF' + }, + { + 'name': 'InBhaiksuki', + 'astral': '\uD807[\uDC00-\uDC6F]' + }, + { + 'name': 'InBlock_Elements', + 'bmp': '\u2580-\u259F' + }, + { + 'name': 'InBopomofo', + 'bmp': '\u3100-\u312F' + }, + { + 'name': 'InBopomofo_Extended', + 'bmp': '\u31A0-\u31BF' + }, + { + 'name': 'InBox_Drawing', + 'bmp': '\u2500-\u257F' + }, + { + 'name': 'InBrahmi', + 'astral': '\uD804[\uDC00-\uDC7F]' + }, + { + 'name': 'InBraille_Patterns', + 'bmp': '\u2800-\u28FF' + }, + { + 'name': 'InBuginese', + 'bmp': '\u1A00-\u1A1F' + }, + { + 'name': 'InBuhid', + 'bmp': '\u1740-\u175F' + }, + { + 'name': 'InByzantine_Musical_Symbols', + 'astral': '\uD834[\uDC00-\uDCFF]' + }, + { + 'name': 'InCJK_Compatibility', + 'bmp': '\u3300-\u33FF' + }, + { + 'name': 'InCJK_Compatibility_Forms', + 'bmp': '\uFE30-\uFE4F' + }, + { + 'name': 'InCJK_Compatibility_Ideographs', + 'bmp': '\uF900-\uFAFF' + }, + { + 'name': 'InCJK_Compatibility_Ideographs_Supplement', + 'astral': '\uD87E[\uDC00-\uDE1F]' + }, + { + 'name': 'InCJK_Radicals_Supplement', + 'bmp': '\u2E80-\u2EFF' + }, + { + 'name': 'InCJK_Strokes', + 'bmp': '\u31C0-\u31EF' + }, + { + 'name': 'InCJK_Symbols_And_Punctuation', + 'bmp': '\u3000-\u303F' + }, + { + 'name': 'InCJK_Unified_Ideographs', + 'bmp': '\u4E00-\u9FFF' + }, + { + 'name': 'InCJK_Unified_Ideographs_Extension_A', + 'bmp': '\u3400-\u4DBF' + }, + { + 'name': 'InCJK_Unified_Ideographs_Extension_B', + 'astral': '[\uD840-\uD868][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDF]' + }, + { + 'name': 'InCJK_Unified_Ideographs_Extension_C', + 'astral': '\uD869[\uDF00-\uDFFF]|[\uD86A-\uD86C][\uDC00-\uDFFF]|\uD86D[\uDC00-\uDF3F]' + }, + { + 'name': 'InCJK_Unified_Ideographs_Extension_D', + 'astral': '\uD86D[\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1F]' + }, + { + 'name': 'InCJK_Unified_Ideographs_Extension_E', + 'astral': '\uD86E[\uDC20-\uDFFF]|[\uD86F-\uD872][\uDC00-\uDFFF]|\uD873[\uDC00-\uDEAF]' + }, + { + 'name': 'InCJK_Unified_Ideographs_Extension_F', + 'astral': '\uD873[\uDEB0-\uDFFF]|[\uD874-\uD879][\uDC00-\uDFFF]|\uD87A[\uDC00-\uDFEF]' + }, + { + 'name': 'InCarian', + 'astral': '\uD800[\uDEA0-\uDEDF]' + }, + { + 'name': 'InCaucasian_Albanian', + 'astral': '\uD801[\uDD30-\uDD6F]' + }, + { + 'name': 'InChakma', + 'astral': '\uD804[\uDD00-\uDD4F]' + }, + { + 'name': 'InCham', + 'bmp': '\uAA00-\uAA5F' + }, + { + 'name': 'InCherokee', + 'bmp': '\u13A0-\u13FF' + }, + { + 'name': 'InCherokee_Supplement', + 'bmp': '\uAB70-\uABBF' + }, + { + 'name': 'InChess_Symbols', + 'astral': '\uD83E[\uDE00-\uDE6F]' + }, + { + 'name': 'InCombining_Diacritical_Marks', + 'bmp': '\u0300-\u036F' + }, + { + 'name': 'InCombining_Diacritical_Marks_Extended', + 'bmp': '\u1AB0-\u1AFF' + }, + { + 'name': 'InCombining_Diacritical_Marks_For_Symbols', + 'bmp': '\u20D0-\u20FF' + }, + { + 'name': 'InCombining_Diacritical_Marks_Supplement', + 'bmp': '\u1DC0-\u1DFF' + }, + { + 'name': 'InCombining_Half_Marks', + 'bmp': '\uFE20-\uFE2F' + }, + { + 'name': 'InCommon_Indic_Number_Forms', + 'bmp': '\uA830-\uA83F' + }, + { + 'name': 'InControl_Pictures', + 'bmp': '\u2400-\u243F' + }, + { + 'name': 'InCoptic', + 'bmp': '\u2C80-\u2CFF' + }, + { + 'name': 'InCoptic_Epact_Numbers', + 'astral': '\uD800[\uDEE0-\uDEFF]' + }, + { + 'name': 'InCounting_Rod_Numerals', + 'astral': '\uD834[\uDF60-\uDF7F]' + }, + { + 'name': 'InCuneiform', + 'astral': '\uD808[\uDC00-\uDFFF]' + }, + { + 'name': 'InCuneiform_Numbers_And_Punctuation', + 'astral': '\uD809[\uDC00-\uDC7F]' + }, + { + 'name': 'InCurrency_Symbols', + 'bmp': '\u20A0-\u20CF' + }, + { + 'name': 'InCypriot_Syllabary', + 'astral': '\uD802[\uDC00-\uDC3F]' + }, + { + 'name': 'InCyrillic', + 'bmp': '\u0400-\u04FF' + }, + { + 'name': 'InCyrillic_Extended_A', + 'bmp': '\u2DE0-\u2DFF' + }, + { + 'name': 'InCyrillic_Extended_B', + 'bmp': '\uA640-\uA69F' + }, + { + 'name': 'InCyrillic_Extended_C', + 'bmp': '\u1C80-\u1C8F' + }, + { + 'name': 'InCyrillic_Supplement', + 'bmp': '\u0500-\u052F' + }, + { + 'name': 'InDeseret', + 'astral': '\uD801[\uDC00-\uDC4F]' + }, + { + 'name': 'InDevanagari', + 'bmp': '\u0900-\u097F' + }, + { + 'name': 'InDevanagari_Extended', + 'bmp': '\uA8E0-\uA8FF' + }, + { + 'name': 'InDingbats', + 'bmp': '\u2700-\u27BF' + }, + { + 'name': 'InDogra', + 'astral': '\uD806[\uDC00-\uDC4F]' + }, + { + 'name': 'InDomino_Tiles', + 'astral': '\uD83C[\uDC30-\uDC9F]' + }, + { + 'name': 'InDuployan', + 'astral': '\uD82F[\uDC00-\uDC9F]' + }, + { + 'name': 'InEarly_Dynastic_Cuneiform', + 'astral': '\uD809[\uDC80-\uDD4F]' + }, + { + 'name': 'InEgyptian_Hieroglyphs', + 'astral': '\uD80C[\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F]' + }, + { + 'name': 'InElbasan', + 'astral': '\uD801[\uDD00-\uDD2F]' + }, + { + 'name': 'InEmoticons', + 'astral': '\uD83D[\uDE00-\uDE4F]' + }, + { + 'name': 'InEnclosed_Alphanumeric_Supplement', + 'astral': '\uD83C[\uDD00-\uDDFF]' + }, + { + 'name': 'InEnclosed_Alphanumerics', + 'bmp': '\u2460-\u24FF' + }, + { + 'name': 'InEnclosed_CJK_Letters_And_Months', + 'bmp': '\u3200-\u32FF' + }, + { + 'name': 'InEnclosed_Ideographic_Supplement', + 'astral': '\uD83C[\uDE00-\uDEFF]' + }, + { + 'name': 'InEthiopic', + 'bmp': '\u1200-\u137F' + }, + { + 'name': 'InEthiopic_Extended', + 'bmp': '\u2D80-\u2DDF' + }, + { + 'name': 'InEthiopic_Extended_A', + 'bmp': '\uAB00-\uAB2F' + }, + { + 'name': 'InEthiopic_Supplement', + 'bmp': '\u1380-\u139F' + }, + { + 'name': 'InGeneral_Punctuation', + 'bmp': '\u2000-\u206F' + }, + { + 'name': 'InGeometric_Shapes', + 'bmp': '\u25A0-\u25FF' + }, + { + 'name': 'InGeometric_Shapes_Extended', + 'astral': '\uD83D[\uDF80-\uDFFF]' + }, + { + 'name': 'InGeorgian', + 'bmp': '\u10A0-\u10FF' + }, + { + 'name': 'InGeorgian_Extended', + 'bmp': '\u1C90-\u1CBF' + }, + { + 'name': 'InGeorgian_Supplement', + 'bmp': '\u2D00-\u2D2F' + }, + { + 'name': 'InGlagolitic', + 'bmp': '\u2C00-\u2C5F' + }, + { + 'name': 'InGlagolitic_Supplement', + 'astral': '\uD838[\uDC00-\uDC2F]' + }, + { + 'name': 'InGothic', + 'astral': '\uD800[\uDF30-\uDF4F]' + }, + { + 'name': 'InGrantha', + 'astral': '\uD804[\uDF00-\uDF7F]' + }, + { + 'name': 'InGreek_And_Coptic', + 'bmp': '\u0370-\u03FF' + }, + { + 'name': 'InGreek_Extended', + 'bmp': '\u1F00-\u1FFF' + }, + { + 'name': 'InGujarati', + 'bmp': '\u0A80-\u0AFF' + }, + { + 'name': 'InGunjala_Gondi', + 'astral': '\uD807[\uDD60-\uDDAF]' + }, + { + 'name': 'InGurmukhi', + 'bmp': '\u0A00-\u0A7F' + }, + { + 'name': 'InHalfwidth_And_Fullwidth_Forms', + 'bmp': '\uFF00-\uFFEF' + }, + { + 'name': 'InHangul_Compatibility_Jamo', + 'bmp': '\u3130-\u318F' + }, + { + 'name': 'InHangul_Jamo', + 'bmp': '\u1100-\u11FF' + }, + { + 'name': 'InHangul_Jamo_Extended_A', + 'bmp': '\uA960-\uA97F' + }, + { + 'name': 'InHangul_Jamo_Extended_B', + 'bmp': '\uD7B0-\uD7FF' + }, + { + 'name': 'InHangul_Syllables', + 'bmp': '\uAC00-\uD7AF' + }, + { + 'name': 'InHanifi_Rohingya', + 'astral': '\uD803[\uDD00-\uDD3F]' + }, + { + 'name': 'InHanunoo', + 'bmp': '\u1720-\u173F' + }, + { + 'name': 'InHatran', + 'astral': '\uD802[\uDCE0-\uDCFF]' + }, + { + 'name': 'InHebrew', + 'bmp': '\u0590-\u05FF' + }, + { + 'name': 'InHigh_Private_Use_Surrogates', + 'bmp': '\uDB80-\uDBFF' + }, + { + 'name': 'InHigh_Surrogates', + 'bmp': '\uD800-\uDB7F' + }, + { + 'name': 'InHiragana', + 'bmp': '\u3040-\u309F' + }, + { + 'name': 'InIPA_Extensions', + 'bmp': '\u0250-\u02AF' + }, + { + 'name': 'InIdeographic_Description_Characters', + 'bmp': '\u2FF0-\u2FFF' + }, + { + 'name': 'InIdeographic_Symbols_And_Punctuation', + 'astral': '\uD81B[\uDFE0-\uDFFF]' + }, + { + 'name': 'InImperial_Aramaic', + 'astral': '\uD802[\uDC40-\uDC5F]' + }, + { + 'name': 'InIndic_Siyaq_Numbers', + 'astral': '\uD83B[\uDC70-\uDCBF]' + }, + { + 'name': 'InInscriptional_Pahlavi', + 'astral': '\uD802[\uDF60-\uDF7F]' + }, + { + 'name': 'InInscriptional_Parthian', + 'astral': '\uD802[\uDF40-\uDF5F]' + }, + { + 'name': 'InJavanese', + 'bmp': '\uA980-\uA9DF' + }, + { + 'name': 'InKaithi', + 'astral': '\uD804[\uDC80-\uDCCF]' + }, + { + 'name': 'InKana_Extended_A', + 'astral': '\uD82C[\uDD00-\uDD2F]' + }, + { + 'name': 'InKana_Supplement', + 'astral': '\uD82C[\uDC00-\uDCFF]' + }, + { + 'name': 'InKanbun', + 'bmp': '\u3190-\u319F' + }, + { + 'name': 'InKangxi_Radicals', + 'bmp': '\u2F00-\u2FDF' + }, + { + 'name': 'InKannada', + 'bmp': '\u0C80-\u0CFF' + }, + { + 'name': 'InKatakana', + 'bmp': '\u30A0-\u30FF' + }, + { + 'name': 'InKatakana_Phonetic_Extensions', + 'bmp': '\u31F0-\u31FF' + }, + { + 'name': 'InKayah_Li', + 'bmp': '\uA900-\uA92F' + }, + { + 'name': 'InKharoshthi', + 'astral': '\uD802[\uDE00-\uDE5F]' + }, + { + 'name': 'InKhmer', + 'bmp': '\u1780-\u17FF' + }, + { + 'name': 'InKhmer_Symbols', + 'bmp': '\u19E0-\u19FF' + }, + { + 'name': 'InKhojki', + 'astral': '\uD804[\uDE00-\uDE4F]' + }, + { + 'name': 'InKhudawadi', + 'astral': '\uD804[\uDEB0-\uDEFF]' + }, + { + 'name': 'InLao', + 'bmp': '\u0E80-\u0EFF' + }, + { + 'name': 'InLatin_1_Supplement', + 'bmp': '\x80-\xFF' + }, + { + 'name': 'InLatin_Extended_A', + 'bmp': '\u0100-\u017F' + }, + { + 'name': 'InLatin_Extended_Additional', + 'bmp': '\u1E00-\u1EFF' + }, + { + 'name': 'InLatin_Extended_B', + 'bmp': '\u0180-\u024F' + }, + { + 'name': 'InLatin_Extended_C', + 'bmp': '\u2C60-\u2C7F' + }, + { + 'name': 'InLatin_Extended_D', + 'bmp': '\uA720-\uA7FF' + }, + { + 'name': 'InLatin_Extended_E', + 'bmp': '\uAB30-\uAB6F' + }, + { + 'name': 'InLepcha', + 'bmp': '\u1C00-\u1C4F' + }, + { + 'name': 'InLetterlike_Symbols', + 'bmp': '\u2100-\u214F' + }, + { + 'name': 'InLimbu', + 'bmp': '\u1900-\u194F' + }, + { + 'name': 'InLinear_A', + 'astral': '\uD801[\uDE00-\uDF7F]' + }, + { + 'name': 'InLinear_B_Ideograms', + 'astral': '\uD800[\uDC80-\uDCFF]' + }, + { + 'name': 'InLinear_B_Syllabary', + 'astral': '\uD800[\uDC00-\uDC7F]' + }, + { + 'name': 'InLisu', + 'bmp': '\uA4D0-\uA4FF' + }, + { + 'name': 'InLow_Surrogates', + 'bmp': '\uDC00-\uDFFF' + }, + { + 'name': 'InLycian', + 'astral': '\uD800[\uDE80-\uDE9F]' + }, + { + 'name': 'InLydian', + 'astral': '\uD802[\uDD20-\uDD3F]' + }, + { + 'name': 'InMahajani', + 'astral': '\uD804[\uDD50-\uDD7F]' + }, + { + 'name': 'InMahjong_Tiles', + 'astral': '\uD83C[\uDC00-\uDC2F]' + }, + { + 'name': 'InMakasar', + 'astral': '\uD807[\uDEE0-\uDEFF]' + }, + { + 'name': 'InMalayalam', + 'bmp': '\u0D00-\u0D7F' + }, + { + 'name': 'InMandaic', + 'bmp': '\u0840-\u085F' + }, + { + 'name': 'InManichaean', + 'astral': '\uD802[\uDEC0-\uDEFF]' + }, + { + 'name': 'InMarchen', + 'astral': '\uD807[\uDC70-\uDCBF]' + }, + { + 'name': 'InMasaram_Gondi', + 'astral': '\uD807[\uDD00-\uDD5F]' + }, + { + 'name': 'InMathematical_Alphanumeric_Symbols', + 'astral': '\uD835[\uDC00-\uDFFF]' + }, + { + 'name': 'InMathematical_Operators', + 'bmp': '\u2200-\u22FF' + }, + { + 'name': 'InMayan_Numerals', + 'astral': '\uD834[\uDEE0-\uDEFF]' + }, + { + 'name': 'InMedefaidrin', + 'astral': '\uD81B[\uDE40-\uDE9F]' + }, + { + 'name': 'InMeetei_Mayek', + 'bmp': '\uABC0-\uABFF' + }, + { + 'name': 'InMeetei_Mayek_Extensions', + 'bmp': '\uAAE0-\uAAFF' + }, + { + 'name': 'InMende_Kikakui', + 'astral': '\uD83A[\uDC00-\uDCDF]' + }, + { + 'name': 'InMeroitic_Cursive', + 'astral': '\uD802[\uDDA0-\uDDFF]' + }, + { + 'name': 'InMeroitic_Hieroglyphs', + 'astral': '\uD802[\uDD80-\uDD9F]' + }, + { + 'name': 'InMiao', + 'astral': '\uD81B[\uDF00-\uDF9F]' + }, + { + 'name': 'InMiscellaneous_Mathematical_Symbols_A', + 'bmp': '\u27C0-\u27EF' + }, + { + 'name': 'InMiscellaneous_Mathematical_Symbols_B', + 'bmp': '\u2980-\u29FF' + }, + { + 'name': 'InMiscellaneous_Symbols', + 'bmp': '\u2600-\u26FF' + }, + { + 'name': 'InMiscellaneous_Symbols_And_Arrows', + 'bmp': '\u2B00-\u2BFF' + }, + { + 'name': 'InMiscellaneous_Symbols_And_Pictographs', + 'astral': '\uD83C[\uDF00-\uDFFF]|\uD83D[\uDC00-\uDDFF]' + }, + { + 'name': 'InMiscellaneous_Technical', + 'bmp': '\u2300-\u23FF' + }, + { + 'name': 'InModi', + 'astral': '\uD805[\uDE00-\uDE5F]' + }, + { + 'name': 'InModifier_Tone_Letters', + 'bmp': '\uA700-\uA71F' + }, + { + 'name': 'InMongolian', + 'bmp': '\u1800-\u18AF' + }, + { + 'name': 'InMongolian_Supplement', + 'astral': '\uD805[\uDE60-\uDE7F]' + }, + { + 'name': 'InMro', + 'astral': '\uD81A[\uDE40-\uDE6F]' + }, + { + 'name': 'InMultani', + 'astral': '\uD804[\uDE80-\uDEAF]' + }, + { + 'name': 'InMusical_Symbols', + 'astral': '\uD834[\uDD00-\uDDFF]' + }, + { + 'name': 'InMyanmar', + 'bmp': '\u1000-\u109F' + }, + { + 'name': 'InMyanmar_Extended_A', + 'bmp': '\uAA60-\uAA7F' + }, + { + 'name': 'InMyanmar_Extended_B', + 'bmp': '\uA9E0-\uA9FF' + }, + { + 'name': 'InNKo', + 'bmp': '\u07C0-\u07FF' + }, + { + 'name': 'InNabataean', + 'astral': '\uD802[\uDC80-\uDCAF]' + }, + { + 'name': 'InNew_Tai_Lue', + 'bmp': '\u1980-\u19DF' + }, + { + 'name': 'InNewa', + 'astral': '\uD805[\uDC00-\uDC7F]' + }, + { + 'name': 'InNumber_Forms', + 'bmp': '\u2150-\u218F' + }, + { + 'name': 'InNushu', + 'astral': '\uD82C[\uDD70-\uDEFF]' + }, + { + 'name': 'InOgham', + 'bmp': '\u1680-\u169F' + }, + { + 'name': 'InOl_Chiki', + 'bmp': '\u1C50-\u1C7F' + }, + { + 'name': 'InOld_Hungarian', + 'astral': '\uD803[\uDC80-\uDCFF]' + }, + { + 'name': 'InOld_Italic', + 'astral': '\uD800[\uDF00-\uDF2F]' + }, + { + 'name': 'InOld_North_Arabian', + 'astral': '\uD802[\uDE80-\uDE9F]' + }, + { + 'name': 'InOld_Permic', + 'astral': '\uD800[\uDF50-\uDF7F]' + }, + { + 'name': 'InOld_Persian', + 'astral': '\uD800[\uDFA0-\uDFDF]' + }, + { + 'name': 'InOld_Sogdian', + 'astral': '\uD803[\uDF00-\uDF2F]' + }, + { + 'name': 'InOld_South_Arabian', + 'astral': '\uD802[\uDE60-\uDE7F]' + }, + { + 'name': 'InOld_Turkic', + 'astral': '\uD803[\uDC00-\uDC4F]' + }, + { + 'name': 'InOptical_Character_Recognition', + 'bmp': '\u2440-\u245F' + }, + { + 'name': 'InOriya', + 'bmp': '\u0B00-\u0B7F' + }, + { + 'name': 'InOrnamental_Dingbats', + 'astral': '\uD83D[\uDE50-\uDE7F]' + }, + { + 'name': 'InOsage', + 'astral': '\uD801[\uDCB0-\uDCFF]' + }, + { + 'name': 'InOsmanya', + 'astral': '\uD801[\uDC80-\uDCAF]' + }, + { + 'name': 'InPahawh_Hmong', + 'astral': '\uD81A[\uDF00-\uDF8F]' + }, + { + 'name': 'InPalmyrene', + 'astral': '\uD802[\uDC60-\uDC7F]' + }, + { + 'name': 'InPau_Cin_Hau', + 'astral': '\uD806[\uDEC0-\uDEFF]' + }, + { + 'name': 'InPhags_Pa', + 'bmp': '\uA840-\uA87F' + }, + { + 'name': 'InPhaistos_Disc', + 'astral': '\uD800[\uDDD0-\uDDFF]' + }, + { + 'name': 'InPhoenician', + 'astral': '\uD802[\uDD00-\uDD1F]' + }, + { + 'name': 'InPhonetic_Extensions', + 'bmp': '\u1D00-\u1D7F' + }, + { + 'name': 'InPhonetic_Extensions_Supplement', + 'bmp': '\u1D80-\u1DBF' + }, + { + 'name': 'InPlaying_Cards', + 'astral': '\uD83C[\uDCA0-\uDCFF]' + }, + { + 'name': 'InPrivate_Use_Area', + 'bmp': '\uE000-\uF8FF' + }, + { + 'name': 'InPsalter_Pahlavi', + 'astral': '\uD802[\uDF80-\uDFAF]' + }, + { + 'name': 'InRejang', + 'bmp': '\uA930-\uA95F' + }, + { + 'name': 'InRumi_Numeral_Symbols', + 'astral': '\uD803[\uDE60-\uDE7F]' + }, + { + 'name': 'InRunic', + 'bmp': '\u16A0-\u16FF' + }, + { + 'name': 'InSamaritan', + 'bmp': '\u0800-\u083F' + }, + { + 'name': 'InSaurashtra', + 'bmp': '\uA880-\uA8DF' + }, + { + 'name': 'InSharada', + 'astral': '\uD804[\uDD80-\uDDDF]' + }, + { + 'name': 'InShavian', + 'astral': '\uD801[\uDC50-\uDC7F]' + }, + { + 'name': 'InShorthand_Format_Controls', + 'astral': '\uD82F[\uDCA0-\uDCAF]' + }, + { + 'name': 'InSiddham', + 'astral': '\uD805[\uDD80-\uDDFF]' + }, + { + 'name': 'InSinhala', + 'bmp': '\u0D80-\u0DFF' + }, + { + 'name': 'InSinhala_Archaic_Numbers', + 'astral': '\uD804[\uDDE0-\uDDFF]' + }, + { + 'name': 'InSmall_Form_Variants', + 'bmp': '\uFE50-\uFE6F' + }, + { + 'name': 'InSogdian', + 'astral': '\uD803[\uDF30-\uDF6F]' + }, + { + 'name': 'InSora_Sompeng', + 'astral': '\uD804[\uDCD0-\uDCFF]' + }, + { + 'name': 'InSoyombo', + 'astral': '\uD806[\uDE50-\uDEAF]' + }, + { + 'name': 'InSpacing_Modifier_Letters', + 'bmp': '\u02B0-\u02FF' + }, + { + 'name': 'InSpecials', + 'bmp': '\uFFF0-\uFFFF' + }, + { + 'name': 'InSundanese', + 'bmp': '\u1B80-\u1BBF' + }, + { + 'name': 'InSundanese_Supplement', + 'bmp': '\u1CC0-\u1CCF' + }, + { + 'name': 'InSuperscripts_And_Subscripts', + 'bmp': '\u2070-\u209F' + }, + { + 'name': 'InSupplemental_Arrows_A', + 'bmp': '\u27F0-\u27FF' + }, + { + 'name': 'InSupplemental_Arrows_B', + 'bmp': '\u2900-\u297F' + }, + { + 'name': 'InSupplemental_Arrows_C', + 'astral': '\uD83E[\uDC00-\uDCFF]' + }, + { + 'name': 'InSupplemental_Mathematical_Operators', + 'bmp': '\u2A00-\u2AFF' + }, + { + 'name': 'InSupplemental_Punctuation', + 'bmp': '\u2E00-\u2E7F' + }, + { + 'name': 'InSupplemental_Symbols_And_Pictographs', + 'astral': '\uD83E[\uDD00-\uDDFF]' + }, + { + 'name': 'InSupplementary_Private_Use_Area_A', + 'astral': '[\uDB80-\uDBBF][\uDC00-\uDFFF]' + }, + { + 'name': 'InSupplementary_Private_Use_Area_B', + 'astral': '[\uDBC0-\uDBFF][\uDC00-\uDFFF]' + }, + { + 'name': 'InSutton_SignWriting', + 'astral': '\uD836[\uDC00-\uDEAF]' + }, + { + 'name': 'InSyloti_Nagri', + 'bmp': '\uA800-\uA82F' + }, + { + 'name': 'InSyriac', + 'bmp': '\u0700-\u074F' + }, + { + 'name': 'InSyriac_Supplement', + 'bmp': '\u0860-\u086F' + }, + { + 'name': 'InTagalog', + 'bmp': '\u1700-\u171F' + }, + { + 'name': 'InTagbanwa', + 'bmp': '\u1760-\u177F' + }, + { + 'name': 'InTags', + 'astral': '\uDB40[\uDC00-\uDC7F]' + }, + { + 'name': 'InTai_Le', + 'bmp': '\u1950-\u197F' + }, + { + 'name': 'InTai_Tham', + 'bmp': '\u1A20-\u1AAF' + }, + { + 'name': 'InTai_Viet', + 'bmp': '\uAA80-\uAADF' + }, + { + 'name': 'InTai_Xuan_Jing_Symbols', + 'astral': '\uD834[\uDF00-\uDF5F]' + }, + { + 'name': 'InTakri', + 'astral': '\uD805[\uDE80-\uDECF]' + }, + { + 'name': 'InTamil', + 'bmp': '\u0B80-\u0BFF' + }, + { + 'name': 'InTangut', + 'astral': '[\uD81C-\uD821][\uDC00-\uDFFF]' + }, + { + 'name': 'InTangut_Components', + 'astral': '\uD822[\uDC00-\uDEFF]' + }, + { + 'name': 'InTelugu', + 'bmp': '\u0C00-\u0C7F' + }, + { + 'name': 'InThaana', + 'bmp': '\u0780-\u07BF' + }, + { + 'name': 'InThai', + 'bmp': '\u0E00-\u0E7F' + }, + { + 'name': 'InTibetan', + 'bmp': '\u0F00-\u0FFF' + }, + { + 'name': 'InTifinagh', + 'bmp': '\u2D30-\u2D7F' + }, + { + 'name': 'InTirhuta', + 'astral': '\uD805[\uDC80-\uDCDF]' + }, + { + 'name': 'InTransport_And_Map_Symbols', + 'astral': '\uD83D[\uDE80-\uDEFF]' + }, + { + 'name': 'InUgaritic', + 'astral': '\uD800[\uDF80-\uDF9F]' + }, + { + 'name': 'InUnified_Canadian_Aboriginal_Syllabics', + 'bmp': '\u1400-\u167F' + }, + { + 'name': 'InUnified_Canadian_Aboriginal_Syllabics_Extended', + 'bmp': '\u18B0-\u18FF' + }, + { + 'name': 'InVai', + 'bmp': '\uA500-\uA63F' + }, + { + 'name': 'InVariation_Selectors', + 'bmp': '\uFE00-\uFE0F' + }, + { + 'name': 'InVariation_Selectors_Supplement', + 'astral': '\uDB40[\uDD00-\uDDEF]' + }, + { + 'name': 'InVedic_Extensions', + 'bmp': '\u1CD0-\u1CFF' + }, + { + 'name': 'InVertical_Forms', + 'bmp': '\uFE10-\uFE1F' + }, + { + 'name': 'InWarang_Citi', + 'astral': '\uD806[\uDCA0-\uDCFF]' + }, + { + 'name': 'InYi_Radicals', + 'bmp': '\uA490-\uA4CF' + }, + { + 'name': 'InYi_Syllables', + 'bmp': '\uA000-\uA48F' + }, + { + 'name': 'InYijing_Hexagram_Symbols', + 'bmp': '\u4DC0-\u4DFF' + }, + { + 'name': 'InZanabazar_Square', + 'astral': '\uD806[\uDE00-\uDE4F]' + }, + { + 'name': 'Inundefined', + 'astral': '\uD803[\uDE80-\uDEBF\uDFB0-\uDFFF]|\uD806[\uDD00-\uDD5F\uDDA0-\uDDFF]|\uD807[\uDFB0-\uDFFF]|\uD80D[\uDC30-\uDC3F]|\uD822[\uDF00-\uDFFF]|\uD823[\uDC00-\uDD8F]|\uD82C[\uDD30-\uDD6F]|\uD838[\uDD00-\uDD4F\uDEC0-\uDEFF]|\uD83B[\uDD00-\uDD4F]|\uD83E[\uDE70-\uDFFF]|[\uD880-\uD883][\uDC00-\uDFFF]|\uD884[\uDC00-\uDF4F]' + } +]; + +},{}],223:[function(require,module,exports){ +module.exports = [ + { + 'name': 'C', + 'alias': 'Other', + 'isBmpLast': true, + 'bmp': '\0-\x1F\x7F-\x9F\xAD\u0378\u0379\u0380-\u0383\u038B\u038D\u03A2\u0530\u0557\u0558\u058B\u058C\u0590\u05C8-\u05CF\u05EB-\u05EE\u05F5-\u0605\u061C\u061D\u06DD\u070E\u070F\u074B\u074C\u07B2-\u07BF\u07FB\u07FC\u082E\u082F\u083F\u085C\u085D\u085F\u086B-\u089F\u08B5\u08C8-\u08D2\u08E2\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A77-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF2-\u0AF8\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B54\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B78-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BFB-\u0BFF\u0C0D\u0C11\u0C29\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5B-\u0C5F\u0C64\u0C65\u0C70-\u0C76\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0CFF\u0D0D\u0D11\u0D45\u0D49\u0D50-\u0D53\u0D64\u0D65\u0D80\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DE5\u0DF0\u0DF1\u0DF5-\u0E00\u0E3B-\u0E3E\u0E5C-\u0E80\u0E83\u0E85\u0E8B\u0EA4\u0EA6\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F48\u0F6D-\u0F70\u0F98\u0FBD\u0FCD\u0FDB-\u0FFF\u10C6\u10C8-\u10CC\u10CE\u10CF\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u137D-\u137F\u139A-\u139F\u13F6\u13F7\u13FE\u13FF\u169D-\u169F\u16F9-\u16FF\u170D\u1715-\u171F\u1737-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17DE\u17DF\u17EA-\u17EF\u17FA-\u17FF\u180E\u180F\u181A-\u181F\u1879-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191F\u192C-\u192F\u193C-\u193F\u1941-\u1943\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DB-\u19DD\u1A1C\u1A1D\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1A9F\u1AAE\u1AAF\u1AC1-\u1AFF\u1B4C-\u1B4F\u1B7D-\u1B7F\u1BF4-\u1BFB\u1C38-\u1C3A\u1C4A-\u1C4C\u1C89-\u1C8F\u1CBB\u1CBC\u1CC8-\u1CCF\u1CFB-\u1CFF\u1DFA\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FC5\u1FD4\u1FD5\u1FDC\u1FF0\u1FF1\u1FF5\u1FFF\u200B-\u200F\u202A-\u202E\u2060-\u206F\u2072\u2073\u208F\u209D-\u209F\u20C0-\u20CF\u20F1-\u20FF\u218C-\u218F\u2427-\u243F\u244B-\u245F\u2B74\u2B75\u2B96\u2C2F\u2C5F\u2CF4-\u2CF8\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D71-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E53-\u2E7F\u2E9A\u2EF4-\u2EFF\u2FD6-\u2FEF\u2FFC-\u2FFF\u3040\u3097\u3098\u3100-\u3104\u3130\u318F\u31E4-\u31EF\u321F\u9FFD-\u9FFF\uA48D-\uA48F\uA4C7-\uA4CF\uA62C-\uA63F\uA6F8-\uA6FF\uA7C0\uA7C1\uA7CB-\uA7F4\uA82D-\uA82F\uA83A-\uA83F\uA878-\uA87F\uA8C6-\uA8CD\uA8DA-\uA8DF\uA954-\uA95E\uA97D-\uA97F\uA9CE\uA9DA-\uA9DD\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A\uAA5B\uAAC3-\uAADA\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F\uAB6C-\uAB6F\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBC2-\uFBD2\uFD40-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFE\uFDFF\uFE1A-\uFE1F\uFE53\uFE67\uFE6C-\uFE6F\uFE75\uFEFD-\uFF00\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFDF\uFFE7\uFFEF-\uFFFB\uFFFE\uFFFF', + 'astral': '\uD800[\uDC0C\uDC27\uDC3B\uDC3E\uDC4E\uDC4F\uDC5E-\uDC7F\uDCFB-\uDCFF\uDD03-\uDD06\uDD34-\uDD36\uDD8F\uDD9D-\uDD9F\uDDA1-\uDDCF\uDDFE-\uDE7F\uDE9D-\uDE9F\uDED1-\uDEDF\uDEFC-\uDEFF\uDF24-\uDF2C\uDF4B-\uDF4F\uDF7B-\uDF7F\uDF9E\uDFC4-\uDFC7\uDFD6-\uDFFF]|\uD801[\uDC9E\uDC9F\uDCAA-\uDCAF\uDCD4-\uDCD7\uDCFC-\uDCFF\uDD28-\uDD2F\uDD64-\uDD6E\uDD70-\uDDFF\uDF37-\uDF3F\uDF56-\uDF5F\uDF68-\uDFFF]|\uD802[\uDC06\uDC07\uDC09\uDC36\uDC39-\uDC3B\uDC3D\uDC3E\uDC56\uDC9F-\uDCA6\uDCB0-\uDCDF\uDCF3\uDCF6-\uDCFA\uDD1C-\uDD1E\uDD3A-\uDD3E\uDD40-\uDD7F\uDDB8-\uDDBB\uDDD0\uDDD1\uDE04\uDE07-\uDE0B\uDE14\uDE18\uDE36\uDE37\uDE3B-\uDE3E\uDE49-\uDE4F\uDE59-\uDE5F\uDEA0-\uDEBF\uDEE7-\uDEEA\uDEF7-\uDEFF\uDF36-\uDF38\uDF56\uDF57\uDF73-\uDF77\uDF92-\uDF98\uDF9D-\uDFA8\uDFB0-\uDFFF]|\uD803[\uDC49-\uDC7F\uDCB3-\uDCBF\uDCF3-\uDCF9\uDD28-\uDD2F\uDD3A-\uDE5F\uDE7F\uDEAA\uDEAE\uDEAF\uDEB2-\uDEFF\uDF28-\uDF2F\uDF5A-\uDFAF\uDFCC-\uDFDF\uDFF7-\uDFFF]|\uD804[\uDC4E-\uDC51\uDC70-\uDC7E\uDCBD\uDCC2-\uDCCF\uDCE9-\uDCEF\uDCFA-\uDCFF\uDD35\uDD48-\uDD4F\uDD77-\uDD7F\uDDE0\uDDF5-\uDDFF\uDE12\uDE3F-\uDE7F\uDE87\uDE89\uDE8E\uDE9E\uDEAA-\uDEAF\uDEEB-\uDEEF\uDEFA-\uDEFF\uDF04\uDF0D\uDF0E\uDF11\uDF12\uDF29\uDF31\uDF34\uDF3A\uDF45\uDF46\uDF49\uDF4A\uDF4E\uDF4F\uDF51-\uDF56\uDF58-\uDF5C\uDF64\uDF65\uDF6D-\uDF6F\uDF75-\uDFFF]|\uD805[\uDC5C\uDC62-\uDC7F\uDCC8-\uDCCF\uDCDA-\uDD7F\uDDB6\uDDB7\uDDDE-\uDDFF\uDE45-\uDE4F\uDE5A-\uDE5F\uDE6D-\uDE7F\uDEB9-\uDEBF\uDECA-\uDEFF\uDF1B\uDF1C\uDF2C-\uDF2F\uDF40-\uDFFF]|\uD806[\uDC3C-\uDC9F\uDCF3-\uDCFE\uDD07\uDD08\uDD0A\uDD0B\uDD14\uDD17\uDD36\uDD39\uDD3A\uDD47-\uDD4F\uDD5A-\uDD9F\uDDA8\uDDA9\uDDD8\uDDD9\uDDE5-\uDDFF\uDE48-\uDE4F\uDEA3-\uDEBF\uDEF9-\uDFFF]|\uD807[\uDC09\uDC37\uDC46-\uDC4F\uDC6D-\uDC6F\uDC90\uDC91\uDCA8\uDCB7-\uDCFF\uDD07\uDD0A\uDD37-\uDD39\uDD3B\uDD3E\uDD48-\uDD4F\uDD5A-\uDD5F\uDD66\uDD69\uDD8F\uDD92\uDD99-\uDD9F\uDDAA-\uDEDF\uDEF9-\uDFAF\uDFB1-\uDFBF\uDFF2-\uDFFE]|\uD808[\uDF9A-\uDFFF]|\uD809[\uDC6F\uDC75-\uDC7F\uDD44-\uDFFF]|[\uD80A\uD80B\uD80E-\uD810\uD812-\uD819\uD824-\uD82B\uD82D\uD82E\uD830-\uD833\uD837\uD839\uD83F\uD87B-\uD87D\uD87F\uD885-\uDB3F\uDB41-\uDBFF][\uDC00-\uDFFF]|\uD80D[\uDC2F-\uDFFF]|\uD811[\uDE47-\uDFFF]|\uD81A[\uDE39-\uDE3F\uDE5F\uDE6A-\uDE6D\uDE70-\uDECF\uDEEE\uDEEF\uDEF6-\uDEFF\uDF46-\uDF4F\uDF5A\uDF62\uDF78-\uDF7C\uDF90-\uDFFF]|\uD81B[\uDC00-\uDE3F\uDE9B-\uDEFF\uDF4B-\uDF4E\uDF88-\uDF8E\uDFA0-\uDFDF\uDFE5-\uDFEF\uDFF2-\uDFFF]|\uD821[\uDFF8-\uDFFF]|\uD823[\uDCD6-\uDCFF\uDD09-\uDFFF]|\uD82C[\uDD1F-\uDD4F\uDD53-\uDD63\uDD68-\uDD6F\uDEFC-\uDFFF]|\uD82F[\uDC6B-\uDC6F\uDC7D-\uDC7F\uDC89-\uDC8F\uDC9A\uDC9B\uDCA0-\uDFFF]|\uD834[\uDCF6-\uDCFF\uDD27\uDD28\uDD73-\uDD7A\uDDE9-\uDDFF\uDE46-\uDEDF\uDEF4-\uDEFF\uDF57-\uDF5F\uDF79-\uDFFF]|\uD835[\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDFCC\uDFCD]|\uD836[\uDE8C-\uDE9A\uDEA0\uDEB0-\uDFFF]|\uD838[\uDC07\uDC19\uDC1A\uDC22\uDC25\uDC2B-\uDCFF\uDD2D-\uDD2F\uDD3E\uDD3F\uDD4A-\uDD4D\uDD50-\uDEBF\uDEFA-\uDEFE\uDF00-\uDFFF]|\uD83A[\uDCC5\uDCC6\uDCD7-\uDCFF\uDD4C-\uDD4F\uDD5A-\uDD5D\uDD60-\uDFFF]|\uD83B[\uDC00-\uDC70\uDCB5-\uDD00\uDD3E-\uDDFF\uDE04\uDE20\uDE23\uDE25\uDE26\uDE28\uDE33\uDE38\uDE3A\uDE3C-\uDE41\uDE43-\uDE46\uDE48\uDE4A\uDE4C\uDE50\uDE53\uDE55\uDE56\uDE58\uDE5A\uDE5C\uDE5E\uDE60\uDE63\uDE65\uDE66\uDE6B\uDE73\uDE78\uDE7D\uDE7F\uDE8A\uDE9C-\uDEA0\uDEA4\uDEAA\uDEBC-\uDEEF\uDEF2-\uDFFF]|\uD83C[\uDC2C-\uDC2F\uDC94-\uDC9F\uDCAF\uDCB0\uDCC0\uDCD0\uDCF6-\uDCFF\uDDAE-\uDDE5\uDE03-\uDE0F\uDE3C-\uDE3F\uDE49-\uDE4F\uDE52-\uDE5F\uDE66-\uDEFF]|\uD83D[\uDED8-\uDEDF\uDEED-\uDEEF\uDEFD-\uDEFF\uDF74-\uDF7F\uDFD9-\uDFDF\uDFEC-\uDFFF]|\uD83E[\uDC0C-\uDC0F\uDC48-\uDC4F\uDC5A-\uDC5F\uDC88-\uDC8F\uDCAE\uDCAF\uDCB2-\uDCFF\uDD79\uDDCC\uDE54-\uDE5F\uDE6E\uDE6F\uDE75-\uDE77\uDE7B-\uDE7F\uDE87-\uDE8F\uDEA9-\uDEAF\uDEB7-\uDEBF\uDEC3-\uDECF\uDED7-\uDEFF\uDF93\uDFCB-\uDFEF\uDFFA-\uDFFF]|\uD869[\uDEDE-\uDEFF]|\uD86D[\uDF35-\uDF3F]|\uD86E[\uDC1E\uDC1F]|\uD873[\uDEA2-\uDEAF]|\uD87A[\uDFE1-\uDFFF]|\uD87E[\uDE1E-\uDFFF]|\uD884[\uDF4B-\uDFFF]|\uDB40[\uDC00-\uDCFF\uDDF0-\uDFFF]' + }, + { + 'name': 'Cc', + 'alias': 'Control', + 'bmp': '\0-\x1F\x7F-\x9F' + }, + { + 'name': 'Cf', + 'alias': 'Format', + 'bmp': '\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB', + 'astral': '\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC38]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]' + }, + { + 'name': 'Cn', + 'alias': 'Unassigned', + 'bmp': '\u0378\u0379\u0380-\u0383\u038B\u038D\u03A2\u0530\u0557\u0558\u058B\u058C\u0590\u05C8-\u05CF\u05EB-\u05EE\u05F5-\u05FF\u061D\u070E\u074B\u074C\u07B2-\u07BF\u07FB\u07FC\u082E\u082F\u083F\u085C\u085D\u085F\u086B-\u089F\u08B5\u08C8-\u08D2\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A77-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF2-\u0AF8\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B54\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B78-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BFB-\u0BFF\u0C0D\u0C11\u0C29\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5B-\u0C5F\u0C64\u0C65\u0C70-\u0C76\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0CFF\u0D0D\u0D11\u0D45\u0D49\u0D50-\u0D53\u0D64\u0D65\u0D80\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DE5\u0DF0\u0DF1\u0DF5-\u0E00\u0E3B-\u0E3E\u0E5C-\u0E80\u0E83\u0E85\u0E8B\u0EA4\u0EA6\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F48\u0F6D-\u0F70\u0F98\u0FBD\u0FCD\u0FDB-\u0FFF\u10C6\u10C8-\u10CC\u10CE\u10CF\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u137D-\u137F\u139A-\u139F\u13F6\u13F7\u13FE\u13FF\u169D-\u169F\u16F9-\u16FF\u170D\u1715-\u171F\u1737-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17DE\u17DF\u17EA-\u17EF\u17FA-\u17FF\u180F\u181A-\u181F\u1879-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191F\u192C-\u192F\u193C-\u193F\u1941-\u1943\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DB-\u19DD\u1A1C\u1A1D\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1A9F\u1AAE\u1AAF\u1AC1-\u1AFF\u1B4C-\u1B4F\u1B7D-\u1B7F\u1BF4-\u1BFB\u1C38-\u1C3A\u1C4A-\u1C4C\u1C89-\u1C8F\u1CBB\u1CBC\u1CC8-\u1CCF\u1CFB-\u1CFF\u1DFA\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FC5\u1FD4\u1FD5\u1FDC\u1FF0\u1FF1\u1FF5\u1FFF\u2065\u2072\u2073\u208F\u209D-\u209F\u20C0-\u20CF\u20F1-\u20FF\u218C-\u218F\u2427-\u243F\u244B-\u245F\u2B74\u2B75\u2B96\u2C2F\u2C5F\u2CF4-\u2CF8\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D71-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E53-\u2E7F\u2E9A\u2EF4-\u2EFF\u2FD6-\u2FEF\u2FFC-\u2FFF\u3040\u3097\u3098\u3100-\u3104\u3130\u318F\u31E4-\u31EF\u321F\u9FFD-\u9FFF\uA48D-\uA48F\uA4C7-\uA4CF\uA62C-\uA63F\uA6F8-\uA6FF\uA7C0\uA7C1\uA7CB-\uA7F4\uA82D-\uA82F\uA83A-\uA83F\uA878-\uA87F\uA8C6-\uA8CD\uA8DA-\uA8DF\uA954-\uA95E\uA97D-\uA97F\uA9CE\uA9DA-\uA9DD\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A\uAA5B\uAAC3-\uAADA\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F\uAB6C-\uAB6F\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBC2-\uFBD2\uFD40-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFE\uFDFF\uFE1A-\uFE1F\uFE53\uFE67\uFE6C-\uFE6F\uFE75\uFEFD\uFEFE\uFF00\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFDF\uFFE7\uFFEF-\uFFF8\uFFFE\uFFFF', + 'astral': '\uD800[\uDC0C\uDC27\uDC3B\uDC3E\uDC4E\uDC4F\uDC5E-\uDC7F\uDCFB-\uDCFF\uDD03-\uDD06\uDD34-\uDD36\uDD8F\uDD9D-\uDD9F\uDDA1-\uDDCF\uDDFE-\uDE7F\uDE9D-\uDE9F\uDED1-\uDEDF\uDEFC-\uDEFF\uDF24-\uDF2C\uDF4B-\uDF4F\uDF7B-\uDF7F\uDF9E\uDFC4-\uDFC7\uDFD6-\uDFFF]|\uD801[\uDC9E\uDC9F\uDCAA-\uDCAF\uDCD4-\uDCD7\uDCFC-\uDCFF\uDD28-\uDD2F\uDD64-\uDD6E\uDD70-\uDDFF\uDF37-\uDF3F\uDF56-\uDF5F\uDF68-\uDFFF]|\uD802[\uDC06\uDC07\uDC09\uDC36\uDC39-\uDC3B\uDC3D\uDC3E\uDC56\uDC9F-\uDCA6\uDCB0-\uDCDF\uDCF3\uDCF6-\uDCFA\uDD1C-\uDD1E\uDD3A-\uDD3E\uDD40-\uDD7F\uDDB8-\uDDBB\uDDD0\uDDD1\uDE04\uDE07-\uDE0B\uDE14\uDE18\uDE36\uDE37\uDE3B-\uDE3E\uDE49-\uDE4F\uDE59-\uDE5F\uDEA0-\uDEBF\uDEE7-\uDEEA\uDEF7-\uDEFF\uDF36-\uDF38\uDF56\uDF57\uDF73-\uDF77\uDF92-\uDF98\uDF9D-\uDFA8\uDFB0-\uDFFF]|\uD803[\uDC49-\uDC7F\uDCB3-\uDCBF\uDCF3-\uDCF9\uDD28-\uDD2F\uDD3A-\uDE5F\uDE7F\uDEAA\uDEAE\uDEAF\uDEB2-\uDEFF\uDF28-\uDF2F\uDF5A-\uDFAF\uDFCC-\uDFDF\uDFF7-\uDFFF]|\uD804[\uDC4E-\uDC51\uDC70-\uDC7E\uDCC2-\uDCCC\uDCCE\uDCCF\uDCE9-\uDCEF\uDCFA-\uDCFF\uDD35\uDD48-\uDD4F\uDD77-\uDD7F\uDDE0\uDDF5-\uDDFF\uDE12\uDE3F-\uDE7F\uDE87\uDE89\uDE8E\uDE9E\uDEAA-\uDEAF\uDEEB-\uDEEF\uDEFA-\uDEFF\uDF04\uDF0D\uDF0E\uDF11\uDF12\uDF29\uDF31\uDF34\uDF3A\uDF45\uDF46\uDF49\uDF4A\uDF4E\uDF4F\uDF51-\uDF56\uDF58-\uDF5C\uDF64\uDF65\uDF6D-\uDF6F\uDF75-\uDFFF]|\uD805[\uDC5C\uDC62-\uDC7F\uDCC8-\uDCCF\uDCDA-\uDD7F\uDDB6\uDDB7\uDDDE-\uDDFF\uDE45-\uDE4F\uDE5A-\uDE5F\uDE6D-\uDE7F\uDEB9-\uDEBF\uDECA-\uDEFF\uDF1B\uDF1C\uDF2C-\uDF2F\uDF40-\uDFFF]|\uD806[\uDC3C-\uDC9F\uDCF3-\uDCFE\uDD07\uDD08\uDD0A\uDD0B\uDD14\uDD17\uDD36\uDD39\uDD3A\uDD47-\uDD4F\uDD5A-\uDD9F\uDDA8\uDDA9\uDDD8\uDDD9\uDDE5-\uDDFF\uDE48-\uDE4F\uDEA3-\uDEBF\uDEF9-\uDFFF]|\uD807[\uDC09\uDC37\uDC46-\uDC4F\uDC6D-\uDC6F\uDC90\uDC91\uDCA8\uDCB7-\uDCFF\uDD07\uDD0A\uDD37-\uDD39\uDD3B\uDD3E\uDD48-\uDD4F\uDD5A-\uDD5F\uDD66\uDD69\uDD8F\uDD92\uDD99-\uDD9F\uDDAA-\uDEDF\uDEF9-\uDFAF\uDFB1-\uDFBF\uDFF2-\uDFFE]|\uD808[\uDF9A-\uDFFF]|\uD809[\uDC6F\uDC75-\uDC7F\uDD44-\uDFFF]|[\uD80A\uD80B\uD80E-\uD810\uD812-\uD819\uD824-\uD82B\uD82D\uD82E\uD830-\uD833\uD837\uD839\uD83F\uD87B-\uD87D\uD87F\uD885-\uDB3F\uDB41-\uDB7F][\uDC00-\uDFFF]|\uD80D[\uDC2F\uDC39-\uDFFF]|\uD811[\uDE47-\uDFFF]|\uD81A[\uDE39-\uDE3F\uDE5F\uDE6A-\uDE6D\uDE70-\uDECF\uDEEE\uDEEF\uDEF6-\uDEFF\uDF46-\uDF4F\uDF5A\uDF62\uDF78-\uDF7C\uDF90-\uDFFF]|\uD81B[\uDC00-\uDE3F\uDE9B-\uDEFF\uDF4B-\uDF4E\uDF88-\uDF8E\uDFA0-\uDFDF\uDFE5-\uDFEF\uDFF2-\uDFFF]|\uD821[\uDFF8-\uDFFF]|\uD823[\uDCD6-\uDCFF\uDD09-\uDFFF]|\uD82C[\uDD1F-\uDD4F\uDD53-\uDD63\uDD68-\uDD6F\uDEFC-\uDFFF]|\uD82F[\uDC6B-\uDC6F\uDC7D-\uDC7F\uDC89-\uDC8F\uDC9A\uDC9B\uDCA4-\uDFFF]|\uD834[\uDCF6-\uDCFF\uDD27\uDD28\uDDE9-\uDDFF\uDE46-\uDEDF\uDEF4-\uDEFF\uDF57-\uDF5F\uDF79-\uDFFF]|\uD835[\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDFCC\uDFCD]|\uD836[\uDE8C-\uDE9A\uDEA0\uDEB0-\uDFFF]|\uD838[\uDC07\uDC19\uDC1A\uDC22\uDC25\uDC2B-\uDCFF\uDD2D-\uDD2F\uDD3E\uDD3F\uDD4A-\uDD4D\uDD50-\uDEBF\uDEFA-\uDEFE\uDF00-\uDFFF]|\uD83A[\uDCC5\uDCC6\uDCD7-\uDCFF\uDD4C-\uDD4F\uDD5A-\uDD5D\uDD60-\uDFFF]|\uD83B[\uDC00-\uDC70\uDCB5-\uDD00\uDD3E-\uDDFF\uDE04\uDE20\uDE23\uDE25\uDE26\uDE28\uDE33\uDE38\uDE3A\uDE3C-\uDE41\uDE43-\uDE46\uDE48\uDE4A\uDE4C\uDE50\uDE53\uDE55\uDE56\uDE58\uDE5A\uDE5C\uDE5E\uDE60\uDE63\uDE65\uDE66\uDE6B\uDE73\uDE78\uDE7D\uDE7F\uDE8A\uDE9C-\uDEA0\uDEA4\uDEAA\uDEBC-\uDEEF\uDEF2-\uDFFF]|\uD83C[\uDC2C-\uDC2F\uDC94-\uDC9F\uDCAF\uDCB0\uDCC0\uDCD0\uDCF6-\uDCFF\uDDAE-\uDDE5\uDE03-\uDE0F\uDE3C-\uDE3F\uDE49-\uDE4F\uDE52-\uDE5F\uDE66-\uDEFF]|\uD83D[\uDED8-\uDEDF\uDEED-\uDEEF\uDEFD-\uDEFF\uDF74-\uDF7F\uDFD9-\uDFDF\uDFEC-\uDFFF]|\uD83E[\uDC0C-\uDC0F\uDC48-\uDC4F\uDC5A-\uDC5F\uDC88-\uDC8F\uDCAE\uDCAF\uDCB2-\uDCFF\uDD79\uDDCC\uDE54-\uDE5F\uDE6E\uDE6F\uDE75-\uDE77\uDE7B-\uDE7F\uDE87-\uDE8F\uDEA9-\uDEAF\uDEB7-\uDEBF\uDEC3-\uDECF\uDED7-\uDEFF\uDF93\uDFCB-\uDFEF\uDFFA-\uDFFF]|\uD869[\uDEDE-\uDEFF]|\uD86D[\uDF35-\uDF3F]|\uD86E[\uDC1E\uDC1F]|\uD873[\uDEA2-\uDEAF]|\uD87A[\uDFE1-\uDFFF]|\uD87E[\uDE1E-\uDFFF]|\uD884[\uDF4B-\uDFFF]|\uDB40[\uDC00\uDC02-\uDC1F\uDC80-\uDCFF\uDDF0-\uDFFF]|[\uDBBF\uDBFF][\uDFFE\uDFFF]' + }, + { + 'name': 'Co', + 'alias': 'Private_Use', + 'bmp': '\uE000-\uF8FF', + 'astral': '[\uDB80-\uDBBE\uDBC0-\uDBFE][\uDC00-\uDFFF]|[\uDBBF\uDBFF][\uDC00-\uDFFD]' + }, + { + 'name': 'Cs', + 'alias': 'Surrogate', + 'bmp': '\uD800-\uDFFF' + }, + { + 'name': 'L', + 'alias': 'Letter', + 'bmp': 'A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08C7\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\u9FFC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7BF\uA7C2-\uA7CA\uA7F5-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC', + 'astral': '\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82C[\uDC00-\uDD1E\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDEC0-\uDEEB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDD\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A]' + }, + { + 'name': 'LC', + 'alias': 'Cased_Letter', + 'bmp': 'A-Za-z\xB5\xC0-\xD6\xD8-\xF6\xF8-\u01BA\u01BC-\u01BF\u01C4-\u0293\u0295-\u02AF\u0370-\u0373\u0376\u0377\u037B-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0560-\u0588\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FD-\u10FF\u13A0-\u13F5\u13F8-\u13FD\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1D00-\u1D2B\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2134\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2C7B\u2C7E-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\uA640-\uA66D\uA680-\uA69B\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7BF\uA7C2-\uA7CA\uA7F5\uA7F6\uA7FA\uAB30-\uAB5A\uAB60-\uAB68\uAB70-\uABBF\uFB00-\uFB06\uFB13-\uFB17\uFF21-\uFF3A\uFF41-\uFF5A', + 'astral': '\uD801[\uDC00-\uDC4F\uDCB0-\uDCD3\uDCD8-\uDCFB]|\uD803[\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD806[\uDCA0-\uDCDF]|\uD81B[\uDE40-\uDE7F]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDD00-\uDD43]' + }, + { + 'name': 'Ll', + 'alias': 'Lowercase_Letter', + 'bmp': 'a-z\xB5\xDF-\xF6\xF8-\xFF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E-\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F-\u0293\u0295-\u02AF\u0371\u0373\u0377\u037B-\u037D\u0390\u03AC-\u03CE\u03D0\u03D1\u03D5-\u03D7\u03D9\u03DB\u03DD\u03DF\u03E1\u03E3\u03E5\u03E7\u03E9\u03EB\u03ED\u03EF-\u03F3\u03F5\u03F8\u03FB\u03FC\u0430-\u045F\u0461\u0463\u0465\u0467\u0469\u046B\u046D\u046F\u0471\u0473\u0475\u0477\u0479\u047B\u047D\u047F\u0481\u048B\u048D\u048F\u0491\u0493\u0495\u0497\u0499\u049B\u049D\u049F\u04A1\u04A3\u04A5\u04A7\u04A9\u04AB\u04AD\u04AF\u04B1\u04B3\u04B5\u04B7\u04B9\u04BB\u04BD\u04BF\u04C2\u04C4\u04C6\u04C8\u04CA\u04CC\u04CE\u04CF\u04D1\u04D3\u04D5\u04D7\u04D9\u04DB\u04DD\u04DF\u04E1\u04E3\u04E5\u04E7\u04E9\u04EB\u04ED\u04EF\u04F1\u04F3\u04F5\u04F7\u04F9\u04FB\u04FD\u04FF\u0501\u0503\u0505\u0507\u0509\u050B\u050D\u050F\u0511\u0513\u0515\u0517\u0519\u051B\u051D\u051F\u0521\u0523\u0525\u0527\u0529\u052B\u052D\u052F\u0560-\u0588\u10D0-\u10FA\u10FD-\u10FF\u13F8-\u13FD\u1C80-\u1C88\u1D00-\u1D2B\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFF-\u1F07\u1F10-\u1F15\u1F20-\u1F27\u1F30-\u1F37\u1F40-\u1F45\u1F50-\u1F57\u1F60-\u1F67\u1F70-\u1F7D\u1F80-\u1F87\u1F90-\u1F97\u1FA0-\u1FA7\u1FB0-\u1FB4\u1FB6\u1FB7\u1FBE\u1FC2-\u1FC4\u1FC6\u1FC7\u1FD0-\u1FD3\u1FD6\u1FD7\u1FE0-\u1FE7\u1FF2-\u1FF4\u1FF6\u1FF7\u210A\u210E\u210F\u2113\u212F\u2134\u2139\u213C\u213D\u2146-\u2149\u214E\u2184\u2C30-\u2C5E\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\u2C81\u2C83\u2C85\u2C87\u2C89\u2C8B\u2C8D\u2C8F\u2C91\u2C93\u2C95\u2C97\u2C99\u2C9B\u2C9D\u2C9F\u2CA1\u2CA3\u2CA5\u2CA7\u2CA9\u2CAB\u2CAD\u2CAF\u2CB1\u2CB3\u2CB5\u2CB7\u2CB9\u2CBB\u2CBD\u2CBF\u2CC1\u2CC3\u2CC5\u2CC7\u2CC9\u2CCB\u2CCD\u2CCF\u2CD1\u2CD3\u2CD5\u2CD7\u2CD9\u2CDB\u2CDD\u2CDF\u2CE1\u2CE3\u2CE4\u2CEC\u2CEE\u2CF3\u2D00-\u2D25\u2D27\u2D2D\uA641\uA643\uA645\uA647\uA649\uA64B\uA64D\uA64F\uA651\uA653\uA655\uA657\uA659\uA65B\uA65D\uA65F\uA661\uA663\uA665\uA667\uA669\uA66B\uA66D\uA681\uA683\uA685\uA687\uA689\uA68B\uA68D\uA68F\uA691\uA693\uA695\uA697\uA699\uA69B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7BB\uA7BD\uA7BF\uA7C3\uA7C8\uA7CA\uA7F6\uA7FA\uAB30-\uAB5A\uAB60-\uAB68\uAB70-\uABBF\uFB00-\uFB06\uFB13-\uFB17\uFF41-\uFF5A', + 'astral': '\uD801[\uDC28-\uDC4F\uDCD8-\uDCFB]|\uD803[\uDCC0-\uDCF2]|\uD806[\uDCC0-\uDCDF]|\uD81B[\uDE60-\uDE7F]|\uD835[\uDC1A-\uDC33\uDC4E-\uDC54\uDC56-\uDC67\uDC82-\uDC9B\uDCB6-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDCEA-\uDD03\uDD1E-\uDD37\uDD52-\uDD6B\uDD86-\uDD9F\uDDBA-\uDDD3\uDDEE-\uDE07\uDE22-\uDE3B\uDE56-\uDE6F\uDE8A-\uDEA5\uDEC2-\uDEDA\uDEDC-\uDEE1\uDEFC-\uDF14\uDF16-\uDF1B\uDF36-\uDF4E\uDF50-\uDF55\uDF70-\uDF88\uDF8A-\uDF8F\uDFAA-\uDFC2\uDFC4-\uDFC9\uDFCB]|\uD83A[\uDD22-\uDD43]' + }, + { + 'name': 'Lm', + 'alias': 'Modifier_Letter', + 'bmp': '\u02B0-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0374\u037A\u0559\u0640\u06E5\u06E6\u07F4\u07F5\u07FA\u081A\u0824\u0828\u0971\u0E46\u0EC6\u10FC\u17D7\u1843\u1AA7\u1C78-\u1C7D\u1D2C-\u1D6A\u1D78\u1D9B-\u1DBF\u2071\u207F\u2090-\u209C\u2C7C\u2C7D\u2D6F\u2E2F\u3005\u3031-\u3035\u303B\u309D\u309E\u30FC-\u30FE\uA015\uA4F8-\uA4FD\uA60C\uA67F\uA69C\uA69D\uA717-\uA71F\uA770\uA788\uA7F8\uA7F9\uA9CF\uA9E6\uAA70\uAADD\uAAF3\uAAF4\uAB5C-\uAB5F\uAB69\uFF70\uFF9E\uFF9F', + 'astral': '\uD81A[\uDF40-\uDF43]|\uD81B[\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD838[\uDD37-\uDD3D]|\uD83A\uDD4B' + }, + { + 'name': 'Lo', + 'alias': 'Other_Letter', + 'bmp': '\xAA\xBA\u01BB\u01C0-\u01C3\u0294\u05D0-\u05EA\u05EF-\u05F2\u0620-\u063F\u0641-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u0800-\u0815\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08C7\u0904-\u0939\u093D\u0950\u0958-\u0961\u0972-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1100-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17DC\u1820-\u1842\u1844-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C77\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u2135-\u2138\u2D30-\u2D67\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3006\u303C\u3041-\u3096\u309F\u30A1-\u30FA\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\u9FFC\uA000-\uA014\uA016-\uA48C\uA4D0-\uA4F7\uA500-\uA60B\uA610-\uA61F\uA62A\uA62B\uA66E\uA6A0-\uA6E5\uA78F\uA7F7\uA7FB-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9E0-\uA9E4\uA9E7-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA6F\uAA71-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB\uAADC\uAAE0-\uAAEA\uAAF2\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF66-\uFF6F\uFF71-\uFF9D\uFFA0-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC', + 'astral': '\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC50-\uDC9D\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A]|\uD806[\uDC00-\uDC2B\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF4A\uDF50]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82C[\uDC00-\uDD1E\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD838[\uDD00-\uDD2C\uDD4E\uDEC0-\uDEEB]|\uD83A[\uDC00-\uDCC4]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDD\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A]' + }, + { + 'name': 'Lt', + 'alias': 'Titlecase_Letter', + 'bmp': '\u01C5\u01C8\u01CB\u01F2\u1F88-\u1F8F\u1F98-\u1F9F\u1FA8-\u1FAF\u1FBC\u1FCC\u1FFC' + }, + { + 'name': 'Lu', + 'alias': 'Uppercase_Letter', + 'bmp': 'A-Z\xC0-\xD6\xD8-\xDE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u0370\u0372\u0376\u037F\u0386\u0388-\u038A\u038C\u038E\u038F\u0391-\u03A1\u03A3-\u03AB\u03CF\u03D2-\u03D4\u03D8\u03DA\u03DC\u03DE\u03E0\u03E2\u03E4\u03E6\u03E8\u03EA\u03EC\u03EE\u03F4\u03F7\u03F9\u03FA\u03FD-\u042F\u0460\u0462\u0464\u0466\u0468\u046A\u046C\u046E\u0470\u0472\u0474\u0476\u0478\u047A\u047C\u047E\u0480\u048A\u048C\u048E\u0490\u0492\u0494\u0496\u0498\u049A\u049C\u049E\u04A0\u04A2\u04A4\u04A6\u04A8\u04AA\u04AC\u04AE\u04B0\u04B2\u04B4\u04B6\u04B8\u04BA\u04BC\u04BE\u04C0\u04C1\u04C3\u04C5\u04C7\u04C9\u04CB\u04CD\u04D0\u04D2\u04D4\u04D6\u04D8\u04DA\u04DC\u04DE\u04E0\u04E2\u04E4\u04E6\u04E8\u04EA\u04EC\u04EE\u04F0\u04F2\u04F4\u04F6\u04F8\u04FA\u04FC\u04FE\u0500\u0502\u0504\u0506\u0508\u050A\u050C\u050E\u0510\u0512\u0514\u0516\u0518\u051A\u051C\u051E\u0520\u0522\u0524\u0526\u0528\u052A\u052C\u052E\u0531-\u0556\u10A0-\u10C5\u10C7\u10CD\u13A0-\u13F5\u1C90-\u1CBA\u1CBD-\u1CBF\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFE\u1F08-\u1F0F\u1F18-\u1F1D\u1F28-\u1F2F\u1F38-\u1F3F\u1F48-\u1F4D\u1F59\u1F5B\u1F5D\u1F5F\u1F68-\u1F6F\u1FB8-\u1FBB\u1FC8-\u1FCB\u1FD8-\u1FDB\u1FE8-\u1FEC\u1FF8-\u1FFB\u2102\u2107\u210B-\u210D\u2110-\u2112\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u2130-\u2133\u213E\u213F\u2145\u2183\u2C00-\u2C2E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E-\u2C80\u2C82\u2C84\u2C86\u2C88\u2C8A\u2C8C\u2C8E\u2C90\u2C92\u2C94\u2C96\u2C98\u2C9A\u2C9C\u2C9E\u2CA0\u2CA2\u2CA4\u2CA6\u2CA8\u2CAA\u2CAC\u2CAE\u2CB0\u2CB2\u2CB4\u2CB6\u2CB8\u2CBA\u2CBC\u2CBE\u2CC0\u2CC2\u2CC4\u2CC6\u2CC8\u2CCA\u2CCC\u2CCE\u2CD0\u2CD2\u2CD4\u2CD6\u2CD8\u2CDA\u2CDC\u2CDE\u2CE0\u2CE2\u2CEB\u2CED\u2CF2\uA640\uA642\uA644\uA646\uA648\uA64A\uA64C\uA64E\uA650\uA652\uA654\uA656\uA658\uA65A\uA65C\uA65E\uA660\uA662\uA664\uA666\uA668\uA66A\uA66C\uA680\uA682\uA684\uA686\uA688\uA68A\uA68C\uA68E\uA690\uA692\uA694\uA696\uA698\uA69A\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\uA7BA\uA7BC\uA7BE\uA7C2\uA7C4-\uA7C7\uA7C9\uA7F5\uFF21-\uFF3A', + 'astral': '\uD801[\uDC00-\uDC27\uDCB0-\uDCD3]|\uD803[\uDC80-\uDCB2]|\uD806[\uDCA0-\uDCBF]|\uD81B[\uDE40-\uDE5F]|\uD835[\uDC00-\uDC19\uDC34-\uDC4D\uDC68-\uDC81\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB5\uDCD0-\uDCE9\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD38\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD6C-\uDD85\uDDA0-\uDDB9\uDDD4-\uDDED\uDE08-\uDE21\uDE3C-\uDE55\uDE70-\uDE89\uDEA8-\uDEC0\uDEE2-\uDEFA\uDF1C-\uDF34\uDF56-\uDF6E\uDF90-\uDFA8\uDFCA]|\uD83A[\uDD00-\uDD21]' + }, + { + 'name': 'M', + 'alias': 'Mark', + 'bmp': '\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C04\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u192B\u1930-\u193B\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1AC0\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F', + 'astral': '\uD800[\uDDFD\uDEE0\uDF76-\uDF7A]|\uD802[\uDE01-\uDE03\uDE05\uDE06\uDE0C-\uDE0F\uDE38-\uDE3A\uDE3F\uDEE5\uDEE6]|\uD803[\uDD24-\uDD27\uDEAB\uDEAC\uDF46-\uDF50]|\uD804[\uDC00-\uDC02\uDC38-\uDC46\uDC7F-\uDC82\uDCB0-\uDCBA\uDD00-\uDD02\uDD27-\uDD34\uDD45\uDD46\uDD73\uDD80-\uDD82\uDDB3-\uDDC0\uDDC9-\uDDCC\uDDCE\uDDCF\uDE2C-\uDE37\uDE3E\uDEDF-\uDEEA\uDF00-\uDF03\uDF3B\uDF3C\uDF3E-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF57\uDF62\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC35-\uDC46\uDC5E\uDCB0-\uDCC3\uDDAF-\uDDB5\uDDB8-\uDDC0\uDDDC\uDDDD\uDE30-\uDE40\uDEAB-\uDEB7\uDF1D-\uDF2B]|\uD806[\uDC2C-\uDC3A\uDD30-\uDD35\uDD37\uDD38\uDD3B-\uDD3E\uDD40\uDD42\uDD43\uDDD1-\uDDD7\uDDDA-\uDDE0\uDDE4\uDE01-\uDE0A\uDE33-\uDE39\uDE3B-\uDE3E\uDE47\uDE51-\uDE5B\uDE8A-\uDE99]|\uD807[\uDC2F-\uDC36\uDC38-\uDC3F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD31-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD45\uDD47\uDD8A-\uDD8E\uDD90\uDD91\uDD93-\uDD97\uDEF3-\uDEF6]|\uD81A[\uDEF0-\uDEF4\uDF30-\uDF36]|\uD81B[\uDF4F\uDF51-\uDF87\uDF8F-\uDF92\uDFE4\uDFF0\uDFF1]|\uD82F[\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A\uDD30-\uDD36\uDEEC-\uDEEF]|\uD83A[\uDCD0-\uDCD6\uDD44-\uDD4A]|\uDB40[\uDD00-\uDDEF]' + }, + { + 'name': 'Mc', + 'alias': 'Spacing_Mark', + 'bmp': '\u0903\u093B\u093E-\u0940\u0949-\u094C\u094E\u094F\u0982\u0983\u09BE-\u09C0\u09C7\u09C8\u09CB\u09CC\u09D7\u0A03\u0A3E-\u0A40\u0A83\u0ABE-\u0AC0\u0AC9\u0ACB\u0ACC\u0B02\u0B03\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD7\u0C01-\u0C03\u0C41-\u0C44\u0C82\u0C83\u0CBE\u0CC0-\u0CC4\u0CC7\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0D02\u0D03\u0D3E-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D57\u0D82\u0D83\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DF2\u0DF3\u0F3E\u0F3F\u0F7F\u102B\u102C\u1031\u1038\u103B\u103C\u1056\u1057\u1062-\u1064\u1067-\u106D\u1083\u1084\u1087-\u108C\u108F\u109A-\u109C\u17B6\u17BE-\u17C5\u17C7\u17C8\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1A19\u1A1A\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1B04\u1B35\u1B3B\u1B3D-\u1B41\u1B43\u1B44\u1B82\u1BA1\u1BA6\u1BA7\u1BAA\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1C24-\u1C2B\u1C34\u1C35\u1CE1\u1CF7\u302E\u302F\uA823\uA824\uA827\uA880\uA881\uA8B4-\uA8C3\uA952\uA953\uA983\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9C0\uAA2F\uAA30\uAA33\uAA34\uAA4D\uAA7B\uAA7D\uAAEB\uAAEE\uAAEF\uAAF5\uABE3\uABE4\uABE6\uABE7\uABE9\uABEA\uABEC', + 'astral': '\uD804[\uDC00\uDC02\uDC82\uDCB0-\uDCB2\uDCB7\uDCB8\uDD2C\uDD45\uDD46\uDD82\uDDB3-\uDDB5\uDDBF\uDDC0\uDDCE\uDE2C-\uDE2E\uDE32\uDE33\uDE35\uDEE0-\uDEE2\uDF02\uDF03\uDF3E\uDF3F\uDF41-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF57\uDF62\uDF63]|\uD805[\uDC35-\uDC37\uDC40\uDC41\uDC45\uDCB0-\uDCB2\uDCB9\uDCBB-\uDCBE\uDCC1\uDDAF-\uDDB1\uDDB8-\uDDBB\uDDBE\uDE30-\uDE32\uDE3B\uDE3C\uDE3E\uDEAC\uDEAE\uDEAF\uDEB6\uDF20\uDF21\uDF26]|\uD806[\uDC2C-\uDC2E\uDC38\uDD30-\uDD35\uDD37\uDD38\uDD3D\uDD40\uDD42\uDDD1-\uDDD3\uDDDC-\uDDDF\uDDE4\uDE39\uDE57\uDE58\uDE97]|\uD807[\uDC2F\uDC3E\uDCA9\uDCB1\uDCB4\uDD8A-\uDD8E\uDD93\uDD94\uDD96\uDEF5\uDEF6]|\uD81B[\uDF51-\uDF87\uDFF0\uDFF1]|\uD834[\uDD65\uDD66\uDD6D-\uDD72]' + }, + { + 'name': 'Me', + 'alias': 'Enclosing_Mark', + 'bmp': '\u0488\u0489\u1ABE\u20DD-\u20E0\u20E2-\u20E4\uA670-\uA672' + }, + { + 'name': 'Mn', + 'alias': 'Nonspacing_Mark', + 'bmp': '\u0300-\u036F\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABD\u1ABF\u1AC0\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F', + 'astral': '\uD800[\uDDFD\uDEE0\uDF76-\uDF7A]|\uD802[\uDE01-\uDE03\uDE05\uDE06\uDE0C-\uDE0F\uDE38-\uDE3A\uDE3F\uDEE5\uDEE6]|\uD803[\uDD24-\uDD27\uDEAB\uDEAC\uDF46-\uDF50]|\uD804[\uDC01\uDC38-\uDC46\uDC7F-\uDC81\uDCB3-\uDCB6\uDCB9\uDCBA\uDD00-\uDD02\uDD27-\uDD2B\uDD2D-\uDD34\uDD73\uDD80\uDD81\uDDB6-\uDDBE\uDDC9-\uDDCC\uDDCF\uDE2F-\uDE31\uDE34\uDE36\uDE37\uDE3E\uDEDF\uDEE3-\uDEEA\uDF00\uDF01\uDF3B\uDF3C\uDF40\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC38-\uDC3F\uDC42-\uDC44\uDC46\uDC5E\uDCB3-\uDCB8\uDCBA\uDCBF\uDCC0\uDCC2\uDCC3\uDDB2-\uDDB5\uDDBC\uDDBD\uDDBF\uDDC0\uDDDC\uDDDD\uDE33-\uDE3A\uDE3D\uDE3F\uDE40\uDEAB\uDEAD\uDEB0-\uDEB5\uDEB7\uDF1D-\uDF1F\uDF22-\uDF25\uDF27-\uDF2B]|\uD806[\uDC2F-\uDC37\uDC39\uDC3A\uDD3B\uDD3C\uDD3E\uDD43\uDDD4-\uDDD7\uDDDA\uDDDB\uDDE0\uDE01-\uDE0A\uDE33-\uDE38\uDE3B-\uDE3E\uDE47\uDE51-\uDE56\uDE59-\uDE5B\uDE8A-\uDE96\uDE98\uDE99]|\uD807[\uDC30-\uDC36\uDC38-\uDC3D\uDC3F\uDC92-\uDCA7\uDCAA-\uDCB0\uDCB2\uDCB3\uDCB5\uDCB6\uDD31-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD45\uDD47\uDD90\uDD91\uDD95\uDD97\uDEF3\uDEF4]|\uD81A[\uDEF0-\uDEF4\uDF30-\uDF36]|\uD81B[\uDF4F\uDF8F-\uDF92\uDFE4]|\uD82F[\uDC9D\uDC9E]|\uD834[\uDD67-\uDD69\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A\uDD30-\uDD36\uDEEC-\uDEEF]|\uD83A[\uDCD0-\uDCD6\uDD44-\uDD4A]|\uDB40[\uDD00-\uDDEF]' + }, + { + 'name': 'N', + 'alias': 'Number', + 'bmp': '0-9\xB2\xB3\xB9\xBC-\xBE\u0660-\u0669\u06F0-\u06F9\u07C0-\u07C9\u0966-\u096F\u09E6-\u09EF\u09F4-\u09F9\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0B72-\u0B77\u0BE6-\u0BF2\u0C66-\u0C6F\u0C78-\u0C7E\u0CE6-\u0CEF\u0D58-\u0D5E\u0D66-\u0D78\u0DE6-\u0DEF\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F33\u1040-\u1049\u1090-\u1099\u1369-\u137C\u16EE-\u16F0\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1946-\u194F\u19D0-\u19DA\u1A80-\u1A89\u1A90-\u1A99\u1B50-\u1B59\u1BB0-\u1BB9\u1C40-\u1C49\u1C50-\u1C59\u2070\u2074-\u2079\u2080-\u2089\u2150-\u2182\u2185-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2CFD\u3007\u3021-\u3029\u3038-\u303A\u3192-\u3195\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\uA620-\uA629\uA6E6-\uA6EF\uA830-\uA835\uA8D0-\uA8D9\uA900-\uA909\uA9D0-\uA9D9\uA9F0-\uA9F9\uAA50-\uAA59\uABF0-\uABF9\uFF10-\uFF19', + 'astral': '\uD800[\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDEE1-\uDEFB\uDF20-\uDF23\uDF41\uDF4A\uDFD1-\uDFD5]|\uD801[\uDCA0-\uDCA9]|\uD802[\uDC58-\uDC5F\uDC79-\uDC7F\uDCA7-\uDCAF\uDCFB-\uDCFF\uDD16-\uDD1B\uDDBC\uDDBD\uDDC0-\uDDCF\uDDD2-\uDDFF\uDE40-\uDE48\uDE7D\uDE7E\uDE9D-\uDE9F\uDEEB-\uDEEF\uDF58-\uDF5F\uDF78-\uDF7F\uDFA9-\uDFAF]|\uD803[\uDCFA-\uDCFF\uDD30-\uDD39\uDE60-\uDE7E\uDF1D-\uDF26\uDF51-\uDF54\uDFC5-\uDFCB]|\uD804[\uDC52-\uDC6F\uDCF0-\uDCF9\uDD36-\uDD3F\uDDD0-\uDDD9\uDDE1-\uDDF4\uDEF0-\uDEF9]|\uD805[\uDC50-\uDC59\uDCD0-\uDCD9\uDE50-\uDE59\uDEC0-\uDEC9\uDF30-\uDF3B]|\uD806[\uDCE0-\uDCF2\uDD50-\uDD59]|\uD807[\uDC50-\uDC6C\uDD50-\uDD59\uDDA0-\uDDA9\uDFC0-\uDFD4]|\uD809[\uDC00-\uDC6E]|\uD81A[\uDE60-\uDE69\uDF50-\uDF59\uDF5B-\uDF61]|\uD81B[\uDE80-\uDE96]|\uD834[\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDFCE-\uDFFF]|\uD838[\uDD40-\uDD49\uDEF0-\uDEF9]|\uD83A[\uDCC7-\uDCCF\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]' + }, + { + 'name': 'Nd', + 'alias': 'Decimal_Number', + 'bmp': '0-9\u0660-\u0669\u06F0-\u06F9\u07C0-\u07C9\u0966-\u096F\u09E6-\u09EF\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0BE6-\u0BEF\u0C66-\u0C6F\u0CE6-\u0CEF\u0D66-\u0D6F\u0DE6-\u0DEF\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F29\u1040-\u1049\u1090-\u1099\u17E0-\u17E9\u1810-\u1819\u1946-\u194F\u19D0-\u19D9\u1A80-\u1A89\u1A90-\u1A99\u1B50-\u1B59\u1BB0-\u1BB9\u1C40-\u1C49\u1C50-\u1C59\uA620-\uA629\uA8D0-\uA8D9\uA900-\uA909\uA9D0-\uA9D9\uA9F0-\uA9F9\uAA50-\uAA59\uABF0-\uABF9\uFF10-\uFF19', + 'astral': '\uD801[\uDCA0-\uDCA9]|\uD803[\uDD30-\uDD39]|\uD804[\uDC66-\uDC6F\uDCF0-\uDCF9\uDD36-\uDD3F\uDDD0-\uDDD9\uDEF0-\uDEF9]|\uD805[\uDC50-\uDC59\uDCD0-\uDCD9\uDE50-\uDE59\uDEC0-\uDEC9\uDF30-\uDF39]|\uD806[\uDCE0-\uDCE9\uDD50-\uDD59]|\uD807[\uDC50-\uDC59\uDD50-\uDD59\uDDA0-\uDDA9]|\uD81A[\uDE60-\uDE69\uDF50-\uDF59]|\uD835[\uDFCE-\uDFFF]|\uD838[\uDD40-\uDD49\uDEF0-\uDEF9]|\uD83A[\uDD50-\uDD59]|\uD83E[\uDFF0-\uDFF9]' + }, + { + 'name': 'Nl', + 'alias': 'Letter_Number', + 'bmp': '\u16EE-\u16F0\u2160-\u2182\u2185-\u2188\u3007\u3021-\u3029\u3038-\u303A\uA6E6-\uA6EF', + 'astral': '\uD800[\uDD40-\uDD74\uDF41\uDF4A\uDFD1-\uDFD5]|\uD809[\uDC00-\uDC6E]' + }, + { + 'name': 'No', + 'alias': 'Other_Number', + 'bmp': '\xB2\xB3\xB9\xBC-\xBE\u09F4-\u09F9\u0B72-\u0B77\u0BF0-\u0BF2\u0C78-\u0C7E\u0D58-\u0D5E\u0D70-\u0D78\u0F2A-\u0F33\u1369-\u137C\u17F0-\u17F9\u19DA\u2070\u2074-\u2079\u2080-\u2089\u2150-\u215F\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2CFD\u3192-\u3195\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\uA830-\uA835', + 'astral': '\uD800[\uDD07-\uDD33\uDD75-\uDD78\uDD8A\uDD8B\uDEE1-\uDEFB\uDF20-\uDF23]|\uD802[\uDC58-\uDC5F\uDC79-\uDC7F\uDCA7-\uDCAF\uDCFB-\uDCFF\uDD16-\uDD1B\uDDBC\uDDBD\uDDC0-\uDDCF\uDDD2-\uDDFF\uDE40-\uDE48\uDE7D\uDE7E\uDE9D-\uDE9F\uDEEB-\uDEEF\uDF58-\uDF5F\uDF78-\uDF7F\uDFA9-\uDFAF]|\uD803[\uDCFA-\uDCFF\uDE60-\uDE7E\uDF1D-\uDF26\uDF51-\uDF54\uDFC5-\uDFCB]|\uD804[\uDC52-\uDC65\uDDE1-\uDDF4]|\uD805[\uDF3A\uDF3B]|\uD806[\uDCEA-\uDCF2]|\uD807[\uDC5A-\uDC6C\uDFC0-\uDFD4]|\uD81A[\uDF5B-\uDF61]|\uD81B[\uDE80-\uDE96]|\uD834[\uDEE0-\uDEF3\uDF60-\uDF78]|\uD83A[\uDCC7-\uDCCF]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D]|\uD83C[\uDD00-\uDD0C]' + }, + { + 'name': 'P', + 'alias': 'Punctuation', + 'bmp': '!-#%-\\*,-\\/:;\\?@\\[-\\]_\\{\\}\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\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\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-\u2E4F\u2E52\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', + 'astral': '\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDEAD\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\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDFFF]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]' + }, + { + 'name': 'Pc', + 'alias': 'Connector_Punctuation', + 'bmp': '_\u203F\u2040\u2054\uFE33\uFE34\uFE4D-\uFE4F\uFF3F' + }, + { + 'name': 'Pd', + 'alias': 'Dash_Punctuation', + 'bmp': '\\-\u058A\u05BE\u1400\u1806\u2010-\u2015\u2E17\u2E1A\u2E3A\u2E3B\u2E40\u301C\u3030\u30A0\uFE31\uFE32\uFE58\uFE63\uFF0D', + 'astral': '\uD803\uDEAD' + }, + { + 'name': 'Pe', + 'alias': 'Close_Punctuation', + 'bmp': '\\)\\]\\}\u0F3B\u0F3D\u169C\u2046\u207E\u208E\u2309\u230B\u232A\u2769\u276B\u276D\u276F\u2771\u2773\u2775\u27C6\u27E7\u27E9\u27EB\u27ED\u27EF\u2984\u2986\u2988\u298A\u298C\u298E\u2990\u2992\u2994\u2996\u2998\u29D9\u29DB\u29FD\u2E23\u2E25\u2E27\u2E29\u3009\u300B\u300D\u300F\u3011\u3015\u3017\u3019\u301B\u301E\u301F\uFD3E\uFE18\uFE36\uFE38\uFE3A\uFE3C\uFE3E\uFE40\uFE42\uFE44\uFE48\uFE5A\uFE5C\uFE5E\uFF09\uFF3D\uFF5D\uFF60\uFF63' + }, + { + 'name': 'Pf', + 'alias': 'Final_Punctuation', + 'bmp': '\xBB\u2019\u201D\u203A\u2E03\u2E05\u2E0A\u2E0D\u2E1D\u2E21' + }, + { + 'name': 'Pi', + 'alias': 'Initial_Punctuation', + 'bmp': '\xAB\u2018\u201B\u201C\u201F\u2039\u2E02\u2E04\u2E09\u2E0C\u2E1C\u2E20' + }, + { + 'name': 'Po', + 'alias': 'Other_Punctuation', + 'bmp': '!-#%-\'\\*,\\.\\/:;\\?@\\\xA1\xA7\xB6\xB7\xBF\u037E\u0387\u055A-\u055F\u0589\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\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u166E\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u1805\u1807-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2016\u2017\u2020-\u2027\u2030-\u2038\u203B-\u203E\u2041-\u2043\u2047-\u2051\u2053\u2055-\u205E\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00\u2E01\u2E06-\u2E08\u2E0B\u2E0E-\u2E16\u2E18\u2E19\u2E1B\u2E1E\u2E1F\u2E2A-\u2E2E\u2E30-\u2E39\u2E3C-\u2E3F\u2E41\u2E43-\u2E4F\u2E52\u3001-\u3003\u303D\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\uFE10-\uFE16\uFE19\uFE30\uFE45\uFE46\uFE49-\uFE4C\uFE50-\uFE52\uFE54-\uFE57\uFE5F-\uFE61\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF07\uFF0A\uFF0C\uFF0E\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3C\uFF61\uFF64\uFF65', + 'astral': '\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\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDFFF]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]' + }, + { + 'name': 'Ps', + 'alias': 'Open_Punctuation', + 'bmp': '\\(\\[\\{\u0F3A\u0F3C\u169B\u201A\u201E\u2045\u207D\u208D\u2308\u230A\u2329\u2768\u276A\u276C\u276E\u2770\u2772\u2774\u27C5\u27E6\u27E8\u27EA\u27EC\u27EE\u2983\u2985\u2987\u2989\u298B\u298D\u298F\u2991\u2993\u2995\u2997\u29D8\u29DA\u29FC\u2E22\u2E24\u2E26\u2E28\u2E42\u3008\u300A\u300C\u300E\u3010\u3014\u3016\u3018\u301A\u301D\uFD3F\uFE17\uFE35\uFE37\uFE39\uFE3B\uFE3D\uFE3F\uFE41\uFE43\uFE47\uFE59\uFE5B\uFE5D\uFF08\uFF3B\uFF5B\uFF5F\uFF62' + }, + { + 'name': 'S', + 'alias': 'Symbol', + 'bmp': '\\$\\+<->\\^`\\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD', + 'astral': '\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]' + }, + { + 'name': 'Sc', + 'alias': 'Currency_Symbol', + 'bmp': '\\$\xA2-\xA5\u058F\u060B\u07FE\u07FF\u09F2\u09F3\u09FB\u0AF1\u0BF9\u0E3F\u17DB\u20A0-\u20BF\uA838\uFDFC\uFE69\uFF04\uFFE0\uFFE1\uFFE5\uFFE6', + 'astral': '\uD807[\uDFDD-\uDFE0]|\uD838\uDEFF|\uD83B\uDCB0' + }, + { + 'name': 'Sk', + 'alias': 'Modifier_Symbol', + 'bmp': '\\^`\xA8\xAF\xB4\xB8\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u309B\u309C\uA700-\uA716\uA720\uA721\uA789\uA78A\uAB5B\uAB6A\uAB6B\uFBB2-\uFBC1\uFF3E\uFF40\uFFE3', + 'astral': '\uD83C[\uDFFB-\uDFFF]' + }, + { + 'name': 'Sm', + 'alias': 'Math_Symbol', + 'bmp': '\\+<->\\|~\xAC\xB1\xD7\xF7\u03F6\u0606-\u0608\u2044\u2052\u207A-\u207C\u208A-\u208C\u2118\u2140-\u2144\u214B\u2190-\u2194\u219A\u219B\u21A0\u21A3\u21A6\u21AE\u21CE\u21CF\u21D2\u21D4\u21F4-\u22FF\u2320\u2321\u237C\u239B-\u23B3\u23DC-\u23E1\u25B7\u25C1\u25F8-\u25FF\u266F\u27C0-\u27C4\u27C7-\u27E5\u27F0-\u27FF\u2900-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2AFF\u2B30-\u2B44\u2B47-\u2B4C\uFB29\uFE62\uFE64-\uFE66\uFF0B\uFF1C-\uFF1E\uFF5C\uFF5E\uFFE2\uFFE9-\uFFEC', + 'astral': '\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD83B[\uDEF0\uDEF1]' + }, + { + 'name': 'So', + 'alias': 'Other_Symbol', + 'bmp': '\xA6\xA9\xAE\xB0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD', + 'astral': '\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFDC\uDFE1-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838\uDD4F|\uD83B[\uDCAC\uDD2E]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFA]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]' + }, + { + 'name': 'Z', + 'alias': 'Separator', + 'bmp': ' \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000' + }, + { + 'name': 'Zl', + 'alias': 'Line_Separator', + 'bmp': '\u2028' + }, + { + 'name': 'Zp', + 'alias': 'Paragraph_Separator', + 'bmp': '\u2029' + }, + { + 'name': 'Zs', + 'alias': 'Space_Separator', + 'bmp': ' \xA0\u1680\u2000-\u200A\u202F\u205F\u3000' + } +]; + +},{}],224:[function(require,module,exports){ +module.exports = [ + { + 'name': 'ASCII', + 'bmp': '\0-\x7F' + }, + { + 'name': 'Alphabetic', + 'bmp': 'A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0345\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05B0-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05EF-\u05F2\u0610-\u061A\u0620-\u0657\u0659-\u065F\u066E-\u06D3\u06D5-\u06DC\u06E1-\u06E8\u06ED-\u06EF\u06FA-\u06FC\u06FF\u0710-\u073F\u074D-\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0817\u081A-\u082C\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08C7\u08D4-\u08DF\u08E3-\u08E9\u08F0-\u093B\u093D-\u094C\u094E-\u0950\u0955-\u0963\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C4\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09F0\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A42\u0A47\u0A48\u0A4B\u0A4C\u0A51\u0A59-\u0A5C\u0A5E\u0A70-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC5\u0AC7-\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0-\u0AE3\u0AF9-\u0AFC\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D-\u0B44\u0B47\u0B48\u0B4B\u0B4C\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4C\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCC\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CF1\u0CF2\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D7A-\u0D7F\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E46\u0E4D\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0ECD\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F71-\u0F81\u0F88-\u0F97\u0F99-\u0FBC\u1000-\u1036\u1038\u103B-\u103F\u1050-\u108F\u109A-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1713\u1720-\u1733\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17B3\u17B6-\u17C8\u17D7\u17DC\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u1938\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A1B\u1A20-\u1A5E\u1A61-\u1A74\u1AA7\u1ABF\u1AC0\u1B00-\u1B33\u1B35-\u1B43\u1B45-\u1B4B\u1B80-\u1BA9\u1BAC-\u1BAF\u1BBA-\u1BE5\u1BE7-\u1BF1\u1C00-\u1C36\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1DE7-\u1DF4\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u24B6-\u24E9\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\u9FFC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA674-\uA67B\uA67F-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7BF\uA7C2-\uA7CA\uA7F5-\uA805\uA807-\uA827\uA840-\uA873\uA880-\uA8C3\uA8C5\uA8F2-\uA8F7\uA8FB\uA8FD-\uA8FF\uA90A-\uA92A\uA930-\uA952\uA960-\uA97C\uA980-\uA9B2\uA9B4-\uA9BF\uA9CF\uA9E0-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA60-\uAA76\uAA7A-\uAABE\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABEA\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC', + 'astral': '\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD27\uDE80-\uDEA9\uDEAB\uDEAC\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC00-\uDC45\uDC82-\uDCB8\uDCD0-\uDCE8\uDD00-\uDD32\uDD44-\uDD47\uDD50-\uDD72\uDD76\uDD80-\uDDBF\uDDC1-\uDDC4\uDDCE\uDDCF\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE34\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEE8\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D-\uDF44\uDF47\uDF48\uDF4B\uDF4C\uDF50\uDF57\uDF5D-\uDF63]|\uD805[\uDC00-\uDC41\uDC43-\uDC45\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCC1\uDCC4\uDCC5\uDCC7\uDD80-\uDDB5\uDDB8-\uDDBE\uDDD8-\uDDDD\uDE00-\uDE3E\uDE40\uDE44\uDE80-\uDEB5\uDEB8\uDF00-\uDF1A\uDF1D-\uDF2A]|\uD806[\uDC00-\uDC38\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD35\uDD37\uDD38\uDD3B\uDD3C\uDD3F-\uDD42\uDDA0-\uDDA7\uDDAA-\uDDD7\uDDDA-\uDDDF\uDDE1\uDDE3\uDDE4\uDE00-\uDE32\uDE35-\uDE3E\uDE50-\uDE97\uDE9D\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC3E\uDC40\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD41\uDD43\uDD46\uDD47\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD8E\uDD90\uDD91\uDD93-\uDD96\uDD98\uDEE0-\uDEF6\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF4F-\uDF87\uDF8F-\uDF9F\uDFE0\uDFE1\uDFE3\uDFF0\uDFF1]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82C[\uDC00-\uDD1E\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9E]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDEC0-\uDEEB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD47\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD30-\uDD49\uDD50-\uDD69\uDD70-\uDD89]|\uD869[\uDC00-\uDEDD\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A]' + }, + { + 'name': 'Any', + 'isBmpLast': true, + 'bmp': '\0-\uFFFF', + 'astral': '[\uD800-\uDBFF][\uDC00-\uDFFF]' + }, + { + 'name': 'Default_Ignorable_Code_Point', + 'bmp': '\xAD\u034F\u061C\u115F\u1160\u17B4\u17B5\u180B-\u180E\u200B-\u200F\u202A-\u202E\u2060-\u206F\u3164\uFE00-\uFE0F\uFEFF\uFFA0\uFFF0-\uFFF8', + 'astral': '\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|[\uDB40-\uDB43][\uDC00-\uDFFF]' + }, + { + 'name': 'Lowercase', + 'bmp': 'a-z\xAA\xB5\xBA\xDF-\xF6\xF8-\xFF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E-\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F-\u0293\u0295-\u02B8\u02C0\u02C1\u02E0-\u02E4\u0345\u0371\u0373\u0377\u037A-\u037D\u0390\u03AC-\u03CE\u03D0\u03D1\u03D5-\u03D7\u03D9\u03DB\u03DD\u03DF\u03E1\u03E3\u03E5\u03E7\u03E9\u03EB\u03ED\u03EF-\u03F3\u03F5\u03F8\u03FB\u03FC\u0430-\u045F\u0461\u0463\u0465\u0467\u0469\u046B\u046D\u046F\u0471\u0473\u0475\u0477\u0479\u047B\u047D\u047F\u0481\u048B\u048D\u048F\u0491\u0493\u0495\u0497\u0499\u049B\u049D\u049F\u04A1\u04A3\u04A5\u04A7\u04A9\u04AB\u04AD\u04AF\u04B1\u04B3\u04B5\u04B7\u04B9\u04BB\u04BD\u04BF\u04C2\u04C4\u04C6\u04C8\u04CA\u04CC\u04CE\u04CF\u04D1\u04D3\u04D5\u04D7\u04D9\u04DB\u04DD\u04DF\u04E1\u04E3\u04E5\u04E7\u04E9\u04EB\u04ED\u04EF\u04F1\u04F3\u04F5\u04F7\u04F9\u04FB\u04FD\u04FF\u0501\u0503\u0505\u0507\u0509\u050B\u050D\u050F\u0511\u0513\u0515\u0517\u0519\u051B\u051D\u051F\u0521\u0523\u0525\u0527\u0529\u052B\u052D\u052F\u0560-\u0588\u10D0-\u10FA\u10FD-\u10FF\u13F8-\u13FD\u1C80-\u1C88\u1D00-\u1DBF\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFF-\u1F07\u1F10-\u1F15\u1F20-\u1F27\u1F30-\u1F37\u1F40-\u1F45\u1F50-\u1F57\u1F60-\u1F67\u1F70-\u1F7D\u1F80-\u1F87\u1F90-\u1F97\u1FA0-\u1FA7\u1FB0-\u1FB4\u1FB6\u1FB7\u1FBE\u1FC2-\u1FC4\u1FC6\u1FC7\u1FD0-\u1FD3\u1FD6\u1FD7\u1FE0-\u1FE7\u1FF2-\u1FF4\u1FF6\u1FF7\u2071\u207F\u2090-\u209C\u210A\u210E\u210F\u2113\u212F\u2134\u2139\u213C\u213D\u2146-\u2149\u214E\u2170-\u217F\u2184\u24D0-\u24E9\u2C30-\u2C5E\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7D\u2C81\u2C83\u2C85\u2C87\u2C89\u2C8B\u2C8D\u2C8F\u2C91\u2C93\u2C95\u2C97\u2C99\u2C9B\u2C9D\u2C9F\u2CA1\u2CA3\u2CA5\u2CA7\u2CA9\u2CAB\u2CAD\u2CAF\u2CB1\u2CB3\u2CB5\u2CB7\u2CB9\u2CBB\u2CBD\u2CBF\u2CC1\u2CC3\u2CC5\u2CC7\u2CC9\u2CCB\u2CCD\u2CCF\u2CD1\u2CD3\u2CD5\u2CD7\u2CD9\u2CDB\u2CDD\u2CDF\u2CE1\u2CE3\u2CE4\u2CEC\u2CEE\u2CF3\u2D00-\u2D25\u2D27\u2D2D\uA641\uA643\uA645\uA647\uA649\uA64B\uA64D\uA64F\uA651\uA653\uA655\uA657\uA659\uA65B\uA65D\uA65F\uA661\uA663\uA665\uA667\uA669\uA66B\uA66D\uA681\uA683\uA685\uA687\uA689\uA68B\uA68D\uA68F\uA691\uA693\uA695\uA697\uA699\uA69B-\uA69D\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7BB\uA7BD\uA7BF\uA7C3\uA7C8\uA7CA\uA7F6\uA7F8-\uA7FA\uAB30-\uAB5A\uAB5C-\uAB68\uAB70-\uABBF\uFB00-\uFB06\uFB13-\uFB17\uFF41-\uFF5A', + 'astral': '\uD801[\uDC28-\uDC4F\uDCD8-\uDCFB]|\uD803[\uDCC0-\uDCF2]|\uD806[\uDCC0-\uDCDF]|\uD81B[\uDE60-\uDE7F]|\uD835[\uDC1A-\uDC33\uDC4E-\uDC54\uDC56-\uDC67\uDC82-\uDC9B\uDCB6-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDCEA-\uDD03\uDD1E-\uDD37\uDD52-\uDD6B\uDD86-\uDD9F\uDDBA-\uDDD3\uDDEE-\uDE07\uDE22-\uDE3B\uDE56-\uDE6F\uDE8A-\uDEA5\uDEC2-\uDEDA\uDEDC-\uDEE1\uDEFC-\uDF14\uDF16-\uDF1B\uDF36-\uDF4E\uDF50-\uDF55\uDF70-\uDF88\uDF8A-\uDF8F\uDFAA-\uDFC2\uDFC4-\uDFC9\uDFCB]|\uD83A[\uDD22-\uDD43]' + }, + { + 'name': 'Noncharacter_Code_Point', + 'bmp': '\uFDD0-\uFDEF\uFFFE\uFFFF', + 'astral': '[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]' + }, + { + 'name': 'Uppercase', + 'bmp': 'A-Z\xC0-\xD6\xD8-\xDE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u0370\u0372\u0376\u037F\u0386\u0388-\u038A\u038C\u038E\u038F\u0391-\u03A1\u03A3-\u03AB\u03CF\u03D2-\u03D4\u03D8\u03DA\u03DC\u03DE\u03E0\u03E2\u03E4\u03E6\u03E8\u03EA\u03EC\u03EE\u03F4\u03F7\u03F9\u03FA\u03FD-\u042F\u0460\u0462\u0464\u0466\u0468\u046A\u046C\u046E\u0470\u0472\u0474\u0476\u0478\u047A\u047C\u047E\u0480\u048A\u048C\u048E\u0490\u0492\u0494\u0496\u0498\u049A\u049C\u049E\u04A0\u04A2\u04A4\u04A6\u04A8\u04AA\u04AC\u04AE\u04B0\u04B2\u04B4\u04B6\u04B8\u04BA\u04BC\u04BE\u04C0\u04C1\u04C3\u04C5\u04C7\u04C9\u04CB\u04CD\u04D0\u04D2\u04D4\u04D6\u04D8\u04DA\u04DC\u04DE\u04E0\u04E2\u04E4\u04E6\u04E8\u04EA\u04EC\u04EE\u04F0\u04F2\u04F4\u04F6\u04F8\u04FA\u04FC\u04FE\u0500\u0502\u0504\u0506\u0508\u050A\u050C\u050E\u0510\u0512\u0514\u0516\u0518\u051A\u051C\u051E\u0520\u0522\u0524\u0526\u0528\u052A\u052C\u052E\u0531-\u0556\u10A0-\u10C5\u10C7\u10CD\u13A0-\u13F5\u1C90-\u1CBA\u1CBD-\u1CBF\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFE\u1F08-\u1F0F\u1F18-\u1F1D\u1F28-\u1F2F\u1F38-\u1F3F\u1F48-\u1F4D\u1F59\u1F5B\u1F5D\u1F5F\u1F68-\u1F6F\u1FB8-\u1FBB\u1FC8-\u1FCB\u1FD8-\u1FDB\u1FE8-\u1FEC\u1FF8-\u1FFB\u2102\u2107\u210B-\u210D\u2110-\u2112\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u2130-\u2133\u213E\u213F\u2145\u2160-\u216F\u2183\u24B6-\u24CF\u2C00-\u2C2E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E-\u2C80\u2C82\u2C84\u2C86\u2C88\u2C8A\u2C8C\u2C8E\u2C90\u2C92\u2C94\u2C96\u2C98\u2C9A\u2C9C\u2C9E\u2CA0\u2CA2\u2CA4\u2CA6\u2CA8\u2CAA\u2CAC\u2CAE\u2CB0\u2CB2\u2CB4\u2CB6\u2CB8\u2CBA\u2CBC\u2CBE\u2CC0\u2CC2\u2CC4\u2CC6\u2CC8\u2CCA\u2CCC\u2CCE\u2CD0\u2CD2\u2CD4\u2CD6\u2CD8\u2CDA\u2CDC\u2CDE\u2CE0\u2CE2\u2CEB\u2CED\u2CF2\uA640\uA642\uA644\uA646\uA648\uA64A\uA64C\uA64E\uA650\uA652\uA654\uA656\uA658\uA65A\uA65C\uA65E\uA660\uA662\uA664\uA666\uA668\uA66A\uA66C\uA680\uA682\uA684\uA686\uA688\uA68A\uA68C\uA68E\uA690\uA692\uA694\uA696\uA698\uA69A\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\uA7BA\uA7BC\uA7BE\uA7C2\uA7C4-\uA7C7\uA7C9\uA7F5\uFF21-\uFF3A', + 'astral': '\uD801[\uDC00-\uDC27\uDCB0-\uDCD3]|\uD803[\uDC80-\uDCB2]|\uD806[\uDCA0-\uDCBF]|\uD81B[\uDE40-\uDE5F]|\uD835[\uDC00-\uDC19\uDC34-\uDC4D\uDC68-\uDC81\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB5\uDCD0-\uDCE9\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD38\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD6C-\uDD85\uDDA0-\uDDB9\uDDD4-\uDDED\uDE08-\uDE21\uDE3C-\uDE55\uDE70-\uDE89\uDEA8-\uDEC0\uDEE2-\uDEFA\uDF1C-\uDF34\uDF56-\uDF6E\uDF90-\uDFA8\uDFCA]|\uD83A[\uDD00-\uDD21]|\uD83C[\uDD30-\uDD49\uDD50-\uDD69\uDD70-\uDD89]' + }, + { + 'name': 'White_Space', + 'bmp': '\t-\r \x85\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000' + } +]; + +},{}],225:[function(require,module,exports){ +module.exports = [ + { + 'name': 'Adlam', + 'astral': '\uD83A[\uDD00-\uDD4B\uDD50-\uDD59\uDD5E\uDD5F]' + }, + { + 'name': 'Ahom', + 'astral': '\uD805[\uDF00-\uDF1A\uDF1D-\uDF2B\uDF30-\uDF3F]' + }, + { + 'name': 'Anatolian_Hieroglyphs', + 'astral': '\uD811[\uDC00-\uDE46]' + }, + { + 'name': 'Arabic', + 'bmp': '\u0600-\u0604\u0606-\u060B\u060D-\u061A\u061C\u061E\u0620-\u063F\u0641-\u064A\u0656-\u066F\u0671-\u06DC\u06DE-\u06FF\u0750-\u077F\u08A0-\u08B4\u08B6-\u08C7\u08D3-\u08E1\u08E3-\u08FF\uFB50-\uFBC1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFD\uFE70-\uFE74\uFE76-\uFEFC', + 'astral': '\uD803[\uDE60-\uDE7E]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB\uDEF0\uDEF1]' + }, + { + 'name': 'Armenian', + 'bmp': '\u0531-\u0556\u0559-\u058A\u058D-\u058F\uFB13-\uFB17' + }, + { + 'name': 'Avestan', + 'astral': '\uD802[\uDF00-\uDF35\uDF39-\uDF3F]' + }, + { + 'name': 'Balinese', + 'bmp': '\u1B00-\u1B4B\u1B50-\u1B7C' + }, + { + 'name': 'Bamum', + 'bmp': '\uA6A0-\uA6F7', + 'astral': '\uD81A[\uDC00-\uDE38]' + }, + { + 'name': 'Bassa_Vah', + 'astral': '\uD81A[\uDED0-\uDEED\uDEF0-\uDEF5]' + }, + { + 'name': 'Batak', + 'bmp': '\u1BC0-\u1BF3\u1BFC-\u1BFF' + }, + { + 'name': 'Bengali', + 'bmp': '\u0980-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE' + }, + { + 'name': 'Bhaiksuki', + 'astral': '\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC45\uDC50-\uDC6C]' + }, + { + 'name': 'Bopomofo', + 'bmp': '\u02EA\u02EB\u3105-\u312F\u31A0-\u31BF' + }, + { + 'name': 'Brahmi', + 'astral': '\uD804[\uDC00-\uDC4D\uDC52-\uDC6F\uDC7F]' + }, + { + 'name': 'Braille', + 'bmp': '\u2800-\u28FF' + }, + { + 'name': 'Buginese', + 'bmp': '\u1A00-\u1A1B\u1A1E\u1A1F' + }, + { + 'name': 'Buhid', + 'bmp': '\u1740-\u1753' + }, + { + 'name': 'Canadian_Aboriginal', + 'bmp': '\u1400-\u167F\u18B0-\u18F5' + }, + { + 'name': 'Carian', + 'astral': '\uD800[\uDEA0-\uDED0]' + }, + { + 'name': 'Caucasian_Albanian', + 'astral': '\uD801[\uDD30-\uDD63\uDD6F]' + }, + { + 'name': 'Chakma', + 'astral': '\uD804[\uDD00-\uDD34\uDD36-\uDD47]' + }, + { + 'name': 'Cham', + 'bmp': '\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA5C-\uAA5F' + }, + { + 'name': 'Cherokee', + 'bmp': '\u13A0-\u13F5\u13F8-\u13FD\uAB70-\uABBF' + }, + { + 'name': 'Chorasmian', + 'astral': '\uD803[\uDFB0-\uDFCB]' + }, + { + 'name': 'Common', + 'bmp': '\0-@\\[-`\\{-\xA9\xAB-\xB9\xBB-\xBF\xD7\xF7\u02B9-\u02DF\u02E5-\u02E9\u02EC-\u02FF\u0374\u037E\u0385\u0387\u0605\u060C\u061B\u061F\u0640\u06DD\u08E2\u0964\u0965\u0E3F\u0FD5-\u0FD8\u10FB\u16EB-\u16ED\u1735\u1736\u1802\u1803\u1805\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u2000-\u200B\u200E-\u2064\u2066-\u2070\u2074-\u207E\u2080-\u208E\u20A0-\u20BF\u2100-\u2125\u2127-\u2129\u212C-\u2131\u2133-\u214D\u214F-\u215F\u2189-\u218B\u2190-\u2426\u2440-\u244A\u2460-\u27FF\u2900-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2E00-\u2E52\u2FF0-\u2FFB\u3000-\u3004\u3006\u3008-\u3020\u3030-\u3037\u303C-\u303F\u309B\u309C\u30A0\u30FB\u30FC\u3190-\u319F\u31C0-\u31E3\u3220-\u325F\u327F-\u32CF\u32FF\u3358-\u33FF\u4DC0-\u4DFF\uA700-\uA721\uA788-\uA78A\uA830-\uA839\uA92E\uA9CF\uAB5B\uAB6A\uAB6B\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFEFF\uFF01-\uFF20\uFF3B-\uFF40\uFF5B-\uFF65\uFF70\uFF9E\uFF9F\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD', + 'astral': '\uD800[\uDD00-\uDD02\uDD07-\uDD33\uDD37-\uDD3F\uDD90-\uDD9C\uDDD0-\uDDFC\uDEE1-\uDEFB]|\uD81B[\uDFE2\uDFE3]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD66\uDD6A-\uDD7A\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDEE0-\uDEF3\uDF00-\uDF56\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDFCB\uDFCE-\uDFFF]|\uD83B[\uDC71-\uDCB4\uDD01-\uDD3D]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD00-\uDDAD\uDDE6-\uDDFF\uDE01\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA\uDFF0-\uDFF9]|\uDB40[\uDC01\uDC20-\uDC7F]' + }, + { + 'name': 'Coptic', + 'bmp': '\u03E2-\u03EF\u2C80-\u2CF3\u2CF9-\u2CFF' + }, + { + 'name': 'Cuneiform', + 'astral': '\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC70-\uDC74\uDC80-\uDD43]' + }, + { + 'name': 'Cypriot', + 'astral': '\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F]' + }, + { + 'name': 'Cyrillic', + 'bmp': '\u0400-\u0484\u0487-\u052F\u1C80-\u1C88\u1D2B\u1D78\u2DE0-\u2DFF\uA640-\uA69F\uFE2E\uFE2F' + }, + { + 'name': 'Deseret', + 'astral': '\uD801[\uDC00-\uDC4F]' + }, + { + 'name': 'Devanagari', + 'bmp': '\u0900-\u0950\u0955-\u0963\u0966-\u097F\uA8E0-\uA8FF' + }, + { + 'name': 'Dives_Akuru', + 'astral': '\uD806[\uDD00-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD35\uDD37\uDD38\uDD3B-\uDD46\uDD50-\uDD59]' + }, + { + 'name': 'Dogra', + 'astral': '\uD806[\uDC00-\uDC3B]' + }, + { + 'name': 'Duployan', + 'astral': '\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9C-\uDC9F]' + }, + { + 'name': 'Egyptian_Hieroglyphs', + 'astral': '\uD80C[\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E\uDC30-\uDC38]' + }, + { + 'name': 'Elbasan', + 'astral': '\uD801[\uDD00-\uDD27]' + }, + { + 'name': 'Elymaic', + 'astral': '\uD803[\uDFE0-\uDFF6]' + }, + { + 'name': 'Ethiopic', + 'bmp': '\u1200-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E' + }, + { + 'name': 'Georgian', + 'bmp': '\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u10FF\u1C90-\u1CBA\u1CBD-\u1CBF\u2D00-\u2D25\u2D27\u2D2D' + }, + { + 'name': 'Glagolitic', + 'bmp': '\u2C00-\u2C2E\u2C30-\u2C5E', + 'astral': '\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]' + }, + { + 'name': 'Gothic', + 'astral': '\uD800[\uDF30-\uDF4A]' + }, + { + 'name': 'Grantha', + 'astral': '\uD804[\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]' + }, + { + 'name': 'Greek', + 'bmp': '\u0370-\u0373\u0375-\u0377\u037A-\u037D\u037F\u0384\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03E1\u03F0-\u03FF\u1D26-\u1D2A\u1D5D-\u1D61\u1D66-\u1D6A\u1DBF\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u2126\uAB65', + 'astral': '\uD800[\uDD40-\uDD8E\uDDA0]|\uD834[\uDE00-\uDE45]' + }, + { + 'name': 'Gujarati', + 'bmp': '\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF' + }, + { + 'name': 'Gunjala_Gondi', + 'astral': '\uD807[\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD8E\uDD90\uDD91\uDD93-\uDD98\uDDA0-\uDDA9]' + }, + { + 'name': 'Gurmukhi', + 'bmp': '\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76' + }, + { + 'name': 'Han', + 'bmp': '\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u3005\u3007\u3021-\u3029\u3038-\u303B\u3400-\u4DBF\u4E00-\u9FFC\uF900-\uFA6D\uFA70-\uFAD9', + 'astral': '\uD81B[\uDFF0\uDFF1]|[\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDD\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A]' + }, + { + 'name': 'Hangul', + 'bmp': '\u1100-\u11FF\u302E\u302F\u3131-\u318E\u3200-\u321E\u3260-\u327E\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uFFA0-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC' + }, + { + 'name': 'Hanifi_Rohingya', + 'astral': '\uD803[\uDD00-\uDD27\uDD30-\uDD39]' + }, + { + 'name': 'Hanunoo', + 'bmp': '\u1720-\u1734' + }, + { + 'name': 'Hatran', + 'astral': '\uD802[\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDCFF]' + }, + { + 'name': 'Hebrew', + 'bmp': '\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFB4F' + }, + { + 'name': 'Hiragana', + 'bmp': '\u3041-\u3096\u309D-\u309F', + 'astral': '\uD82C[\uDC01-\uDD1E\uDD50-\uDD52]|\uD83C\uDE00' + }, + { + 'name': 'Imperial_Aramaic', + 'astral': '\uD802[\uDC40-\uDC55\uDC57-\uDC5F]' + }, + { + 'name': 'Inherited', + 'bmp': '\u0300-\u036F\u0485\u0486\u064B-\u0655\u0670\u0951-\u0954\u1AB0-\u1AC0\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200C\u200D\u20D0-\u20F0\u302A-\u302D\u3099\u309A\uFE00-\uFE0F\uFE20-\uFE2D', + 'astral': '\uD800[\uDDFD\uDEE0]|\uD804\uDF3B|\uD834[\uDD67-\uDD69\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD]|\uDB40[\uDD00-\uDDEF]' + }, + { + 'name': 'Inscriptional_Pahlavi', + 'astral': '\uD802[\uDF60-\uDF72\uDF78-\uDF7F]' + }, + { + 'name': 'Inscriptional_Parthian', + 'astral': '\uD802[\uDF40-\uDF55\uDF58-\uDF5F]' + }, + { + 'name': 'Javanese', + 'bmp': '\uA980-\uA9CD\uA9D0-\uA9D9\uA9DE\uA9DF' + }, + { + 'name': 'Kaithi', + 'astral': '\uD804[\uDC80-\uDCC1\uDCCD]' + }, + { + 'name': 'Kannada', + 'bmp': '\u0C80-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2' + }, + { + 'name': 'Katakana', + 'bmp': '\u30A1-\u30FA\u30FD-\u30FF\u31F0-\u31FF\u32D0-\u32FE\u3300-\u3357\uFF66-\uFF6F\uFF71-\uFF9D', + 'astral': '\uD82C[\uDC00\uDD64-\uDD67]' + }, + { + 'name': 'Kayah_Li', + 'bmp': '\uA900-\uA92D\uA92F' + }, + { + 'name': 'Kharoshthi', + 'astral': '\uD802[\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE38-\uDE3A\uDE3F-\uDE48\uDE50-\uDE58]' + }, + { + 'name': 'Khitan_Small_Script', + 'astral': '\uD81B\uDFE4|\uD822[\uDF00-\uDFFF]|\uD823[\uDC00-\uDCD5]' + }, + { + 'name': 'Khmer', + 'bmp': '\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u19E0-\u19FF' + }, + { + 'name': 'Khojki', + 'astral': '\uD804[\uDE00-\uDE11\uDE13-\uDE3E]' + }, + { + 'name': 'Khudawadi', + 'astral': '\uD804[\uDEB0-\uDEEA\uDEF0-\uDEF9]' + }, + { + 'name': 'Lao', + 'bmp': '\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF' + }, + { + 'name': 'Latin', + 'bmp': 'A-Za-z\xAA\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02E0-\u02E4\u1D00-\u1D25\u1D2C-\u1D5C\u1D62-\u1D65\u1D6B-\u1D77\u1D79-\u1DBE\u1E00-\u1EFF\u2071\u207F\u2090-\u209C\u212A\u212B\u2132\u214E\u2160-\u2188\u2C60-\u2C7F\uA722-\uA787\uA78B-\uA7BF\uA7C2-\uA7CA\uA7F5-\uA7FF\uAB30-\uAB5A\uAB5C-\uAB64\uAB66-\uAB69\uFB00-\uFB06\uFF21-\uFF3A\uFF41-\uFF5A' + }, + { + 'name': 'Lepcha', + 'bmp': '\u1C00-\u1C37\u1C3B-\u1C49\u1C4D-\u1C4F' + }, + { + 'name': 'Limbu', + 'bmp': '\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1940\u1944-\u194F' + }, + { + 'name': 'Linear_A', + 'astral': '\uD801[\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]' + }, + { + 'name': 'Linear_B', + 'astral': '\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA]' + }, + { + 'name': 'Lisu', + 'bmp': '\uA4D0-\uA4FF', + 'astral': '\uD807\uDFB0' + }, + { + 'name': 'Lycian', + 'astral': '\uD800[\uDE80-\uDE9C]' + }, + { + 'name': 'Lydian', + 'astral': '\uD802[\uDD20-\uDD39\uDD3F]' + }, + { + 'name': 'Mahajani', + 'astral': '\uD804[\uDD50-\uDD76]' + }, + { + 'name': 'Makasar', + 'astral': '\uD807[\uDEE0-\uDEF8]' + }, + { + 'name': 'Malayalam', + 'bmp': '\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4F\u0D54-\u0D63\u0D66-\u0D7F' + }, + { + 'name': 'Mandaic', + 'bmp': '\u0840-\u085B\u085E' + }, + { + 'name': 'Manichaean', + 'astral': '\uD802[\uDEC0-\uDEE6\uDEEB-\uDEF6]' + }, + { + 'name': 'Marchen', + 'astral': '\uD807[\uDC70-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6]' + }, + { + 'name': 'Masaram_Gondi', + 'astral': '\uD807[\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]' + }, + { + 'name': 'Medefaidrin', + 'astral': '\uD81B[\uDE40-\uDE9A]' + }, + { + 'name': 'Meetei_Mayek', + 'bmp': '\uAAE0-\uAAF6\uABC0-\uABED\uABF0-\uABF9' + }, + { + 'name': 'Mende_Kikakui', + 'astral': '\uD83A[\uDC00-\uDCC4\uDCC7-\uDCD6]' + }, + { + 'name': 'Meroitic_Cursive', + 'astral': '\uD802[\uDDA0-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDDFF]' + }, + { + 'name': 'Meroitic_Hieroglyphs', + 'astral': '\uD802[\uDD80-\uDD9F]' + }, + { + 'name': 'Miao', + 'astral': '\uD81B[\uDF00-\uDF4A\uDF4F-\uDF87\uDF8F-\uDF9F]' + }, + { + 'name': 'Modi', + 'astral': '\uD805[\uDE00-\uDE44\uDE50-\uDE59]' + }, + { + 'name': 'Mongolian', + 'bmp': '\u1800\u1801\u1804\u1806-\u180E\u1810-\u1819\u1820-\u1878\u1880-\u18AA', + 'astral': '\uD805[\uDE60-\uDE6C]' + }, + { + 'name': 'Mro', + 'astral': '\uD81A[\uDE40-\uDE5E\uDE60-\uDE69\uDE6E\uDE6F]' + }, + { + 'name': 'Multani', + 'astral': '\uD804[\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA9]' + }, + { + 'name': 'Myanmar', + 'bmp': '\u1000-\u109F\uA9E0-\uA9FE\uAA60-\uAA7F' + }, + { + 'name': 'Nabataean', + 'astral': '\uD802[\uDC80-\uDC9E\uDCA7-\uDCAF]' + }, + { + 'name': 'Nandinagari', + 'astral': '\uD806[\uDDA0-\uDDA7\uDDAA-\uDDD7\uDDDA-\uDDE4]' + }, + { + 'name': 'New_Tai_Lue', + 'bmp': '\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u19DE\u19DF' + }, + { + 'name': 'Newa', + 'astral': '\uD805[\uDC00-\uDC5B\uDC5D-\uDC61]' + }, + { + 'name': 'Nko', + 'bmp': '\u07C0-\u07FA\u07FD-\u07FF' + }, + { + 'name': 'Nushu', + 'astral': '\uD81B\uDFE1|\uD82C[\uDD70-\uDEFB]' + }, + { + 'name': 'Nyiakeng_Puachue_Hmong', + 'astral': '\uD838[\uDD00-\uDD2C\uDD30-\uDD3D\uDD40-\uDD49\uDD4E\uDD4F]' + }, + { + 'name': 'Ogham', + 'bmp': '\u1680-\u169C' + }, + { + 'name': 'Ol_Chiki', + 'bmp': '\u1C50-\u1C7F' + }, + { + 'name': 'Old_Hungarian', + 'astral': '\uD803[\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDCFF]' + }, + { + 'name': 'Old_Italic', + 'astral': '\uD800[\uDF00-\uDF23\uDF2D-\uDF2F]' + }, + { + 'name': 'Old_North_Arabian', + 'astral': '\uD802[\uDE80-\uDE9F]' + }, + { + 'name': 'Old_Permic', + 'astral': '\uD800[\uDF50-\uDF7A]' + }, + { + 'name': 'Old_Persian', + 'astral': '\uD800[\uDFA0-\uDFC3\uDFC8-\uDFD5]' + }, + { + 'name': 'Old_Sogdian', + 'astral': '\uD803[\uDF00-\uDF27]' + }, + { + 'name': 'Old_South_Arabian', + 'astral': '\uD802[\uDE60-\uDE7F]' + }, + { + 'name': 'Old_Turkic', + 'astral': '\uD803[\uDC00-\uDC48]' + }, + { + 'name': 'Oriya', + 'bmp': '\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B77' + }, + { + 'name': 'Osage', + 'astral': '\uD801[\uDCB0-\uDCD3\uDCD8-\uDCFB]' + }, + { + 'name': 'Osmanya', + 'astral': '\uD801[\uDC80-\uDC9D\uDCA0-\uDCA9]' + }, + { + 'name': 'Pahawh_Hmong', + 'astral': '\uD81A[\uDF00-\uDF45\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]' + }, + { + 'name': 'Palmyrene', + 'astral': '\uD802[\uDC60-\uDC7F]' + }, + { + 'name': 'Pau_Cin_Hau', + 'astral': '\uD806[\uDEC0-\uDEF8]' + }, + { + 'name': 'Phags_Pa', + 'bmp': '\uA840-\uA877' + }, + { + 'name': 'Phoenician', + 'astral': '\uD802[\uDD00-\uDD1B\uDD1F]' + }, + { + 'name': 'Psalter_Pahlavi', + 'astral': '\uD802[\uDF80-\uDF91\uDF99-\uDF9C\uDFA9-\uDFAF]' + }, + { + 'name': 'Rejang', + 'bmp': '\uA930-\uA953\uA95F' + }, + { + 'name': 'Runic', + 'bmp': '\u16A0-\u16EA\u16EE-\u16F8' + }, + { + 'name': 'Samaritan', + 'bmp': '\u0800-\u082D\u0830-\u083E' + }, + { + 'name': 'Saurashtra', + 'bmp': '\uA880-\uA8C5\uA8CE-\uA8D9' + }, + { + 'name': 'Sharada', + 'astral': '\uD804[\uDD80-\uDDDF]' + }, + { + 'name': 'Shavian', + 'astral': '\uD801[\uDC50-\uDC7F]' + }, + { + 'name': 'Siddham', + 'astral': '\uD805[\uDD80-\uDDB5\uDDB8-\uDDDD]' + }, + { + 'name': 'SignWriting', + 'astral': '\uD836[\uDC00-\uDE8B\uDE9B-\uDE9F\uDEA1-\uDEAF]' + }, + { + 'name': 'Sinhala', + 'bmp': '\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4', + 'astral': '\uD804[\uDDE1-\uDDF4]' + }, + { + 'name': 'Sogdian', + 'astral': '\uD803[\uDF30-\uDF59]' + }, + { + 'name': 'Sora_Sompeng', + 'astral': '\uD804[\uDCD0-\uDCE8\uDCF0-\uDCF9]' + }, + { + 'name': 'Soyombo', + 'astral': '\uD806[\uDE50-\uDEA2]' + }, + { + 'name': 'Sundanese', + 'bmp': '\u1B80-\u1BBF\u1CC0-\u1CC7' + }, + { + 'name': 'Syloti_Nagri', + 'bmp': '\uA800-\uA82C' + }, + { + 'name': 'Syriac', + 'bmp': '\u0700-\u070D\u070F-\u074A\u074D-\u074F\u0860-\u086A' + }, + { + 'name': 'Tagalog', + 'bmp': '\u1700-\u170C\u170E-\u1714' + }, + { + 'name': 'Tagbanwa', + 'bmp': '\u1760-\u176C\u176E-\u1770\u1772\u1773' + }, + { + 'name': 'Tai_Le', + 'bmp': '\u1950-\u196D\u1970-\u1974' + }, + { + 'name': 'Tai_Tham', + 'bmp': '\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD' + }, + { + 'name': 'Tai_Viet', + 'bmp': '\uAA80-\uAAC2\uAADB-\uAADF' + }, + { + 'name': 'Takri', + 'astral': '\uD805[\uDE80-\uDEB8\uDEC0-\uDEC9]' + }, + { + 'name': 'Tamil', + 'bmp': '\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA', + 'astral': '\uD807[\uDFC0-\uDFF1\uDFFF]' + }, + { + 'name': 'Tangut', + 'astral': '\uD81B\uDFE0|[\uD81C-\uD820][\uDC00-\uDFFF]|\uD821[\uDC00-\uDFF7]|\uD822[\uDC00-\uDEFF]|\uD823[\uDD00-\uDD08]' + }, + { + 'name': 'Telugu', + 'bmp': '\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C7F' + }, + { + 'name': 'Thaana', + 'bmp': '\u0780-\u07B1' + }, + { + 'name': 'Thai', + 'bmp': '\u0E01-\u0E3A\u0E40-\u0E5B' + }, + { + 'name': 'Tibetan', + 'bmp': '\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FD4\u0FD9\u0FDA' + }, + { + 'name': 'Tifinagh', + 'bmp': '\u2D30-\u2D67\u2D6F\u2D70\u2D7F' + }, + { + 'name': 'Tirhuta', + 'astral': '\uD805[\uDC80-\uDCC7\uDCD0-\uDCD9]' + }, + { + 'name': 'Ugaritic', + 'astral': '\uD800[\uDF80-\uDF9D\uDF9F]' + }, + { + 'name': 'Vai', + 'bmp': '\uA500-\uA62B' + }, + { + 'name': 'Wancho', + 'astral': '\uD838[\uDEC0-\uDEF9\uDEFF]' + }, + { + 'name': 'Warang_Citi', + 'astral': '\uD806[\uDCA0-\uDCF2\uDCFF]' + }, + { + 'name': 'Yezidi', + 'astral': '\uD803[\uDE80-\uDEA9\uDEAB-\uDEAD\uDEB0\uDEB1]' + }, + { + 'name': 'Yi', + 'bmp': '\uA000-\uA48C\uA490-\uA4C6' + }, + { + 'name': 'Zanabazar_Square', + 'astral': '\uD806[\uDE00-\uDE47]' + } +]; + +},{}]},{},[8])(8) +}); diff --git a/packs/tables-des-traductions.db b/packs/tables-des-traductions.db index 1b2b814..af57051 100644 --- a/packs/tables-des-traductions.db +++ b/packs/tables-des-traductions.db @@ -10,27 +10,3 @@ {"_id":"qk5Z0tPrHYO4E9Iq","name":"Traduction des Maladies","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n
Blood Rot@Compendium[wfrp4e-core.diseases.M8XyRs9DN12XsFTQ]{Infection du Sang}
Bronze Fever@Compendium[wfrp4e-core.diseases.yWaB18Oh1G1VgUM2]{Fièvre Dorée}
Festering Wound@Compendium[wfrp4e-core.diseases.kKccDTGzWzSXCBOb]{Blessure Purulente}
Galloping Trots@Compendium[wfrp4e-core.diseases.txeLd7R13qxSvmsr]{Courante Galopante}
Itching Pox@Compendium[wfrp4e-core.diseases.UAwTqZ3hqNb7vq9s]{Vérole Urticante}
Minor Infection@Compendium[wfrp4e-core.diseases.1hQuVFZt9QnnbWzg]{Infection Mineure}
Packer's Pox@Compendium[wfrp4e-core.diseases.BC4QyBeYAiw8cRuM]{Vérole du Tanneur}
Ratte Fever@Compendium[wfrp4e-core.diseases.QiHMX5OyXBhWCYoF]{Fièvre du rongeur}
The Black Plague@Compendium[wfrp4e-core.diseases.aKiuGzlVO51JvsjV]{Peste Noire}
The Bloody Flux@Compendium[wfrp4e-core.diseases.herUmN51D9TiL2Vn]{Flux Sanglant}
"} {"_id":"t1rZcuX9msIZkpxn","name":"Traduction des Critiques","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Arterial Damage@Compendium[wfrp4e-core.criticals.sgBDLL1iLenHJ5um]{Artère endommagée}
Bad Cut@Compendium[wfrp4e-core.criticals.JcAgEHxuY9hwB4y5]{Mauvaise coupure}
Badly Cut Toe@Compendium[wfrp4e-core.criticals.9UjOMeBtKdoL5S34]{Coupure à l'orteil}
Badly Jarred Arm@Compendium[wfrp4e-core.criticals.VcKpiwNiQVwJJQVm]{Choc violent au bras}
Badly Twisted Knee@Compendium[wfrp4e-core.criticals.TxXIUDqoon9TivpO]{Genou tordu}
Black Eye@Compendium[wfrp4e-core.criticals.KB58O2LWcrzIb6do]{Cécité temporaire}
Bleeding hand@Compendium[wfrp4e-core.criticals.Z9aSUtiwhqVHENnR]{Main ensanglantée}
Broken Collar Bone@Compendium[wfrp4e-core.criticals.39906D4BcVGzsiQp]{Clavicule cassée}
Broken Jaw@Compendium[wfrp4e-core.criticals.nZK8CBZTlWTQG2K8]{Mâchoire cassée}
Broken Knee@Compendium[wfrp4e-core.criticals.njocSqK1sMPTi5K4]{Genou cassé}
Broken Nose@Compendium[wfrp4e-core.criticals.fIjnRUF4xplU2mhP]{Nez cassé}
Bruised Ribs@Compendium[wfrp4e-core.criticals.RLBB8XHqLDM4XejE]{Bleus aux côtes}
Brutal Dismemberment@Compendium[wfrp4e-core.criticals.tZc5KDSVW36sFx5G]{Démembrement brutal}
Carved Shin@Compendium[wfrp4e-core.criticals.heJZbvL0uXqKbljR]{Entaille au tibia}
Clean Break@Compendium[wfrp4e-core.criticals.ZE7gT3UWkw7gKeMv]{Cassure nette}
Cleft Hand@Compendium[wfrp4e-core.criticals.G8m6k3wEkhuXMjjp]{Main ouverte}
Concussive Blow@Compendium[wfrp4e-core.criticals.3Tk4cX1ri20oUoBh]{Commotion cérébrale}
Cracked Ribs@Compendium[wfrp4e-core.criticals.AXRma6wqpD5jvpuM]{Côtes fracturées}
Crushed Elbow@Compendium[wfrp4e-core.criticals.JKm6YDR88Friuw6h]{Coude fracassé}
Crushed Foot@Compendium[wfrp4e-core.criticals.NPhLsxsUV8wwdKWj]{Pied écrasé}
Cut Tendon@Compendium[wfrp4e-core.criticals.9s7eE2U30R774sxO]{Tendon coupé}
Damaged Artery@Compendium[wfrp4e-core.criticals.zXuy90mI1OLjxCvc]{Dégâts artériels}
Decapitated@Compendium[wfrp4e-core.criticals.Bpt4ZS0eHJOsuDXE]{Décapitation}
Deep Cut@Compendium[wfrp4e-core.criticals.Wpsybql9MWbWZUeH]{Coupure profonde}
Devastated Eye@Compendium[wfrp4e-core.criticals.GBaH4wyVes6ds7Wv]{Oeil crevé}
Disfiguring Blow@Compendium[wfrp4e-core.criticals.8WkGfg1oUsR16K3J]{Coup défigurant}
Dislocated Knee@Compendium[wfrp4e-core.criticals.8GrHGyhYlbdxqluu]{Genou démis}
Dislocated Shoulder@Compendium[wfrp4e-core.criticals.92vQ9g5DxlWNmD1c]{Epaule luxée}
Dramatic Injury@Compendium[wfrp4e-core.criticals.sSSUZXOXK2DSpxGx]{Blessure spectaculaire}
Ear Bash@Compendium[wfrp4e-core.criticals.cJ6raCFuP1diIXsy]{Frappe à l'oreille}
Fractured Hip@Compendium[wfrp4e-core.criticals.LdqCjnTAiiRZU1Sq]{Hanche fracturée}
Fractured Jaw@Compendium[wfrp4e-core.criticals.bAafQaKO9PdKQB8R]{Mâchoire fracturée}
Gaping Arm Wound@Compendium[wfrp4e-core.criticals.jvemdUZh3iRF67us]{Blessure béante}
Gaping Chest Wound@Compendium[wfrp4e-core.criticals.GmRF7GF7SZq6qeyj]{Blessure béante}
Gut Blow@Compendium[wfrp4e-core.criticals.VAKUqXH9nGyBXiGy]{Coup au ventre}
Gut Wound@Compendium[wfrp4e-core.criticals.pjJagbErW5tu3LJR]{Blessure au ventre}
Hacked Leg@Compendium[wfrp4e-core.criticals.uU2ibNRgeEjuSN7e]{Jambe charcutée}
Internal Bleeding@Compendium[wfrp4e-core.criticals.jma54Iat01N9X4Fb]{Hémorragie interne}
Jarred Arm@Compendium[wfrp4e-core.criticals.iLHKw6w3Ipmzj5ma]{Choc au bras}
Lost Footing@Compendium[wfrp4e-core.criticals.WRAuBX80vCwlnB0N]{Perte d'équilibre}
Low Blow!@Compendium[wfrp4e-core.criticals.l5X3wwVvctgQ4k2Q]{Dans les bijoux de famille!}
Major Chest Wound@Compendium[wfrp4e-core.criticals.zNzlJWzCqmyLtnFS]{Blessure majeure au torse}
Major Ear Wound@Compendium[wfrp4e-core.criticals.GWGaNV2kGRTlMlG7]{Blessure majeure à l'oreille}
Major Eye Wound@Compendium[wfrp4e-core.criticals.Ioxf9osVNGNyzIZA]{Blessure majeure à l'oeil}
Mangled Ear@Compendium[wfrp4e-core.criticals.XqxT8WjUbhsibhWd]{Oreille mutilée}
Mangled Hand@Compendium[wfrp4e-core.criticals.jeXKnpbV7xq8wDkH]{Main mutilée}
Mangled Jaw@Compendium[wfrp4e-core.criticals.qWJ2HWWj2411KSau]{Mâchoire mutilée}
Mauled Bicep@Compendium[wfrp4e-core.criticals.9NAkj43qHsH7Xok7]{Biceps déchiqueté}
Minor Arm Cut@Compendium[wfrp4e-core.criticals.sJU1kEp6yoHPmhIc]{Coupure mineure}
Minor Head Cut@Compendium[wfrp4e-core.criticals.btDTVsPFsOtBNpgF]{Coupure mineure}
Minor Leg Cut@Compendium[wfrp4e-core.criticals.wTGR340dwvAgwA9v]{Coupure mineure}
Painful Cut@Compendium[wfrp4e-core.criticals.GsBi7iz9z5tj9PiM]{Entaille douloureuse}
Poked Eye@Compendium[wfrp4e-core.criticals.3B3QEz9ImmloEQxv]{Vision brouillée}
Pulled Back@Compendium[wfrp4e-core.criticals.cWK3kNzvujhWi9jQ]{Dos froissé}
Ragged Wound@Compendium[wfrp4e-core.criticals.S8sbrHd9zxaYiDFJ]{Chairs déchirées}
Rattling Blow@Compendium[wfrp4e-core.criticals.M15Fg1Wdl047rD8L]{Coup percutant}
Ruptered Ligament@Compendium[wfrp4e-core.criticals.263ic3ulLuR9DPzP]{Ligament rompu}
Ruptured Tendon@Compendium[wfrp4e-core.criticals.9MKzpUh761nGa76M]{Tendon rompu}
Severed Finger@Compendium[wfrp4e-core.criticals.H07sv4W1RPoES06K]{Doigt sectionné}
Severed Foot@Compendium[wfrp4e-core.criticals.BzIaW1w6eTUFWgkk]{Pied sectionné}
Shattered Pelvis@Compendium[wfrp4e-core.criticals.F9aFPBvoCdxg8oFJ]{Bassin fracassé}
Sliced Ear@Compendium[wfrp4e-core.criticals.IZkWdvSwQPrnjdsD]{Oreille tranchée}
Sliced Tendons@Compendium[wfrp4e-core.criticals.WWdCfTZCgcHK2soX]{Tendons coupés}
Smashed Mouth@Compendium[wfrp4e-core.criticals.LZ8ThwJsGDgiPkAd]{Bouche explosée}
Smashed Rib Cage@Compendium[wfrp4e-core.criticals.MZuAg4zB17prHXaG]{Cage thoracique perforée}
Sprain@Compendium[wfrp4e-core.criticals.B6lS25BojearuvzW]{Torsion}
Sprained Ankle@Compendium[wfrp4e-core.criticals.wbbDM7rUetyWYgLt]{Cheville foulée}
Struck Forehead@Compendium[wfrp4e-core.criticals.GHa0StLRCchw6dQ0]{En plein front}
Stubbed Toe@Compendium[wfrp4e-core.criticals.TMjbr94rrtCqM6bk]{Orteil contusionné}
Thigh Strike@Compendium[wfrp4e-core.criticals.2ibzDR7EeMEq2QAe]{Coup à la cuisse}
Tis But A Scratch!@Compendium[wfrp4e-core.criticals.PhCFqJif8iQaiOm0]{Rien qu'une égratignure !}
Torn Apart@Compendium[wfrp4e-core.criticals.jY9wCTf7q86zk96P]{Éventré}
Torn Muscles@Compendium[wfrp4e-core.criticals.ShiLe2LWvvwTIa4o]{Déchirure Musculaire}
Torn Thigh@Compendium[wfrp4e-core.criticals.AUZLQkyu9kiqmzsq]{Cuisse lacérée}
Twisted Ankle@Compendium[wfrp4e-core.criticals.9j0KwH1Je1RiuZX2]{Cheville tordue}
Twisted Back@Compendium[wfrp4e-core.criticals.K0WjEuCqGDUwAPE6]{Torsion du dos}
Twisted Knee@Compendium[wfrp4e-core.criticals.wnYgHZm503oOERSf]{Genou tordu}
Winded@Compendium[wfrp4e-core.criticals.UC2zRorETcI8rheP]{Souffle coupé}
Wrenched Arm@Compendium[wfrp4e-core.criticals.nnPZijQYZGya1NJM]{Clef de bras}
Wrenched Collar Bone@Compendium[wfrp4e-core.criticals.P6opRTvzX1rgzfgE]{Clavicule tordue}
"} {"_id":"yfZxl4I7XAuUF6r3","name":"Traduction des Bénédictions et Miracles","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"folder":"","flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
An Invitation @Compendium[wfrp4e-core.prayers.cTZVEgAyT9l4vx3i]{Invitation }
Anchorite's Endurance@Compendium[wfrp4e-core.prayers.uMECZBuDnb3qkc7k]{Endurance de l'anachorète}
Animal Instincts@Compendium[wfrp4e-core.prayers.SZ88OXYo6F2q3vWb]{Instincts Animaux}
As Verena is My Witness@Compendium[wfrp4e-core.prayers.jXyyzYWid3nruQmc]{Véréna est mon témoin}
Balm to a Wounded Mind@Compendium[wfrp4e-core.prayers.8LcAFB6W37LDN70K]{Baume pour un esprit blessé}
Beacon of Righteous Virtue@Compendium[wfrp4e-core.prayers.Dk0zjtcANtahntHx]{Flambeau de Vertu}
Becalm@Compendium[wfrp4e-core.prayers.Geo6EAR39JzaP9P2]{Encalaminé}
Bitter Catharsis@Compendium[wfrp4e-core.prayers.UtgGJK46K08TZpP5]{Amère Catharsis}
Blazing Sun@Compendium[wfrp4e-core.prayers.Q91bWCEn0gt33fGT]{Ardent Soleil}
Blessing of Battle@Compendium[wfrp4e-core.prayers.ElmLfnrXliStS9CP]{Bénédiction de Bataille}
Blessing of Breath@Compendium[wfrp4e-core.prayers.TKHvOsihelBStO6i]{Bénédiction de Souffle}
Blessing of Charisma@Compendium[wfrp4e-core.prayers.FElNQGNiPzaOwwKT]{Bénédiction de Charisme}
Blessing of Conscience@Compendium[wfrp4e-core.prayers.tEMwdlHM8A40h6HE]{Bénédiction de Conscience}
Blessing of Courage@Compendium[wfrp4e-core.prayers.Cg2Q3TV66cpmheHS]{Bénédiction de Courage}
Blessing of Finesse@Compendium[wfrp4e-core.prayers.OkKWAfnMiHfxhTnB]{Bénédiction de Finesse}
Blessing of Fortune@Compendium[wfrp4e-core.prayers.iIfYOlNrLb0uiV8c]{Bénédiction de Chance}
Blessing of Grace@Compendium[wfrp4e-core.prayers.maUl7MoLvuvTOhM0]{Bénédiction de Grâce}
Blessing of Hardiness@Compendium[wfrp4e-core.prayers.0r3moMIHXsBrcOyh]{Bénédiction de Vigueur}
Blessing of Healing@Compendium[wfrp4e-core.prayers.C92dpJPRYpkZFsGu]{Bénédiction de Guérison}
Blessing of Might@Compendium[wfrp4e-core.prayers.KSDrXcieyRc37YI7]{Bénédiction de Puissance}
Blessing of Protection@Compendium[wfrp4e-core.prayers.K5DE9cceinUTIrem]{Bénédiction de Protection}
Blessing of Recuperation@Compendium[wfrp4e-core.prayers.Jkt465WPdRcejLwl]{Bénédiction de Convalescence}
Blessing of Righteousness@Compendium[wfrp4e-core.prayers.2WN0muIB2BFd4kBO]{Bénédiction de Droiture}
Blessing of Savagery@Compendium[wfrp4e-core.prayers.eBRjKAF6U0yR0KK8]{Bénédiction de Sauvagerie}
Blessing of Tenacity@Compendium[wfrp4e-core.prayers.GvaOlWY8iD5CO1WB]{Bénédiction de Tenacité}
Blessing of The Hunt@Compendium[wfrp4e-core.prayers.By5dc8Q7ZAGpr177]{Bénédiction de La Chasse}
Blessing of Wisdom@Compendium[wfrp4e-core.prayers.FRkIz2sR7ZC92W2G]{Bénédiction de Sagesse}
Blessing of Wit@Compendium[wfrp4e-core.prayers.tMocig1z9dHKNiCT]{Bénédiction of Vivacité}
Blind Justice@Compendium[wfrp4e-core.prayers.R6Q16WOXcPfaHnOb]{Justice Aveugle}
Cat's Eyes@Compendium[wfrp4e-core.prayers.Bo3ukcaipFNb7Ljl]{Yeux de Chat}
Death Mask@Compendium[wfrp4e-core.prayers.QQuIWTRGydpOfyZB]{Masque Mortuaire}
Destroy Undead@Compendium[wfrp4e-core.prayers.sdSy4k7ygDhAjSSX]{Anéantir les Morts-vivants}
Dooming@Compendium[wfrp4e-core.prayers.itARFNqBAbwNDAAy]{Condamné}
Drowned Man's Face@Compendium[wfrp4e-core.prayers.i5DW3xX2lGu6Pps6]{Visage de l'homme noyé}
Eagle's Eye@Compendium[wfrp4e-core.prayers.7KUKKbXBv8MbyEHt]{Oeil de l'Aigle}
Fair Winds@Compendium[wfrp4e-core.prayers.nQ9Fydtqshroi11E]{Vents Favorables}
Fury's Call@Compendium[wfrp4e-core.prayers.nyZNUwJ54MTLKQ7Y]{Appel à la Fureur}
Heed Not the Witch@Compendium[wfrp4e-core.prayers.Ffm7xIlRUWyacvKU]{N'écoutez point la Sorcière}
Hoarfrost's Chill@Compendium[wfrp4e-core.prayers.v28a5ilgxvDJfBqR]{Frisson du Givre}
Howl of the Wolf@Compendium[wfrp4e-core.prayers.9ALNZLZUZSLrLvkd]{Hurlement du Loup}
Inspiring@Compendium[wfrp4e-core.prayers.ezVl3vFWTwHfNXL3]{Inspirant}
King of the Wild@Compendium[wfrp4e-core.prayers.n8MfaJhczROmscCR]{Roi de la Nature}
Last Rites@Compendium[wfrp4e-core.prayers.rbdxcYoj8N2eMaqV]{Rites Funéraires}
Leaping Stag@Compendium[wfrp4e-core.prayers.mXKrxO8WRZ9QLHA6]{Bondissant comme un cerf}
Lord of the Hunt@Compendium[wfrp4e-core.prayers.JxmIQjVuoPcQnyPF]{Seigneur de la Chasse}
Manann's Bounty@Compendium[wfrp4e-core.prayers.IKW03JiqXVdDoPA6]{Générosité de Mannan}
Martyr@Compendium[wfrp4e-core.prayers.YCjWyU567vb4Rs11]{Martyr}
Pelt of the Winter Wolf@Compendium[wfrp4e-core.prayers.3ONBOTaeWq657MQR]{Peau de Loup d'Hiver}
Portal's Threshold@Compendium[wfrp4e-core.prayers.uE6AXjMjYvtvXQvy]{Seuil du portail}
Ranald's Grace@Compendium[wfrp4e-core.prayers.hL7B3d7A0sYYjHXn]{Grace de Ranald}
Rhya's Children@Compendium[wfrp4e-core.prayers.qB1T6ii29jreZBRP]{Enfants de Rhya}
Rhya's Harvest@Compendium[wfrp4e-core.prayers.OiMiQmsv1mut24jD]{Récolte de Rhya}
Rhya's Shelter@Compendium[wfrp4e-core.prayers.25trttu8NxFQQCo9]{Abri de Rhya}
Rhya's Succour@Compendium[wfrp4e-core.prayers.pBWXlJDOE7tfl8hP]{Secours de Rhya}
Rhya's Touch@Compendium[wfrp4e-core.prayers.0uT3mzx8v4H3gVQj]{Caresse de Rhya}
Rhya's Union@Compendium[wfrp4e-core.prayers.dDxhGgBBM9CugxsH]{Union de Rhya}
Rich Man, Poor Man, Beggar Man, Thief@Compendium[wfrp4e-core.prayers.QSwJNH8sotKjtdi4]{Riche, Pauvre, Mendiant, Voleur}
Sea Legs@Compendium[wfrp4e-core.prayers.VUyCJ5LRPkuC5iZx]{Mer déchaînée}
Shackles of Truth@Compendium[wfrp4e-core.prayers.oI3iwxVEXHRLSael]{Entraves à la Vérité}
Shallya's Tears@Compendium[wfrp4e-core.prayers.YAauxOwJJa3JahxQ]{Larmes de Shallya}
Shield of Myrmidia@Compendium[wfrp4e-core.prayers.V8GCeqgk1FNGFg76]{Bouclier de Myrmidia}
Sigmar's Fiery Hammer@Compendium[wfrp4e-core.prayers.WgZx3xma6vYGz17e]{Marteau Ardent de Sigmar}
Soulfire@Compendium[wfrp4e-core.prayers.5fVTY8TSua3trOW8]{Soufre}
Spear of Myrmidia@Compendium[wfrp4e-core.prayers.BVZWihaal1zq3aJs]{Lance de Myrmidia}
Stay Lucky@Compendium[wfrp4e-core.prayers.FfGboPdR54WHtkAE]{Que la Chance Persiste}
Stay Morr's Hand@Compendium[wfrp4e-core.prayers.SjKFVBXgLC51dnQz]{Main de Morr}
Sword of Justice@Compendium[wfrp4e-core.prayers.o5soyuEJoUk9HmCC]{Epée de Justice}
Tanglefoot@Compendium[wfrp4e-core.prayers.ONz21FviMRk3AyvE]{Enchevêtrement}
The Snow King's Judgement@Compendium[wfrp4e-core.prayers.GVMPSJwgscMVJzpX]{Jugement du Roi de la Neige}
Tooth and Claw@Compendium[wfrp4e-core.prayers.PcKMAEF6UoaPSK6d]{Dent et Griffe}
Truth Will Out@Compendium[wfrp4e-core.prayers.DA4ZB3HkOh51vhuB]{La Vérité Eclatera}
Twin-tailed Comet@Compendium[wfrp4e-core.prayers.rjkMzFwN1trbSLL8]{Comètes à Deux-Queues}
Ulric's Fury@Compendium[wfrp4e-core.prayers.F6iJdTrvBvGQ54G3]{Fureur d'Ulric}
Unblemished Innocence@Compendium[wfrp4e-core.prayers.SItGUVYokyOo7csk]{Inocence Immaculée}
Vanquish the Unrighteous@Compendium[wfrp4e-core.prayers.I8YPP2uRmUKyHEq2]{Vaincre les Impies}
Waterwalk@Compendium[wfrp4e-core.prayers.iWVQRVDVDCx1SyPA]{Marcher sur les Eaux}
Winter's Bite@Compendium[wfrp4e-core.prayers.rrfrmqCpy10u7c9o]{Morsure de l'Hiver}
Wisdom of the Owl@Compendium[wfrp4e-core.prayers.fAlQcNUb6TZtPKqk]{Sagesse de la Chouette}
You Ain’t Seen Me, Right?@Compendium[wfrp4e-core.prayers.fABd17NZvg2uUReL]{Vous ne m'avez pas vu, N'est ce pas ?}
"} -{"_id":"yfZxl4I7XAuUF6r3","name":"Traduction des Bénédictions et Miracles","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"folder":"","flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
An Invitation @Compendium[wfrp4e-core.prayers.cTZVEgAyT9l4vx3i]{Invitation }
Anchorite's Endurance@Compendium[wfrp4e-core.prayers.uMECZBuDnb3qkc7k]{Endurance de l'anachorète}
Animal Instincts@Compendium[wfrp4e-core.prayers.SZ88OXYo6F2q3vWb]{Instincts Animaux}
As Verena is My Witness@Compendium[wfrp4e-core.prayers.jXyyzYWid3nruQmc]{Véréna est mon témoin}
Balm to a Wounded Mind@Compendium[wfrp4e-core.prayers.8LcAFB6W37LDN70K]{Baume pour un esprit blessé}
Beacon of Righteous Virtue@Compendium[wfrp4e-core.prayers.Dk0zjtcANtahntHx]{Flambeau de Vertu}
Becalm@Compendium[wfrp4e-core.prayers.Geo6EAR39JzaP9P2]{Encalaminé}
Bitter Catharsis@Compendium[wfrp4e-core.prayers.UtgGJK46K08TZpP5]{Amère Catharsis}
Blazing Sun@Compendium[wfrp4e-core.prayers.Q91bWCEn0gt33fGT]{Ardent Soleil}
Blessing of Battle@Compendium[wfrp4e-core.prayers.ElmLfnrXliStS9CP]{Bénédiction de Bataille}
Blessing of Breath@Compendium[wfrp4e-core.prayers.TKHvOsihelBStO6i]{Bénédiction de Souffle}
Blessing of Charisma@Compendium[wfrp4e-core.prayers.FElNQGNiPzaOwwKT]{Bénédiction de Charisme}
Blessing of Conscience@Compendium[wfrp4e-core.prayers.tEMwdlHM8A40h6HE]{Bénédiction de Conscience}
Blessing of Courage@Compendium[wfrp4e-core.prayers.Cg2Q3TV66cpmheHS]{Bénédiction de Courage}
Blessing of Finesse@Compendium[wfrp4e-core.prayers.OkKWAfnMiHfxhTnB]{Bénédiction de Finesse}
Blessing of Fortune@Compendium[wfrp4e-core.prayers.iIfYOlNrLb0uiV8c]{Bénédiction de Chance}
Blessing of Grace@Compendium[wfrp4e-core.prayers.maUl7MoLvuvTOhM0]{Bénédiction de Grâce}
Blessing of Hardiness@Compendium[wfrp4e-core.prayers.0r3moMIHXsBrcOyh]{Bénédiction de Vigueur}
Blessing of Healing@Compendium[wfrp4e-core.prayers.C92dpJPRYpkZFsGu]{Bénédiction de Guérison}
Blessing of Might@Compendium[wfrp4e-core.prayers.KSDrXcieyRc37YI7]{Bénédiction de Puissance}
Blessing of Protection@Compendium[wfrp4e-core.prayers.K5DE9cceinUTIrem]{Bénédiction de Protection}
Blessing of Recuperation@Compendium[wfrp4e-core.prayers.Jkt465WPdRcejLwl]{Bénédiction de Convalescence}
Blessing of Righteousness@Compendium[wfrp4e-core.prayers.2WN0muIB2BFd4kBO]{Bénédiction de Droiture}
Blessing of Savagery@Compendium[wfrp4e-core.prayers.eBRjKAF6U0yR0KK8]{Bénédiction de Sauvagerie}
Blessing of Tenacity@Compendium[wfrp4e-core.prayers.GvaOlWY8iD5CO1WB]{Bénédiction de Tenacité}
Blessing of The Hunt@Compendium[wfrp4e-core.prayers.By5dc8Q7ZAGpr177]{Bénédiction de La Chasse}
Blessing of Wisdom@Compendium[wfrp4e-core.prayers.FRkIz2sR7ZC92W2G]{Bénédiction de Sagesse}
Blessing of Wit@Compendium[wfrp4e-core.prayers.tMocig1z9dHKNiCT]{Bénédiction of Vivacité}
Blind Justice@Compendium[wfrp4e-core.prayers.R6Q16WOXcPfaHnOb]{Justice Aveugle}
Cat's Eyes@Compendium[wfrp4e-core.prayers.Bo3ukcaipFNb7Ljl]{Yeux de Chat}
Death Mask@Compendium[wfrp4e-core.prayers.QQuIWTRGydpOfyZB]{Masque Mortuaire}
Destroy Undead@Compendium[wfrp4e-core.prayers.sdSy4k7ygDhAjSSX]{Anéantir les Morts-vivants}
Dooming@Compendium[wfrp4e-core.prayers.itARFNqBAbwNDAAy]{Condamné}
Drowned Man's Face@Compendium[wfrp4e-core.prayers.i5DW3xX2lGu6Pps6]{Visage de l'homme noyé}
Eagle's Eye@Compendium[wfrp4e-core.prayers.7KUKKbXBv8MbyEHt]{Oeil de l'Aigle}
Fair Winds@Compendium[wfrp4e-core.prayers.nQ9Fydtqshroi11E]{Vents Favorables}
Fury's Call@Compendium[wfrp4e-core.prayers.nyZNUwJ54MTLKQ7Y]{Appel à la Fureur}
Heed Not the Witch@Compendium[wfrp4e-core.prayers.Ffm7xIlRUWyacvKU]{N'écoutez point la Sorcière}
Hoarfrost's Chill@Compendium[wfrp4e-core.prayers.v28a5ilgxvDJfBqR]{Frisson du Givre}
Howl of the Wolf@Compendium[wfrp4e-core.prayers.9ALNZLZUZSLrLvkd]{Hurlement du Loup}
Inspiring@Compendium[wfrp4e-core.prayers.ezVl3vFWTwHfNXL3]{Inspirant}
King of the Wild@Compendium[wfrp4e-core.prayers.n8MfaJhczROmscCR]{Roi de la Nature}
Last Rites@Compendium[wfrp4e-core.prayers.rbdxcYoj8N2eMaqV]{Rites Funéraires}
Leaping Stag@Compendium[wfrp4e-core.prayers.mXKrxO8WRZ9QLHA6]{Bondissant comme un cerf}
Lord of the Hunt@Compendium[wfrp4e-core.prayers.JxmIQjVuoPcQnyPF]{Seigneur de la Chasse}
Manann's Bounty@Compendium[wfrp4e-core.prayers.IKW03JiqXVdDoPA6]{Générosité de Mannan}
Martyr@Compendium[wfrp4e-core.prayers.YCjWyU567vb4Rs11]{Martyr}
Pelt of the Winter Wolf@Compendium[wfrp4e-core.prayers.3ONBOTaeWq657MQR]{Peau de Loup d'Hiver}
Portal's Threshold@Compendium[wfrp4e-core.prayers.uE6AXjMjYvtvXQvy]{Seuil du portail}
Ranald's Grace@Compendium[wfrp4e-core.prayers.hL7B3d7A0sYYjHXn]{Grace de Ranald}
Rhya's Children@Compendium[wfrp4e-core.prayers.qB1T6ii29jreZBRP]{Enfants de Rhya}
Rhya's Harvest@Compendium[wfrp4e-core.prayers.OiMiQmsv1mut24jD]{Récolte de Rhya}
Rhya's Shelter@Compendium[wfrp4e-core.prayers.25trttu8NxFQQCo9]{Abri de Rhya}
Rhya's Succour@Compendium[wfrp4e-core.prayers.pBWXlJDOE7tfl8hP]{Secours de Rhya}
Rhya's Touch@Compendium[wfrp4e-core.prayers.0uT3mzx8v4H3gVQj]{Caresse de Rhya}
Rhya's Union@Compendium[wfrp4e-core.prayers.dDxhGgBBM9CugxsH]{Union de Rhya}
Rich Man, Poor Man, Beggar Man, Thief@Compendium[wfrp4e-core.prayers.QSwJNH8sotKjtdi4]{Riche, Pauvre, Mendiant, Voleur}
Sea Legs@Compendium[wfrp4e-core.prayers.VUyCJ5LRPkuC5iZx]{Mer déchaînée}
Shackles of Truth@Compendium[wfrp4e-core.prayers.oI3iwxVEXHRLSael]{Entraves à la Vérité}
Shallya's Tears@Compendium[wfrp4e-core.prayers.YAauxOwJJa3JahxQ]{Larmes de Shallya}
Shield of Myrmidia@Compendium[wfrp4e-core.prayers.V8GCeqgk1FNGFg76]{Bouclier de Myrmidia}
Sigmar's Fiery Hammer@Compendium[wfrp4e-core.prayers.WgZx3xma6vYGz17e]{Marteau Ardent de Sigmar}
Soulfire@Compendium[wfrp4e-core.prayers.5fVTY8TSua3trOW8]{Soufre}
Spear of Myrmidia@Compendium[wfrp4e-core.prayers.BVZWihaal1zq3aJs]{Lance de Myrmidia}
Stay Lucky@Compendium[wfrp4e-core.prayers.FfGboPdR54WHtkAE]{Que la Chance Persiste}
Stay Morr's Hand@Compendium[wfrp4e-core.prayers.SjKFVBXgLC51dnQz]{Main de Morr}
Sword of Justice@Compendium[wfrp4e-core.prayers.o5soyuEJoUk9HmCC]{Epée de Justice}
Tanglefoot@Compendium[wfrp4e-core.prayers.ONz21FviMRk3AyvE]{Enchevêtrement}
The Snow King's Judgement@Compendium[wfrp4e-core.prayers.GVMPSJwgscMVJzpX]{Jugement du Roi de la Neige}
Tooth and Claw@Compendium[wfrp4e-core.prayers.PcKMAEF6UoaPSK6d]{Dent et Griffe}
Truth Will Out@Compendium[wfrp4e-core.prayers.DA4ZB3HkOh51vhuB]{La Vérité Eclatera}
Twin-tailed Comet@Compendium[wfrp4e-core.prayers.rjkMzFwN1trbSLL8]{Comètes à Deux-Queues}
Ulric's Fury@Compendium[wfrp4e-core.prayers.F6iJdTrvBvGQ54G3]{Fureur d'Ulric}
Unblemished Innocence@Compendium[wfrp4e-core.prayers.SItGUVYokyOo7csk]{Inocence Immaculée}
Vanquish the Unrighteous@Compendium[wfrp4e-core.prayers.I8YPP2uRmUKyHEq2]{Vaincre les Impies}
Waterwalk@Compendium[wfrp4e-core.prayers.iWVQRVDVDCx1SyPA]{Marcher sur les Eaux}
Winter's Bite@Compendium[wfrp4e-core.prayers.rrfrmqCpy10u7c9o]{Morsure de l'Hiver}
Wisdom of the Owl@Compendium[wfrp4e-core.prayers.fAlQcNUb6TZtPKqk]{Sagesse de la Chouette}
You Ain’t Seen Me, Right?@Compendium[wfrp4e-core.prayers.fABd17NZvg2uUReL]{Vous ne m'avez pas vu, N'est ce pas ?}
"} -{"_id":"VmBVwV9hT2OvecVy","name":"Traduction des Bestiaire","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Basilisk@Compendium[wfrp4e-core.bestiary.z8f3vySKIpTxGr62]{Basilic}
Bear@Compendium[wfrp4e-core.bestiary.NtEj1B9oWBRWXZZn]{Ours}
Bloodletter of Khorne@Compendium[wfrp4e-core.bestiary.KZkuwdOYmE3nwB2n]{Bloodletter de Khorne}
Boar@Compendium[wfrp4e-core.bestiary.7629Eaow3acVS59H]{Sanglier}
Bog Octopus@Compendium[wfrp4e-core.bestiary.FmEDHnfAe2iIugpt]{Pieuvre des Tourbières}
Bray-Shaman@Compendium[wfrp4e-core.bestiary.cHVOdcEkuatqjYV1]{Chaman-Bray}
Cairn Wraith@Compendium[wfrp4e-core.bestiary.hMbcLVjk7eUdxtqC]{Spectre de Cairn}
Cave Squig@Compendium[wfrp4e-core.bestiary.VMceSpLje0J7lfP0]{Squig des Cavernes}
Chaos Warrior@Compendium[wfrp4e-core.bestiary.a05lQsGjSv62wF0U]{Guerrier du Chaos}
Clanrat@Compendium[wfrp4e-core.bestiary.F1vAZZcmVKkRw8xn]{Guerrier des Clans}
Crypt Ghoul@Compendium[wfrp4e-core.bestiary.6B7LMdYtunAftsFN]{Goule de Crypte}
Cultist@Compendium[wfrp4e-core.bestiary.jfMhkQGzjFWDxVOm]{Cultiste}
Daemonette of Slaanesh@Compendium[wfrp4e-core.bestiary.8gG2Wim6wAlJWRax]{Démonette of Slaanesh}
Demigryph@Compendium[wfrp4e-core.bestiary.MLtDY4bwzGQpaABN]{Demigriffon}
Dire Wolf@Compendium[wfrp4e-core.bestiary.umddAQkmxVYG0AzO]{Loup funeste}
Dog@Compendium[wfrp4e-core.bestiary.R1iWvfV9EvgIc8bJ]{Chien}
Dragon@Compendium[wfrp4e-core.bestiary.LZttdCIxmFr1sGsS]{Dragon}
Fenbeast@Compendium[wfrp4e-core.bestiary.HKSn8iNSS9WcAuJc]{Bête des marais}
Fimir@Compendium[wfrp4e-core.bestiary.kt9ob9BdK6zLDWxn]{Fimir}
Fr'hough Mournbreath@Compendium[wfrp4e-core.bestiary.vK0WXrRDUjztB6QK]{Fr'hough Mournbreath}
Ghost@Compendium[wfrp4e-core.bestiary.GgSxlomoV220kd3G]{Fantôme}
Giant@Compendium[wfrp4e-core.bestiary.HZfZaCjdniz5Z4CP]{Géant}
Giant Rat@Compendium[wfrp4e-core.bestiary.oenbbB0PitRWUBfZ]{Rat géant}
Giant Spider@Compendium[wfrp4e-core.bestiary.VPVnyae6VHeD9cEP]{Araignée Géante}
Goblin@Compendium[wfrp4e-core.bestiary.zzdOpKqBC28J66Mn]{Gobelin}
Gor@Compendium[wfrp4e-core.bestiary.R37OtN5gmPWCYOP3]{Gor}
Griffon@Compendium[wfrp4e-core.bestiary.8g9rnHLiZ1pJcPPt]{Griffon}
Hippogryph@Compendium[wfrp4e-core.bestiary.RiXpMLex8SZf6gaQ]{Hippogryffe}
Horse@Compendium[wfrp4e-core.bestiary.b1R5sW6lYIViJ2ki]{Cheval}
Hydra@Compendium[wfrp4e-core.bestiary.A4G4bTYxot3ZygZO]{Hydre}
Jabberslythe@Compendium[wfrp4e-core.bestiary.9q8QzWB4o7aj6ZxL]{Jabberslythe}
Manticore@Compendium[wfrp4e-core.bestiary.XtVkAVgZRIIgrBXb]{Manticore}
Minotaur@Compendium[wfrp4e-core.bestiary.cAK1bMj1ne7HPcxI]{Minotaure}
Mutant@Compendium[wfrp4e-core.bestiary.P0GkA7DPaLbeOTkf]{Mutant}
Ogre@Compendium[wfrp4e-core.bestiary.nPvDzBcqDGuRaS7x]{Ogre}
Orc@Compendium[wfrp4e-core.bestiary.E7BiDqsB55BrOQut]{Orc}
Pegasus@Compendium[wfrp4e-core.bestiary.Yee9gwxJUceGbnO2]{Pégase}
Pigeon@Compendium[wfrp4e-core.bestiary.ge5zXH2qboxaac7v]{Pigeon}
Rat Ogre@Compendium[wfrp4e-core.bestiary.VfJgGmCTWqb0IDSW]{Rat Ogre}
Skeleton@Compendium[wfrp4e-core.bestiary.Mt5JAoOSaEH1PdcP]{Squelette}
Slenderthigh Whiptongue@Compendium[wfrp4e-core.bestiary.28MwFcDPwpcO12kt]{Slenderthigh Whiptongue}
Snake@Compendium[wfrp4e-core.bestiary.AAiKqD1IoweDpJI7]{Serpent}
Snotling@Compendium[wfrp4e-core.bestiary.wdnXbjtKK7MtsZzc]{Snotling}
Stormvermin@Compendium[wfrp4e-core.bestiary.kl4qHg0mqWOApBqH]{Vermine de choc}
Tomb Banshee@Compendium[wfrp4e-core.bestiary.TWy5l4uYTRAtjfit]{Banshee}
Troll@Compendium[wfrp4e-core.bestiary.7qslmdLa7so3BmFk]{Troll}
Ungor@Compendium[wfrp4e-core.bestiary.vrYs3cbxvXtre6rv]{Ungor}
Vampire@Compendium[wfrp4e-core.bestiary.T5qAtpoKtB8iwTBd]{Vampire}
Varghulf@Compendium[wfrp4e-core.bestiary.XoSSlIsqXkiBlycn]{Chauve-Souris Vampire}
Wolf@Compendium[wfrp4e-core.bestiary.lSvYEInG8sZ03vqd]{Loup}
Wyvern@Compendium[wfrp4e-core.bestiary.KeB0khEeq462qTJw]{Vouivre}
Zombie@Compendium[wfrp4e-core.bestiary.T79RqnDOAQLn3I1s]{Zombie}
"} -{"_id":"XriaVUeLgTL0adB7","name":"Traduction des Blessures","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Amputated Part@Compendium[wfrp4e-core.injuries.04OvfETcxQK8UMcR]{Oreille Amputée}
Amputated Part@Compendium[wfrp4e-core.injuries.8INWQxvtMaK9oeV4]{Dent perdue}
Amputated Part@Compendium[wfrp4e-core.injuries.8sM5Mdk6gP6mdjoM]{Main Amputée}
Amputated Part@Compendium[wfrp4e-core.injuries.C0BX3ywcMgTUWKXJ]{Pied Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.EnqT2PdAvzbd7Rok]{Orteil Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.ISdiZbcuTA16EyDS]{Langue coupée}
Amputated Part@Compendium[wfrp4e-core.injuries.JaadlZPkwb5ozp4f]{Nez Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.KauMO1CodRLWmhv4]{Bras Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.ryG4x0tj6psMSXI2]{Doigt Amputée}
Amputated Part@Compendium[wfrp4e-core.injuries.uTJccLaYFfaJReIg]{Oeil crevé}
Amputated Part@Compendium[wfrp4e-core.injuries.xTtDVDXCClQieIW5]{Jambe Amputée}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.2A7SW9eXsm7MvLsk]{Bras Fracturé (Majeure)}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.AoJLxDfZtmWXCiDi]{Jambe Fracturée (Majeure)}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.B4EzqsaO3Q0okZ9d]{Fracture Crânienne (Majeure)}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.rIJz5nxmvxZTozmB]{Torse Fracturé (Majeure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.6M98mPfnL3hmXW3g]{Jambe Fracturée (Mineure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.FmmVJn6T63vOD2Q6]{Bras Fracturé (Mineure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.IEK2WP1ysSIX1gie]{Torse Fracturé (Mineure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.mS1aAjNcH9zZK3Hq]{Fracture Crânienne (Mineure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.XSlFkJD3Ef842LZo]{Déchirure musculaire Jambe (Majeure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.fTLRTydQWwFSrMjV]{Déchirure Musculaire Bras (Majeure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.kCmBuxQqSXPqfgJ4]{Déchirure Musculaire Torse (Majeure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.uijeixndSjrnRAK2]{Déchirure Musculaire Tête (Majeure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.HjBumJm1eqc8qbzJ]{Déchirure Musculaire Torse (Mineure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.JMm9hqyAX6HBTqZO]{Déchirure Musculaire Bras (Mineure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.hPEpGFB9GuYI3kOC]{Déchirure Musculaire Tête (Mineure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.rlXUw5Bgz2xUjVbU]{Déchirure musculaire Jambe (Mineure)}
"} -{"_id":"i0r3aVW8TFXHKCvr","name":"Traduction des Carrières","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Abbess@Compendium[wfrp4e-core.careers.TDErU66ZoIirO2dF]{Abbesse}
Advisor@Compendium[wfrp4e-core.careers.TolERlCR35zIf9G4]{Conseiller}
Agent@Compendium[wfrp4e-core.careers.4YnbaP9MXqU4NBpt]{Agent secret}
Agitator@Compendium[wfrp4e-core.careers.PmyKqVD6NOb2RzYh]{Agitateur}
Aide@Compendium[wfrp4e-core.careers.WBA0vgLdGsJ32ccS]{Assistant}
Ambassador@Compendium[wfrp4e-core.careers.pI8vGV2VqT3BvnE8]{Ambassadeur}
Apothecary@Compendium[wfrp4e-core.careers.0Y29f5H8h6lyfT9f]{Apothicaire}
Apothecary's Apprentice@Compendium[wfrp4e-core.careers.Sb0vJ3jB6n4wJwwy]{Apprenti Apothicaire}
Apothecary-General@Compendium[wfrp4e-core.careers.y0V0xRFindJiBUDz]{Eminent Apothicaire}
Apprentice Artisan@Compendium[wfrp4e-core.careers.AFv0J8Mq9cbmNEVc]{Apprenti Artisan}
Apprentice Artist@Compendium[wfrp4e-core.careers.XYkcst2gjS4QUyZI]{Artiste apprenti}
Artisan@Compendium[wfrp4e-core.careers.wwt4F5amY5sxbXsq]{Artisan}
Artist@Compendium[wfrp4e-core.careers.S0jyd05NzckWVstu]{Artiste}
Assassin@Compendium[wfrp4e-core.careers.HtN6uHPj7sK6EWMZ]{Assassin}
Attendant@Compendium[wfrp4e-core.careers.QvPzxossG9zDSB2o]{Suivant}
Bailiff@Compendium[wfrp4e-core.careers.9UWoLPwYyPV2TRnz]{Bailli}
Bandit King@Compendium[wfrp4e-core.careers.g2vYtD3Mu7ujYTVF]{Roi des bandits}
Barge Master@Compendium[wfrp4e-core.careers.RrZQrPRkSUvqkn8R]{Maître de barge}
Bargeswain@Compendium[wfrp4e-core.careers.yzgbXappuN7MRXUy]{Conducteur de barges}
Barrister@Compendium[wfrp4e-core.careers.qGgpt1BH2y3Q3J0A]{Maître du Barreau}
Bawd@Compendium[wfrp4e-core.careers.FLdR3uEEdQxkZiaP]{Entremetteur}
Beggar@Compendium[wfrp4e-core.careers.QM906gNihyYSbJQ8]{Mendiant}
Beggar King@Compendium[wfrp4e-core.careers.2ye9gbPW4QIR8HYY]{Roi des Mendiants}
Black Marketeer@Compendium[wfrp4e-core.careers.bO6PkXjLPKCwK4QC]{Professionnel du marché noir}
Boat-hand@Compendium[wfrp4e-core.careers.MNaGRYlkySIdA6Nj]{Canotier}
Boatman@Compendium[wfrp4e-core.careers.rxWdmv2tUL0hoAc3]{Batelier}
Boatswain@Compendium[wfrp4e-core.careers.zOfGEVtocyprCAZU]{Maître d'équipage}
Body Snatcher@Compendium[wfrp4e-core.careers.0r2H2xtQ21MqHlRv]{Trafiquant de Cadavres}
Bounty Hunter@Compendium[wfrp4e-core.careers.J02PRoX8q5e0cDv6]{Chasseur de primes}
Bounty Hunter General@Compendium[wfrp4e-core.careers.6Abdn6XfJCSI2rWJ]{Chasseur de primes vétéran}
Braggart@Compendium[wfrp4e-core.careers.qMZiB9eBUEr7omX0]{Matamore}
Brigand@Compendium[wfrp4e-core.careers.0e98xv2tfsDRZ9kU]{Bandit}
Broker@Compendium[wfrp4e-core.careers.7w3Y5lZXMBa7N0uV]{Brocanteur}
Burgomeister@Compendium[wfrp4e-core.careers.Bn5MHz2G7LJZxtpo]{Bourgmestre}
Busker@Compendium[wfrp4e-core.careers.vmFzpNOoQfMELqdM]{Musicien des rues}
Cargo Scavenger@Compendium[wfrp4e-core.careers.WctdOXFfi2ShQLNh]{Charognard de fret}
Cat Burglar@Compendium[wfrp4e-core.careers.s9BcRjM1u2nE0JRD]{Cambrioleur}
Cavalryman@Compendium[wfrp4e-core.careers.RK264JugQroGklvh]{Cavalier}
Chancellor@Compendium[wfrp4e-core.careers.SM95bBsq3ZUFo3YB]{Chancelier}
Charlatan@Compendium[wfrp4e-core.careers.HoIgGN5ORog5dkIl]{Charlatan}
Chartered Engineer@Compendium[wfrp4e-core.careers.APKQuY39j7RHzJZD]{Ingénieur Agrée}
Clerk@Compendium[wfrp4e-core.careers.0KNI4TzKqL2ZQfVl]{Greffier}
Coach Master@Compendium[wfrp4e-core.careers.g7Sts6Gzrcg4oDDI]{Maître cocher}
Coachman@Compendium[wfrp4e-core.careers.xyIZu4DfQSMtdH2t]{Cocher}
Con Artist@Compendium[wfrp4e-core.careers.RdnDGTwpYFhCID6N]{Arnaqueur}
Councilor@Compendium[wfrp4e-core.careers.gb3Dy4ZgfB7VfBTM]{Echevin}
Counsellor@Compendium[wfrp4e-core.careers.G9PT2bovEv02sVJJ]{Consultant}
Courier@Compendium[wfrp4e-core.careers.KsiV56hwdm5dZ1RO]{Estafette}
Courier-Captain@Compendium[wfrp4e-core.careers.8rVR4gVhsWeLo5Sf]{Messager vétéran}
Court Physician@Compendium[wfrp4e-core.careers.9XJ7Qs6pY6IO01u6]{Médecin de la cour}
Crime Lord@Compendium[wfrp4e-core.careers.SxQH3QslvNQaDZQK]{Baron du crime}
Custodian@Compendium[wfrp4e-core.careers.WvEHWvF7hoyNChqj]{Gardien}
Daemon Slayer@Compendium[wfrp4e-core.careers.eIPqpYlN3H3CVCe4]{Tueur de Démons}
Demagogue@Compendium[wfrp4e-core.careers.iW9bvaUXQ4QsZ3Re]{Démagogue}
Detective@Compendium[wfrp4e-core.careers.fiHq2JGODlbQRdKh]{Détective}
Diplomat@Compendium[wfrp4e-core.careers.WpZ7nJsXYukA4hQ9]{Diplomate}
Dock Master@Compendium[wfrp4e-core.careers.9PTQfMr98E3ei3Fo]{Maître des docks}
Dockhand@Compendium[wfrp4e-core.careers.p2PKXr5CDwln9AWS]{Porteur}
Doktor@Compendium[wfrp4e-core.careers.bVzgXlt8eRGyXLLC]{Docteur en médécine}
Dragon Slayer@Compendium[wfrp4e-core.careers.nWFtlLdrGOhIJsMd]{Tueur de Dragons}
Duelist@Compendium[wfrp4e-core.careers.nh8fc9wESGUgOnIh]{Duelliste}
Duelmaster@Compendium[wfrp4e-core.careers.DWAc2CYtbwx7zMwl]{Maître duelliste}
Engineer@Compendium[wfrp4e-core.careers.ImUesrX52TXQyzvM]{Ingénieur}
Entertainer@Compendium[wfrp4e-core.careers.pru2uoIq7hM13pYm]{Saltimbanque}
Envoy@Compendium[wfrp4e-core.careers.E3z0o7AJ8cAFYKda]{Emissaire}
Explorer@Compendium[wfrp4e-core.careers.RGrmA9jAFzrR5tH5]{Explorateur}
Exterminator@Compendium[wfrp4e-core.careers.vXxw8seyOyGKaFGf]{Exterminateur}
Fellow@Compendium[wfrp4e-core.careers.txoNWW53klRbo49P]{Chercheur}
Fence@Compendium[wfrp4e-core.careers.uNG01MDCaG4zcs6U]{Receleur}
Fencer@Compendium[wfrp4e-core.careers.UPATU6CmkbK1mNBe]{Escrimeur}
First Knight@Compendium[wfrp4e-core.careers.GPhqluMBhCeTnyNJ]{Chevalier commandeur}
Flagellant@Compendium[wfrp4e-core.careers.j3PetZr6vZXRutml]{Flagellant}
Foreman@Compendium[wfrp4e-core.careers.CJDvhhZbQ0UxxZKc]{Contremaître}
Fortune Teller@Compendium[wfrp4e-core.careers.jyfMHnPojhZVwF07]{Voyant}
Gang Boss@Compendium[wfrp4e-core.careers.O0FIdOQphDl9hozq]{Boss de gang}
Giant Slayer@Compendium[wfrp4e-core.careers.d0uT5dtFmIbkbJ7l]{Tueur de Géants}
Governor@Compendium[wfrp4e-core.careers.gWvUkc6mXh8LbsR9]{Gouverneur}
Grave Robber@Compendium[wfrp4e-core.careers.eI3ibXzGlozn6GqV]{Pilleur de tombes}
Greenfish@Compendium[wfrp4e-core.careers.c6OwfEq0g8FcpxxC]{Alevin}
Guard@Compendium[wfrp4e-core.careers.9q1yLMpfhX1bqvth]{Garde}
Guard Officer@Compendium[wfrp4e-core.careers.rAfHb0jmWhNfXaBl]{Officier de la garde}
Guide@Compendium[wfrp4e-core.careers.D8Bx5CgvvMpIkwSq]{Coureur de bois}
Guildmaster@Compendium[wfrp4e-core.careers.2Ee9cU6fSa4Vecn7]{Maître de Guilde}
Hedge Apprentice@Compendium[wfrp4e-core.careers.QreTSlhgK9IfwTJa]{Apprenti Sorcier de Village}
Hedge Master@Compendium[wfrp4e-core.careers.MvMAvys9IhMIgNqX]{Maître Sorcier de village}
Hedge Witch@Compendium[wfrp4e-core.careers.7LERztK8LMIMwo4l]{Sorcier de village}
Hedgewise@Compendium[wfrp4e-core.careers.fa7YavtVsSc8QI7Q]{Sage de village}
Herald@Compendium[wfrp4e-core.careers.loPti7wWf1qN01zO]{Héraut}
Herb Gatherer@Compendium[wfrp4e-core.careers.1cjF3aoozvxnOMb1]{Cueilleur}
Herb Master@Compendium[wfrp4e-core.careers.eBirX8K2qBxdOB45]{Maître Herboriste}
Herbalist@Compendium[wfrp4e-core.careers.UPF7jOq9bqc6ABgb]{Herboriste}
Herbwise@Compendium[wfrp4e-core.careers.un8r6R9QLrACK2pv]{Herboriste suprême}
Hexer@Compendium[wfrp4e-core.careers.MsrHDvVgAb8tUJec]{Ensorceleur}
High Priest@Compendium[wfrp4e-core.careers.lfRarot8alDa1WjG]{Haut Prêtre}
Hitman@Compendium[wfrp4e-core.careers.33COmPgYTVuXXIpK]{Tueur à gages}
Honor Guard@Compendium[wfrp4e-core.careers.pUf4a817P7iydsbN]{Garde d'honneur}
Horseman@Compendium[wfrp4e-core.careers.XuIDL2gpiFMleuVV]{Page}
Huffer@Compendium[wfrp4e-core.careers.vguGSNyf0hfxZ6RM]{Nautonier}
Hunter@Compendium[wfrp4e-core.careers.CZByQsYSeVyCVbzO]{Chasseur}
Huntsmaster@Compendium[wfrp4e-core.careers.H9NZXz02SZXca8xp]{Maître Chasseur}
Hustler@Compendium[wfrp4e-core.careers.HVa2264i6PF7C8hz]{Prostitué}
Informer@Compendium[wfrp4e-core.careers.aOVRZJopZeR0acJs]{Informateur}
Initiate@Compendium[wfrp4e-core.careers.u2DMz1B0DyUHBi6Z]{Initié}
Inquisitor@Compendium[wfrp4e-core.careers.FA6vYposVbL3caNR]{Inquisiteur}
Interrogator@Compendium[wfrp4e-core.careers.FbtA6PFHSH6iWaZk]{Interrogateur}
Investigator@Compendium[wfrp4e-core.careers.a5B7FYYaSarc95Xc]{Enquêteur}
Judge@Compendium[wfrp4e-core.careers.vcHUiputmUcPem6f]{Juge}
Judicial Champion@Compendium[wfrp4e-core.careers.ZRS6U3ECK8n4mFZ4]{Champion de justice}
Knight@Compendium[wfrp4e-core.careers.FhK6JOd3LSTlHwoa]{Chevalier}
Knight of the Inner Circle@Compendium[wfrp4e-core.careers.Esy17RVOZQw2gShT]{Chevalier du cercle intérieur}
Landsman@Compendium[wfrp4e-core.careers.1ZCpJlq7SU5Cj3te]{Marin d'eau douce}
Lawyer@Compendium[wfrp4e-core.careers.cxwio1lR9eZdrQiy]{Juriste}
Lector@Compendium[wfrp4e-core.careers.UptqmlN6znCIOxNW]{Lecteur}
Light Cavalry Officer@Compendium[wfrp4e-core.careers.mVx5unQ28vIpavOo]{Officier de cavalerie}
Light Cavalry Sergeant@Compendium[wfrp4e-core.careers.wPYrDuwdW4nJRcJt]{Sergent de cavalerie}
Maestro@Compendium[wfrp4e-core.careers.4mlbPdEWU4d7Lh7Y]{Maestro}
Magistrate@Compendium[wfrp4e-core.careers.USvstPFloo15DIJ1]{Magistrat}
Magnate@Compendium[wfrp4e-core.careers.WCS3mz3qmQbCc9j4]{Magnat}
Master Apothecary@Compendium[wfrp4e-core.careers.oA7LO3muxy9LNEJD]{Maitre Apothicaire}
Master Artisan@Compendium[wfrp4e-core.careers.9xszp5m5KRmj3bxX]{Maître Artisan}
Master Artist@Compendium[wfrp4e-core.careers.VeKZTgIQSXEDte4i]{Maître Artiste}
Master Beggar@Compendium[wfrp4e-core.careers.xzfS4Gm90R7ViMI6]{Maître Mendiant}
Master Bounty Hunter@Compendium[wfrp4e-core.careers.taJXX3aaKZfoNCBs]{Maître chasseur de primes}
Master Engineer@Compendium[wfrp4e-core.careers.NIom9HWXYywyGMLR]{Maître Ingénieur}
Master Fence@Compendium[wfrp4e-core.careers.HN1cbMIPZ25m7ABR]{Maître receleur}
Master Investigator@Compendium[wfrp4e-core.careers.jGYtrDe0sNACF2pB]{Maître investigateur}
Master Merchant@Compendium[wfrp4e-core.careers.mE6PJ1yIScBu6Tye]{Maître Marchand}
Master Miner@Compendium[wfrp4e-core.careers.hUZ9lx9v2AGrfHWU]{Maître Mineur}
Master Pedlar@Compendium[wfrp4e-core.careers.3VkgBaW5wgaSXlyS]{Maître colporteur}
Master Pilot@Compendium[wfrp4e-core.careers.ISxI2dNkiRQn0P4n]{Maître nocher}
Master Smuggler@Compendium[wfrp4e-core.careers.QUjbPexRsKhqVDgq]{Maître contrebandier}
Master Thief@Compendium[wfrp4e-core.careers.4xxp72XMEqj6y25g]{Maître voleur}
Master Wizard@Compendium[wfrp4e-core.careers.1DIMUn1Cj5rohWJV]{Maître Sorcier}
Menial@Compendium[wfrp4e-core.careers.6846o00SGHkRuZB8]{Domestique}
Merchant@Compendium[wfrp4e-core.careers.eFMNueIi3zp6vs6e]{Marchand}
Merchant Prince@Compendium[wfrp4e-core.careers.8llxzvd0M3P59ctr]{Prince Marchand}
Messenger@Compendium[wfrp4e-core.careers.F6Q1mrBHZvKzHDkT]{Messager}
Mine Foreman@Compendium[wfrp4e-core.careers.3qe5qu3es4bnKwwR]{Contremaître de Mine}
Miner@Compendium[wfrp4e-core.careers.oVOBKzVocBrnrpZX]{Mineur}
Mystic@Compendium[wfrp4e-core.careers.5C8dpF6YYiz7clnl]{Mystique}
Noble@Compendium[wfrp4e-core.careers.GYIOEWXugK9Dofg7]{Noble}
Noble Lord@Compendium[wfrp4e-core.careers.huYKd0sYPnF4ReB0]{Noble Seigneur}
Novitiate@Compendium[wfrp4e-core.careers.OERQpwcRziRTeQRb]{Novice}
Novitiate@Compendium[wfrp4e-core.careers.Zst72kU4epCqabW9]{Novice}
Nun@Compendium[wfrp4e-core.careers.Lkk2NQC1dkUb6yOS]{Nonne}
Officer@Compendium[wfrp4e-core.careers.RjhqM27l48WfRepK]{Officier}
Outlaw@Compendium[wfrp4e-core.careers.9631KpCQa7jvhmgS]{Hors-la-loi}
Outlaw Chief@Compendium[wfrp4e-core.careers.qXOceBlJefsWFlUI]{Chef de bande}
Pamphleteer@Compendium[wfrp4e-core.careers.OecIbh44q1oXuOAT]{Pamphlétaire}
Pathfinder@Compendium[wfrp4e-core.careers.nCijLyJxZ8UfeNfV]{Guide}
Pauper@Compendium[wfrp4e-core.careers.s6I8dderSh1Iu3fe]{Indigent}
Peasant@Compendium[wfrp4e-core.careers.wlH2GnvZKA4zvdn8]{Paysan}
Pedlar@Compendium[wfrp4e-core.careers.XseDIYgXCdNuV0pL]{Colporteur}
Penitent@Compendium[wfrp4e-core.careers.zZ2QaJ9EHJlh1QbW]{Pénitent}
Physician@Compendium[wfrp4e-core.careers.8bbV2yHKeT6QeOKd]{Médecin}
Physician's Apprentice@Compendium[wfrp4e-core.careers.qwNXUbgbXcegmh8l]{Apprenti Medecin}
Pilot@Compendium[wfrp4e-core.careers.PIPU1glIR4jx1Z2E]{Pilote}
Pit Champion@Compendium[wfrp4e-core.careers.KVAOh3zmvzqAbhBr]{Champion de Fosse}
Pit Fighter@Compendium[wfrp4e-core.careers.rCoMyLXDnggBFqUB]{Gladiateur}
Pit Legend@Compendium[wfrp4e-core.careers.QdEWdjfjIdrQAKUO]{Légende de la Fosse}
Postilion@Compendium[wfrp4e-core.careers.GPruqXhcAaHQYucf]{Postillon}
Priest@Compendium[wfrp4e-core.careers.AtWEBwIobFnhbQy7]{Prêtre}
Priest Captain@Compendium[wfrp4e-core.careers.20R2NFpiGkiyhwdE]{Prêtre Capitaine}
Priest Sergeant@Compendium[wfrp4e-core.careers.6D6FQRqfc6F3L5vZ]{Prêtre Sergent}
Prioress General@Compendium[wfrp4e-core.careers.qG1ICjU4hcAhrpmW]{Prieure Générale}
Procurer@Compendium[wfrp4e-core.careers.BLHdxZVBGTrrGdxO]{Souteneur}
Professor@Compendium[wfrp4e-core.careers.IeHydxYWUYrmEdPy]{Pofesseur}
Prophet of Doom@Compendium[wfrp4e-core.careers.zDdI21hXufHuDarS]{Prophète du Destin}
Prospector@Compendium[wfrp4e-core.careers.tJEgkiklMFep6FMN]{Prospecteur}
Protagonist@Compendium[wfrp4e-core.careers.ZydFv9TTPvmihnR1]{Spadassin}
Prowler@Compendium[wfrp4e-core.careers.Ahe89KQIXpeadscI]{Rôdeur}
Pugilist@Compendium[wfrp4e-core.careers.PGhUdEZmFUe7vTWK]{Pugiliste}
Rabble Rouser@Compendium[wfrp4e-core.careers.KuG92SPVmXnbtdF5]{Fauteur de Troubles}
Racketeer@Compendium[wfrp4e-core.careers.5WR3ZoMOeEzz5iPc]{Rançonneur}
Rat Catcher@Compendium[wfrp4e-core.careers.rydO4uzu7Ehatm5t]{Ratier}
Rat Hunter@Compendium[wfrp4e-core.careers.aUb8sUfqyVyjGYO5]{Chasseur de Rat}
Recruit@Compendium[wfrp4e-core.careers.wSEGXXkc6swDkuJJ]{Recrue}
Reeve@Compendium[wfrp4e-core.careers.albRTMyj0Fsr2u6A]{Préfet}
Ringleader@Compendium[wfrp4e-core.careers.Q1sXSEtjvMVxd5xi]{Meneur}
River Elder@Compendium[wfrp4e-core.careers.7A4HCcddeMYG3EZ6]{Sage des rivières}
River Pirate@Compendium[wfrp4e-core.careers.qLoFG3o3tIgiYJOv]{Pirate des rivières}
River Recruit@Compendium[wfrp4e-core.careers.RqHOwFXhYtTWKiNP]{Recrue fluviale}
River Runner@Compendium[wfrp4e-core.careers.v6OhQFxpriyKJyVO]{Coureur de rivières}
Riverguide@Compendium[wfrp4e-core.careers.YCyo4r3rZ2gMUz9Q]{Guide de rivière}
Riverwarden@Compendium[wfrp4e-core.careers.CXSKOpjA7a2kqWSq]{Patrouilleur fluvial}
Riverwise@Compendium[wfrp4e-core.careers.AJTl72JcueF1YGgg]{Sage des rivières}
Riverwoman@Compendium[wfrp4e-core.careers.gmQjHw6wYJu4gd7b]{Femme du fleuve}
Road Captain@Compendium[wfrp4e-core.careers.XV2OQCwhnLVdAgON]{Capitaine de la Route}
Road Sergeant@Compendium[wfrp4e-core.careers.91unnpsRgrNFLZ18]{Sergent de la route}
Road Warden@Compendium[wfrp4e-core.careers.fyeFolXwsxNfU30b]{Patrouilleur routier}
Route Master@Compendium[wfrp4e-core.careers.G6o2q7tPhw4sgdOY]{Maître des routes}
Runner@Compendium[wfrp4e-core.careers.t87v2oOpnztzrBPW]{Coureur}
Sage@Compendium[wfrp4e-core.careers.L4FGhEguFJVNWk6O]{Sage}
Scholar@Compendium[wfrp4e-core.careers.zmC4qBprmNxFNo2W]{Erudit}
Scion@Compendium[wfrp4e-core.careers.BmttbXNr3ZwydNUo]{Héritier}
Scoundrel@Compendium[wfrp4e-core.careers.yRRDOZ82C4ZLR6ju]{Vaurien}
Scout@Compendium[wfrp4e-core.careers.4bCFwNAaudD9wb40]{Eclaireur}
Seaman@Compendium[wfrp4e-core.careers.w5rHYhqw0bT15LCr]{Marin}
Seer@Compendium[wfrp4e-core.careers.zS1aRUvoj8fJIF3P]{Prophète}
Seneschal@Compendium[wfrp4e-core.careers.m2viFvv0MaXuxRit]{Sénéchal}
Sentry@Compendium[wfrp4e-core.careers.gTxHixydLdCoWRmj]{Sentinelle}
Sergeant@Compendium[wfrp4e-core.careers.8vPHNztfk9x7K2Na]{Sergent}
Servant@Compendium[wfrp4e-core.careers.S8MLQJK4n7pTGKHn]{Serviteur}
Sewer Jack@Compendium[wfrp4e-core.careers.fGwpty6AE9ZmRs9B]{Egoutier}
Ship's Master@Compendium[wfrp4e-core.careers.Ot8ZcvD78wPnJzkE]{Commandant de navire}
Shipsword@Compendium[wfrp4e-core.careers.FOGWbyemEGAkK746]{Abordeur}
Shipsword Master@Compendium[wfrp4e-core.careers.VIEEddQ4IW7Fjq2b]{Maître abordeur}
Sleuth@Compendium[wfrp4e-core.careers.AQmofCPcdFZNXCV6]{Limier}
Smuggler@Compendium[wfrp4e-core.careers.pVOuGshzCvWjNv2q]{Contrebandier}
Smuggler King@Compendium[wfrp4e-core.careers.XCfd7wimn69mZW9T]{Roi des contrebandiers}
Soldier@Compendium[wfrp4e-core.careers.FgVH1pPS9oRq0o2Z]{Soldat}
Spy@Compendium[wfrp4e-core.careers.QXZoHPoHFmDuTHpy]{Espion}
Spymaster@Compendium[wfrp4e-core.careers.cd8BJlDQUF1xoiSm]{Maître Espion}
Squire@Compendium[wfrp4e-core.careers.FrPCbQ7fq1Fchthn]{Ecuyer}
Stevedore@Compendium[wfrp4e-core.careers.oce4kxrsImFS7zlW]{Débardeur}
Steward@Compendium[wfrp4e-core.careers.WO6jKc1N37H2ZzwN]{Régisseur}
Student@Compendium[wfrp4e-core.careers.PiHjiktsOzTTn6U7]{Etudiant érudit}
Student Engineer@Compendium[wfrp4e-core.careers.4TgG1CMJ0zoVPbiZ]{Etudiant}
Student Lawyer@Compendium[wfrp4e-core.careers.ZSet34kUw1Bu1PDx]{Juriste étudiant}
Swindler@Compendium[wfrp4e-core.careers.5hmNqNxXRy3RjcFV]{Escroc}
Tax Collector@Compendium[wfrp4e-core.careers.kOmgIJIYcylhEUWK]{Percepteur}
Thief@Compendium[wfrp4e-core.careers.KEEmMZK5mpcoRU69]{Voleur}
Thief-taker@Compendium[wfrp4e-core.careers.t1TD7YCRFbjiicvi]{Chasseur de voleurs}
Thug@Compendium[wfrp4e-core.careers.VPKFN1VePTy3CY7V]{Voyou}
Toll Keeper@Compendium[wfrp4e-core.careers.4a69lleVImbw3JhI]{Garde barrière}
Tomb Robber@Compendium[wfrp4e-core.careers.FaAdpduKD4aUWAOg]{Pilleur de tombeaux}
Town Councilor@Compendium[wfrp4e-core.careers.Gwp6K1rKShTQshqB]{Conseiller municipal}
Townsman@Compendium[wfrp4e-core.careers.WuNc5hU1HoUS5gPa]{Bourgeois}
Tracker@Compendium[wfrp4e-core.careers.mokSUD62vhpKue2Z]{Pisteur}
Trader@Compendium[wfrp4e-core.careers.2aKiMpKfVnXWNfmy]{Négociant}
Trapper@Compendium[wfrp4e-core.careers.LYBKDZ0AhutYewfD]{Trappeur}
Treasure Hunter@Compendium[wfrp4e-core.careers.ufAAH4fyE4qfkH2c]{Chasseur de trésor}
Troll Slayer@Compendium[wfrp4e-core.careers.ltGl3eXxujQ23al3]{Tueur de Trolls}
Troubadour@Compendium[wfrp4e-core.careers.bNwRfl5P64gXgZON]{Troubadour}
Troupe Leader@Compendium[wfrp4e-core.careers.dNd0JKvUqjP3kiuy]{Chef de Troupe}
Vagabond@Compendium[wfrp4e-core.careers.eyKlEVLcSOvemRzp]{Vagabond}
Village Elder@Compendium[wfrp4e-core.careers.3UCjABRxB1GhbThg]{Doyen}
Villager@Compendium[wfrp4e-core.careers.TvTXvNwAR0hYz0FM]{Villageois}
Wandering Trader@Compendium[wfrp4e-core.careers.vkfLXwz3Vpi13LqP]{Négociant itinérant}
Warden@Compendium[wfrp4e-core.careers.ET4PZxqQ4RyBBWgN]{Intendant}
Warlock@Compendium[wfrp4e-core.careers.B0RRDSUqaCVp6P7h]{Démoniste}
Warrior Priest@Compendium[wfrp4e-core.careers.y8XGpUCRkxdnn0ys]{Prêtre Guerrier}
Watch Captain@Compendium[wfrp4e-core.careers.MR0d08qmDDbqujmS]{Capitaine de Milice}
Watch Recruit@Compendium[wfrp4e-core.careers.C8pqV1AJgqS6vUd6]{Recrue de la Milice}
Watch Sergeant@Compendium[wfrp4e-core.careers.1N1QMGBQJUV072w4]{Sergent de Milice}
Watchman@Compendium[wfrp4e-core.careers.LobXt1Wa3x3EogpB]{Milicien}
Witch@Compendium[wfrp4e-core.careers.NcLVAmFCMddUGUl3]{Sorcier sauvage}
Witch Hunter@Compendium[wfrp4e-core.careers.fixdd2ulR5HUyeoi]{Répurgateur}
Witchfinder General@Compendium[wfrp4e-core.careers.vsfAkV0SktCjFgKA]{Répurgateur vétéran}
Wizard@Compendium[wfrp4e-core.careers.JeWuOwm0nM4V1brh]{Sorcier}
Wizard Lord@Compendium[wfrp4e-core.careers.bTPBxrayfzeVmGsh]{Seigneur Sorcier}
Wizard's Apprentice@Compendium[wfrp4e-core.careers.WiMLDa950d9wsbbZ]{Apprenti Sorcier}
Wrecker@Compendium[wfrp4e-core.careers.SZLtCpySoeyZ6Sgw]{Naufrageur}
Wrecker Captain@Compendium[wfrp4e-core.careers.ho9cOHfrG2Zbeb7q]{Capitaine Naufrageur}
Wyrd@Compendium[wfrp4e-core.careers.CNoXG2ZZUudm8paf]{Devin}
Zealot@Compendium[wfrp4e-core.careers.UQMYUKgXAi2QFhFn]{Zélote}
"} -{"_id":"2y5tmE1nULbvndIM","name":"Traduction des Compétences","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Animal Care@Compendium[wfrp4e-core.skills.MXy22hFCgntdlQrn]{Soins aux animaux}
Animal Training ( )@Compendium[wfrp4e-core.skills.uZpeJ8P0g10UBRdE]{Dressage ()}
Animal Training (Demigryph)@Compendium[wfrp4e-core.skills.A5I729L56i4WQXfB]{Dressage (Hippogriffe)}
Animal Training (Dog)@Compendium[wfrp4e-core.skills.W0GnDjtcocY6m07J]{Dressage (Chien)}
Animal Training (Horse)@Compendium[wfrp4e-core.skills.6am9EDNE43mzwDvG]{Dressage (Cheval)}
Animal Training (Pegasus)@Compendium[wfrp4e-core.skills.c2HVWH6ZLRn3QjhH]{Dressage (Pégase)}
Animal Training (Pigeon)@Compendium[wfrp4e-core.skills.4HgOG0Ud3V2P52so]{Dressage (Pigeon)}
Art ( )@Compendium[wfrp4e-core.skills.fdq3RFSOKl5b3WzW]{Art ()}
Art (Cartogrpahy)@Compendium[wfrp4e-core.skills.h7OXI7PXcs8EHdxf]{Art (Cartographie)}
Art (Engraving)@Compendium[wfrp4e-core.skills.v2eVrGuRfN4p6NCA]{Art (Gravure)}
Art (Mosaics)@Compendium[wfrp4e-core.skills.GPrunawhB8das1O7]{Art (Mosaïque)}
Art (Painting)@Compendium[wfrp4e-core.skills.bJZ8le54J5OwGqFx]{Art (Peinture)}
Art (Sculpture)@Compendium[wfrp4e-core.skills.sUaPQdDiyWcTzC9p]{Art (Sculpture)}
Art (Tattoo)@Compendium[wfrp4e-core.skills.AaXk4bfDRTPeeYjn]{Art (Tattouage)}
Art (Weaving)@Compendium[wfrp4e-core.skills.RitSkR0YDixuUei9]{Art (Tissage)}
Athletics@Compendium[wfrp4e-core.skills.LGHozP5gmQ8cuDQV]{Athlétisme}
Bribery@Compendium[wfrp4e-core.skills.d3VZwO4Y5JH5DXdT]{Subornation}
Channelling@Compendium[wfrp4e-core.skills.V8eRx66SxB9Jha0Q]{Focalisation}
Channelling ( )@Compendium[wfrp4e-core.skills.3MbQF1W8U18ba9fb]{Focalisation ()}
Channelling (Aqshy)@Compendium[wfrp4e-core.skills.gh91jaxzTBgbMoi5]{Focalisation (Aqshy)}
Channelling (Azyr)@Compendium[wfrp4e-core.skills.hpc8g8Z9rl3fJECS]{Focalisation (Azyr)}
Channelling (Chamon)@Compendium[wfrp4e-core.skills.QJ1sfMkNmIh04nky]{Focalisation (Chamon)}
Channelling (Dhar)@Compendium[wfrp4e-core.skills.dBwnAzhe0bvobgbY]{Focalisation (Dhar)}
Channelling (Ghur)@Compendium[wfrp4e-core.skills.ssCqvqr2ORFX6lPL]{Focalisation (Ghur)}
Channelling (Ghyran)@Compendium[wfrp4e-core.skills.RLSVcLqPvnd1cg4U]{Focalisation (Ghyran)}
Channelling (Hysh)@Compendium[wfrp4e-core.skills.ChI09rjm2afh1bqI]{Focalisation (Hysh)}
Channelling (Shyish)@Compendium[wfrp4e-core.skills.IQ5MxF1XlWoRomfj]{Focalisation (Shyish)}
Channelling (Ulgu)@Compendium[wfrp4e-core.skills.e6uURn9IFt09beNU]{Focalisation (Ulgu)}
Charm@Compendium[wfrp4e-core.skills.exLrBrn2mjb6x2Cq]{Charme}
Charm Animal@Compendium[wfrp4e-core.skills.4IGdIhnwTaZijzg7]{Emprise sur les animaux}
Climb@Compendium[wfrp4e-core.skills.sRuMlaPU5xdIrwhd]{Escalade}
Consume Alcohol@Compendium[wfrp4e-core.skills.R2ytluHiEFF2KQ5e]{Résistance à l'alcool}
Cool@Compendium[wfrp4e-core.skills.pxNjTxsp1Kp0SmQe]{Calme}
Dodge@Compendium[wfrp4e-core.skills.1jCxbFAUuFuAPLJl]{Esquive}
Drive@Compendium[wfrp4e-core.skills.iYan4z52v7HYM9u9]{Conduite d'attelage}
Endurance@Compendium[wfrp4e-core.skills.CcNJsS4jSwB6Ug1J]{Résistance}
Entertain ()@Compendium[wfrp4e-core.skills.0CwV96kTDRF0jUhk]{Divertissement ()}
Entertain (Comedy)@Compendium[wfrp4e-core.skills.1SVd48nGAHbASqr8]{Divertissement (Comédie)}
Entertain (Singing)@Compendium[wfrp4e-core.skills.UFunAopCNaD8Zdc7]{Divertissement (Chant)}
Entertain (Storytelling)@Compendium[wfrp4e-core.skills.qBm2fu3oMhxsDBNQ]{Divertissement (Narration)}
Evaluate@Compendium[wfrp4e-core.skills.bSWoV1IiS5qWNw39]{Evaluation}
Gamble@Compendium[wfrp4e-core.skills.7pQo66cESWttzIlb]{Pari}
Gossip@Compendium[wfrp4e-core.skills.RLQHm1s4IuY9RSr2]{Ragot}
Haggle@Compendium[wfrp4e-core.skills.pKLMbmG3Ivt6mzMf]{Marchandage}
Heal@Compendium[wfrp4e-core.skills.HXZaV1CJhmTvcAz4]{Guérison}
Intimidate@Compendium[wfrp4e-core.skills.I0yPc4PH5erWJLmu]{Intimidation}
Intuition@Compendium[wfrp4e-core.skills.cYtU0ORRFCOpQLWz]{Intuition}
Language ()@Compendium[wfrp4e-core.skills.XQiiwS9m2Du1IMUz]{Langue ()}
Language (Albion)@Compendium[wfrp4e-core.skills.Nemd0MJ4MOcOJYhT]{Langue (Albionais)}
Language (Battle Tongue)@Compendium[wfrp4e-core.skills.nqhgjUbJWglxU59j]{Langue (Bataille)}
Language (Bretonnian)@Compendium[wfrp4e-core.skills.5EvSIh1khpt77uM7]{Langue (Bretonnien)}
Language (Classical)@Compendium[wfrp4e-core.skills.61L9aX2z164cjm7K]{Langue (Classique)}
Language (Elthárin)@Compendium[wfrp4e-core.skills.5MzxtQSzv5RtJGbw]{Langue (Elthárin)}
Language (Estalian)@Compendium[wfrp4e-core.skills.Emd8lVdIpaXTxLwL]{Langue (Estalien)}
Language (Gospodarinyi)@Compendium[wfrp4e-core.skills.EXysjCwmGzCOiRDx]{Langue (Gospodarin)}
Language (Grumbarth)@Compendium[wfrp4e-core.skills.xeGpCLz8uGaZb1nL]{Langue (Grumbarth)}
Language (Khazalid)@Compendium[wfrp4e-core.skills.XzPlUWFDtOOjG98P]{Langue (Khazalid)}
Language (Magick)@Compendium[wfrp4e-core.skills.e3McIND4Rrsn5cE6]{Langue (Magick)}
Language (Mootish)@Compendium[wfrp4e-core.skills.Cg2b92BRjvxYXZiE]{Langue (Halfling)}
Language (Norse)@Compendium[wfrp4e-core.skills.fPVnjkCnm5nKdKBh]{Langue (Norse)}
Language (Queekish)@Compendium[wfrp4e-core.skills.kEI7TLacmDfwcM3A]{Langue (Queekique)}
Language (Reikspiel)@Compendium[wfrp4e-core.skills.I0QRyEA0tk4IAEAn]{Langue (Reikspiel)}
Language (Thieves Tongue)@Compendium[wfrp4e-core.skills.Uxnxmtvshz8OAVaX]{Langue (Langage des voleurs)}
Language (Tilean)@Compendium[wfrp4e-core.skills.12e3H6NX4JH0bwI3]{Langue (Tiléen)}
Language (Wastelander)@Compendium[wfrp4e-core.skills.X16IoUlKcVLI4MRw]{Langue (Wastelander)}
Leadership@Compendium[wfrp4e-core.skills.oMaJZ5cvCJeOUq9H]{Commandement}
Lore ()@Compendium[wfrp4e-core.skills.DRO5DLF6UcfkvNSh]{Savoir ()}
Lore (Engineering)@Compendium[wfrp4e-core.skills.osMw1Be6YgRBolTm]{Savoir (Ingénierie)}
Lore (Geology)@Compendium[wfrp4e-core.skills.VNjHDKWD6sIbF6BI]{Savoir (Géologie)}
Lore (Heraldry)@Compendium[wfrp4e-core.skills.DiP9cmbqUir3HkkK]{Savoir (Généalogie)}
Lore (History)@Compendium[wfrp4e-core.skills.FChdV10BCuXQyUhU]{Savoir (Histoire)}
Lore (Law)@Compendium[wfrp4e-core.skills.2LDCVJQWkTFszMok]{Savoir (Loi)}
Lore (Magick)@Compendium[wfrp4e-core.skills.ZQzRZkB9JK1CveMW]{Savoir (Magick)}
Lore (Metallurgy)@Compendium[wfrp4e-core.skills.nLlRDNRC95plBgXs]{Savoir (Métallurgie)}
Lore (Science)@Compendium[wfrp4e-core.skills.7ToyUcqJDkceoJRd]{Savoir (Science)}
Lore (Theology)@Compendium[wfrp4e-core.skills.d9bGxy6Y3u3rOHIN]{Savoir (Théologie)}
Melee ()@Compendium[wfrp4e-core.skills.F8NfBZdVSEIGCMtu]{Corps à corps ()}
Melee (Basic)@Compendium[wfrp4e-core.skills.rOPmyLWa37e7s9v6]{Corps à corps (Base)}
Melee (Brawling)@Compendium[wfrp4e-core.skills.jLyoyqwmBVPjRjhM]{Corps à corps (Bagarre)}
Melee (Cavalry)@Compendium[wfrp4e-core.skills.rt1yfcjZoeSulddW]{Corps à corps (Cavalerie)}
Melee (Fencing)@Compendium[wfrp4e-core.skills.4mJoPBw4drm1kv2D]{Corps à corps (Escrime)}
Melee (Flail)@Compendium[wfrp4e-core.skills.ZqYYWZuWwqMb3wVf]{Corps à corps (Fléau)}
Melee (Parry)@Compendium[wfrp4e-core.skills.bJBesrdCaDqaXbQg]{Corps à corps (Parade)}
Melee (Polearm)@Compendium[wfrp4e-core.skills.PzimjNx9Ojq4g6mV]{Corps à corps (Armes d'hast)}
Melee (Two-Handed)@Compendium[wfrp4e-core.skills.Lst4xxUcxTYMlD3U]{Corps à corps (A deux mains)}
Navigation@Compendium[wfrp4e-core.skills.zZUX7wO4rOo8k9F0]{Navigation}
Outdoor Survival@Compendium[wfrp4e-core.skills.os4NKy5Oy6sRt1eh]{Survie en extérieur}
Perception@Compendium[wfrp4e-core.skills.Fs06sr7y9JKpVQmB]{Perception}
Perform ()@Compendium[wfrp4e-core.skills.HO8vIjGTHjmenIaV]{Représentation ()}
Perform (Acrobatics)@Compendium[wfrp4e-core.skills.vQtJqX0qb0bbpVDg]{Représentation (Acrobaties)}
Perform (Clowning)@Compendium[wfrp4e-core.skills.c6I7wHp56nulRLic]{Représentation (Pitreries)}
Perform (Dancing)@Compendium[wfrp4e-core.skills.OZMvB887CeshFy7b]{Représentation (Danser)}
Perform (Firebreathing)@Compendium[wfrp4e-core.skills.1dVlA24UQGuWCiPT]{Représentation (Cracheur de feu)}
Perform (Juggling)@Compendium[wfrp4e-core.skills.TXsoAJQZWcilgUli]{Représentation (Jonglage)}
Perform (Miming)@Compendium[wfrp4e-core.skills.qce9bEiaA9ICpl7V]{Représentation (Mime)}
Perform (Rope Walking)@Compendium[wfrp4e-core.skills.nCnEDGtiGYgv80xJ]{Représentation (Funambule)}
Pick Lock@Compendium[wfrp4e-core.skills.AkjRsazdAppqveZu]{Crochetage}
Play ()@Compendium[wfrp4e-core.skills.bBLK2hznjPlby6Jb]{Musicien ()}
Play (Bagpipe)@Compendium[wfrp4e-core.skills.kFfdmvE78pEUVB6f]{Musicien (Cornemuse)}
Play (Harpsichord)@Compendium[wfrp4e-core.skills.GJt5I57Fbb7pj1mF]{Musicien (Clavecin)}
Play (Horn)@Compendium[wfrp4e-core.skills.EsgYCZZbWaDZsLYx]{Musicien (Cor)}
Play (Lute)@Compendium[wfrp4e-core.skills.QXQA1ycrJHzZkIou]{Musicien (Luth)}
Play (Violin)@Compendium[wfrp4e-core.skills.nQPMcmt3Q1SXAzEd]{Musicien (Violon)}
Pray@Compendium[wfrp4e-core.skills.9xR9uO8FIvi4YsJp]{Prière}
Ranged ()@Compendium[wfrp4e-core.skills.Z9hQe46ykQBZneoU]{Projectiles ()}
Ranged (Blackpowder)@Compendium[wfrp4e-core.skills.H2upcZ7q7qAPtPic]{Projectiles (Poudre noire)}
Ranged (Bow)@Compendium[wfrp4e-core.skills.ZQSm2AwrgT2cHG0C]{Projectiles (Arc)}
Ranged (Crossbow)@Compendium[wfrp4e-core.skills.OuDdJRDo3W56zk0Z]{Projectiles (Arbalète)}
Ranged (Engineering)@Compendium[wfrp4e-core.skills.2Y91ebFapH6zRfHk]{Projectiles (Ingénierie)}
Ranged (Entangling)@Compendium[wfrp4e-core.skills.MWyxcAft5lonB1mB]{Projectiles (Entraves)}
Ranged (Explosives)@Compendium[wfrp4e-core.skills.UQgNIecnmaguYegE]{Projectiles (Explosifs)}
Ranged (Sling)@Compendium[wfrp4e-core.skills.KQjZ85kKz42YQGYT]{Projectiles (Fronde)}
Ranged (Throwing)@Compendium[wfrp4e-core.skills.NSnpJQiky8JcMnme]{Projectiles (Lancer)}
Research@Compendium[wfrp4e-core.skills.9tbHTeuvEMZrp0rx]{Recherche}
Ride ()@Compendium[wfrp4e-core.skills.MeXCAQ3wqJzX07X7]{Chevaucher ()}
Ride (Demigryph)@Compendium[wfrp4e-core.skills.yr4ikZaXnYt7kOZd]{Chevaucher (Hippogriffe)}
Ride (Great Wolf)@Compendium[wfrp4e-core.skills.aD6f4BzQlKEGAM8d]{Chevaucher (Grand Loup)}
Ride (Griffon)@Compendium[wfrp4e-core.skills.dfuN0EpNQS6eqCxZ]{Chevaucher (Griffon)}
Ride (Horse)@Compendium[wfrp4e-core.skills.oSbEE6eXH1S3LfUU]{Chevaucher (Cheval)}
Ride (Pegasus)@Compendium[wfrp4e-core.skills.NzmG8oghB65XqdDd]{Chevaucher (Pégase)}
Row@Compendium[wfrp4e-core.skills.KL4pCOqma5E7fLG4]{Ramer}
Sail ()@Compendium[wfrp4e-core.skills.n8IfmLt4kzMhIKIv]{Voile ()}
Sail (Barge)@Compendium[wfrp4e-core.skills.WuGqleOpKoMCfhO0]{Voile (Chaland)}
Sail (Caravel)@Compendium[wfrp4e-core.skills.FR60c6AX1pWZz6Mc]{Voile (Caravelle)}
Sail (Cog)@Compendium[wfrp4e-core.skills.ZUldeWVqTnMRw5xD]{Voile (Cogue)}
Sail (Frigate)@Compendium[wfrp4e-core.skills.9s8S1BlR4cd5UeN8]{Voile (Frégate)}
Sail (Wolfship)@Compendium[wfrp4e-core.skills.5WfSy7tUYgjvChyN]{Voile (Drakkar)}
Secret Signs ()@Compendium[wfrp4e-core.skills.bVdhLdfuSAfMi3qq]{Signes secrets ()}
Secret Signs (Grey Order)@Compendium[wfrp4e-core.skills.CJxLsDRzVMguEpF1]{Signes secrets (Ordre Gris)}
Secret Signs (Guilder)@Compendium[wfrp4e-core.skills.D4JNPSl6VOpsVmSi]{Signes secrets (Guilde)}
Secret Signs (Ranger)@Compendium[wfrp4e-core.skills.6l2JkMfD3mNxqiep]{Signes secrets (Ruraux)}
Secret Signs (Scout)@Compendium[wfrp4e-core.skills.COND1RfSn9v58QiN]{Signes secrets (Guetteur)}
Secret Signs (Thief)@Compendium[wfrp4e-core.skills.AIueed3kikw3euvn]{Signes secrets (Voleur)}
Secret Signs (Vagabond)@Compendium[wfrp4e-core.skills.eXLVhJVuIhm8wPUF]{Signes secrets (Vagabond)}
Set Trap@Compendium[wfrp4e-core.skills.HngrTVqKis08Nvcf]{Piégeage}
Sleight of Hand@Compendium[wfrp4e-core.skills.rvd0S8Z0v2m0MHmD]{Escamotage}
Stealth ()@Compendium[wfrp4e-core.skills.McTtmZu3Ac8Lh48W]{Discrétion ()}
Stealth (Rural)@Compendium[wfrp4e-core.skills.Xk5tp3aasPNtk4zt]{Discrétion (Rurale)}
Stealth (Underground)@Compendium[wfrp4e-core.skills.cHbQeJQ7cVZZyDyl]{Discrétion (Souterrains)}
Stealth (Urban)@Compendium[wfrp4e-core.skills.zkI6tIqbyAZvh0Th]{Discrétion (Urbaine)}
Swim@Compendium[wfrp4e-core.skills.hodHqFNKAmu40ajh]{Natation}
Track@Compendium[wfrp4e-core.skills.rt2rGSwFDCDHPh0A]{Pistage}
Trade ()@Compendium[wfrp4e-core.skills.wKwel9MG7NIG3i3w]{Métier ()}
Trade (Apothecary)@Compendium[wfrp4e-core.skills.0qQqFANTRUDTDpRg]{Métier (Apothicaire)}
Trade (Calligrapher)@Compendium[wfrp4e-core.skills.SMBkaNJzNKypJMA2]{Métier (Calligraphie)}
Trade (Carpenter)@Compendium[wfrp4e-core.skills.qy68sCupAbzhlvVU]{Métier (Charpentier)}
Trade (Chandler)@Compendium[wfrp4e-core.skills.PFQYm0XaYcoeSYxE]{Métier (Cirier)}
Trade (Cook)@Compendium[wfrp4e-core.skills.epSHxgJWtT1S0yMY]{Métier (Cuisinier)}
Trade (Embalmber)@Compendium[wfrp4e-core.skills.QNVlucN2nC2yBP5Q]{Métier (Embaumeur)}
Trade (Smith)@Compendium[wfrp4e-core.skills.Ml6ZblglcSbVhXyh]{Métier (Forgeron)}
Trade (Tanner)@Compendium[wfrp4e-core.skills.u9dLyalenY0AIzCT]{Métier (Tanneur)}
"} -{"_id":"t1rZcuX9msIZkpxn","name":"Traduction des Critiques","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Arterial Damage@Compendium[wfrp4e-core.criticals.sgBDLL1iLenHJ5um]{Artère endommagée}
Bad Cut@Compendium[wfrp4e-core.criticals.JcAgEHxuY9hwB4y5]{Mauvaise coupure}
Badly Cut Toe@Compendium[wfrp4e-core.criticals.9UjOMeBtKdoL5S34]{Coupure à l'orteil}
Badly Jarred Arm@Compendium[wfrp4e-core.criticals.VcKpiwNiQVwJJQVm]{Choc violent au bras}
Badly Twisted Knee@Compendium[wfrp4e-core.criticals.TxXIUDqoon9TivpO]{Genou tordu}
Black Eye@Compendium[wfrp4e-core.criticals.KB58O2LWcrzIb6do]{Cécité temporaire}
Bleeding hand@Compendium[wfrp4e-core.criticals.Z9aSUtiwhqVHENnR]{Main ensanglantée}
Broken Collar Bone@Compendium[wfrp4e-core.criticals.39906D4BcVGzsiQp]{Clavicule cassée}
Broken Jaw@Compendium[wfrp4e-core.criticals.nZK8CBZTlWTQG2K8]{Mâchoire cassée}
Broken Knee@Compendium[wfrp4e-core.criticals.njocSqK1sMPTi5K4]{Genou cassé}
Broken Nose@Compendium[wfrp4e-core.criticals.fIjnRUF4xplU2mhP]{Nez cassé}
Bruised Ribs@Compendium[wfrp4e-core.criticals.RLBB8XHqLDM4XejE]{Bleus aux côtes}
Brutal Dismemberment@Compendium[wfrp4e-core.criticals.tZc5KDSVW36sFx5G]{Démembrement brutal}
Carved Shin@Compendium[wfrp4e-core.criticals.heJZbvL0uXqKbljR]{Entaille au tibia}
Clean Break@Compendium[wfrp4e-core.criticals.ZE7gT3UWkw7gKeMv]{Cassure nette}
Cleft Hand@Compendium[wfrp4e-core.criticals.G8m6k3wEkhuXMjjp]{Main ouverte}
Concussive Blow@Compendium[wfrp4e-core.criticals.3Tk4cX1ri20oUoBh]{Commotion cérébrale}
Cracked Ribs@Compendium[wfrp4e-core.criticals.AXRma6wqpD5jvpuM]{Côtes fracturées}
Crushed Elbow@Compendium[wfrp4e-core.criticals.JKm6YDR88Friuw6h]{Coude fracassé}
Crushed Foot@Compendium[wfrp4e-core.criticals.NPhLsxsUV8wwdKWj]{Pied écrasé}
Cut Tendon@Compendium[wfrp4e-core.criticals.9s7eE2U30R774sxO]{Tendon coupé}
Damaged Artery@Compendium[wfrp4e-core.criticals.zXuy90mI1OLjxCvc]{Dégâts artériels}
Decapitated@Compendium[wfrp4e-core.criticals.Bpt4ZS0eHJOsuDXE]{Décapitation}
Deep Cut@Compendium[wfrp4e-core.criticals.Wpsybql9MWbWZUeH]{Coupure profonde}
Devastated Eye@Compendium[wfrp4e-core.criticals.GBaH4wyVes6ds7Wv]{Oeil crevé}
Disfiguring Blow@Compendium[wfrp4e-core.criticals.8WkGfg1oUsR16K3J]{Coup défigurant}
Dislocated Knee@Compendium[wfrp4e-core.criticals.8GrHGyhYlbdxqluu]{Genou démis}
Dislocated Shoulder@Compendium[wfrp4e-core.criticals.92vQ9g5DxlWNmD1c]{Epaule luxée}
Dramatic Injury@Compendium[wfrp4e-core.criticals.sSSUZXOXK2DSpxGx]{Blessure spectaculaire}
Ear Bash@Compendium[wfrp4e-core.criticals.cJ6raCFuP1diIXsy]{Frappe à l'oreille}
Fractured Hip@Compendium[wfrp4e-core.criticals.LdqCjnTAiiRZU1Sq]{Hanche fracturée}
Fractured Jaw@Compendium[wfrp4e-core.criticals.bAafQaKO9PdKQB8R]{Mâchoire fracturée}
Gaping Arm Wound@Compendium[wfrp4e-core.criticals.jvemdUZh3iRF67us]{Blessure béante}
Gaping Chest Wound@Compendium[wfrp4e-core.criticals.GmRF7GF7SZq6qeyj]{Blessure béante}
Gut Blow@Compendium[wfrp4e-core.criticals.VAKUqXH9nGyBXiGy]{Coup au ventre}
Gut Wound@Compendium[wfrp4e-core.criticals.pjJagbErW5tu3LJR]{Blessure au ventre}
Hacked Leg@Compendium[wfrp4e-core.criticals.uU2ibNRgeEjuSN7e]{Jambe charcutée}
Internal Bleeding@Compendium[wfrp4e-core.criticals.jma54Iat01N9X4Fb]{Hémorragie interne}
Jarred Arm@Compendium[wfrp4e-core.criticals.iLHKw6w3Ipmzj5ma]{Choc au bras}
Lost Footing@Compendium[wfrp4e-core.criticals.WRAuBX80vCwlnB0N]{Perte d'équilibre}
Low Blow!@Compendium[wfrp4e-core.criticals.l5X3wwVvctgQ4k2Q]{Dans les bijoux de famille!}
Major Chest Wound@Compendium[wfrp4e-core.criticals.zNzlJWzCqmyLtnFS]{Blessure majeure au torse}
Major Ear Wound@Compendium[wfrp4e-core.criticals.GWGaNV2kGRTlMlG7]{Blessure majeure à l'oreille}
Major Eye Wound@Compendium[wfrp4e-core.criticals.Ioxf9osVNGNyzIZA]{Blessure majeure à l'oeil}
Mangled Ear@Compendium[wfrp4e-core.criticals.XqxT8WjUbhsibhWd]{Oreille mutilée}
Mangled Hand@Compendium[wfrp4e-core.criticals.jeXKnpbV7xq8wDkH]{Main mutilée}
Mangled Jaw@Compendium[wfrp4e-core.criticals.qWJ2HWWj2411KSau]{Mâchoire mutilée}
Mauled Bicep@Compendium[wfrp4e-core.criticals.9NAkj43qHsH7Xok7]{Biceps déchiqueté}
Minor Arm Cut@Compendium[wfrp4e-core.criticals.sJU1kEp6yoHPmhIc]{Coupure mineure}
Minor Head Cut@Compendium[wfrp4e-core.criticals.btDTVsPFsOtBNpgF]{Coupure mineure}
Minor Leg Cut@Compendium[wfrp4e-core.criticals.wTGR340dwvAgwA9v]{Coupure mineure}
Painful Cut@Compendium[wfrp4e-core.criticals.GsBi7iz9z5tj9PiM]{Entaille douloureuse}
Poked Eye@Compendium[wfrp4e-core.criticals.3B3QEz9ImmloEQxv]{Vision brouillée}
Pulled Back@Compendium[wfrp4e-core.criticals.cWK3kNzvujhWi9jQ]{Dos froissé}
Ragged Wound@Compendium[wfrp4e-core.criticals.S8sbrHd9zxaYiDFJ]{Chairs déchirées}
Rattling Blow@Compendium[wfrp4e-core.criticals.M15Fg1Wdl047rD8L]{Coup percutant}
Ruptered Ligament@Compendium[wfrp4e-core.criticals.263ic3ulLuR9DPzP]{Ligament rompu}
Ruptured Tendon@Compendium[wfrp4e-core.criticals.9MKzpUh761nGa76M]{Tendon rompu}
Severed Finger@Compendium[wfrp4e-core.criticals.H07sv4W1RPoES06K]{Doigt sectionné}
Severed Foot@Compendium[wfrp4e-core.criticals.BzIaW1w6eTUFWgkk]{Pied sectionné}
Shattered Pelvis@Compendium[wfrp4e-core.criticals.F9aFPBvoCdxg8oFJ]{Bassin fracassé}
Sliced Ear@Compendium[wfrp4e-core.criticals.IZkWdvSwQPrnjdsD]{Oreille tranchée}
Sliced Tendons@Compendium[wfrp4e-core.criticals.WWdCfTZCgcHK2soX]{Tendons coupés}
Smashed Mouth@Compendium[wfrp4e-core.criticals.LZ8ThwJsGDgiPkAd]{Bouche explosée}
Smashed Rib Cage@Compendium[wfrp4e-core.criticals.MZuAg4zB17prHXaG]{Cage thoracique perforée}
Sprain@Compendium[wfrp4e-core.criticals.B6lS25BojearuvzW]{Torsion}
Sprained Ankle@Compendium[wfrp4e-core.criticals.wbbDM7rUetyWYgLt]{Cheville foulée}
Struck Forehead@Compendium[wfrp4e-core.criticals.GHa0StLRCchw6dQ0]{En plein front}
Stubbed Toe@Compendium[wfrp4e-core.criticals.TMjbr94rrtCqM6bk]{Orteil contusionné}
Thigh Strike@Compendium[wfrp4e-core.criticals.2ibzDR7EeMEq2QAe]{Coup à la cuisse}
Tis But A Scratch!@Compendium[wfrp4e-core.criticals.PhCFqJif8iQaiOm0]{Rien qu'une égratignure !}
Torn Apart@Compendium[wfrp4e-core.criticals.jY9wCTf7q86zk96P]{Éventré}
Torn Muscles@Compendium[wfrp4e-core.criticals.ShiLe2LWvvwTIa4o]{Déchirure Musculaire}
Torn Thigh@Compendium[wfrp4e-core.criticals.AUZLQkyu9kiqmzsq]{Cuisse lacérée}
Twisted Ankle@Compendium[wfrp4e-core.criticals.9j0KwH1Je1RiuZX2]{Cheville tordue}
Twisted Back@Compendium[wfrp4e-core.criticals.K0WjEuCqGDUwAPE6]{Torsion du dos}
Twisted Knee@Compendium[wfrp4e-core.criticals.wnYgHZm503oOERSf]{Genou tordu}
Winded@Compendium[wfrp4e-core.criticals.UC2zRorETcI8rheP]{Souffle coupé}
Wrenched Arm@Compendium[wfrp4e-core.criticals.nnPZijQYZGya1NJM]{Clef de bras}
Wrenched Collar Bone@Compendium[wfrp4e-core.criticals.P6opRTvzX1rgzfgE]{Clavicule tordue}
"} -{"_id":"ZOBHel03IV3YXiIa","name":"Traduction des Equipements","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Abacus@Compendium[wfrp4e-core.trappings.Ldf5kDBob8H0v6iV]{Boulier}
Ale, Keg@Compendium[wfrp4e-core.trappings.jyphOMwPqNU9KgmS]{Cervoise, Tonnelet}
Ale, pint@Compendium[wfrp4e-core.trappings.N8HJlumE3hOgpPC2]{Cervoise, pinte}
Amulet@Compendium[wfrp4e-core.trappings.o6VOoj3KUlkfLCia]{Amulette}
Animal Trap@Compendium[wfrp4e-core.trappings.k0KeWhPgFGUcOgs0]{Pièges à animal}
Antitoxin Kit@Compendium[wfrp4e-core.trappings.hhImniNwHKmcC6FK]{Nécessaire anti-poison}
Arrow@Compendium[wfrp4e-core.trappings.6GNNpWIGxO9CkTCR]{Flèche}
Backpack@Compendium[wfrp4e-core.trappings.kJziKlct30lfAiYA]{Sac à dos}
Ball@Compendium[wfrp4e-core.trappings.EE0feq68GJtdw1Nq]{Balle}
Bandage@Compendium[wfrp4e-core.trappings.1wtW4N8l3UKwlLI3]{Bandages}
Barrel@Compendium[wfrp4e-core.trappings.4hyL1z3ayI3ligQE]{Baril}
Bastard Sword@Compendium[wfrp4e-core.trappings.F7jJaldf3lbkjABW]{Epée Batârde}
Baton @Compendium[wfrp4e-core.trappings.utRev4dXTLI0A2GL]{Baton }
Bedroll @Compendium[wfrp4e-core.trappings.IFtoI87gZ4phMHy9]{Sac de couchage }
Black Lotus@Compendium[wfrp4e-core.trappings.qfd01sggD9xbCuJY]{Lotus Noir}
Blanket@Compendium[wfrp4e-core.trappings.3GlaCQyLuugXHEM2]{Couverture}
Blunderbuss@Compendium[wfrp4e-core.trappings.ByHt0vTWRIuHS2r8]{Tromblon}
Boat Hook@Compendium[wfrp4e-core.trappings.1XRNUP7fKAT2x7wR]{Gaffe}
Boiled Leather Breastplate@Compendium[wfrp4e-core.trappings.tIG1TGcmU2i4rgFh]{Plastron en Cuir Bouilli}
Bolas@Compendium[wfrp4e-core.trappings.qim3Ad0ldTS9mXDj]{Bolas}
Bolt@Compendium[wfrp4e-core.trappings.kFROfGFdExfyJTg9]{Carreau}
Bomb@Compendium[wfrp4e-core.trappings.X8WFQf0HB9yXKjdD]{Bombe}
Book, Apothecary@Compendium[wfrp4e-core.trappings.AWx6rqwOlN68pN6I]{Livre, Apothicaire}
Book, Art@Compendium[wfrp4e-core.trappings.H5CqkYPVVUslaORH]{Livre, Art}
Book, Cryptography@Compendium[wfrp4e-core.trappings.z8X2CMJdAZKoE3lk]{Livre, Cryptographie}
Book, Engineer@Compendium[wfrp4e-core.trappings.25Ek5A1EmQqzOcSK]{Livre, Ingénierie}
Book, Law@Compendium[wfrp4e-core.trappings.o4FSm7YgmfNV4Qgq]{Livre, Juridique}
Book, Magic@Compendium[wfrp4e-core.trappings.qQQ6rRUqcRIaU7kr]{Livre, Magick}
Book, Medicine@Compendium[wfrp4e-core.trappings.aQIxzS4uOcIe9oxd]{Livre, Médecine}
Book, Religion@Compendium[wfrp4e-core.trappings.PKkGM5Q0Chmt5qFe]{Livre, Religion}
Boots@Compendium[wfrp4e-core.trappings.nrIcHcULt5fjRKbL]{Bottes}
Bow@Compendium[wfrp4e-core.trappings.U94l3IDj3xfIc78i]{Arc}
Bowl@Compendium[wfrp4e-core.trappings.8TKV6yGaUHrf75UH]{Bol}
Brass Penny@Compendium[wfrp4e-core.trappings.0MYOJFx3vkYA95B4]{Sous de Cuivre}
Broom@Compendium[wfrp4e-core.trappings.w9VCyP12U7MrC3jk]{Balai}
Bucket@Compendium[wfrp4e-core.trappings.lq7bDxEeIIVSmLOg]{Seau}
Bugman’s XXXXXX Ale, pint @Compendium[wfrp4e-core.trappings.KzJkoB12jpidtngo]{Cervoise de Bugman, pinte }
Bullet and Powder@Compendium[wfrp4e-core.trappings.xdAP96GGDb87m0Pr]{Poudre et Balles}
Candle@Compendium[wfrp4e-core.trappings.TW3etL7RIU2EWTXp]{Bougie}
Canvas Tarp@Compendium[wfrp4e-core.trappings.Zhd2HM8nVcsfHRcI]{Bâche de toile}
Cart@Compendium[wfrp4e-core.trappings.oxZ02e5bphR9xHVu]{Charette}
Cask@Compendium[wfrp4e-core.trappings.t9I9s3MZQCIVjEpX]{Tonneau}
Cavalry Hammer@Compendium[wfrp4e-core.trappings.HDQVaCTpIy2PBdYu]{Marteau de Cavalerie}
Chalk@Compendium[wfrp4e-core.trappings.elraWaIlaaHeKwKl]{Craie}
Charcoal stick@Compendium[wfrp4e-core.trappings.b8SJ8qB0TpSjUGA6]{Batonnet de fusain}
Chicken@Compendium[wfrp4e-core.trappings.M5rVGn8jfQXVkY57]{Poulet}
Chisel@Compendium[wfrp4e-core.trappings.yMn4pNpf0KLCt3Z1]{Ciseau}
Cloak@Compendium[wfrp4e-core.trappings.GIFrMVqk0SimaBOM]{Cape}
Clothing@Compendium[wfrp4e-core.trappings.KWaFV7NPZqtgnL9Z]{Vêtement}
Coach@Compendium[wfrp4e-core.trappings.LORTDrR65x2k9raH]{Diligence}
Coat@Compendium[wfrp4e-core.trappings.Ieyr3r0Skl57DkAJ]{Manteau}
Comb@Compendium[wfrp4e-core.trappings.wrFLHWygOlwFG2q3]{Peigne}
Cooking Pot@Compendium[wfrp4e-core.trappings.dyt9NYLGBcgOxaMQ]{Marmite}
Coracle@Compendium[wfrp4e-core.trappings.BJDCewsSihieuEwE]{Coracle}
Courtly Garb @Compendium[wfrp4e-core.trappings.7hRfHr1ZCUigByms]{Courtly Garb }
Crossbow@Compendium[wfrp4e-core.trappings.ksRqHiMVpIL07Ij1]{Arbalète}
Crossbow Pistol@Compendium[wfrp4e-core.trappings.M71CyisSXU0I7V1S]{Arbalète de Poing}
Crowbar@Compendium[wfrp4e-core.trappings.WDawuBcvsglWEVMg]{Pied de Biche}
Cup@Compendium[wfrp4e-core.trappings.VIq5ronFVkpzF8Vb]{Coupe}
Cutlery@Compendium[wfrp4e-core.trappings.gLGSO3xrpAua0ydw]{Couvert}
Dagger@Compendium[wfrp4e-core.trappings.ahlxlfIl8xUhBkic]{Dague}
Dart@Compendium[wfrp4e-core.trappings.ddXgrDWZXSM3nXaf]{Fléchette}
Davrich Lamp@Compendium[wfrp4e-core.trappings.JX4Qy1qVog3PZBvA]{Lampe Davrich}
Deck of Cards@Compendium[wfrp4e-core.trappings.F65NP8BmRo66nQOm]{Paquet de cartes}
Destrier@Compendium[wfrp4e-core.trappings.ebsbEIJOY0Jy5raF]{Destrier}
Dice@Compendium[wfrp4e-core.trappings.eZN8HuDV0OnjIWM9]{Dé}
Digestive Tonic@Compendium[wfrp4e-core.trappings.aUQDbW33bWqVeY9V]{Tonique digestif}
Disguise Kit@Compendium[wfrp4e-core.trappings.gx451Vn2Ru3eKLIg]{Nécessaire de déguisement}
Dog collar and lead@Compendium[wfrp4e-core.trappings.gzriPtNbRFltaAsh]{Collier et laisse}
Doll@Compendium[wfrp4e-core.trappings.QpqxyJ8dkzG3qKrE]{Poupée}
Draught Horse@Compendium[wfrp4e-core.trappings.94SiNp9Iqq6HiOsG]{Cheval de trait}
Ear Pick@Compendium[wfrp4e-core.trappings.8bxAt6ru3cCyGr6N]{Cure Oreilles}
Earth Root@Compendium[wfrp4e-core.trappings.WiPzDDFjCAo2EQDT]{Racine de Terre}
Elf Arrow@Compendium[wfrp4e-core.trappings.NQ4OVp1ZfinJ7lQH]{Flèche Elfe}
Elf Bow@Compendium[wfrp4e-core.trappings.2mE771fGEEB38OqG]{Arc Elfique}
Engineering Marvel@Compendium[wfrp4e-core.trappings.KGW0J62iYLqRIfS4]{Merveille d'ingénierie}
Eye patch@Compendium[wfrp4e-core.trappings.1H8pOSNxRS69PADr]{Cache Oeil}
Face Powder@Compendium[wfrp4e-core.trappings.WECvYThPGMkyagcw]{Poudre pour le visage}
False Eye@Compendium[wfrp4e-core.trappings.wVL0ugPXCBLGzdNm]{Oeil de verre}
False Leg@Compendium[wfrp4e-core.trappings.lJ6Av6wQfORR4mnu]{Fausse jambe}
Faxtoryll@Compendium[wfrp4e-core.trappings.nRfcszo6wF2sVFDn]{Faxtoryll}
Fish Hooks@Compendium[wfrp4e-core.trappings.HozjxIwCSwkItBu5]{Hameçons}
Flail@Compendium[wfrp4e-core.trappings.bBX8MP6QfcyU6Fy3]{Fléau}
Flask@Compendium[wfrp4e-core.trappings.Hrs3p9z8NqyYEtRz]{Flasque}
Flask of Spirits@Compendium[wfrp4e-core.trappings.f6cvUapo8tQHp2OL]{Fasque de Liqueur}
Floor Brush@Compendium[wfrp4e-core.trappings.mu9ysWvO9QwQbd8S]{Brosse}
Foil@Compendium[wfrp4e-core.trappings.uSxXVJogASbJ62hl]{Fleuret}
Food, groceries/day@Compendium[wfrp4e-core.trappings.jA5TSMX64RR5paKk]{Nourriture, rations/jour}
Gavel@Compendium[wfrp4e-core.trappings.tzMoFhFAWUGaqhxq]{Marteau}
Gilded Nose@Compendium[wfrp4e-core.trappings.qDEu30xKhIxfSckg]{Nez doré}
Gloves@Compendium[wfrp4e-core.trappings.YmElVMceT7qNqd9S]{Gants}
Gold Crown@Compendium[wfrp4e-core.trappings.Ggx0bRaCuq8MbF0g]{Couronne d'Or}
Grain Flail@Compendium[wfrp4e-core.trappings.56Y8YRC8wF2e6yye]{Fléau à Grain}
Grappling Hook@Compendium[wfrp4e-core.trappings.VzwUlz7gZePXWuYz]{Grappin}
Great Axe@Compendium[wfrp4e-core.trappings.QnFLWJmz2DN76Dx5]{Grande Hache}
Guild License@Compendium[wfrp4e-core.trappings.ZgpVhv100Kd9rsao]{License de Guilde}
Halberd@Compendium[wfrp4e-core.trappings.CXg7XOFJwu4LZ9LM]{Hallebarde}
Hammer@Compendium[wfrp4e-core.trappings.HyfQNt0QGGa0EltW]{Marteau}
Hand Mirror@Compendium[wfrp4e-core.trappings.H4nKliXRB93HKH4r]{Miroir à main}
Hand Weapon@Compendium[wfrp4e-core.trappings.1zaqojk0Oq1m8vYv]{Arme à 1 main}
Handgun@Compendium[wfrp4e-core.trappings.zuFTVmBtN51K94Xy]{Arquebuse}
Hat@Compendium[wfrp4e-core.trappings.LrYz9nSsmH4H3He4]{Chapeau}
Healing Draught@Compendium[wfrp4e-core.trappings.gxdjLQoQUTYgD6fm]{Potion de Guérison}
Healing Poultice@Compendium[wfrp4e-core.trappings.s2lBWQFQt6M5Pngb]{Cataplasme de Guérison}
Heartkill@Compendium[wfrp4e-core.trappings.JbSjlgUdzsl5ok95]{Brise-coeur}
Heavy Crossbow@Compendium[wfrp4e-core.trappings.K34pxV6XsxhoZRiQ]{Arbalète Lourde}
Hochland Long Rifle@Compendium[wfrp4e-core.trappings.1tHkTZYaauicIh8I]{Long Fusil d'Hochland}
Hoe@Compendium[wfrp4e-core.trappings.aRvo3nkgPrPcKXVF]{Binette}
Homing Pigeon@Compendium[wfrp4e-core.trappings.AA7nhcqscDj1zoU9]{Pigeon Voyageur}
Hood@Compendium[wfrp4e-core.trappings.lM6cdnWRA3sVjiF9]{Capuchon}
Hook@Compendium[wfrp4e-core.trappings.YivL32R2L3J098VD]{Crochet}
Hunting Dog@Compendium[wfrp4e-core.trappings.y28P2G0NEVZvMzS5]{Chien de chasse}
Improvised Shot and Powder@Compendium[wfrp4e-core.trappings.CdsNf9MFRUhrJ3YA]{Munitions Improvisées Balles et Poudres}
Improvised Weapon@Compendium[wfrp4e-core.trappings.mRU10yAWWWs5WoKt]{Arme Improvisée}
Incendiary@Compendium[wfrp4e-core.trappings.vI0oorwbZdlszudf]{Molotof}
Instrument@Compendium[wfrp4e-core.trappings.Wp9qIwlQo6dpszOw]{Instrument}
Javelin@Compendium[wfrp4e-core.trappings.q3dEaQLL3ZYCZtU4]{Javelot}
Jewellry@Compendium[wfrp4e-core.trappings.8MpTb12W1x6ECZzt]{Bijoux}
Jug@Compendium[wfrp4e-core.trappings.vbNHaU50jr9T2dCQ]{Cruche}
Key@Compendium[wfrp4e-core.trappings.aExcYp7UPS5SL4ve]{Clé}
Knife@Compendium[wfrp4e-core.trappings.83KlMxHxGfKUdMfq]{Couteau}
Knife@Compendium[wfrp4e-core.trappings.Ao7DRZ1hS6uCGONP]{Couteau}
Knuckledusters@Compendium[wfrp4e-core.trappings.kOfcQJQOgmGsqA5U]{Cestes}
Lamp Oil@Compendium[wfrp4e-core.trappings.Bal23aLiOmnht42h]{Lampe à Huile}
Lance@Compendium[wfrp4e-core.trappings.O2jqCh3Zb5eR4yXe]{Lance}
Lantern@Compendium[wfrp4e-core.trappings.mcJi9yqMFRJRkhJs]{Lanterne}
Lasso@Compendium[wfrp4e-core.trappings.k0JKY8ck2QUx5mKS]{Lasso}
Lead Bullet@Compendium[wfrp4e-core.trappings.4hV1PpYm9Q2pyUNf]{Balle de plomb}
Leaflet@Compendium[wfrp4e-core.trappings.MtAmDCEzeM8LjtRn]{Brochure}
Leather Jack@Compendium[wfrp4e-core.trappings.OjcHE0VOGr1aRdy9]{Veste de cuir}
Leather Jerkin@Compendium[wfrp4e-core.trappings.ipaDvYY3qS66o593]{Justaucorps de cuir}
Leather Leggings@Compendium[wfrp4e-core.trappings.MzppW5E5c3by9iBU]{Jambières de cuir}
Leather Skullcap@Compendium[wfrp4e-core.trappings.0W0kEpa2kNEcRGK0]{Calotte de cuir}
Legal Document@Compendium[wfrp4e-core.trappings.s4Cds5JoW0YWhNzG]{Document légal}
Light Warhorse@Compendium[wfrp4e-core.trappings.pXDWUzKhyW83rBHB]{Cheval de guerre léger}
Lock Picks@Compendium[wfrp4e-core.trappings.oGzxLBKOwJ8C0q3E]{Outil de crochetage}
Longbow@Compendium[wfrp4e-core.trappings.RHkj94yUJp620xr1]{Arc long}
Mad Cap Mushrooms@Compendium[wfrp4e-core.trappings.CihEl1pzvTiMQswA]{Bonnet de Fou}
Mail Chausses@Compendium[wfrp4e-core.trappings.XWlkZVUhzO0CwaiJ]{Chausses de Mailles}
Mail Coat@Compendium[wfrp4e-core.trappings.i76oPVM2eFEs5IBh]{Cotte de Mailles}
Mail Coif@Compendium[wfrp4e-core.trappings.4xV16ttsxCa311vl]{Coiffe de Mailles}
Mail Shirt@Compendium[wfrp4e-core.trappings.cJdfHOVbghTf4Eo0]{Chemise de Mailles}
Main Gauche@Compendium[wfrp4e-core.trappings.5DOi1id1tatHp9Q5]{Main Gauche}
Manacles@Compendium[wfrp4e-core.trappings.zIf0i6DBqGlyQ5By]{Menottes}
Mandrake Root@Compendium[wfrp4e-core.trappings.5fowsr8vslorjeB2]{Racine de Mandragore}
Map@Compendium[wfrp4e-core.trappings.5PWRfQbGcYm4OnKP]{Carte}
Mask@Compendium[wfrp4e-core.trappings.ZLIG9CAgCgIa38hU]{Masque}
Match@Compendium[wfrp4e-core.trappings.AOLsFkqblrcCLv23]{Allumette}
Meal, inn@Compendium[wfrp4e-core.trappings.USL6G7P9pbdWHodY]{Nourriture, auberge}
Military Flail@Compendium[wfrp4e-core.trappings.N3aHfG4XASsiNoRv]{Fléau d'armes}
Monkey@Compendium[wfrp4e-core.trappings.9n8P8hWUzJw1oZ8Z]{Singe}
Moonflower@Compendium[wfrp4e-core.trappings.wgFj3lFhCuO8OeDb]{Fleur de Lune}
Mop@Compendium[wfrp4e-core.trappings.d4iZk3dpNCZvsRJE]{Serpillière}
Mule@Compendium[wfrp4e-core.trappings.Yf5KzF7u0gAbxam9]{Mule}
Nails @Compendium[wfrp4e-core.trappings.yqgOaCsgMNq6VDC7]{Clous }
Nightshade@Compendium[wfrp4e-core.trappings.OfGoWncevRmuj5TX]{Belladone}
Paint Brush@Compendium[wfrp4e-core.trappings.Q2Ip5ItHNSyBNwkg]{Pinceau}
Pan@Compendium[wfrp4e-core.trappings.YIUJ8FnHDm4OMRES]{Poêle}
Parchment/sheet@Compendium[wfrp4e-core.trappings.fHb7bFU8QX3oi33F]{Feuille de Parchemin}
Perfume@Compendium[wfrp4e-core.trappings.1BgoTqp0i0z8cA28]{Parfum}
Pestle & Mortar@Compendium[wfrp4e-core.trappings.tv7m7LS9MLTbTzaB]{Mortier et Pilon}
Pewter Stein@Compendium[wfrp4e-core.trappings.lIaPOGOBdJBvDZf4]{Chope en étain}
Pick@Compendium[wfrp4e-core.trappings.3RttGMwfxEuxRLYu]{Pioche}
Pick@Compendium[wfrp4e-core.trappings.FRI9L7BfKNB20aks]{Pioche}
Pike@Compendium[wfrp4e-core.trappings.Bda4Wvnlt3q5zkKC]{Pique}
Pins@Compendium[wfrp4e-core.trappings.HXUQCiVOii3sNKGe]{Epingle}
Pipe and Tobacco@Compendium[wfrp4e-core.trappings.Gr10zyYyGwAkrwnV]{Pipe et Tabac}
Pistol@Compendium[wfrp4e-core.trappings.PnYGK5FPgEGM1Ck3]{Pistolet}
Placard@Compendium[wfrp4e-core.trappings.jQGw8o4fY8swlmfM]{Placard}
Plate@Compendium[wfrp4e-core.trappings.68cSNeXpwBdXLPgb]{Assiette}
Plate Bracers@Compendium[wfrp4e-core.trappings.oW7wSkl4JMb5sBH8]{Brassards d'acier}
Plate Breastplate@Compendium[wfrp4e-core.trappings.oBNXxRFPh1sOT4K2]{Plastron d'acier}
Plate Helm@Compendium[wfrp4e-core.trappings.e9WmLbD7AuXSeWp0]{Heaume}
Plate Leggings@Compendium[wfrp4e-core.trappings.bY6M9XxbqmFmqpA8]{Jambières d'acier}
Plate Open Helm@Compendium[wfrp4e-core.trappings.TvUKzvXjc2VChuTT]{Plate Open Helm}
Pole (3 yards)@Compendium[wfrp4e-core.trappings.i2DKz375sriXqfkS]{Perche (3 mètres)}
Pony@Compendium[wfrp4e-core.trappings.nVf2096t5ynzh0Qq]{Poney}
Pouch@Compendium[wfrp4e-core.trappings.mCvZAj5F6hfUZhzR]{Bourse}
Quarterstaff@Compendium[wfrp4e-core.trappings.GkeMJrsqxQIek1xK]{Bâton de combat}
Quill Pen@Compendium[wfrp4e-core.trappings.61Fx3RHhSqaLCnao]{Plume d'oie}
Rags@Compendium[wfrp4e-core.trappings.TfRdF6baYuGd6i53]{Chiffons}
Rake@Compendium[wfrp4e-core.trappings.Y55qCcUkHVZAbG8s]{Rateau}
Ranald's Delight@Compendium[wfrp4e-core.trappings.jTFOrokjEHbi12rT]{Délice de Ranald}
Rapier@Compendium[wfrp4e-core.trappings.Uuu0bA2DmNp8o2JF]{Rapière}
Rations, 1 day@Compendium[wfrp4e-core.trappings.EVERNFcYxY7WY8ur]{Rations, 1 jour}
Reading Lens@Compendium[wfrp4e-core.trappings.ZaJHpJKlib0LoOd2]{Bésicles/Lentille}
Religious Symbol@Compendium[wfrp4e-core.trappings.hEr7pIXzUCHOXZIX]{Symbole Religieux}
Repeater Handgun@Compendium[wfrp4e-core.trappings.M23N8sjzEp16abQQ]{Arquebuse à Répétition}
Repeater Pistol@Compendium[wfrp4e-core.trappings.8dKmuti5IuIs9AJA]{Pistolet à Répétition}
Riding Horse@Compendium[wfrp4e-core.trappings.tL7ka28KOIvEi6Rc]{Cheval de selle}
River Barge@Compendium[wfrp4e-core.trappings.g796u6AgEQvRPlp7]{Chaland}
Robes@Compendium[wfrp4e-core.trappings.EDnMXoxQTU4TMrRV]{Robes}
Rock@Compendium[wfrp4e-core.trappings.NyIwm2Ge60jnUZft]{Pierre}
Room, common/night@Compendium[wfrp4e-core.trappings.BZmUt37Jk1UCokqS]{Chambre, commune/nuit}
Room, private/night@Compendium[wfrp4e-core.trappings.0TGOFL99jG1RJ4ft]{Chambre, privée/nuit}
Rope, 10 yards@Compendium[wfrp4e-core.trappings.horFAtaDz0EbuY3R]{Corde, 10 mètres}
Row Boat@Compendium[wfrp4e-core.trappings.zAXq89sUgwR4aU1p]{Barque}
Sack@Compendium[wfrp4e-core.trappings.RHqux3m4dgJoDkqG]{Sac}
Sack, Large@Compendium[wfrp4e-core.trappings.2znfMGBp5GOQ12M0]{Sac, Grand}
Saddle and Harness@Compendium[wfrp4e-core.trappings.5TDwZGuGwX1QJWAg]{Selle et Harnais}
Saddlebags@Compendium[wfrp4e-core.trappings.LKGrjbTZgEh3GUMF]{Fontes de selle}
Salwort@Compendium[wfrp4e-core.trappings.mUTrC5DA6bF8DDWz]{Soude Commune}
Saw@Compendium[wfrp4e-core.trappings.X7c87KbjSJ7F3yha]{Scie}
Scepter@Compendium[wfrp4e-core.trappings.XAJUqtLiM0Dqk5Wb]{Sceptre}
Scroll Case@Compendium[wfrp4e-core.trappings.sgJL9NtVEZZvgkys]{Etui à Parchemins}
Shield@Compendium[wfrp4e-core.trappings.8nJ9R8tbhW42VGhr]{Bouclier}
Shield (Buckler)@Compendium[wfrp4e-core.trappings.J9sVeK9nbQLFyUMU]{Bouclier (Parma)}
Shield (Large)@Compendium[wfrp4e-core.trappings.CYkA9Ax6BN7eiTvf]{Bouclier (Grand)}
Shoes@Compendium[wfrp4e-core.trappings.kCL3RKzIiGImZVZa]{Chaussures}
Shortbow@Compendium[wfrp4e-core.trappings.CRNrEnLXTGXVT1UW]{Arc court}
Sickle@Compendium[wfrp4e-core.trappings.hnuZUd35SCjKkJc2]{Faucille}
Signet Ring@Compendium[wfrp4e-core.trappings.BBiL0DSHcdPakVBS]{Chevalière}
Silver Shilling@Compendium[wfrp4e-core.trappings.KB8HgDz56dh2w7w1]{Pistole d'Argent}
Sling@Compendium[wfrp4e-core.trappings.7Bpc5I8Arucy3w4q]{Fronde}
Sling Bag@Compendium[wfrp4e-core.trappings.bImtd1QDrQWp53Ua]{Sac en Bandoulière}
Small shot and Powder@Compendium[wfrp4e-core.trappings.5wItcVAcA6mfa62q]{Petites munitions et Poudre}
Spade@Compendium[wfrp4e-core.trappings.VakWbquag1kV5WtT]{Pelle}
Spear@Compendium[wfrp4e-core.trappings.zIuarD5mB0EF0ji0]{Sarisse}
Spike@Compendium[wfrp4e-core.trappings.482LVHdTtG0WPzis]{Pointe/Clou}
Spirits, pint@Compendium[wfrp4e-core.trappings.lgYfVzNVZzKNoWd2]{Liqueur, pinte}
Spit@Compendium[wfrp4e-core.trappings.W4X1Jx8AN84yRPDx]{Bave}
Stables/night@Compendium[wfrp4e-core.trappings.JBRSMYhicrhD3b9v]{Etables/nuit}
Staff Sling@Compendium[wfrp4e-core.trappings.KSwMbO8dqISoGuIo]{Fustibale}
Stamp, engraved@Compendium[wfrp4e-core.trappings.QCgsQbeEvV4dPB2D]{Cachet, gravé}
Stone Bullet@Compendium[wfrp4e-core.trappings.mik7s6AqS8SMSaJ8]{Projectile de Pierre}
Storm Lantern@Compendium[wfrp4e-core.trappings.9pJenZDZD2lV75vq]{Lampe Tempête}
Swordbreaker@Compendium[wfrp4e-core.trappings.uDavMIqhDl5aDNOy]{Brise-Epée}
Tattoo@Compendium[wfrp4e-core.trappings.o51gUXXozGz4ON0h]{Tatouage}
Telescope@Compendium[wfrp4e-core.trappings.lJfy4k1wXI25Dq9D]{Téléscope}
Tent@Compendium[wfrp4e-core.trappings.MF43A52UBH8SHOnd]{Tente}
Throwing Axe@Compendium[wfrp4e-core.trappings.Xjwk84KnOKDaiZs1]{Hache de Lancer}
Throwing Knife@Compendium[wfrp4e-core.trappings.bwyUJua7I9hNg9WS]{Couteau de Lancer}
Tinderbox@Compendium[wfrp4e-core.trappings.aVLjCqY3guj1DD06]{Boîte d'Amadou}
Tongs, steel@Compendium[wfrp4e-core.trappings.RN1IeSarIRaqyT95]{Pinces en acier}
Trade Tools (Type)@Compendium[wfrp4e-core.trappings.OD83JAlc9KhDpHK5]{Outils Professionnels (Type)}
Tweezers@Compendium[wfrp4e-core.trappings.3OdiPr3vLqGiMeCB]{Pince à épiler}
Unarmed@Compendium[wfrp4e-core.trappings.KlT5qZzI1bsdvoHv]{Désarmé}
Uniform@Compendium[wfrp4e-core.trappings.CB6cxxqy5vXcV6gf]{Uniforme}
Vitality Draught@Compendium[wfrp4e-core.trappings.ZBBi7LpWvNgQgRcw]{Potion de vitalité}
Wagon@Compendium[wfrp4e-core.trappings.HvZ019niuZcDJ5P0]{Chariot}
Walking Cane@Compendium[wfrp4e-core.trappings.mAhbJCYGkeqLl6CJ]{Canne}
Warhammer@Compendium[wfrp4e-core.trappings.XduZyBViaSuCV7Yo]{Marteau de Guerre}
Waterskin@Compendium[wfrp4e-core.trappings.hG90GkelSekqH7i8]{Outre d'eau}
Weirdroot@Compendium[wfrp4e-core.trappings.b6tGqvNe1jYBdeN5]{Mystracine}
Whip@Compendium[wfrp4e-core.trappings.xiOYNJcfqPselfwT]{Fouet}
Wine & Spirits, drink@Compendium[wfrp4e-core.trappings.6x4YAR4iYsA5tjnC]{Vin et Liqueurs, boisson}
Wine, bottle@Compendium[wfrp4e-core.trappings.7CJfiEV10299s7c1]{Vin, bouteille}
Wooden Teeth@Compendium[wfrp4e-core.trappings.0ohrc7pJtVTo9IFk]{Dent en Bois}
Workshop (Type)@Compendium[wfrp4e-core.trappings.ixOMVrEC1ISyYdDU]{Atelier (Type)}
Worms@Compendium[wfrp4e-core.trappings.fSo6LWBvDMZQqfKC]{Vers}
Writing Kit@Compendium[wfrp4e-core.trappings.6OmsMPtz0NzCwvzL]{Nécessaire d'écriture}
Zweihander@Compendium[wfrp4e-core.trappings.039vRQ8jv5cY3P4o]{Zweihander}
"} -{"_id":"qk5Z0tPrHYO4E9Iq","name":"Traduction des Maladies","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n
Blood Rot@Compendium[wfrp4e-core.diseases.M8XyRs9DN12XsFTQ]{Infection du Sang}
Bronze Fever@Compendium[wfrp4e-core.diseases.yWaB18Oh1G1VgUM2]{Fièvre Dorée}
Festering Wound@Compendium[wfrp4e-core.diseases.kKccDTGzWzSXCBOb]{Blessure Purulente}
Galloping Trots@Compendium[wfrp4e-core.diseases.txeLd7R13qxSvmsr]{Courante Galopante}
Itching Pox@Compendium[wfrp4e-core.diseases.UAwTqZ3hqNb7vq9s]{Vérole Urticante}
Minor Infection@Compendium[wfrp4e-core.diseases.1hQuVFZt9QnnbWzg]{Infection Mineure}
Packer's Pox@Compendium[wfrp4e-core.diseases.BC4QyBeYAiw8cRuM]{Vérole du Tanneur}
Ratte Fever@Compendium[wfrp4e-core.diseases.QiHMX5OyXBhWCYoF]{Fièvre du rongeur}
The Black Plague@Compendium[wfrp4e-core.diseases.aKiuGzlVO51JvsjV]{Peste Noire}
The Bloody Flux@Compendium[wfrp4e-core.diseases.herUmN51D9TiL2Vn]{Flux Sanglant}
"} -{"_id":"Pa2AILhijWDBZVxS","name":"Traduction des Sorts","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Acquiescence@Compendium[wfrp4e-core.spells.2fBaYkBsPZzxNSNj]{Consentement}
Aethyric Armour@Compendium[wfrp4e-core.spells.pHITBuvCatCOBhZb]{Armure Aethyrique}
Aethyric Armour (Beasts)@Compendium[wfrp4e-core.spells.6XVrv2zgdL3CSJHX]{Armure Aethyrique (Bête)}
Aethyric Armour (Daemonology)@Compendium[wfrp4e-core.spells.pjZwhUmipn2XA6h1]{Armure Aethyrique (Démonologie)}
Aethyric Armour (Death)@Compendium[wfrp4e-core.spells.ojamLp1DFHJfgX6J]{Armure Aethyrique (Mort)}
Aethyric Armour (Fire)@Compendium[wfrp4e-core.spells.YNZdL7VIaShNfdnb]{Armure Aethyrique (Feu)}
Aethyric Armour (Heavens)@Compendium[wfrp4e-core.spells.kMu92bwMe2jyXSjM]{Armure Aethyrique (Cieux)}
Aethyric Armour (Life)@Compendium[wfrp4e-core.spells.5srkF8mJss2fJbnH]{Armure Aethyrique (Vie)}
Aethyric Armour (Light)@Compendium[wfrp4e-core.spells.HVtGSSEFgyQgpbx4]{Armure Aethyrique (Lumière)}
Aethyric Armour (Metal)@Compendium[wfrp4e-core.spells.HAnyF2QUfYGuXkPn]{Armure Aethyrique (Métal)}
Aethyric Armour (Necromancy)@Compendium[wfrp4e-core.spells.3GDfAQLXIOuaDo1d]{Armure Aethyrique (Nécromancie)}
Aethyric Armour (Shadow)@Compendium[wfrp4e-core.spells.k2DXiabtQZcgFggb]{Armure Aethyrique (Ombres)}
Aethyric Arms@Compendium[wfrp4e-core.spells.OnaQ9kiK5S2d31pE]{Arme aethyrique}
Aethyric Arms (Beasts)@Compendium[wfrp4e-core.spells.UjgiulCattmtfeGL]{Arme aethyrique (Bête)}
Aethyric Arms (Daemonology)@Compendium[wfrp4e-core.spells.ZqjcMFgrlsaS8zLZ]{Arme aethyrique (Démonologie)}
Aethyric Arms (Death)@Compendium[wfrp4e-core.spells.Kv2amawh7q3zGEij]{Arme aethyrique (Mort)}
Aethyric Arms (Fire)@Compendium[wfrp4e-core.spells.89Xcjrqa44LEluU5]{Arme aethyrique (Feu)}
Aethyric Arms (Heavens)@Compendium[wfrp4e-core.spells.bLCz5iBxd2wjfStI]{Arme aethyrique (Cieux)}
Aethyric Arms (Life)@Compendium[wfrp4e-core.spells.UMsw5Mi0Gs90yp5J]{Arme aethyrique (Vie)}
Aethyric Arms (Light)@Compendium[wfrp4e-core.spells.mOMiylDui4p0nDcO]{Arme aethyrique (Lumière)}
Aethyric Arms (Metal)@Compendium[wfrp4e-core.spells.w0pZ963P6QS7Eh2a]{Arme aethyrique (Métal)}
Aethyric Arms (Necromancy)@Compendium[wfrp4e-core.spells.dJYAXtG1e5pmo5NZ]{Arme aethyrique (Nécromancie)}
Aethyric Arms (Shadow)@Compendium[wfrp4e-core.spells.dUX1XGppNdZpUZyA]{Arme aethyrique (Ombres)}
Amber Talons@Compendium[wfrp4e-core.spells.tCCaNirq3zCIkyri]{Serres d'ambre}
Animal Friend@Compendium[wfrp4e-core.spells.gQ14yfwjfcJgNpMp]{Amitié animale}
Aqshy’s Aegis@Compendium[wfrp4e-core.spells.UktSswGGaToftXFk]{L'Égide d'Aegis}
Arrow Shield@Compendium[wfrp4e-core.spells.9uRDDAjndugmNmZr]{Bouclier anti-flèches}
Arrow Shield (Beasts)@Compendium[wfrp4e-core.spells.bd9bf1D55v6ov1UV]{Bouclier anti-flèches (Bête)}
Arrow Shield (Daemonology)@Compendium[wfrp4e-core.spells.wi9BBLoL1TIf5aUf]{Bouclier anti-flèches (Démonologie)}
Arrow Shield (Death)@Compendium[wfrp4e-core.spells.zwQQb0upMLj8bFe9]{Bouclier anti-flèches (Mort)}
Arrow Shield (Fire)@Compendium[wfrp4e-core.spells.WbaCw5ZrN1sZtbzu]{Bouclier anti-flèches (Feu)}
Arrow Shield (Heavens)@Compendium[wfrp4e-core.spells.nKmrZwwjvYcS0XhE]{Bouclier anti-flèches (Cieux)}
Arrow Shield (Life)@Compendium[wfrp4e-core.spells.teHEJyd80PqNHT9q]{Bouclier anti-flèches (Vie)}
Arrow Shield (Light)@Compendium[wfrp4e-core.spells.YsBRTjGGyISyUudZ]{Bouclier anti-flèches (Lumière)}
Arrow Shield (Metal)@Compendium[wfrp4e-core.spells.AywiuNyA8bMS7yFi]{Bouclier anti-flèches (Métal)}
Arrow Shield (Necromancy)@Compendium[wfrp4e-core.spells.iEZnh3fR7X0E0wqb]{Bouclier anti-flèches (Nécromancie)}
Arrow Shield (Shadow)@Compendium[wfrp4e-core.spells.G2LKMsTYXJhzF1Tn]{Bouclier anti-flèches (Ombres)}
Banishment@Compendium[wfrp4e-core.spells.sknoH0n9P9uC0qvW]{Bannissement}
Barkskin@Compendium[wfrp4e-core.spells.B7iwAtfa9EgNvKMz]{Écorce}
Bearing@Compendium[wfrp4e-core.spells.MIgKjszwK6hk7Pps]{Repères}
Beast Form@Compendium[wfrp4e-core.spells.WkItvLT52Bob8Up3]{Forme bestiale}
Beast Master@Compendium[wfrp4e-core.spells.FaHVRxdljzqklNTC]{Maître de la bête}
Beast Tongue@Compendium[wfrp4e-core.spells.gwnNz34Rh0jW4WmF]{Langue bestiale}
Blast@Compendium[wfrp4e-core.spells.gJYXrZa4pW49R9Vu]{Explosion}
Blast (Beasts)@Compendium[wfrp4e-core.spells.HhfVsm3ZRwSahyMU]{Explosion (Bête)}
Blast (Daemonology)@Compendium[wfrp4e-core.spells.3mZ76XJX38pT2d7r]{Explosion (Démonologie)}
Blast (Death)@Compendium[wfrp4e-core.spells.1QNOsOlEtjXccQjl]{Explosion (Mort)}
Blast (Fire)@Compendium[wfrp4e-core.spells.ROmZq14yqEXx6zYN]{Explosion (Feu)}
Blast (Heavens)@Compendium[wfrp4e-core.spells.TtiLLfX0a21t2YpO]{Explosion (Cieux)}
Blast (Life)@Compendium[wfrp4e-core.spells.Kh8kZ4aq8Xjp0cyL]{Explosion (Vie)}
Blast (Light)@Compendium[wfrp4e-core.spells.qiLudcBEdA7qgrZp]{Explosion (Lumière)}
Blast (Metal)@Compendium[wfrp4e-core.spells.K0zoHArrRehHV8t2]{Explosion (Métal)}
Blast (Necromancy)@Compendium[wfrp4e-core.spells.vzaBW9F5LVSAAV5H]{Explosion (Nécromancie)}
Blast (Shadow)@Compendium[wfrp4e-core.spells.8rRCSJGIdecFcpxm]{Explosion (Ombres)}
Blight@Compendium[wfrp4e-core.spells.NytMCgP0IXtHnFwm]{Dégradation}
Blinding Light@Compendium[wfrp4e-core.spells.57d5ugakBYcsphah]{Lumière aveuglante}
Bolt@Compendium[wfrp4e-core.spells.QmjYLCaEn3YKHxdv]{Carreau}
Bolt (Beasts)@Compendium[wfrp4e-core.spells.UWg4WPFALcsoPKau]{Carreau (Bête)}
Bolt (Daemonology)@Compendium[wfrp4e-core.spells.Rkg1tMICxdRsH1zB]{Carreau (Démonologie)}
Bolt (Death)@Compendium[wfrp4e-core.spells.zNobG855V6XwHTXh]{Carreau (Mort)}
Bolt (Fire)@Compendium[wfrp4e-core.spells.WqJubE8GuApAeIbb]{Carreau (Feu)}
Bolt (Heavens)@Compendium[wfrp4e-core.spells.ha5MaHoDPxGtzP2b]{Carreau (Cieux)}
Bolt (Life)@Compendium[wfrp4e-core.spells.Vk12kqjcz6aV9o7w]{Carreau (Vie)}
Bolt (Light)@Compendium[wfrp4e-core.spells.WNJuabKOre8IAu8y]{Carreau (Lumière)}
Bolt (Metal)@Compendium[wfrp4e-core.spells.mC2uukGCM4zykxUu]{Carreau (Métal)}
Bolt (Necromancy)@Compendium[wfrp4e-core.spells.B8dvTJtaLCHgfFuP]{Carreau (Nécromancie)}
Bolt (Shadow)@Compendium[wfrp4e-core.spells.mifZY3mi9Ed23DAv]{Carreau (Ombres)}
Breath@Compendium[wfrp4e-core.spells.cfvdViThaoOHyuSk]{Souffle}
Breath (Beasts)@Compendium[wfrp4e-core.spells.QkBpHcb2BuZMSDZt]{Souffle (Bête)}
Breath (Daemonology)@Compendium[wfrp4e-core.spells.XS9i8PasJ33rNA2g]{Souffle (Démonologie)}
Breath (Death)@Compendium[wfrp4e-core.spells.QcJfSMq3c50pGBen]{Souffle (Mort)}
Breath (Fire)@Compendium[wfrp4e-core.spells.FOmZlLUDNDfMAPuT]{Souffle (Feu)}
Breath (Heavens)@Compendium[wfrp4e-core.spells.44AO7oTKwqUu78C1]{Souffle (Cieux)}
Breath (Life)@Compendium[wfrp4e-core.spells.KGRIdIDE57BV54Ub]{Souffle (Vie)}
Breath (Light)@Compendium[wfrp4e-core.spells.3eGh2vUgXRk3Czj8]{Souffle (Lumière)}
Breath (Metal)@Compendium[wfrp4e-core.spells.ZvNSOZZzAcjRBVBk]{Souffle (Métal)}
Breath (Necromancy)@Compendium[wfrp4e-core.spells.nbqYJUSsVCSzmOU5]{Souffle (Nécromancie)}
Breath (Shadow)@Compendium[wfrp4e-core.spells.BKHMI2wI74a42ZQa]{Souffle (Ombres)}
Bridge@Compendium[wfrp4e-core.spells.3DvCrKaYw2mF42Nr]{Pont}
Bridge (Beasts)@Compendium[wfrp4e-core.spells.UkRsdBSzr4K0JsM8]{Pont (Bête)}
Bridge (Daemonology)@Compendium[wfrp4e-core.spells.Ofrbz80hutlvBXUe]{Pont (Démonologie)}
Bridge (Death)@Compendium[wfrp4e-core.spells.enG7NVLPcWHfRXg8]{Pont (Mort)}
Bridge (Fire)@Compendium[wfrp4e-core.spells.xQVVrzVD7V7yCq31]{Pont (Feu)}
Bridge (Heavens)@Compendium[wfrp4e-core.spells.hFjPSbBEQXVQNXmW]{Pont (Cieux)}
Bridge (Life)@Compendium[wfrp4e-core.spells.PKuHxRwZ2SVVIE0y]{Pont (Vie)}
Bridge (Light)@Compendium[wfrp4e-core.spells.PiX6AORRMfW2xB6f]{Pont (Lumière)}
Bridge (Metal)@Compendium[wfrp4e-core.spells.IlDSC7F3Ns4NDbyi]{Pont (Métal)}
Bridge (Necromancy)@Compendium[wfrp4e-core.spells.hNOnwU998jZlnGuk]{Pont (Nécromancie)}
Bridge (Shadow)@Compendium[wfrp4e-core.spells.tHjTlaoBNbBHbW6z]{Pont (Ombres)}
Careful Step@Compendium[wfrp4e-core.spells.cjD53QYSatQwL6CR]{Pas léger}
Caress of Laniph@Compendium[wfrp4e-core.spells.vEuljwoWR2rOTU5y]{Caresse de Laniph}
Cauterise@Compendium[wfrp4e-core.spells.aWxO2jpMvmZUEsK9]{Cauteriser}
Cerulean Shield@Compendium[wfrp4e-core.spells.wTfoDOFOnvQykpdm]{Bouclier céruléen}
Chain Attack@Compendium[wfrp4e-core.spells.Bx5CC17pRNITWhg8]{Attaques en chaîne}
Chain Attack (Beasts)@Compendium[wfrp4e-core.spells.ET5sNnUsGslSNEAm]{Attaques en chaîne (Bête)}
Chain Attack (Daemonology)@Compendium[wfrp4e-core.spells.fdhFU2wkYwpJIssM]{Attaques en chaîne (Démonologie)}
Chain Attack (Death)@Compendium[wfrp4e-core.spells.HM9WbGOtUngY5TEm]{Attaques en chaîne (Mort)}
Chain Attack (Fire)@Compendium[wfrp4e-core.spells.mYXcxTjAUlIHhlPo]{Attaques en chaîne (Feu)}
Chain Attack (Heavens)@Compendium[wfrp4e-core.spells.w5b653yUVENuVHzy]{Attaques en chaîne (Cieux)}
Chain Attack (Life)@Compendium[wfrp4e-core.spells.NUTVPuhPWA7xCCg3]{Attaques en chaîne (Vie)}
Chain Attack (Light)@Compendium[wfrp4e-core.spells.kWo9eTmKWa0MxtrB]{Attaques en chaîne (Lumière)}
Chain Attack (Metal)@Compendium[wfrp4e-core.spells.urBvn79ntZ0q44Op]{Attaques en chaîne (Métal)}
Chain Attack (Necromancy)@Compendium[wfrp4e-core.spells.oqV2s1CJix4eAUW7]{Attaques en chaîne (Nécromancie)}
Chain Attack (Shadow)@Compendium[wfrp4e-core.spells.2jXYoW0CJoA5BoMd]{Attaques en chaîne (Ombres)}
Choking Shadows@Compendium[wfrp4e-core.spells.qTVOlj1aU6776dep]{Ombres étrangleuses}
Clarity of Thought@Compendium[wfrp4e-core.spells.82mmGLTAKQ4mrsBl]{Clarté d'esprit}
Comet of Casandora@Compendium[wfrp4e-core.spells.208BiJLY0jXxelbd]{Comète de Cassandora}
Conserve@Compendium[wfrp4e-core.spells.cSjAAjixcMdYrKBz]{Conservation}
Corrosive Blood@Compendium[wfrp4e-core.spells.qgWy2MsylxyyIm6V]{Sang corrosif}
Corrosive Blood (Beasts)@Compendium[wfrp4e-core.spells.MasblfJG8SmHrVCF]{Sang corrosif (Bête)}
Corrosive Blood (Daemonology)@Compendium[wfrp4e-core.spells.iR1C4icHTLBIH2Mk]{Sang corrosif (Démonologie)}
Corrosive Blood (Death)@Compendium[wfrp4e-core.spells.Rpc1VfsdIfw0Zjzk]{Sang corrosif (Mort)}
Corrosive Blood (Fire)@Compendium[wfrp4e-core.spells.qwGYRwFkwMSHZDDj]{Sang corrosif (Feu)}
Corrosive Blood (Heavens)@Compendium[wfrp4e-core.spells.a0rkY56nliMmxoCf]{Sang corrosif (Cieux)}
Corrosive Blood (Life)@Compendium[wfrp4e-core.spells.LKrfb4o45tmEOmeg]{Sang corrosif (Vie)}
Corrosive Blood (Light)@Compendium[wfrp4e-core.spells.7QaIq838arGHgzKl]{Sang corrosif (Lumière)}
Corrosive Blood (Metal)@Compendium[wfrp4e-core.spells.E5M0Thnx6HFj46At]{Sang corrosif (Métal)}
Corrosive Blood (Necromancy)@Compendium[wfrp4e-core.spells.yiI4a3Yufcm8NXN6]{Sang corrosif (Nécromancie)}
Corrosive Blood (Shadow)@Compendium[wfrp4e-core.spells.YijozJARkRLN9iGA]{Sang corrosif (Ombres)}
Creeping Menace@Compendium[wfrp4e-core.spells.a8npXWG2o4BxhtVV]{Menace rampante}
Crown of Flame@Compendium[wfrp4e-core.spells.dzfhqgUxWleNZbyW]{Couronne de Flammes}
Crucible of Chamon@Compendium[wfrp4e-core.spells.wHaglsPNfRMpKB9K]{Creuset de Chamon}
Curse of Crippling Pain@Compendium[wfrp4e-core.spells.ZOlM8KjLfNIefAb0]{Malédiction de douleur paralysante}
Curse of Ill-Fortune@Compendium[wfrp4e-core.spells.sq47SZ1v9Pofa4L1]{Malédiction de malchance}
Daemonbane@Compendium[wfrp4e-core.spells.PIL4yBcGlk96cvcb]{Fauche-démon}
Dark Vision@Compendium[wfrp4e-core.spells.wx23bbK7pPqY2quI]{Vision dans l'obscurité}
Dark Vision (Beasts)@Compendium[wfrp4e-core.spells.aPhKykUG3I5R9P4u]{Vision dans l'obscurité (Bête)}
Dark Vision (Daemonology)@Compendium[wfrp4e-core.spells.ovBsMewZzi7r6Ffx]{Vision dans l'obscurité (Démonologie)}
Dark Vision (Death)@Compendium[wfrp4e-core.spells.0Aec8e6nNCmSWIvQ]{Vision dans l'obscurité (Mort)}
Dark Vision (Fire)@Compendium[wfrp4e-core.spells.v0agvdbIs8UC85IE]{Vision dans l'obscurité (Feu)}
Dark Vision (Heavens)@Compendium[wfrp4e-core.spells.bgQpVEP0PZNsAheP]{Vision dans l'obscurité (Cieux)}
Dark Vision (Life)@Compendium[wfrp4e-core.spells.zcH25H2Zr7Xwq1Xd]{Vision dans l'obscurité (Vie)}
Dark Vision (Light)@Compendium[wfrp4e-core.spells.wzDP2S8dphUGFWO3]{Vision dans l'obscurité (Lumière)}
Dark Vision (Metal)@Compendium[wfrp4e-core.spells.EfUTKGyYDR361dVu]{Vision dans l'obscurité (Métal)}
Dark Vision (Necromancy)@Compendium[wfrp4e-core.spells.hbWZeX5jVtGJXoTe]{Vision dans l'obscurité (Nécromancie)}
Dark Vision (Shadow)@Compendium[wfrp4e-core.spells.NwZeZd81PTXTK1WO]{Vision dans l'obscurité (Ombres)}
Dart@Compendium[wfrp4e-core.spells.T8nErqWnkqdvcNVz]{Fléchette}
Dazzle@Compendium[wfrp4e-core.spells.IFuUxTGFQAxp40si]{Éblouissant}
Destroy Lesser Demon@Compendium[wfrp4e-core.spells.Qg98e2pFgCW63aB1]{Destruction de Démon Mineur}
Detect Daemon@Compendium[wfrp4e-core.spells.MlF3ci9vxiDZYhmZ]{Détection de démon}
Distracting@Compendium[wfrp4e-core.spells.tNMQQhBYzHoRq7AD]{Perturbant}
Distracting (Beasts)@Compendium[wfrp4e-core.spells.JpKZSkyF2CZqkZ6d]{Perturbant (Bête)}
Distracting (Daemonology)@Compendium[wfrp4e-core.spells.7HSRFiY46vA8M2zY]{Perturbant (Démonologie)}
Distracting (Death)@Compendium[wfrp4e-core.spells.14tKnA2ILXw2oaMK]{Perturbant (Mort)}
Distracting (Fire)@Compendium[wfrp4e-core.spells.MdNzPNRgxkdMwbjj]{Perturbant (Feu)}
Distracting (Heavens)@Compendium[wfrp4e-core.spells.fxdXQBC34eLXcySP]{Perturbant (Cieux)}
Distracting (Life)@Compendium[wfrp4e-core.spells.tbgyz5b4lR8k1Nk4]{Perturbant (Vie)}
Distracting (Light)@Compendium[wfrp4e-core.spells.vxbYDthV1f7D2nyx]{Perturbant (Lumière)}
Distracting (Metal)@Compendium[wfrp4e-core.spells.QNkxj6vyBm2WEdOA]{Perturbant (Métal)}
Distracting (Necromancy)@Compendium[wfrp4e-core.spells.iLOpRevlkpP4zLMx]{Perturbant (Nécromancie)}
Distracting (Shadow)@Compendium[wfrp4e-core.spells.aT6shbEGQSOfHx57]{Perturbant (Ombres)}
Dome@Compendium[wfrp4e-core.spells.uZdUrRFgNpTtY00H]{Dôme}
Dome (Beasts)@Compendium[wfrp4e-core.spells.ILOsg4RfvpUhXhQa]{Dôme (Bête)}
Dome (Daemonology)@Compendium[wfrp4e-core.spells.mJAINJ9ufafeIUmq]{Dôme (Démonologie)}
Dome (Death)@Compendium[wfrp4e-core.spells.qh3sckvH1ioaHODD]{Dôme (Mort)}
Dome (Fire)@Compendium[wfrp4e-core.spells.rxFZ0x4pfbK3LfZy]{Dôme (Feu)}
Dome (Heavens)@Compendium[wfrp4e-core.spells.sWILR54qy3qsdQYQ]{Dôme (Cieux)}
Dome (Life)@Compendium[wfrp4e-core.spells.nZw4oN4yDo5ycrmk]{Dôme (Vie)}
Dome (Light)@Compendium[wfrp4e-core.spells.NM9FGsijRFByrl3M]{Dôme (Lumière)}
Dome (Metal)@Compendium[wfrp4e-core.spells.Ft0YBUCMN0VzE39c]{Dôme (Métal)}
Dome (Necromancy)@Compendium[wfrp4e-core.spells.SAjnT6vjJXmh8tDy]{Dôme (Nécromancie)}
Dome (Shadow)@Compendium[wfrp4e-core.spells.zXlqNl9jSTRWyKpm]{Dôme (Ombres)}
Doppelganger@Compendium[wfrp4e-core.spells.OcYPErjJzQKOX2aI]{Jumeau maléfique}
Drain@Compendium[wfrp4e-core.spells.O7G5olv0aWLpb7Ea]{Drain}
Drop@Compendium[wfrp4e-core.spells.Wt6ikb1n9CivB3JN]{Chute}
Drop (Beasts)@Compendium[wfrp4e-core.spells.1PXlilHc99nrt0zn]{Chute (Bête)}
Drop (Daemonology)@Compendium[wfrp4e-core.spells.rL22KLFNVzGrE9mG]{Chute (Démonologie)}
Drop (Death)@Compendium[wfrp4e-core.spells.gQAE2ifjBM5Cp9Gi]{Chute (Mort)}
Drop (Fire)@Compendium[wfrp4e-core.spells.0FlFXS9yDuLnr92k]{Chute (Feu)}
Drop (Heavens)@Compendium[wfrp4e-core.spells.R0n47B7PvdOaTl23]{Chute (Cieux)}
Drop (Life)@Compendium[wfrp4e-core.spells.1ltl7lPCsWIr4H6h]{Chute (Vie)}
Drop (Light)@Compendium[wfrp4e-core.spells.jsWKM8TEIwgacZfm]{Chute (Lumière)}
Drop (Metal)@Compendium[wfrp4e-core.spells.ZbJqeT8ffXMOPTMI]{Chute (Métal)}
Drop (Necromancy)@Compendium[wfrp4e-core.spells.aMQMBNGgolHJAzXF]{Chute (Nécromancie)}
Drop (Shadow)@Compendium[wfrp4e-core.spells.P136wDtdbsbvOsAk]{Chute (Ombres)}
Dying Words@Compendium[wfrp4e-core.spells.jD1PJib6NkYkatmq]{Dernières paroles}
Earthblood@Compendium[wfrp4e-core.spells.BU56aMyn8Hfaamrb]{Sang de la Terre}
Earthpool@Compendium[wfrp4e-core.spells.2cwR2BPkdi7IuV3e]{Eau de la terre}
Eavesdrop@Compendium[wfrp4e-core.spells.fmx1OeOsxkGf21wa]{Tendre l'oreille}
Enchant Weapon@Compendium[wfrp4e-core.spells.YDGi3tMQuK9MxXpt]{Arme enchantée}
Entangle@Compendium[wfrp4e-core.spells.WeIdAA7KArjUZfyH]{Enchevêtrement}
Entangle (Beasts)@Compendium[wfrp4e-core.spells.ZwyxHwGUEIEAwgg6]{Enchevêtrement (Bête)}
Entangle (Daemonology)@Compendium[wfrp4e-core.spells.bVcEr9YvMfBcE3tH]{Enchevêtrement (Démonologie)}
Entangle (Death)@Compendium[wfrp4e-core.spells.cuN77AhQ490wCmk6]{Enchevêtrement (Mort)}
Entangle (Fire)@Compendium[wfrp4e-core.spells.h71V7JrSChemeLxk]{Enchevêtrement (Feu)}
Entangle (Heavens)@Compendium[wfrp4e-core.spells.IYclEWSEVogFXf3w]{Enchevêtrement (Cieux)}
Entangle (Life)@Compendium[wfrp4e-core.spells.dQqsVfVNdO1PTdah]{Enchevêtrement (Vie)}
Entangle (Light)@Compendium[wfrp4e-core.spells.RShhxeal5U14P8Bh]{Enchevêtrement (Lumière)}
Entangle (Metal)@Compendium[wfrp4e-core.spells.dBIIdzVZh6cnbWDG]{Enchevêtrement (Métal)}
Entangle (Necromancy)@Compendium[wfrp4e-core.spells.3BB6QnnDq8OvchRk]{Enchevêtrement (Nécromancie)}
Entangle (Shadow)@Compendium[wfrp4e-core.spells.J0DWeBBIa40gzWqV]{Enchevêtrement (Ombres)}
Fat of the Land@Compendium[wfrp4e-core.spells.JGRyUj4AZq8oGpKs]{Graisse de la terre}
Fate’s Fickle Fingers@Compendium[wfrp4e-core.spells.lzTmKnhO1MY9ycPU]{Ironie du Destin}
Fearsome@Compendium[wfrp4e-core.spells.neCKUJ2yMwEl6GAX]{Effrayant}
Fearsome (Beasts)@Compendium[wfrp4e-core.spells.X6dcIMLvfo9aiOoA]{Effrayant (Bête)}
Fearsome (Daemonology)@Compendium[wfrp4e-core.spells.pMPYQC15eRIaJ2eL]{Effrayant (Démonologie)}
Fearsome (Death)@Compendium[wfrp4e-core.spells.cVDkOI7AQdpJo0kj]{Effrayant (Mort)}
Fearsome (Fire)@Compendium[wfrp4e-core.spells.eJJRmbyFlNheGjMG]{Effrayant (Feu)}
Fearsome (Heavens)@Compendium[wfrp4e-core.spells.3XZDELqDQ1BBUAmI]{Effrayant (Cieux)}
Fearsome (Life)@Compendium[wfrp4e-core.spells.pzccnv4TOgIyrf9R]{Effrayant (Vie)}
Fearsome (Light)@Compendium[wfrp4e-core.spells.pToozYRwOH6rC7ol]{Effrayant (Lumière)}
Fearsome (Metal)@Compendium[wfrp4e-core.spells.3dpFC0lsOPXEcTMX]{Effrayant (Métal)}
Fearsome (Necromancy)@Compendium[wfrp4e-core.spells.31sQbAwCE7viJDXi]{Effrayant (Nécromancie)}
Fearsome (Shadow)@Compendium[wfrp4e-core.spells.N9ICWNGmsYcBzmtv]{Effrayant (Ombres)}
Feather of Lead@Compendium[wfrp4e-core.spells.oMTXHeEhzlQ3sx5M]{Plume de plomb}
Firewall@Compendium[wfrp4e-core.spells.1RjTFiv9ooOW35LV]{Mur de feu}
Flaming Hearts@Compendium[wfrp4e-core.spells.nTbPOZJx5WB6Y4lL]{Coeurs ardents}
Flaming Sword of Rhuin@Compendium[wfrp4e-core.spells.3SzMz3ZiGzbHRjTP]{L'Épée ardente de Rhuin}
Flight@Compendium[wfrp4e-core.spells.9wmmln3DunIqGXM2]{Envol}
Flight (Beasts)@Compendium[wfrp4e-core.spells.yC4ry3bNP2Lc04WK]{Envol (Bête)}
Flight (Daemonology)@Compendium[wfrp4e-core.spells.hf9G7f8sMqZ0xweB]{Envol (Démonologie)}
Flight (Death)@Compendium[wfrp4e-core.spells.tkPrVMoZibf5kbhe]{Envol (Mort)}
Flight (Fire)@Compendium[wfrp4e-core.spells.eYrq2tyVjW8C84w6]{Envol (Feu)}
Flight (Heavens)@Compendium[wfrp4e-core.spells.U6P57Y8nJ3H7pFvx]{Envol (Cieux)}
Flight (Life)@Compendium[wfrp4e-core.spells.Q8LodCIteEa4ufrn]{Envol (Vie)}
Flight (Light)@Compendium[wfrp4e-core.spells.Pw4GYr6PZgFuOiT5]{Envol (Lumière)}
Flight (Metal)@Compendium[wfrp4e-core.spells.5QO1LkRkxCfaWCtS]{Envol (Métal)}
Flight (Necromancy)@Compendium[wfrp4e-core.spells.vLhS0qwea9LjvK6u]{Envol (Nécromancie)}
Flight (Shadow)@Compendium[wfrp4e-core.spells.lpSjuZSgTF8U62RG]{Envol (Ombres)}
Flock of Doom@Compendium[wfrp4e-core.spells.yR82MDHEF4zQoYyR]{Vol du destin}
Fool’s Gold@Compendium[wfrp4e-core.spells.druJd5YFjyW5liTz]{L'Or de fous}
Forest of Thorns@Compendium[wfrp4e-core.spells.H1Q0YjIX1wuS4phQ]{Forêt d'épines}
Forge of Chamon@Compendium[wfrp4e-core.spells.ddnMcWMN4MftxGLr]{Forge de Chamon}
Glittering Robe@Compendium[wfrp4e-core.spells.v1Qrow72mtUtgkFC]{Écaille d'acier}
Goodwill@Compendium[wfrp4e-core.spells.YaG8xthJF0zLy7xs]{Bonne Volonté}
Great Fires of U’Zhul@Compendium[wfrp4e-core.spells.HpFkVJ2lYPAWumUL]{Grands Feux d'U'Zhul}
Gust@Compendium[wfrp4e-core.spells.NeERYZQcEa0lI9kz]{Coup de vent}
Haunting Horror@Compendium[wfrp4e-core.spells.PkqPqy3Fy9fawQZ8]{Horreur obsédante}
Healing Light@Compendium[wfrp4e-core.spells.HOqmAugvYdgLwoQt]{Lumière de guérison}
Hunter's Hide@Compendium[wfrp4e-core.spells.QSHKYMNy2yr1n9ww]{Hunter's Hide}
Illusion@Compendium[wfrp4e-core.spells.OwH4hpe1EReh06t3]{Illusion}
Lie of the Land@Compendium[wfrp4e-core.spells.DOfyDATb1gcGOMry]{Configuration du terrain}
Lifebloom@Compendium[wfrp4e-core.spells.K37ME8M75JvtM3Vr]{Don de Vie}
Light@Compendium[wfrp4e-core.spells.wj5pXiyhNjaP6pom]{Lumière}
Magic Flame@Compendium[wfrp4e-core.spells.rZqr5r61z1kw9Zg5]{Flamme magique}
Magic Shield@Compendium[wfrp4e-core.spells.mJVPaGIUEg8cfpJj]{Bouclier magique}
Magic Shield (Beasts)@Compendium[wfrp4e-core.spells.4ZtCco8IAK6cucSc]{Bouclier magique (Bête)}
Magic Shield (Daemonology)@Compendium[wfrp4e-core.spells.24ichKVP2EzyO5ob]{Bouclier magique (Démonologie)}
Magic Shield (Death)@Compendium[wfrp4e-core.spells.6ax6mO8DPMTrG5Sp]{Bouclier magique (Mort)}
Magic Shield (Fire)@Compendium[wfrp4e-core.spells.f8bYT3ZqKLUZSZBY]{Bouclier magique (Feu)}
Magic Shield (Heavens)@Compendium[wfrp4e-core.spells.6eu6VVbYzq5mCNGW]{Bouclier magique (Cieux)}
Magic Shield (Life)@Compendium[wfrp4e-core.spells.PpMxNEHPJag1i9WJ]{Bouclier magique (Vie)}
Magic Shield (Light)@Compendium[wfrp4e-core.spells.pxfB6tZZVwKK8SG3]{Bouclier magique (Lumière)}
Magic Shield (Metal)@Compendium[wfrp4e-core.spells.Y7JOj3hCqq2OSzAb]{Bouclier magique (Métal)}
Magic Shield (Necromancy)@Compendium[wfrp4e-core.spells.eTAzKM5j06KwtdBt]{Bouclier magique (Nécromancie)}
Magic Shield (Shadow)@Compendium[wfrp4e-core.spells.gWMhBQ8wm1Td78Si]{Bouclier magique (Ombres)}
Manifest Lesser Daemon@Compendium[wfrp4e-core.spells.soyujZNyzu7NKxMs]{Manifestation de Démon Mineur}
Marsh Lights@Compendium[wfrp4e-core.spells.jdv7gnwKk6eEPtQK]{Feux follets}
Mindslip@Compendium[wfrp4e-core.spells.dGSUQiUmXHrGqwxY]{Perte de mémoire}
Mirkride@Compendium[wfrp4e-core.spells.xiTk3pZX0GYVO2TQ]{Chevaucher l'Obscurité}
Move Object@Compendium[wfrp4e-core.spells.wQ5ld4yCCqhG0lqL]{Déplacement d'objet}
Move Object (Beasts)@Compendium[wfrp4e-core.spells.CL2ysmNjmJopV9Tu]{Déplacement d'objet (Bête)}
Move Object (Daemonology)@Compendium[wfrp4e-core.spells.d9VeHlESTpPYww5o]{Déplacement d'objet (Démonologie)}
Move Object (Death)@Compendium[wfrp4e-core.spells.RuwPnfpvjAWQZzS3]{Déplacement d'objet (Mort)}
Move Object (Fire)@Compendium[wfrp4e-core.spells.TtuJjGh4fdU4mwBN]{Déplacement d'objet (Feu)}
Move Object (Heavens)@Compendium[wfrp4e-core.spells.MhpmVs0WVP96uOnw]{Déplacement d'objet (Cieux)}
Move Object (Life)@Compendium[wfrp4e-core.spells.cwnBquEIHjnvkJ7E]{Déplacement d'objet (Vie)}
Move Object (Light)@Compendium[wfrp4e-core.spells.fTjzN0fg1SmqvHYI]{Déplacement d'objet (Lumière)}
Move Object (Metal)@Compendium[wfrp4e-core.spells.0JlQdHgFqT4RcPh1]{Déplacement d'objet (Métal)}
Move Object (Necromancy)@Compendium[wfrp4e-core.spells.5rRSPXB064kaD7S6]{Déplacement d'objet (Nécromancie)}
Move Object (Shadow)@Compendium[wfrp4e-core.spells.kD7mJjGJ6owqV9nI]{Déplacement d'objet (Ombres)}
Mundane Aura@Compendium[wfrp4e-core.spells.T9cEYAUhqBiTxrp2]{Aura ordinaire}
Mundane Aura (Beasts)@Compendium[wfrp4e-core.spells.bNdVPhv1OT8LJnnt]{Aura ordinaire (Bête)}
Mundane Aura (Daemonology)@Compendium[wfrp4e-core.spells.aCOdKvw68yopHYJ2]{Aura ordinaire (Démonologie)}
Mundane Aura (Death)@Compendium[wfrp4e-core.spells.Ynbfu2VJDrYqN9aW]{Aura ordinaire (Mort)}
Mundane Aura (Fire)@Compendium[wfrp4e-core.spells.7pHcU30nMhgd0V5N]{Aura ordinaire (Feu)}
Mundane Aura (Heavens)@Compendium[wfrp4e-core.spells.QtWY9ruGFQ6cncLQ]{Aura ordinaire (Cieux)}
Mundane Aura (Life)@Compendium[wfrp4e-core.spells.CJvmSabjtw2SNmMA]{Aura ordinaire (Vie)}
Mundane Aura (Light)@Compendium[wfrp4e-core.spells.kLkvuZtSsedoypGm]{Aura ordinaire (Lumière)}
Mundane Aura (Metal)@Compendium[wfrp4e-core.spells.2hxE68YnEOLIceHb]{Aura ordinaire (Métal)}
Mundane Aura (Necromancy)@Compendium[wfrp4e-core.spells.pqdLI8MBZlExTRmV]{Aura ordinaire (Nécromancie)}
Mundane Aura (Shadow)@Compendium[wfrp4e-core.spells.oNnQmw8hJH6f5ct0]{Aura ordinaire (Ombres)}
Murmured Whisper@Compendium[wfrp4e-core.spells.pDvOunMrvaYoXjd9]{Murmures}
Mutable Metal@Compendium[wfrp4e-core.spells.jHMsJaaIQjyhYAgV]{Métal changeant}
Mystifying Miasma@Compendium[wfrp4e-core.spells.Tv9BIBNTPT6JV0HG]{Miasme mystifiant}
Nepenthe@Compendium[wfrp4e-core.spells.aVUKVQTwtWuQXIgx]{Nepenthès}
Net of Amyntok@Compendium[wfrp4e-core.spells.38qRyF13jCszeOe1]{Filet d'Amyntok}
Nostrum@Compendium[wfrp4e-core.spells.sxFriQ3XAtvwlmMq]{Panacée}
Octagram@Compendium[wfrp4e-core.spells.NwVgP5msZHERwEfK]{Octogramme}
Open Lock@Compendium[wfrp4e-core.spells.jWfYyh7QyK6XaQRU]{Serrure ouverte}
Part the Branches@Compendium[wfrp4e-core.spells.TL2IelDsaRWflCeY]{Séparer les branches}
Phâ’s Protection@Compendium[wfrp4e-core.spells.dS5zK3lMCumvuAAF]{Protection de Phâ}
Produce Small Animal@Compendium[wfrp4e-core.spells.EyBc9yQqFUNIP9S1]{Créer un petit animal}
Protection from Rain@Compendium[wfrp4e-core.spells.NXHZ3RtPN3SrSH8I]{Protection contre la pluie}
Protective Charm@Compendium[wfrp4e-core.spells.ngOHho544P05W7Qi]{Charme protecteur}
Purge@Compendium[wfrp4e-core.spells.RiqCDDKRHTEJp3Bm]{Purification}
Purify Water@Compendium[wfrp4e-core.spells.hW0jBCKx6noFKNMc]{Purificateur de l'eau}
Purple Pall of Shyish@Compendium[wfrp4e-core.spells.RkBdnQ4cjTLPUSim]{Le Voile violent de Shyish}
Push@Compendium[wfrp4e-core.spells.lM8c3LlW4s3KBVHR]{Poussée}
Push (Beasts)@Compendium[wfrp4e-core.spells.3Wilae1bkHUDR7Aj]{Poussée (Bête)}
Push (Daemonology)@Compendium[wfrp4e-core.spells.7wK4srcIgc8USRYt]{Poussée (Démonologie)}
Push (Death)@Compendium[wfrp4e-core.spells.RmIJdvjohr7n6nio]{Poussée (Mort)}
Push (Fire)@Compendium[wfrp4e-core.spells.99QJoyyHfYBQz5Wz]{Poussée (Feu)}
Push (Heavens)@Compendium[wfrp4e-core.spells.cfuqgV2PTnjMrgT7]{Poussée (Cieux)}
Push (Life)@Compendium[wfrp4e-core.spells.RYrUWrXH6O22FZY8]{Poussée (Vie)}
Push (Light)@Compendium[wfrp4e-core.spells.W47xmdZ3ztckm89t]{Poussée (Lumière)}
Push (Metal)@Compendium[wfrp4e-core.spells.S51eCqcrjMv7u7uH]{Poussée (Métal)}
Push (Necromancy)@Compendium[wfrp4e-core.spells.KvapXfYXiCcAOe7S]{Poussée (Nécromancie)}
Push (Shadow)@Compendium[wfrp4e-core.spells.BWjNKaTolhIPbNcO]{Poussée (Ombres)}
Raise Dead@Compendium[wfrp4e-core.spells.FRfAqPlOdwiIitR5]{Relever les morts}
Reanimate@Compendium[wfrp4e-core.spells.7BJDTRG65hwt1fUK]{Réanimation}
Regenerate@Compendium[wfrp4e-core.spells.4NQUrs2PUNpYxlWs]{Régénération}
Rot@Compendium[wfrp4e-core.spells.Wz1bb0g1mklJHfft]{Putréfaction}
Sanctify@Compendium[wfrp4e-core.spells.0HjjloXfVly8tZ4E]{Sanctifier}
Screaming Skull@Compendium[wfrp4e-core.spells.HqInHmOviuLqymdm]{Crane Hurlant}
Scythe of Shyish@Compendium[wfrp4e-core.spells.SQJQrAsAKc2Icatv]{La Faux de Shyish}
Shadowsteed@Compendium[wfrp4e-core.spells.1ndRohs7YMmV2OHh]{Destrier d'Ombre}
Shadowstep@Compendium[wfrp4e-core.spells.VFWBB9zlwCe5J9EZ]{Portail d'Ombre}
Shock@Compendium[wfrp4e-core.spells.hKFeMAsntzXscIGy]{Choc}
Shroud of Invisibility@Compendium[wfrp4e-core.spells.2ccKksxXFIMD2YLs]{Linceul d'Invisibilité}
Sleep@Compendium[wfrp4e-core.spells.4ePe5oNQakA8nJlk]{Sommeil}
Sly Hands@Compendium[wfrp4e-core.spells.BMnu4XfgsSqVnCB8]{En catimini}
Soul Vortex@Compendium[wfrp4e-core.spells.eJPjVeW9UEH891rm]{Vortex d'âmes}
Sounds@Compendium[wfrp4e-core.spells.lghYQXa227Sf8ofT]{Bruits}
Speed of Thought@Compendium[wfrp4e-core.spells.OB05oGoSZDzNYLjW]{Pensée rapide}
Spring@Compendium[wfrp4e-core.spells.XnNAe4R8hSXY5IsS]{Source}
Starcrossed@Compendium[wfrp4e-core.spells.XXEIfkXpNxpfkamo]{Maudit}
Steal Life@Compendium[wfrp4e-core.spells.ifjDVtgGEh787p20]{Vol de vie}
Stream of Corruption@Compendium[wfrp4e-core.spells.XhyZ140R1iA1J7wZ]{Flot de Corruption}
Swift Passing@Compendium[wfrp4e-core.spells.fWZxupuKCC2rZ2g7]{Mort rapide}
T'Essla's Arc@Compendium[wfrp4e-core.spells.r3BgUFaaCzsLIUDi]{Arc de T'essla}
Teleport@Compendium[wfrp4e-core.spells.CVam8L1cNsnxZHRR]{Téléportation}
Teleport (Beasts)@Compendium[wfrp4e-core.spells.4mUZ6UbD79OwrjqX]{Téléportation (Bête)}
Teleport (Daemonology)@Compendium[wfrp4e-core.spells.xyCPobJtYNSpYtr6]{Téléportation (Démonologie)}
Teleport (Death)@Compendium[wfrp4e-core.spells.vwphk8DwbBkUABDZ]{Téléportation (Mort)}
Teleport (Fire)@Compendium[wfrp4e-core.spells.uej1rqpQSyzK9wRT]{Téléportation (Feu)}
Teleport (Heavens)@Compendium[wfrp4e-core.spells.AwRVLEJZCLwPJKy2]{Téléportation (Cieux)}
Teleport (Life)@Compendium[wfrp4e-core.spells.4jNBpvM21vnZgUFw]{Téléportation (Vie)}
Teleport (Light)@Compendium[wfrp4e-core.spells.lniqTi6PlyCuLji6]{Téléportation (Lumière)}
Teleport (Metal)@Compendium[wfrp4e-core.spells.SJNRH1G9RJJftD5g]{Téléportation (Métal)}
Teleport (Necromancy)@Compendium[wfrp4e-core.spells.HZh2wueRro8Ks3yF]{Téléportation (Nécromancie)}
Teleport (Shadow)@Compendium[wfrp4e-core.spells.6GaqchV2dL60Xfsm]{Téléportation (Ombres)}
Terrifying@Compendium[wfrp4e-core.spells.J0wUSVSnos7fBprP]{Terrifiant}
Terrifying (Beasts)@Compendium[wfrp4e-core.spells.o1FW2B7PwFhcT53j]{Terrifiant (Bête)}
Terrifying (Daemonology)@Compendium[wfrp4e-core.spells.Iz88EUCTmIYQXOY9]{Terrifiant (Démonologie)}
Terrifying (Death)@Compendium[wfrp4e-core.spells.0IzOYTDhNWrgHoXJ]{Terrifiant (Mort)}
Terrifying (Fire)@Compendium[wfrp4e-core.spells.5BZJbIORcBTnHCKL]{Terrifiant (Feu)}
Terrifying (Heavens)@Compendium[wfrp4e-core.spells.N1aBnhPpQUu0Bkuh]{Terrifiant (Cieux)}
Terrifying (Life)@Compendium[wfrp4e-core.spells.rtnNRlwNbYst1gZz]{Terrifiant (Vie)}
Terrifying (Light)@Compendium[wfrp4e-core.spells.IuKAeoZqCEAC9NtH]{Terrifiant (Lumière)}
Terrifying (Metal)@Compendium[wfrp4e-core.spells.fHYVckKx4fnqz75K]{Terrifiant (Métal)}
Terrifying (Necromancy)@Compendium[wfrp4e-core.spells.SfYwurel0h4mLYV0]{Terrifiant (Nécromancie)}
Terrifying (Shadow)@Compendium[wfrp4e-core.spells.cSmcBYrwV385Tgbt]{Terrifiant (Ombres)}
The Amber Spear@Compendium[wfrp4e-core.spells.LTUC1fqIuuGSUaQ1]{La lance d'Ambre}
The Evil Eye@Compendium[wfrp4e-core.spells.CnydL8p3PVAuF98w]{Mauvais Oeil}
The First Portent of Amul@Compendium[wfrp4e-core.spells.04Qv4t0qMMZIUhRw]{Le Premier Signe d'Amul}
The Second Portent of Amul@Compendium[wfrp4e-core.spells.xPTG5wLvHULLEM2p]{Le Second Signe d'Amul}
The Third Portent of Amul@Compendium[wfrp4e-core.spells.uIamxlmA6SWAa3YR]{Le Troisième Signe d'Amul}
Transmutation of Chamon@Compendium[wfrp4e-core.spells.oZV3ImfM1kxQUCSD]{Transmutation de Chamon}
Treason of Tzeentch@Compendium[wfrp4e-core.spells.xhGjRScyU149nK3i]{Trahison de Tzeentch}
Twitch@Compendium[wfrp4e-core.spells.u0ykDg71xyZWSxn6]{Secousse}
Vanhel's Call@Compendium[wfrp4e-core.spells.foqexF06lguqPFK6]{L'appel de Vanhel}
Ward@Compendium[wfrp4e-core.spells.LOEdFN7fP0JHuGoE]{Protection}
Ward (Beasts)@Compendium[wfrp4e-core.spells.U9eqCSFiwY04tN1F]{Protection (Bête)}
Ward (Daemonology)@Compendium[wfrp4e-core.spells.W8VbsItRrBVRg9kg]{Protection (Démonologie)}
Ward (Death)@Compendium[wfrp4e-core.spells.4iSZ7vop0NVz8xih]{Protection (Mort)}
Ward (Fire)@Compendium[wfrp4e-core.spells.UZux81S2ZnD9sx6U]{Protection (Feu)}
Ward (Heavens)@Compendium[wfrp4e-core.spells.uaCXMXoY3UaJ26ne]{Protection (Cieux)}
Ward (Life)@Compendium[wfrp4e-core.spells.mRQTe8QOSt7MEwa0]{Protection (Vie)}
Ward (Light)@Compendium[wfrp4e-core.spells.SGREGarfzIreXelO]{Protection (Lumière)}
Ward (Metal)@Compendium[wfrp4e-core.spells.JvK9jnniMihpDuDX]{Protection (Métal)}
Ward (Necromancy)@Compendium[wfrp4e-core.spells.ondTnKp6pE0s0bDD]{Protection (Nécromancie)}
Ward (Shadow)@Compendium[wfrp4e-core.spells.aCDDeeYF24waaPgT]{Protection (Ombres)}
Warning@Compendium[wfrp4e-core.spells.PbCD8mjAKQSnxAe6]{Alerte}
Wyssan’s Wildform@Compendium[wfrp4e-core.spells.trieNRiCCulTerPb]{Incarnation de Wyssan}
"} -{"_id":"egICsLEJ7yFUooAb","name":"Traduction des Talents","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Accurate Shot@Compendium[wfrp4e-core.talents.XIcDsaW4D8wScezw]{Tir précis}
Acute Sense@Compendium[wfrp4e-core.talents.9h82z72XGo9tfgQS]{Sens Aiguisé}
Aethyric Attunement@Compendium[wfrp4e-core.talents.1IZWRr7BYOIcqPlQ]{Harmonisation Aethyrique}
Alley Cat@Compendium[wfrp4e-core.talents.wBhPFggGqIXwbx1r]{Chat de gouttière}
Ambidextrous@Compendium[wfrp4e-core.talents.IFKWu98qmWpaSfUi]{Ambidextre}
Animal Affinity@Compendium[wfrp4e-core.talents.9fq6p9Q6H02LjaSi]{Affinité avec les animaux}
Arcane Magic@Compendium[wfrp4e-core.talents.3O9clK7LGyuLTHPW]{Magie des Arcanes}
Argumentative@Compendium[wfrp4e-core.talents.41JhsSNW1Ttza3JK]{Ergoteur}
Artistic@Compendium[wfrp4e-core.talents.2eq8Ejotk54AZYwX]{Artiste}
Attractive@Compendium[wfrp4e-core.talents.6l3jvIAvrKxt0lA9]{Attirant}
Battle Rage@Compendium[wfrp4e-core.talents.FtjMeeGEO4YuGIBv]{Contrôle de la Frénésie}
Beat Blade@Compendium[wfrp4e-core.talents.L1MoarOIAlia1Ti4]{Battement}
Beneath Notice@Compendium[wfrp4e-core.talents.5KP9sOoLSGvj9EXp]{Insignifiant}
Berserk Charge@Compendium[wfrp4e-core.talents.oRx92ByVNEBN6YkK]{Charge Berserk}
Blather@Compendium[wfrp4e-core.talents.77p3QRKgFWakkndF]{Baratiner}
Bless@Compendium[wfrp4e-core.talents.QyjWtSdnVMT04l5Y]{Béni}
Bookish@Compendium[wfrp4e-core.talents.zv3IyoU2wkPZu8pD]{Studieux}
Break and Enter@Compendium[wfrp4e-core.talents.wrpVYmdiIy1jPulc]{Effraction}
Briber@Compendium[wfrp4e-core.talents.34EBUkHQkrqF1sq7]{Suborneur}
Cardsharp@Compendium[wfrp4e-core.talents.Yiw5h1Kj4B2WLlfm]{Tricheur}
Careful Strike@Compendium[wfrp4e-core.talents.GU1KpgY3MeFIaDaq]{Frappe précise}
Carouser@Compendium[wfrp4e-core.talents.hTgrGkWnmIR4xhVe]{Noctambule}
Cat-tongued@Compendium[wfrp4e-core.talents.LzgxyMknSHjSkkeQ]{Menteur}
Catfall@Compendium[wfrp4e-core.talents.g4Q6AtzZuo5iIvD4]{Souplesse féline}
Chaos Magic@Compendium[wfrp4e-core.talents.hiU7vhBOVpVI8c7C]{Magie du Chaos}
Combat Aware@Compendium[wfrp4e-core.talents.0LdHytqyNmg2pcAX]{Vigilance}
Combat Master@Compendium[wfrp4e-core.talents.NDetl9BhAQBVnHKf]{Maîtrise du combat}
Combat Reflexes@Compendium[wfrp4e-core.talents.tXKX29QZBdHmyMc7]{Combat Instinctif}
Commanding Presence@Compendium[wfrp4e-core.talents.x8g3U68oi8XzWiYr]{Présence imposante}
Concoct@Compendium[wfrp4e-core.talents.wXcJWxJdw0ib5b8W]{Concocter}
Contortionist@Compendium[wfrp4e-core.talents.TaYriYcJkFuIdBKp]{Contortionniste}
Coolheaded@Compendium[wfrp4e-core.talents.JLzJws09GMw9GWBV]{Imperturbable}
Crack the Whip@Compendium[wfrp4e-core.talents.edsenrEYTLOtpa6b]{Claquer le fouet}
Craftsman@Compendium[wfrp4e-core.talents.GRRN3XAKIpEVCY7z]{Maitre Artisan}
Criminal@Compendium[wfrp4e-core.talents.r180vP86SlwyJc8W]{Criminel}
Deadeye Shot@Compendium[wfrp4e-core.talents.jLJzZb4keVvE0qRv]{Tir mortel}
Dealmaker@Compendium[wfrp4e-core.talents.epPBu7x6BRWp2PHG]{Négociateur}
Detect Artifact@Compendium[wfrp4e-core.talents.g3y373FnWJEAxgEB]{Détection d'artefact}
Diceman@Compendium[wfrp4e-core.talents.cAxNctMFWIAjDgV3]{Maîtrise des dés}
Dirty Fighting@Compendium[wfrp4e-core.talents.2Nzqsc9aclP6rpnl]{Combat déloyal}
Disarm@Compendium[wfrp4e-core.talents.DS44h27iCOvUBa4O]{Désarmer}
Distract@Compendium[wfrp4e-core.talents.MoiYSfJRPHu7SZCQ]{Distraire}
Doomed@Compendium[wfrp4e-core.talents.fn8QNQQ1S2rh12Us]{Destinée}
Drilled@Compendium[wfrp4e-core.talents.J9MK0AIaTbvd5oF6]{Coude-à-coude}
Dual Wielder@Compendium[wfrp4e-core.talents.URwIDtInCsxOoGqM]{Maniement de 2 armes}
Embezzle@Compendium[wfrp4e-core.talents.HIofcsDLjXGKzSZf]{Escroqueur}
Enclosed Fighter@Compendium[wfrp4e-core.talents.VscjNv6RzHFb9CQp]{Combattant en espace clos}
Etiquette@Compendium[wfrp4e-core.talents.sYbgpSnRqSZWgwFP]{Savoir-vivre}
Fast Hands@Compendium[wfrp4e-core.talents.9sMAf0xmehjEmUao]{Mains agiles}
Fast Shot@Compendium[wfrp4e-core.talents.5eDd6iFeR9G6cCfz]{Tir Rapide}
Fearless@Compendium[wfrp4e-core.talents.8pVzgPkgWpTJvfhG]{Sans peur}
Feint@Compendium[wfrp4e-core.talents.0pXva9EODy9bngQX]{Feinte}
Field Dressing@Compendium[wfrp4e-core.talents.fEFAMNqh8nJIfBkM]{Pansement de fortune}
Fisherman@Compendium[wfrp4e-core.talents.1kgHcImgfyKI1IYp]{Pêcheur}
Flagellant@Compendium[wfrp4e-core.talents.Gs10qhA4CDmZyb1g]{Flagellant}
Flee!@Compendium[wfrp4e-core.talents.jrFIFLhyOYwcyMUl]{Fuite!}
Fleet Footed@Compendium[wfrp4e-core.talents.E3vTSCzgrasNijUO]{Véloce}
Frenzy@Compendium[wfrp4e-core.talents.hXcfygzujgyMN1uI]{Frénésie}
Frightening@Compendium[wfrp4e-core.talents.mqo51ORnxijcqNNu]{Effrayant}
Furious Assault@Compendium[wfrp4e-core.talents.BlHVzfs0Ow6IYEDw]{Assaut féroce}
Gregarious@Compendium[wfrp4e-core.talents.8lSoPDGrmeTIaapm]{Sociable}
Gunner@Compendium[wfrp4e-core.talents.0ep8BNMiZGVLTHpr]{Artilleur}
Hardy@Compendium[wfrp4e-core.talents.zImcTgEl2XNnbu5W]{Dur à cuire}
Hatred@Compendium[wfrp4e-core.talents.E98mVLZgE8bX5vQW]{Haine}
Holy Hatred@Compendium[wfrp4e-core.talents.RyxOZqcBNZ7Zw721]{Haine sacrée}
Holy Visions@Compendium[wfrp4e-core.talents.Nj3tC8A5fZ3zEdMR]{Visions Sacrées}
Hunter's Eye@Compendium[wfrp4e-core.talents.bxbTiLzbaz4vdukT]{Œil du chasseur}
Impassioned Zeal@Compendium[wfrp4e-core.talents.oGbDwnLOn3isPJpO]{Ferveur ardente}
Implacable@Compendium[wfrp4e-core.talents.xx8SgdWYEjKct7ym]{Endurci}
In-fighter@Compendium[wfrp4e-core.talents.tX9R9rSYm2YyEnOK]{Combattant au contact}
Inspiring@Compendium[wfrp4e-core.talents.WCXnFSV4WOSmzzc4]{Exaltant}
Instinctive Diction@Compendium[wfrp4e-core.talents.BYChSVfMG004eflQ]{Diction Instinctive}
Invoke@Compendium[wfrp4e-core.talents.voV0C2ar1bKpcpnH]{Invocation}
Iron Jaw@Compendium[wfrp4e-core.talents.UaDGF5MBFBwPq5YU]{Machoires d'acier}
Iron Will@Compendium[wfrp4e-core.talents.mgeiaDZXei7JBEgo]{Volonté de fer}
Jump Up@Compendium[wfrp4e-core.talents.BIaLeh4CPFaTMbFz]{Saut carpé}
Kingpin@Compendium[wfrp4e-core.talents.RbnrfHf7GSQap0ig]{Caïd}
Lightning Reflexes@Compendium[wfrp4e-core.talents.BbStIySkF1hDM2zq]{Reflexes Foudroyants}
Linguistics@Compendium[wfrp4e-core.talents.726gbrANZt8OqXr5]{Linguistique}
Lip Reading@Compendium[wfrp4e-core.talents.OXfa9uwG36syzaix]{Lire sur les Lèvres}
Luck@Compendium[wfrp4e-core.talents.u0CFf3xwiyidD9T5]{Chanceux}
Magic Resistance@Compendium[wfrp4e-core.talents.eowbsW6oHGSNJmxV]{Résistance à la Magie}
Magical Sense@Compendium[wfrp4e-core.talents.6w30u0VPsAicrqb5]{Perception de la magie}
Magnum Opus@Compendium[wfrp4e-core.talents.QdvY9hoDTbr12jXq]{Magnum Opus}
Marksman@Compendium[wfrp4e-core.talents.5lcttqGToT54WFrl]{Tireur de précision}
Master Orator@Compendium[wfrp4e-core.talents.ZWcTbeK8i9vKph2a]{Grand Orateur}
Master Tradesman@Compendium[wfrp4e-core.talents.GHmXS9zGNx3PWYZc]{Travailleur qualifié}
Master of Disguise@Compendium[wfrp4e-core.talents.WoXShzaYkV5F6c48]{Maitre en déguisement}
Menacing@Compendium[wfrp4e-core.talents.0hn6UaKq8CoZP2zD]{Menaçant}
Mimic@Compendium[wfrp4e-core.talents.LU6Ycl5z4kp1Wr04]{Imitation}
Night Vision@Compendium[wfrp4e-core.talents.x0WMGwuQzReXcQrs]{Vision Nocturne}
Nimble Fingered@Compendium[wfrp4e-core.talents.7bZjB82f6LSkeczP]{Doigts de fée}
Noble Blood@Compendium[wfrp4e-core.talents.1IVGksL10N7GVrw3]{Noblesse}
Nose for Trouble@Compendium[wfrp4e-core.talents.AcnFuDKRemLI9ey7]{Flairer les ennuis}
Numismatics@Compendium[wfrp4e-core.talents.5QcrpLQWWrsbKR79]{Numismate}
Old Salt@Compendium[wfrp4e-core.talents.L74MT9BDwE4CfutY]{Loup de mer}
Orientation@Compendium[wfrp4e-core.talents.afREA9q7v4Scuozn]{Orientation}
Panhandle@Compendium[wfrp4e-core.talents.eEHauevJWhmzvCSx]{Faire la manche}
Perfect Pitch@Compendium[wfrp4e-core.talents.pQjZdMJDDaz0DpAD]{Oreille absolue}
Petty Magic@Compendium[wfrp4e-core.talents.mdPGZsn2396dEpOf]{Magie Mineure}
Pharmacist@Compendium[wfrp4e-core.talents.G4rPR0XGiYFUZWKi]{Pharmacologie}
Pilot@Compendium[wfrp4e-core.talents.WEH97InIX29nzgW1]{Pilote}
Public Speaker@Compendium[wfrp4e-core.talents.XU7D9CCmumuhqDUi]{Orateur}
Pure Soul@Compendium[wfrp4e-core.talents.wNvPXAhlKABl6hpk]{Ame pure}
Rapid Reload@Compendium[wfrp4e-core.talents.769B469sqx6FXPfn]{Rechargement rapide}
Reaction Strike@Compendium[wfrp4e-core.talents.4AqSkJnFPqNuTkos]{Frappe réactive}
Read/Write@Compendium[wfrp4e-core.talents.GogGbYxkVdCmiKqf]{Lire/Ecrire}
Relentless@Compendium[wfrp4e-core.talents.SgjJMBgc85aswvhm]{Impitoyable}
Resistance@Compendium[wfrp4e-core.talents.vMYEkrWj0ip6ZOdv]{Resistant}
Resolute@Compendium[wfrp4e-core.talents.uRvOg8AnCcP2ufx8]{Déterminé}
Reversal@Compendium[wfrp4e-core.talents.QolNfSUkezLoAcky]{Renversement}
Riposte@Compendium[wfrp4e-core.talents.x8jsChg17VQ9XgiK]{Riposte}
River Guide@Compendium[wfrp4e-core.talents.PoYlemaEIbZw30Em]{Guide fluvial}
Robust@Compendium[wfrp4e-core.talents.nWLsoWQBCjPRKxYx]{Robuste}
Roughrider@Compendium[wfrp4e-core.talents.9CAkY3SQjQxRTlNJ]{Cavalier émérite}
Rover@Compendium[wfrp4e-core.talents.q58lK4kULJZB5GjE]{Nomade}
Savant@Compendium[wfrp4e-core.talents.580fwhKfOZJFxMID]{Savant}
Savvy@Compendium[wfrp4e-core.talents.QsrXxGZiHjth7RMg]{Perspicace}
Scale Sheer Surface@Compendium[wfrp4e-core.talents.MGEPI4jNhymNIRVz]{Grimpeur}
Schemer@Compendium[wfrp4e-core.talents.b4x1qEWcevX7xK58]{Intrigant}
Sea Legs@Compendium[wfrp4e-core.talents.Ij9N3G8jzxb4lrwy]{Pied marin}
Seasoned Traveller@Compendium[wfrp4e-core.talents.jQmIu8P85tF0njmD]{Voyageur aguerri}
Second Sight@Compendium[wfrp4e-core.talents.OEjUvJKi0xmBwbS2]{Seconde Vue}
Secret Identity@Compendium[wfrp4e-core.talents.PJ4oxDExnuFNr2Fi]{Identité Secrête}
Shadow@Compendium[wfrp4e-core.talents.XSb3QVB9ipPBFt56]{Discret}
Sharp@Compendium[wfrp4e-core.talents.oQzTJEXUx28sCiH3]{Vivacité}
Sharpshooter@Compendium[wfrp4e-core.talents.jrYW2OyDHd1Md2my]{Tireur d'élite}
Shieldsman@Compendium[wfrp4e-core.talents.IT3s7rmQFGNzIfYq]{Porte-bouclier}
Sixth Sense@Compendium[wfrp4e-core.talents.mNoCuaVbFBflfO6X]{Sixième Sens}
Slayer@Compendium[wfrp4e-core.talents.GOtpCOZ2br14GrBW]{Meurtrier}
Small@Compendium[wfrp4e-core.talents.eBwHnWdwQJ590ASb]{Petit}
Sniper@Compendium[wfrp4e-core.talents.cygaI9gq4BQJvbB5]{Tireur embusqué}
Speedreader@Compendium[wfrp4e-core.talents.kQbVFzsh4LbaIzHU]{Lecture rapide}
Sprinter@Compendium[wfrp4e-core.talents.AwUUEwwf2Vt4ksCN]{Sprinter}
Step Aside@Compendium[wfrp4e-core.talents.HpGjzrSR4tdogJtl]{Pas de côté}
Stone Soup@Compendium[wfrp4e-core.talents.spdiWsONKTzkLbg3]{Brouet}
Stout-hearted@Compendium[wfrp4e-core.talents.IogM5gnsoOX63w7j]{Coeur vaillant}
Strider@Compendium[wfrp4e-core.talents.1dUizIgLBgn4jICC]{Bon marcheur}
Strike Mighty Blow@Compendium[wfrp4e-core.talents.4MJJCiOKPkBByYwW]{Coup puissant}
Strike to Injure@Compendium[wfrp4e-core.talents.RWJrupj9seau0w31]{Frappe blessante}
Strike to Stun@Compendium[wfrp4e-core.talents.jt0DmVK9IiF6Sd2h]{Frappe assomante}
Strong Back@Compendium[wfrp4e-core.talents.FF41XPboORgyDNsv]{Infatigable}
Strong Legs@Compendium[wfrp4e-core.talents.CV9btQn09S9Fn8Jk]{Bonnes jambes}
Strong Swimmer@Compendium[wfrp4e-core.talents.4wnQc19allWlyOGe]{Nageur endurant}
Strong-minded@Compendium[wfrp4e-core.talents.Ywo6fZNPC4zbHHSQ]{Obstiné}
Sturdy@Compendium[wfrp4e-core.talents.qZ4cFy6z482ZONuA]{Costaud}
Suave@Compendium[wfrp4e-core.talents.LPgjE0cexTVOBVCY]{Affable}
Super Numerate@Compendium[wfrp4e-core.talents.sBHarYXR2o7jD1VY]{Doué en calcul}
Supportive@Compendium[wfrp4e-core.talents.aZavWXbSXVBmWeJi]{Coopératif}
Sure Shot@Compendium[wfrp4e-core.talents.phXzaUxl3mFqkmDq]{Tir sûr}
Surgery@Compendium[wfrp4e-core.talents.NP4EHyyh1yOLbsPU]{Chirurgie}
Tenacious@Compendium[wfrp4e-core.talents.jviOQmy0luQOySC2]{Persévérant}
Tinker@Compendium[wfrp4e-core.talents.6lQRRgjz8IZH4bbV]{Bricoleur}
Tower of Memories@Compendium[wfrp4e-core.talents.V9N0LMnXf1WYseCL]{Tour des souvenirs}
Trapper@Compendium[wfrp4e-core.talents.a7v422EZcOUUC20X]{Trappeur}
Trick Riding@Compendium[wfrp4e-core.talents.FjTnaxixsu1ShNNr]{Acrobaties équestres}
Tunnel Rat@Compendium[wfrp4e-core.talents.Z91GFaT6FhEwyESU]{Rat d'égout}
Unshakable@Compendium[wfrp4e-core.talents.8oWhzlcw7oiHGMFu]{Inébranlable}
Very Resilient@Compendium[wfrp4e-core.talents.RmY0CUjiFYZ3GEKY]{Très résistant}
Very Strong@Compendium[wfrp4e-core.talents.Zf0vk2rjllpDh0Ua]{Très fort}
War Leader@Compendium[wfrp4e-core.talents.vCgEAetBMngR53aT]{Seigneur de guerre}
War Wizard@Compendium[wfrp4e-core.talents.F2EiuAc6IpaGd4J7]{Mage de guerre}
Warrior Born@Compendium[wfrp4e-core.talents.zGQ0ShUTSlUvVtWh]{Guerrier né}
Waterman@Compendium[wfrp4e-core.talents.tlEg21DHMEJoWcJq]{Marinier}
Wealthy@Compendium[wfrp4e-core.talents.OROfMcVqRnZHINkU]{Nanti}
Well-prepared@Compendium[wfrp4e-core.talents.SHH2vUpNxj0wmmPT]{Prévoyant}
Witch!@Compendium[wfrp4e-core.talents.qdMbxW09FUoYBzmB]{Sorcier!}
"} -{"_id":"lDEV1syhsfGkUcvw","name":"Traduction des Traits","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"folder":"","flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
# Tentacles@Compendium[wfrp4e-core.traits.4xF7M6ylIiGntekh]{# Tentacules X}
Afraid@Compendium[wfrp4e-core.traits.4CMKeDTDrRQZbPIJ]{Craintif}
Amphibious@Compendium[wfrp4e-core.traits.sJ3yX1kvzu2hgNq5]{Amphibie}
Animosity@Compendium[wfrp4e-core.traits.0VpT5yubw4UL7j6f]{Animosité}
Arboreal@Compendium[wfrp4e-core.traits.rOV2s6PQBBrhpMOv]{Arboricole}
Armour@Compendium[wfrp4e-core.traits.VUJUZVN3VYhOaPjj]{Armure}
Belligerent@Compendium[wfrp4e-core.traits.GbDyBCu8ZjDp6dkj]{Belliqueux}
Bestial@Compendium[wfrp4e-core.traits.AGcJl5rHjkyIQBPP]{Bestial}
Big@Compendium[wfrp4e-core.traits.a8MC97PLzl10WocT]{Grand}
Bite@Compendium[wfrp4e-core.traits.pLW9SVX0TVTYPiPv]{Morsure}
Blessed@Compendium[wfrp4e-core.traits.5muSFXd6oc760uVj]{Bienheureux}
Bounce@Compendium[wfrp4e-core.traits.j6v78dnOOdCB6c3d]{Bond}
Breath@Compendium[wfrp4e-core.traits.uqGxFOEqeurwkAO3]{Souffle}
Brute@Compendium[wfrp4e-core.traits.15ENOMf345S5AL68]{Brutal}
Champion@Compendium[wfrp4e-core.traits.4mF5Sp3t09kZhBYc]{Champion}
Chill Grasp@Compendium[wfrp4e-core.traits.7HSUM2iPZLX4ueIW]{Etreinte glaciale}
Clever@Compendium[wfrp4e-core.traits.Ni4hNAPv3LhTpgMA]{Intelligent}
Cold Blooded@Compendium[wfrp4e-core.traits.mCh1KK9jomwFZcLB]{A Sang Froid}
Constrictor@Compendium[wfrp4e-core.traits.KynNUYYKzTMeHrKl]{Constricteur}
Construct@Compendium[wfrp4e-core.traits.UB4mDroL6S1F9B4u]{Fabriqué}
Corrosive Blood@Compendium[wfrp4e-core.traits.M5QSWOYt2Rbv2yxW]{Sang corrosif}
Corruption@Compendium[wfrp4e-core.traits.xsGbDFqK2qh7lsIj]{Corruption}
Cunning@Compendium[wfrp4e-core.traits.3WI8mhTinC8inxyj]{Sournois}
Daemonic@Compendium[wfrp4e-core.traits.v3uzEthcq0JRar0J]{Démoniaque}
Dark Vision@Compendium[wfrp4e-core.traits.JQa5DLnTs2SEzRrc]{Infravision}
Die Hard@Compendium[wfrp4e-core.traits.UsJ2uIOOtHA7JqD5]{Dur à cuire}
Disease@Compendium[wfrp4e-core.traits.PaW8i6JOxWyzAZCz]{Maladie}
Distracting@Compendium[wfrp4e-core.traits.MVI0lXcg6vvtooAF]{Perturbant}
Elite@Compendium[wfrp4e-core.traits.9NROryHer1uXAKwY]{Élite}
Ethereal@Compendium[wfrp4e-core.traits.tNWrJUOArwfWXsPw]{Éthéré}
Fast@Compendium[wfrp4e-core.traits.9MjH4xyVrd3Inzak]{Rapide}
Fear@Compendium[wfrp4e-core.traits.pTorrE0l3VybAbtn]{Peur}
Flight@Compendium[wfrp4e-core.traits.EO05HX7jql0g605A]{Vol}
Frenzy@Compendium[wfrp4e-core.traits.yRhhOlt18COq4e1q]{Frénésie}
Fury@Compendium[wfrp4e-core.traits.fjd1u9VAgiYzhBRp]{Rage}
Ghostly Howl@Compendium[wfrp4e-core.traits.plVyl4vjS2fX16Rv]{Hurlement fantomatique}
Hardy@Compendium[wfrp4e-core.traits.HbrwGhUl0ZXz4kLA]{Endurant}
Hatred@Compendium[wfrp4e-core.traits.aE3pyW20Orvdjzj0]{Haine}
Horns (Feature)@Compendium[wfrp4e-core.traits.BqPZn6q3VHn9HUrW]{Cornes x (aspect)}
Hungry@Compendium[wfrp4e-core.traits.xneBqGOs1QS7kfUr]{Affamé}
Immunity@Compendium[wfrp4e-core.traits.3wCtgMDNnu8MFmyk]{Immunité}
Immunity to Psychology@Compendium[wfrp4e-core.traits.IAWyzDfC286a9MPz]{Immunité Psychologique}
Infected@Compendium[wfrp4e-core.traits.V0c3qBU1CMm8bmsW]{Infecté}
Infestation@Compendium[wfrp4e-core.traits.TBcdTlYSRH8Rd1x0]{Parasité}
Leader@Compendium[wfrp4e-core.traits.wGTD2LezlI6Atyy0]{Meneur}
Magic Resistance@Compendium[wfrp4e-core.traits.yrkI7ATjqLPDTFmZ]{Résistance à la Magie}
Magical@Compendium[wfrp4e-core.traits.mDgEMOoJpi8DkRYb]{Magique}
Mental Corruption@Compendium[wfrp4e-core.traits.AGreVSdN2jDSenEl]{Corruption mentale}
Miracles@Compendium[wfrp4e-core.traits.c1T7MelXEZLQfpVv]{Miracles}
Mutation@Compendium[wfrp4e-core.traits.lV7Bxi3T3ps4QBlc]{Mutation}
Night Vision@Compendium[wfrp4e-core.traits.FmHDbCOy3pH8yKhm]{Vision Nocturne}
Painless@Compendium[wfrp4e-core.traits.wMwSRDmgiF2IdCJr]{Insensible à la douleur}
Petrifying Gaze@Compendium[wfrp4e-core.traits.0eEJ280MIC0IbEop]{Regard pétrifiant}
Prejudice@Compendium[wfrp4e-core.traits.GwjvDLZz3PvK6xgs]{Préjugé}
Ranged (Range)@Compendium[wfrp4e-core.traits.Z1TGphWhic2E3Lfx]{A distance (Portée)}
Rear@Compendium[wfrp4e-core.traits.VFV2dmrfuVJ3RJnD]{Se cabrer}
Regenerate@Compendium[wfrp4e-core.traits.SfUUdOGjdYpr3KSR]{Régénération}
Size@Compendium[wfrp4e-core.traits.8slW8CJ2oVTxeQ6q]{Taille}
Skittish@Compendium[wfrp4e-core.traits.IPKRMGry6WotuS1G]{Nerveux}
Spellcaster@Compendium[wfrp4e-core.traits.vY0CHKsJRV3gYBj3]{Lanceur de Sorts}
Stealthy@Compendium[wfrp4e-core.traits.OzwDT6kzoLYeeR2d]{Furtif}
Stride@Compendium[wfrp4e-core.traits.UmxGZRV0Lw3TZ0Kx]{Foulée}
Stupid@Compendium[wfrp4e-core.traits.9GNpAqgsKzxZKJpp]{Stupide}
Swamp-strider@Compendium[wfrp4e-core.traits.BxAvP2g1KbHPbbbA]{Limicole}
Swarm@Compendium[wfrp4e-core.traits.E2Es82TvBKa7CoDG]{Nuée}
Tail Attack@Compendium[wfrp4e-core.traits.UnJ25lL8aUzem5JO]{Attaque caudale}
Territorial@Compendium[wfrp4e-core.traits.JIAe7i7dqTQBu4do]{Territorial}
Terror@Compendium[wfrp4e-core.traits.kJNAY1YRaCy9IgmT]{Terreur}
Tongue Attack (Range)@Compendium[wfrp4e-core.traits.xg6z63j6BH5AaqLL]{Langue préhensible (Portée)}
Tough@Compendium[wfrp4e-core.traits.k9539MBTFplxsysT]{Coriace}
Tracker@Compendium[wfrp4e-core.traits.ClOlztW6hH8rslbp]{Pisteur}
Trained@Compendium[wfrp4e-core.traits.V0naR1YbYCl0KIxp]{Entraîné}
Undead@Compendium[wfrp4e-core.traits.PFTD9gDvRWW9uh5g]{Mort-vivant}
Unstable@Compendium[wfrp4e-core.traits.D0ImWEIMSDgElsnl]{Instable}
Vampiric@Compendium[wfrp4e-core.traits.3MDwUi7BVxwWVI2V]{Vampirique}
Venom@Compendium[wfrp4e-core.traits.gFkRm9wS65qe18Xv]{Venin}
Vomit@Compendium[wfrp4e-core.traits.JzeN9MZ0xUDvpE2l]{Vomissement}
Wallcrawler@Compendium[wfrp4e-core.traits.KII1gWnxIZ8HzmU5]{Grimpant}
Ward@Compendium[wfrp4e-core.traits.Bvd2aZ0gQUXHfCTh]{Protection}
Weapon@Compendium[wfrp4e-core.traits.AtpAudHA4ybXVlWM]{Arme}
Web@Compendium[wfrp4e-core.traits.Bw6tQyzOhcl7aQ46]{Toile}
"} -{"_id":"056ILNNrLiPq3Gi3","name":"Traduction du Bestiaire","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Basilisk@Compendium[wfrp4e-core.bestiary.z8f3vySKIpTxGr62]{Basilic}
Bear@Compendium[wfrp4e-core.bestiary.NtEj1B9oWBRWXZZn]{Ours}
Bloodletter of Khorne@Compendium[wfrp4e-core.bestiary.KZkuwdOYmE3nwB2n]{Bloodletter de Khorne}
Boar@Compendium[wfrp4e-core.bestiary.7629Eaow3acVS59H]{Sanglier}
Bog Octopus@Compendium[wfrp4e-core.bestiary.FmEDHnfAe2iIugpt]{Pieuvre des Tourbières}
Bray-Shaman@Compendium[wfrp4e-core.bestiary.cHVOdcEkuatqjYV1]{Chaman-Bray}
Cairn Wraith@Compendium[wfrp4e-core.bestiary.hMbcLVjk7eUdxtqC]{Spectre de Cairn}
Cave Squig@Compendium[wfrp4e-core.bestiary.VMceSpLje0J7lfP0]{Squig des Cavernes}
Chaos Warrior@Compendium[wfrp4e-core.bestiary.a05lQsGjSv62wF0U]{Guerrier du Chaos}
Clanrat@Compendium[wfrp4e-core.bestiary.F1vAZZcmVKkRw8xn]{Guerrier des Clans}
Crypt Ghoul@Compendium[wfrp4e-core.bestiary.6B7LMdYtunAftsFN]{Goule de Crypte}
Cultist@Compendium[wfrp4e-core.bestiary.jfMhkQGzjFWDxVOm]{Cultiste}
Daemonette of Slaanesh@Compendium[wfrp4e-core.bestiary.8gG2Wim6wAlJWRax]{Démonette of Slaanesh}
Demigryph@Compendium[wfrp4e-core.bestiary.MLtDY4bwzGQpaABN]{Demigriffon}
Dire Wolf@Compendium[wfrp4e-core.bestiary.umddAQkmxVYG0AzO]{Loup funeste}
Dog@Compendium[wfrp4e-core.bestiary.R1iWvfV9EvgIc8bJ]{Chien}
Dragon@Compendium[wfrp4e-core.bestiary.LZttdCIxmFr1sGsS]{Dragon}
Fenbeast@Compendium[wfrp4e-core.bestiary.HKSn8iNSS9WcAuJc]{Bête des marais}
Fimir@Compendium[wfrp4e-core.bestiary.kt9ob9BdK6zLDWxn]{Fimir}
Fr'hough Mournbreath@Compendium[wfrp4e-core.bestiary.vK0WXrRDUjztB6QK]{Fr'hough Mournbreath}
Ghost@Compendium[wfrp4e-core.bestiary.GgSxlomoV220kd3G]{Fantôme}
Giant@Compendium[wfrp4e-core.bestiary.HZfZaCjdniz5Z4CP]{Géant}
Giant Rat@Compendium[wfrp4e-core.bestiary.oenbbB0PitRWUBfZ]{Rat géant}
Giant Spider@Compendium[wfrp4e-core.bestiary.VPVnyae6VHeD9cEP]{Araignée Géante}
Goblin@Compendium[wfrp4e-core.bestiary.zzdOpKqBC28J66Mn]{Gobelin}
Gor@Compendium[wfrp4e-core.bestiary.R37OtN5gmPWCYOP3]{Gor}
Griffon@Compendium[wfrp4e-core.bestiary.8g9rnHLiZ1pJcPPt]{Griffon}
Hippogryph@Compendium[wfrp4e-core.bestiary.RiXpMLex8SZf6gaQ]{Hippogryffe}
Horse@Compendium[wfrp4e-core.bestiary.b1R5sW6lYIViJ2ki]{Cheval}
Hydra@Compendium[wfrp4e-core.bestiary.A4G4bTYxot3ZygZO]{Hydre}
Jabberslythe@Compendium[wfrp4e-core.bestiary.9q8QzWB4o7aj6ZxL]{Jabberslythe}
Manticore@Compendium[wfrp4e-core.bestiary.XtVkAVgZRIIgrBXb]{Manticore}
Minotaur@Compendium[wfrp4e-core.bestiary.cAK1bMj1ne7HPcxI]{Minotaure}
Mutant@Compendium[wfrp4e-core.bestiary.P0GkA7DPaLbeOTkf]{Mutant}
Ogre@Compendium[wfrp4e-core.bestiary.nPvDzBcqDGuRaS7x]{Ogre}
Orc@Compendium[wfrp4e-core.bestiary.E7BiDqsB55BrOQut]{Orc}
Pegasus@Compendium[wfrp4e-core.bestiary.Yee9gwxJUceGbnO2]{Pégase}
Pigeon@Compendium[wfrp4e-core.bestiary.ge5zXH2qboxaac7v]{Pigeon}
Rat Ogre@Compendium[wfrp4e-core.bestiary.VfJgGmCTWqb0IDSW]{Rat Ogre}
Skeleton@Compendium[wfrp4e-core.bestiary.Mt5JAoOSaEH1PdcP]{Squelette}
Slenderthigh Whiptongue@Compendium[wfrp4e-core.bestiary.28MwFcDPwpcO12kt]{Slenderthigh Whiptongue}
Snake@Compendium[wfrp4e-core.bestiary.AAiKqD1IoweDpJI7]{Serpent}
Snotling@Compendium[wfrp4e-core.bestiary.wdnXbjtKK7MtsZzc]{Snotling}
Stormvermin@Compendium[wfrp4e-core.bestiary.kl4qHg0mqWOApBqH]{Vermine de choc}
Tomb Banshee@Compendium[wfrp4e-core.bestiary.TWy5l4uYTRAtjfit]{Banshee}
Troll@Compendium[wfrp4e-core.bestiary.7qslmdLa7so3BmFk]{Troll}
Ungor@Compendium[wfrp4e-core.bestiary.vrYs3cbxvXtre6rv]{Ungor}
Vampire@Compendium[wfrp4e-core.bestiary.T5qAtpoKtB8iwTBd]{Vampire}
Varghulf@Compendium[wfrp4e-core.bestiary.XoSSlIsqXkiBlycn]{Chauve-Souris Vampire}
Wolf@Compendium[wfrp4e-core.bestiary.lSvYEInG8sZ03vqd]{Loup}
Wyvern@Compendium[wfrp4e-core.bestiary.KeB0khEeq462qTJw]{Vouivre}
Zombie@Compendium[wfrp4e-core.bestiary.T79RqnDOAQLn3I1s]{Zombie}
"} -{"_id":"yfZxl4I7XAuUF6r3","name":"Traduction des Bénédictions et Miracles","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"folder":"","flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
An Invitation @Compendium[wfrp4e-core.prayers.cTZVEgAyT9l4vx3i]{Invitation }
Anchorite's Endurance@Compendium[wfrp4e-core.prayers.uMECZBuDnb3qkc7k]{Endurance de l'anachorète}
Animal Instincts@Compendium[wfrp4e-core.prayers.SZ88OXYo6F2q3vWb]{Instincts Animaux}
As Verena is My Witness@Compendium[wfrp4e-core.prayers.jXyyzYWid3nruQmc]{Véréna est mon témoin}
Balm to a Wounded Mind@Compendium[wfrp4e-core.prayers.8LcAFB6W37LDN70K]{Baume pour un esprit blessé}
Beacon of Righteous Virtue@Compendium[wfrp4e-core.prayers.Dk0zjtcANtahntHx]{Flambeau de Vertu}
Becalm@Compendium[wfrp4e-core.prayers.Geo6EAR39JzaP9P2]{Encalaminé}
Bitter Catharsis@Compendium[wfrp4e-core.prayers.UtgGJK46K08TZpP5]{Amère Catharsis}
Blazing Sun@Compendium[wfrp4e-core.prayers.Q91bWCEn0gt33fGT]{Ardent Soleil}
Blessing of Battle@Compendium[wfrp4e-core.prayers.ElmLfnrXliStS9CP]{Bénédiction de Bataille}
Blessing of Breath@Compendium[wfrp4e-core.prayers.TKHvOsihelBStO6i]{Bénédiction de Souffle}
Blessing of Charisma@Compendium[wfrp4e-core.prayers.FElNQGNiPzaOwwKT]{Bénédiction de Charisme}
Blessing of Conscience@Compendium[wfrp4e-core.prayers.tEMwdlHM8A40h6HE]{Bénédiction de Conscience}
Blessing of Courage@Compendium[wfrp4e-core.prayers.Cg2Q3TV66cpmheHS]{Bénédiction de Courage}
Blessing of Finesse@Compendium[wfrp4e-core.prayers.OkKWAfnMiHfxhTnB]{Bénédiction de Finesse}
Blessing of Fortune@Compendium[wfrp4e-core.prayers.iIfYOlNrLb0uiV8c]{Bénédiction de Chance}
Blessing of Grace@Compendium[wfrp4e-core.prayers.maUl7MoLvuvTOhM0]{Bénédiction de Grâce}
Blessing of Hardiness@Compendium[wfrp4e-core.prayers.0r3moMIHXsBrcOyh]{Bénédiction de Vigueur}
Blessing of Healing@Compendium[wfrp4e-core.prayers.C92dpJPRYpkZFsGu]{Bénédiction de Guérison}
Blessing of Might@Compendium[wfrp4e-core.prayers.KSDrXcieyRc37YI7]{Bénédiction de Puissance}
Blessing of Protection@Compendium[wfrp4e-core.prayers.K5DE9cceinUTIrem]{Bénédiction de Protection}
Blessing of Recuperation@Compendium[wfrp4e-core.prayers.Jkt465WPdRcejLwl]{Bénédiction de Convalescence}
Blessing of Righteousness@Compendium[wfrp4e-core.prayers.2WN0muIB2BFd4kBO]{Bénédiction de Droiture}
Blessing of Savagery@Compendium[wfrp4e-core.prayers.eBRjKAF6U0yR0KK8]{Bénédiction de Sauvagerie}
Blessing of Tenacity@Compendium[wfrp4e-core.prayers.GvaOlWY8iD5CO1WB]{Bénédiction de Tenacité}
Blessing of The Hunt@Compendium[wfrp4e-core.prayers.By5dc8Q7ZAGpr177]{Bénédiction de La Chasse}
Blessing of Wisdom@Compendium[wfrp4e-core.prayers.FRkIz2sR7ZC92W2G]{Bénédiction de Sagesse}
Blessing of Wit@Compendium[wfrp4e-core.prayers.tMocig1z9dHKNiCT]{Bénédiction of Vivacité}
Blind Justice@Compendium[wfrp4e-core.prayers.R6Q16WOXcPfaHnOb]{Justice Aveugle}
Cat's Eyes@Compendium[wfrp4e-core.prayers.Bo3ukcaipFNb7Ljl]{Yeux de Chat}
Death Mask@Compendium[wfrp4e-core.prayers.QQuIWTRGydpOfyZB]{Masque Mortuaire}
Destroy Undead@Compendium[wfrp4e-core.prayers.sdSy4k7ygDhAjSSX]{Anéantir les Morts-vivants}
Dooming@Compendium[wfrp4e-core.prayers.itARFNqBAbwNDAAy]{Condamné}
Drowned Man's Face@Compendium[wfrp4e-core.prayers.i5DW3xX2lGu6Pps6]{Visage de l'homme noyé}
Eagle's Eye@Compendium[wfrp4e-core.prayers.7KUKKbXBv8MbyEHt]{Oeil de l'Aigle}
Fair Winds@Compendium[wfrp4e-core.prayers.nQ9Fydtqshroi11E]{Vents Favorables}
Fury's Call@Compendium[wfrp4e-core.prayers.nyZNUwJ54MTLKQ7Y]{Appel à la Fureur}
Heed Not the Witch@Compendium[wfrp4e-core.prayers.Ffm7xIlRUWyacvKU]{N'écoutez point la Sorcière}
Hoarfrost's Chill@Compendium[wfrp4e-core.prayers.v28a5ilgxvDJfBqR]{Frisson du Givre}
Howl of the Wolf@Compendium[wfrp4e-core.prayers.9ALNZLZUZSLrLvkd]{Hurlement du Loup}
Inspiring@Compendium[wfrp4e-core.prayers.ezVl3vFWTwHfNXL3]{Inspirant}
King of the Wild@Compendium[wfrp4e-core.prayers.n8MfaJhczROmscCR]{Roi de la Nature}
Last Rites@Compendium[wfrp4e-core.prayers.rbdxcYoj8N2eMaqV]{Rites Funéraires}
Leaping Stag@Compendium[wfrp4e-core.prayers.mXKrxO8WRZ9QLHA6]{Bondissant comme un cerf}
Lord of the Hunt@Compendium[wfrp4e-core.prayers.JxmIQjVuoPcQnyPF]{Seigneur de la Chasse}
Manann's Bounty@Compendium[wfrp4e-core.prayers.IKW03JiqXVdDoPA6]{Générosité de Mannan}
Martyr@Compendium[wfrp4e-core.prayers.YCjWyU567vb4Rs11]{Martyr}
Pelt of the Winter Wolf@Compendium[wfrp4e-core.prayers.3ONBOTaeWq657MQR]{Peau de Loup d'Hiver}
Portal's Threshold@Compendium[wfrp4e-core.prayers.uE6AXjMjYvtvXQvy]{Seuil du portail}
Ranald's Grace@Compendium[wfrp4e-core.prayers.hL7B3d7A0sYYjHXn]{Grace de Ranald}
Rhya's Children@Compendium[wfrp4e-core.prayers.qB1T6ii29jreZBRP]{Enfants de Rhya}
Rhya's Harvest@Compendium[wfrp4e-core.prayers.OiMiQmsv1mut24jD]{Récolte de Rhya}
Rhya's Shelter@Compendium[wfrp4e-core.prayers.25trttu8NxFQQCo9]{Abri de Rhya}
Rhya's Succour@Compendium[wfrp4e-core.prayers.pBWXlJDOE7tfl8hP]{Secours de Rhya}
Rhya's Touch@Compendium[wfrp4e-core.prayers.0uT3mzx8v4H3gVQj]{Caresse de Rhya}
Rhya's Union@Compendium[wfrp4e-core.prayers.dDxhGgBBM9CugxsH]{Union de Rhya}
Rich Man, Poor Man, Beggar Man, Thief@Compendium[wfrp4e-core.prayers.QSwJNH8sotKjtdi4]{Riche, Pauvre, Mendiant, Voleur}
Sea Legs@Compendium[wfrp4e-core.prayers.VUyCJ5LRPkuC5iZx]{Mer déchaînée}
Shackles of Truth@Compendium[wfrp4e-core.prayers.oI3iwxVEXHRLSael]{Entraves à la Vérité}
Shallya's Tears@Compendium[wfrp4e-core.prayers.YAauxOwJJa3JahxQ]{Larmes de Shallya}
Shield of Myrmidia@Compendium[wfrp4e-core.prayers.V8GCeqgk1FNGFg76]{Bouclier de Myrmidia}
Sigmar's Fiery Hammer@Compendium[wfrp4e-core.prayers.WgZx3xma6vYGz17e]{Marteau Ardent de Sigmar}
Soulfire@Compendium[wfrp4e-core.prayers.5fVTY8TSua3trOW8]{Soufre}
Spear of Myrmidia@Compendium[wfrp4e-core.prayers.BVZWihaal1zq3aJs]{Lance de Myrmidia}
Stay Lucky@Compendium[wfrp4e-core.prayers.FfGboPdR54WHtkAE]{Que la Chance Persiste}
Stay Morr's Hand@Compendium[wfrp4e-core.prayers.SjKFVBXgLC51dnQz]{Main de Morr}
Sword of Justice@Compendium[wfrp4e-core.prayers.o5soyuEJoUk9HmCC]{Epée de Justice}
Tanglefoot@Compendium[wfrp4e-core.prayers.ONz21FviMRk3AyvE]{Enchevêtrement}
The Snow King's Judgement@Compendium[wfrp4e-core.prayers.GVMPSJwgscMVJzpX]{Jugement du Roi de la Neige}
Tooth and Claw@Compendium[wfrp4e-core.prayers.PcKMAEF6UoaPSK6d]{Dent et Griffe}
Truth Will Out@Compendium[wfrp4e-core.prayers.DA4ZB3HkOh51vhuB]{La Vérité Eclatera}
Twin-tailed Comet@Compendium[wfrp4e-core.prayers.rjkMzFwN1trbSLL8]{Comètes à Deux-Queues}
Ulric's Fury@Compendium[wfrp4e-core.prayers.F6iJdTrvBvGQ54G3]{Fureur d'Ulric}
Unblemished Innocence@Compendium[wfrp4e-core.prayers.SItGUVYokyOo7csk]{Inocence Immaculée}
Vanquish the Unrighteous@Compendium[wfrp4e-core.prayers.I8YPP2uRmUKyHEq2]{Vaincre les Impies}
Waterwalk@Compendium[wfrp4e-core.prayers.iWVQRVDVDCx1SyPA]{Marcher sur les Eaux}
Winter's Bite@Compendium[wfrp4e-core.prayers.rrfrmqCpy10u7c9o]{Morsure de l'Hiver}
Wisdom of the Owl@Compendium[wfrp4e-core.prayers.fAlQcNUb6TZtPKqk]{Sagesse de la Chouette}
You Ain’t Seen Me, Right?@Compendium[wfrp4e-core.prayers.fABd17NZvg2uUReL]{Vous ne m'avez pas vu, N'est ce pas ?}
"} -{"_id":"VmBVwV9hT2OvecVy","name":"Traduction des Bestiaire","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Basilisk@Compendium[wfrp4e-core.bestiary.z8f3vySKIpTxGr62]{Basilic}
Bear@Compendium[wfrp4e-core.bestiary.NtEj1B9oWBRWXZZn]{Ours}
Bloodletter of Khorne@Compendium[wfrp4e-core.bestiary.KZkuwdOYmE3nwB2n]{Bloodletter de Khorne}
Boar@Compendium[wfrp4e-core.bestiary.7629Eaow3acVS59H]{Sanglier}
Bog Octopus@Compendium[wfrp4e-core.bestiary.FmEDHnfAe2iIugpt]{Pieuvre des Tourbières}
Bray-Shaman@Compendium[wfrp4e-core.bestiary.cHVOdcEkuatqjYV1]{Chaman-Bray}
Cairn Wraith@Compendium[wfrp4e-core.bestiary.hMbcLVjk7eUdxtqC]{Spectre de Cairn}
Cave Squig@Compendium[wfrp4e-core.bestiary.VMceSpLje0J7lfP0]{Squig des Cavernes}
Chaos Warrior@Compendium[wfrp4e-core.bestiary.a05lQsGjSv62wF0U]{Guerrier du Chaos}
Clanrat@Compendium[wfrp4e-core.bestiary.F1vAZZcmVKkRw8xn]{Guerrier des Clans}
Crypt Ghoul@Compendium[wfrp4e-core.bestiary.6B7LMdYtunAftsFN]{Goule de Crypte}
Cultist@Compendium[wfrp4e-core.bestiary.jfMhkQGzjFWDxVOm]{Cultiste}
Daemonette of Slaanesh@Compendium[wfrp4e-core.bestiary.8gG2Wim6wAlJWRax]{Démonette of Slaanesh}
Demigryph@Compendium[wfrp4e-core.bestiary.MLtDY4bwzGQpaABN]{Demigriffon}
Dire Wolf@Compendium[wfrp4e-core.bestiary.umddAQkmxVYG0AzO]{Loup funeste}
Dog@Compendium[wfrp4e-core.bestiary.R1iWvfV9EvgIc8bJ]{Chien}
Dragon@Compendium[wfrp4e-core.bestiary.LZttdCIxmFr1sGsS]{Dragon}
Fenbeast@Compendium[wfrp4e-core.bestiary.HKSn8iNSS9WcAuJc]{Bête des marais}
Fimir@Compendium[wfrp4e-core.bestiary.kt9ob9BdK6zLDWxn]{Fimir}
Fr'hough Mournbreath@Compendium[wfrp4e-core.bestiary.vK0WXrRDUjztB6QK]{Fr'hough Mournbreath}
Ghost@Compendium[wfrp4e-core.bestiary.GgSxlomoV220kd3G]{Fantôme}
Giant@Compendium[wfrp4e-core.bestiary.HZfZaCjdniz5Z4CP]{Géant}
Giant Rat@Compendium[wfrp4e-core.bestiary.oenbbB0PitRWUBfZ]{Rat géant}
Giant Spider@Compendium[wfrp4e-core.bestiary.VPVnyae6VHeD9cEP]{Araignée Géante}
Goblin@Compendium[wfrp4e-core.bestiary.zzdOpKqBC28J66Mn]{Gobelin}
Gor@Compendium[wfrp4e-core.bestiary.R37OtN5gmPWCYOP3]{Gor}
Griffon@Compendium[wfrp4e-core.bestiary.8g9rnHLiZ1pJcPPt]{Griffon}
Hippogryph@Compendium[wfrp4e-core.bestiary.RiXpMLex8SZf6gaQ]{Hippogryffe}
Horse@Compendium[wfrp4e-core.bestiary.b1R5sW6lYIViJ2ki]{Cheval}
Hydra@Compendium[wfrp4e-core.bestiary.A4G4bTYxot3ZygZO]{Hydre}
Jabberslythe@Compendium[wfrp4e-core.bestiary.9q8QzWB4o7aj6ZxL]{Jabberslythe}
Manticore@Compendium[wfrp4e-core.bestiary.XtVkAVgZRIIgrBXb]{Manticore}
Minotaur@Compendium[wfrp4e-core.bestiary.cAK1bMj1ne7HPcxI]{Minotaure}
Mutant@Compendium[wfrp4e-core.bestiary.P0GkA7DPaLbeOTkf]{Mutant}
Ogre@Compendium[wfrp4e-core.bestiary.nPvDzBcqDGuRaS7x]{Ogre}
Orc@Compendium[wfrp4e-core.bestiary.E7BiDqsB55BrOQut]{Orc}
Pegasus@Compendium[wfrp4e-core.bestiary.Yee9gwxJUceGbnO2]{Pégase}
Pigeon@Compendium[wfrp4e-core.bestiary.ge5zXH2qboxaac7v]{Pigeon}
Rat Ogre@Compendium[wfrp4e-core.bestiary.VfJgGmCTWqb0IDSW]{Rat Ogre}
Skeleton@Compendium[wfrp4e-core.bestiary.Mt5JAoOSaEH1PdcP]{Squelette}
Slenderthigh Whiptongue@Compendium[wfrp4e-core.bestiary.28MwFcDPwpcO12kt]{Slenderthigh Whiptongue}
Snake@Compendium[wfrp4e-core.bestiary.AAiKqD1IoweDpJI7]{Serpent}
Snotling@Compendium[wfrp4e-core.bestiary.wdnXbjtKK7MtsZzc]{Snotling}
Stormvermin@Compendium[wfrp4e-core.bestiary.kl4qHg0mqWOApBqH]{Vermine de choc}
Tomb Banshee@Compendium[wfrp4e-core.bestiary.TWy5l4uYTRAtjfit]{Banshee}
Troll@Compendium[wfrp4e-core.bestiary.7qslmdLa7so3BmFk]{Troll}
Ungor@Compendium[wfrp4e-core.bestiary.vrYs3cbxvXtre6rv]{Ungor}
Vampire@Compendium[wfrp4e-core.bestiary.T5qAtpoKtB8iwTBd]{Vampire}
Varghulf@Compendium[wfrp4e-core.bestiary.XoSSlIsqXkiBlycn]{Chauve-Souris Vampire}
Wolf@Compendium[wfrp4e-core.bestiary.lSvYEInG8sZ03vqd]{Loup}
Wyvern@Compendium[wfrp4e-core.bestiary.KeB0khEeq462qTJw]{Vouivre}
Zombie@Compendium[wfrp4e-core.bestiary.T79RqnDOAQLn3I1s]{Zombie}
"} -{"_id":"XriaVUeLgTL0adB7","name":"Traduction des Blessures","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Amputated Part@Compendium[wfrp4e-core.injuries.04OvfETcxQK8UMcR]{Oreille Amputée}
Amputated Part@Compendium[wfrp4e-core.injuries.8INWQxvtMaK9oeV4]{Dent perdue}
Amputated Part@Compendium[wfrp4e-core.injuries.8sM5Mdk6gP6mdjoM]{Main Amputée}
Amputated Part@Compendium[wfrp4e-core.injuries.C0BX3ywcMgTUWKXJ]{Pied Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.EnqT2PdAvzbd7Rok]{Orteil Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.ISdiZbcuTA16EyDS]{Langue coupée}
Amputated Part@Compendium[wfrp4e-core.injuries.JaadlZPkwb5ozp4f]{Nez Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.KauMO1CodRLWmhv4]{Bras Amputé}
Amputated Part@Compendium[wfrp4e-core.injuries.ryG4x0tj6psMSXI2]{Doigt Amputée}
Amputated Part@Compendium[wfrp4e-core.injuries.uTJccLaYFfaJReIg]{Oeil crevé}
Amputated Part@Compendium[wfrp4e-core.injuries.xTtDVDXCClQieIW5]{Jambe Amputée}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.2A7SW9eXsm7MvLsk]{Bras Fracturé (Majeure)}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.AoJLxDfZtmWXCiDi]{Jambe Fracturée (Majeure)}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.B4EzqsaO3Q0okZ9d]{Fracture Crânienne (Majeure)}
Broken Bone (Major)@Compendium[wfrp4e-core.injuries.rIJz5nxmvxZTozmB]{Torse Fracturé (Majeure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.6M98mPfnL3hmXW3g]{Jambe Fracturée (Mineure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.FmmVJn6T63vOD2Q6]{Bras Fracturé (Mineure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.IEK2WP1ysSIX1gie]{Torse Fracturé (Mineure)}
Broken Bone (Minor)@Compendium[wfrp4e-core.injuries.mS1aAjNcH9zZK3Hq]{Fracture Crânienne (Mineure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.XSlFkJD3Ef842LZo]{Déchirure musculaire Jambe (Majeure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.fTLRTydQWwFSrMjV]{Déchirure Musculaire Bras (Majeure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.kCmBuxQqSXPqfgJ4]{Déchirure Musculaire Torse (Majeure)}
Torn Muscle (Major)@Compendium[wfrp4e-core.injuries.uijeixndSjrnRAK2]{Déchirure Musculaire Tête (Majeure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.HjBumJm1eqc8qbzJ]{Déchirure Musculaire Torse (Mineure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.JMm9hqyAX6HBTqZO]{Déchirure Musculaire Bras (Mineure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.hPEpGFB9GuYI3kOC]{Déchirure Musculaire Tête (Mineure)}
Torn Muscle (Minor)@Compendium[wfrp4e-core.injuries.rlXUw5Bgz2xUjVbU]{Déchirure musculaire Jambe (Mineure)}
"} -{"_id":"i0r3aVW8TFXHKCvr","name":"Traduction des Carrières","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Abbess@Compendium[wfrp4e-core.careers.TDErU66ZoIirO2dF]{Abbesse}
Advisor@Compendium[wfrp4e-core.careers.TolERlCR35zIf9G4]{Conseiller}
Agent@Compendium[wfrp4e-core.careers.4YnbaP9MXqU4NBpt]{Agent secret}
Agitator@Compendium[wfrp4e-core.careers.PmyKqVD6NOb2RzYh]{Agitateur}
Aide@Compendium[wfrp4e-core.careers.WBA0vgLdGsJ32ccS]{Assistant}
Ambassador@Compendium[wfrp4e-core.careers.pI8vGV2VqT3BvnE8]{Ambassadeur}
Apothecary@Compendium[wfrp4e-core.careers.0Y29f5H8h6lyfT9f]{Apothicaire}
Apothecary's Apprentice@Compendium[wfrp4e-core.careers.Sb0vJ3jB6n4wJwwy]{Apprenti Apothicaire}
Apothecary-General@Compendium[wfrp4e-core.careers.y0V0xRFindJiBUDz]{Eminent Apothicaire}
Apprentice Artisan@Compendium[wfrp4e-core.careers.AFv0J8Mq9cbmNEVc]{Apprenti Artisan}
Apprentice Artist@Compendium[wfrp4e-core.careers.XYkcst2gjS4QUyZI]{Artiste apprenti}
Artisan@Compendium[wfrp4e-core.careers.wwt4F5amY5sxbXsq]{Artisan}
Artist@Compendium[wfrp4e-core.careers.S0jyd05NzckWVstu]{Artiste}
Assassin@Compendium[wfrp4e-core.careers.HtN6uHPj7sK6EWMZ]{Assassin}
Attendant@Compendium[wfrp4e-core.careers.QvPzxossG9zDSB2o]{Suivant}
Bailiff@Compendium[wfrp4e-core.careers.9UWoLPwYyPV2TRnz]{Bailli}
Bandit King@Compendium[wfrp4e-core.careers.g2vYtD3Mu7ujYTVF]{Roi des bandits}
Barge Master@Compendium[wfrp4e-core.careers.RrZQrPRkSUvqkn8R]{Maître de barge}
Bargeswain@Compendium[wfrp4e-core.careers.yzgbXappuN7MRXUy]{Conducteur de barges}
Barrister@Compendium[wfrp4e-core.careers.qGgpt1BH2y3Q3J0A]{Maître du Barreau}
Bawd@Compendium[wfrp4e-core.careers.FLdR3uEEdQxkZiaP]{Entremetteur}
Beggar@Compendium[wfrp4e-core.careers.QM906gNihyYSbJQ8]{Mendiant}
Beggar King@Compendium[wfrp4e-core.careers.2ye9gbPW4QIR8HYY]{Roi des Mendiants}
Black Marketeer@Compendium[wfrp4e-core.careers.bO6PkXjLPKCwK4QC]{Professionnel du marché noir}
Boat-hand@Compendium[wfrp4e-core.careers.MNaGRYlkySIdA6Nj]{Canotier}
Boatman@Compendium[wfrp4e-core.careers.rxWdmv2tUL0hoAc3]{Batelier}
Boatswain@Compendium[wfrp4e-core.careers.zOfGEVtocyprCAZU]{Maître d'équipage}
Body Snatcher@Compendium[wfrp4e-core.careers.0r2H2xtQ21MqHlRv]{Trafiquant de Cadavres}
Bounty Hunter@Compendium[wfrp4e-core.careers.J02PRoX8q5e0cDv6]{Chasseur de primes}
Bounty Hunter General@Compendium[wfrp4e-core.careers.6Abdn6XfJCSI2rWJ]{Chasseur de primes vétéran}
Braggart@Compendium[wfrp4e-core.careers.qMZiB9eBUEr7omX0]{Matamore}
Brigand@Compendium[wfrp4e-core.careers.0e98xv2tfsDRZ9kU]{Bandit}
Broker@Compendium[wfrp4e-core.careers.7w3Y5lZXMBa7N0uV]{Brocanteur}
Burgomeister@Compendium[wfrp4e-core.careers.Bn5MHz2G7LJZxtpo]{Bourgmestre}
Busker@Compendium[wfrp4e-core.careers.vmFzpNOoQfMELqdM]{Musicien des rues}
Cargo Scavenger@Compendium[wfrp4e-core.careers.WctdOXFfi2ShQLNh]{Charognard de fret}
Cat Burglar@Compendium[wfrp4e-core.careers.s9BcRjM1u2nE0JRD]{Cambrioleur}
Cavalryman@Compendium[wfrp4e-core.careers.RK264JugQroGklvh]{Cavalier}
Chancellor@Compendium[wfrp4e-core.careers.SM95bBsq3ZUFo3YB]{Chancelier}
Charlatan@Compendium[wfrp4e-core.careers.HoIgGN5ORog5dkIl]{Charlatan}
Chartered Engineer@Compendium[wfrp4e-core.careers.APKQuY39j7RHzJZD]{Ingénieur Agrée}
Clerk@Compendium[wfrp4e-core.careers.0KNI4TzKqL2ZQfVl]{Greffier}
Coach Master@Compendium[wfrp4e-core.careers.g7Sts6Gzrcg4oDDI]{Maître cocher}
Coachman@Compendium[wfrp4e-core.careers.xyIZu4DfQSMtdH2t]{Cocher}
Con Artist@Compendium[wfrp4e-core.careers.RdnDGTwpYFhCID6N]{Arnaqueur}
Councilor@Compendium[wfrp4e-core.careers.gb3Dy4ZgfB7VfBTM]{Echevin}
Counsellor@Compendium[wfrp4e-core.careers.G9PT2bovEv02sVJJ]{Consultant}
Courier@Compendium[wfrp4e-core.careers.KsiV56hwdm5dZ1RO]{Estafette}
Courier-Captain@Compendium[wfrp4e-core.careers.8rVR4gVhsWeLo5Sf]{Messager vétéran}
Court Physician@Compendium[wfrp4e-core.careers.9XJ7Qs6pY6IO01u6]{Médecin de la cour}
Crime Lord@Compendium[wfrp4e-core.careers.SxQH3QslvNQaDZQK]{Baron du crime}
Custodian@Compendium[wfrp4e-core.careers.WvEHWvF7hoyNChqj]{Gardien}
Daemon Slayer@Compendium[wfrp4e-core.careers.eIPqpYlN3H3CVCe4]{Tueur de Démons}
Demagogue@Compendium[wfrp4e-core.careers.iW9bvaUXQ4QsZ3Re]{Démagogue}
Detective@Compendium[wfrp4e-core.careers.fiHq2JGODlbQRdKh]{Détective}
Diplomat@Compendium[wfrp4e-core.careers.WpZ7nJsXYukA4hQ9]{Diplomate}
Dock Master@Compendium[wfrp4e-core.careers.9PTQfMr98E3ei3Fo]{Maître des docks}
Dockhand@Compendium[wfrp4e-core.careers.p2PKXr5CDwln9AWS]{Porteur}
Doktor@Compendium[wfrp4e-core.careers.bVzgXlt8eRGyXLLC]{Docteur en médécine}
Dragon Slayer@Compendium[wfrp4e-core.careers.nWFtlLdrGOhIJsMd]{Tueur de Dragons}
Duelist@Compendium[wfrp4e-core.careers.nh8fc9wESGUgOnIh]{Duelliste}
Duelmaster@Compendium[wfrp4e-core.careers.DWAc2CYtbwx7zMwl]{Maître duelliste}
Engineer@Compendium[wfrp4e-core.careers.ImUesrX52TXQyzvM]{Ingénieur}
Entertainer@Compendium[wfrp4e-core.careers.pru2uoIq7hM13pYm]{Saltimbanque}
Envoy@Compendium[wfrp4e-core.careers.E3z0o7AJ8cAFYKda]{Emissaire}
Explorer@Compendium[wfrp4e-core.careers.RGrmA9jAFzrR5tH5]{Explorateur}
Exterminator@Compendium[wfrp4e-core.careers.vXxw8seyOyGKaFGf]{Exterminateur}
Fellow@Compendium[wfrp4e-core.careers.txoNWW53klRbo49P]{Chercheur}
Fence@Compendium[wfrp4e-core.careers.uNG01MDCaG4zcs6U]{Receleur}
Fencer@Compendium[wfrp4e-core.careers.UPATU6CmkbK1mNBe]{Escrimeur}
First Knight@Compendium[wfrp4e-core.careers.GPhqluMBhCeTnyNJ]{Chevalier commandeur}
Flagellant@Compendium[wfrp4e-core.careers.j3PetZr6vZXRutml]{Flagellant}
Foreman@Compendium[wfrp4e-core.careers.CJDvhhZbQ0UxxZKc]{Contremaître}
Fortune Teller@Compendium[wfrp4e-core.careers.jyfMHnPojhZVwF07]{Voyant}
Gang Boss@Compendium[wfrp4e-core.careers.O0FIdOQphDl9hozq]{Boss de gang}
Giant Slayer@Compendium[wfrp4e-core.careers.d0uT5dtFmIbkbJ7l]{Tueur de Géants}
Governor@Compendium[wfrp4e-core.careers.gWvUkc6mXh8LbsR9]{Gouverneur}
Grave Robber@Compendium[wfrp4e-core.careers.eI3ibXzGlozn6GqV]{Pilleur de tombes}
Greenfish@Compendium[wfrp4e-core.careers.c6OwfEq0g8FcpxxC]{Alevin}
Guard@Compendium[wfrp4e-core.careers.9q1yLMpfhX1bqvth]{Garde}
Guard Officer@Compendium[wfrp4e-core.careers.rAfHb0jmWhNfXaBl]{Officier de la garde}
Guide@Compendium[wfrp4e-core.careers.D8Bx5CgvvMpIkwSq]{Coureur de bois}
Guildmaster@Compendium[wfrp4e-core.careers.2Ee9cU6fSa4Vecn7]{Maître de Guilde}
Hedge Apprentice@Compendium[wfrp4e-core.careers.QreTSlhgK9IfwTJa]{Apprenti Sorcier de Village}
Hedge Master@Compendium[wfrp4e-core.careers.MvMAvys9IhMIgNqX]{Maître Sorcier de village}
Hedge Witch@Compendium[wfrp4e-core.careers.7LERztK8LMIMwo4l]{Sorcier de village}
Hedgewise@Compendium[wfrp4e-core.careers.fa7YavtVsSc8QI7Q]{Sage de village}
Herald@Compendium[wfrp4e-core.careers.loPti7wWf1qN01zO]{Héraut}
Herb Gatherer@Compendium[wfrp4e-core.careers.1cjF3aoozvxnOMb1]{Cueilleur}
Herb Master@Compendium[wfrp4e-core.careers.eBirX8K2qBxdOB45]{Maître Herboriste}
Herbalist@Compendium[wfrp4e-core.careers.UPF7jOq9bqc6ABgb]{Herboriste}
Herbwise@Compendium[wfrp4e-core.careers.un8r6R9QLrACK2pv]{Herboriste suprême}
Hexer@Compendium[wfrp4e-core.careers.MsrHDvVgAb8tUJec]{Ensorceleur}
High Priest@Compendium[wfrp4e-core.careers.lfRarot8alDa1WjG]{Haut Prêtre}
Hitman@Compendium[wfrp4e-core.careers.33COmPgYTVuXXIpK]{Tueur à gages}
Honor Guard@Compendium[wfrp4e-core.careers.pUf4a817P7iydsbN]{Garde d'honneur}
Horseman@Compendium[wfrp4e-core.careers.XuIDL2gpiFMleuVV]{Page}
Huffer@Compendium[wfrp4e-core.careers.vguGSNyf0hfxZ6RM]{Nautonier}
Hunter@Compendium[wfrp4e-core.careers.CZByQsYSeVyCVbzO]{Chasseur}
Huntsmaster@Compendium[wfrp4e-core.careers.H9NZXz02SZXca8xp]{Maître Chasseur}
Hustler@Compendium[wfrp4e-core.careers.HVa2264i6PF7C8hz]{Prostitué}
Informer@Compendium[wfrp4e-core.careers.aOVRZJopZeR0acJs]{Informateur}
Initiate@Compendium[wfrp4e-core.careers.u2DMz1B0DyUHBi6Z]{Initié}
Inquisitor@Compendium[wfrp4e-core.careers.FA6vYposVbL3caNR]{Inquisiteur}
Interrogator@Compendium[wfrp4e-core.careers.FbtA6PFHSH6iWaZk]{Interrogateur}
Investigator@Compendium[wfrp4e-core.careers.a5B7FYYaSarc95Xc]{Enquêteur}
Judge@Compendium[wfrp4e-core.careers.vcHUiputmUcPem6f]{Juge}
Judicial Champion@Compendium[wfrp4e-core.careers.ZRS6U3ECK8n4mFZ4]{Champion de justice}
Knight@Compendium[wfrp4e-core.careers.FhK6JOd3LSTlHwoa]{Chevalier}
Knight of the Inner Circle@Compendium[wfrp4e-core.careers.Esy17RVOZQw2gShT]{Chevalier du cercle intérieur}
Landsman@Compendium[wfrp4e-core.careers.1ZCpJlq7SU5Cj3te]{Marin d'eau douce}
Lawyer@Compendium[wfrp4e-core.careers.cxwio1lR9eZdrQiy]{Juriste}
Lector@Compendium[wfrp4e-core.careers.UptqmlN6znCIOxNW]{Lecteur}
Light Cavalry Officer@Compendium[wfrp4e-core.careers.mVx5unQ28vIpavOo]{Officier de cavalerie}
Light Cavalry Sergeant@Compendium[wfrp4e-core.careers.wPYrDuwdW4nJRcJt]{Sergent de cavalerie}
Maestro@Compendium[wfrp4e-core.careers.4mlbPdEWU4d7Lh7Y]{Maestro}
Magistrate@Compendium[wfrp4e-core.careers.USvstPFloo15DIJ1]{Magistrat}
Magnate@Compendium[wfrp4e-core.careers.WCS3mz3qmQbCc9j4]{Magnat}
Master Apothecary@Compendium[wfrp4e-core.careers.oA7LO3muxy9LNEJD]{Maitre Apothicaire}
Master Artisan@Compendium[wfrp4e-core.careers.9xszp5m5KRmj3bxX]{Maître Artisan}
Master Artist@Compendium[wfrp4e-core.careers.VeKZTgIQSXEDte4i]{Maître Artiste}
Master Beggar@Compendium[wfrp4e-core.careers.xzfS4Gm90R7ViMI6]{Maître Mendiant}
Master Bounty Hunter@Compendium[wfrp4e-core.careers.taJXX3aaKZfoNCBs]{Maître chasseur de primes}
Master Engineer@Compendium[wfrp4e-core.careers.NIom9HWXYywyGMLR]{Maître Ingénieur}
Master Fence@Compendium[wfrp4e-core.careers.HN1cbMIPZ25m7ABR]{Maître receleur}
Master Investigator@Compendium[wfrp4e-core.careers.jGYtrDe0sNACF2pB]{Maître investigateur}
Master Merchant@Compendium[wfrp4e-core.careers.mE6PJ1yIScBu6Tye]{Maître Marchand}
Master Miner@Compendium[wfrp4e-core.careers.hUZ9lx9v2AGrfHWU]{Maître Mineur}
Master Pedlar@Compendium[wfrp4e-core.careers.3VkgBaW5wgaSXlyS]{Maître colporteur}
Master Pilot@Compendium[wfrp4e-core.careers.ISxI2dNkiRQn0P4n]{Maître nocher}
Master Smuggler@Compendium[wfrp4e-core.careers.QUjbPexRsKhqVDgq]{Maître contrebandier}
Master Thief@Compendium[wfrp4e-core.careers.4xxp72XMEqj6y25g]{Maître voleur}
Master Wizard@Compendium[wfrp4e-core.careers.1DIMUn1Cj5rohWJV]{Maître Sorcier}
Menial@Compendium[wfrp4e-core.careers.6846o00SGHkRuZB8]{Domestique}
Merchant@Compendium[wfrp4e-core.careers.eFMNueIi3zp6vs6e]{Marchand}
Merchant Prince@Compendium[wfrp4e-core.careers.8llxzvd0M3P59ctr]{Prince Marchand}
Messenger@Compendium[wfrp4e-core.careers.F6Q1mrBHZvKzHDkT]{Messager}
Mine Foreman@Compendium[wfrp4e-core.careers.3qe5qu3es4bnKwwR]{Contremaître de Mine}
Miner@Compendium[wfrp4e-core.careers.oVOBKzVocBrnrpZX]{Mineur}
Mystic@Compendium[wfrp4e-core.careers.5C8dpF6YYiz7clnl]{Mystique}
Noble@Compendium[wfrp4e-core.careers.GYIOEWXugK9Dofg7]{Noble}
Noble Lord@Compendium[wfrp4e-core.careers.huYKd0sYPnF4ReB0]{Noble Seigneur}
Novitiate@Compendium[wfrp4e-core.careers.OERQpwcRziRTeQRb]{Novice}
Novitiate@Compendium[wfrp4e-core.careers.Zst72kU4epCqabW9]{Novice}
Nun@Compendium[wfrp4e-core.careers.Lkk2NQC1dkUb6yOS]{Nonne}
Officer@Compendium[wfrp4e-core.careers.RjhqM27l48WfRepK]{Officier}
Outlaw@Compendium[wfrp4e-core.careers.9631KpCQa7jvhmgS]{Hors-la-loi}
Outlaw Chief@Compendium[wfrp4e-core.careers.qXOceBlJefsWFlUI]{Chef de bande}
Pamphleteer@Compendium[wfrp4e-core.careers.OecIbh44q1oXuOAT]{Pamphlétaire}
Pathfinder@Compendium[wfrp4e-core.careers.nCijLyJxZ8UfeNfV]{Guide}
Pauper@Compendium[wfrp4e-core.careers.s6I8dderSh1Iu3fe]{Indigent}
Peasant@Compendium[wfrp4e-core.careers.wlH2GnvZKA4zvdn8]{Paysan}
Pedlar@Compendium[wfrp4e-core.careers.XseDIYgXCdNuV0pL]{Colporteur}
Penitent@Compendium[wfrp4e-core.careers.zZ2QaJ9EHJlh1QbW]{Pénitent}
Physician@Compendium[wfrp4e-core.careers.8bbV2yHKeT6QeOKd]{Médecin}
Physician's Apprentice@Compendium[wfrp4e-core.careers.qwNXUbgbXcegmh8l]{Apprenti Medecin}
Pilot@Compendium[wfrp4e-core.careers.PIPU1glIR4jx1Z2E]{Pilote}
Pit Champion@Compendium[wfrp4e-core.careers.KVAOh3zmvzqAbhBr]{Champion de Fosse}
Pit Fighter@Compendium[wfrp4e-core.careers.rCoMyLXDnggBFqUB]{Gladiateur}
Pit Legend@Compendium[wfrp4e-core.careers.QdEWdjfjIdrQAKUO]{Légende de la Fosse}
Postilion@Compendium[wfrp4e-core.careers.GPruqXhcAaHQYucf]{Postillon}
Priest@Compendium[wfrp4e-core.careers.AtWEBwIobFnhbQy7]{Prêtre}
Priest Captain@Compendium[wfrp4e-core.careers.20R2NFpiGkiyhwdE]{Prêtre Capitaine}
Priest Sergeant@Compendium[wfrp4e-core.careers.6D6FQRqfc6F3L5vZ]{Prêtre Sergent}
Prioress General@Compendium[wfrp4e-core.careers.qG1ICjU4hcAhrpmW]{Prieure Générale}
Procurer@Compendium[wfrp4e-core.careers.BLHdxZVBGTrrGdxO]{Souteneur}
Professor@Compendium[wfrp4e-core.careers.IeHydxYWUYrmEdPy]{Pofesseur}
Prophet of Doom@Compendium[wfrp4e-core.careers.zDdI21hXufHuDarS]{Prophète du Destin}
Prospector@Compendium[wfrp4e-core.careers.tJEgkiklMFep6FMN]{Prospecteur}
Protagonist@Compendium[wfrp4e-core.careers.ZydFv9TTPvmihnR1]{Spadassin}
Prowler@Compendium[wfrp4e-core.careers.Ahe89KQIXpeadscI]{Rôdeur}
Pugilist@Compendium[wfrp4e-core.careers.PGhUdEZmFUe7vTWK]{Pugiliste}
Rabble Rouser@Compendium[wfrp4e-core.careers.KuG92SPVmXnbtdF5]{Fauteur de Troubles}
Racketeer@Compendium[wfrp4e-core.careers.5WR3ZoMOeEzz5iPc]{Rançonneur}
Rat Catcher@Compendium[wfrp4e-core.careers.rydO4uzu7Ehatm5t]{Ratier}
Rat Hunter@Compendium[wfrp4e-core.careers.aUb8sUfqyVyjGYO5]{Chasseur de Rat}
Recruit@Compendium[wfrp4e-core.careers.wSEGXXkc6swDkuJJ]{Recrue}
Reeve@Compendium[wfrp4e-core.careers.albRTMyj0Fsr2u6A]{Préfet}
Ringleader@Compendium[wfrp4e-core.careers.Q1sXSEtjvMVxd5xi]{Meneur}
River Elder@Compendium[wfrp4e-core.careers.7A4HCcddeMYG3EZ6]{Sage des rivières}
River Pirate@Compendium[wfrp4e-core.careers.qLoFG3o3tIgiYJOv]{Pirate des rivières}
River Recruit@Compendium[wfrp4e-core.careers.RqHOwFXhYtTWKiNP]{Recrue fluviale}
River Runner@Compendium[wfrp4e-core.careers.v6OhQFxpriyKJyVO]{Coureur de rivières}
Riverguide@Compendium[wfrp4e-core.careers.YCyo4r3rZ2gMUz9Q]{Guide de rivière}
Riverwarden@Compendium[wfrp4e-core.careers.CXSKOpjA7a2kqWSq]{Patrouilleur fluvial}
Riverwise@Compendium[wfrp4e-core.careers.AJTl72JcueF1YGgg]{Sage des rivières}
Riverwoman@Compendium[wfrp4e-core.careers.gmQjHw6wYJu4gd7b]{Femme du fleuve}
Road Captain@Compendium[wfrp4e-core.careers.XV2OQCwhnLVdAgON]{Capitaine de la Route}
Road Sergeant@Compendium[wfrp4e-core.careers.91unnpsRgrNFLZ18]{Sergent de la route}
Road Warden@Compendium[wfrp4e-core.careers.fyeFolXwsxNfU30b]{Patrouilleur routier}
Route Master@Compendium[wfrp4e-core.careers.G6o2q7tPhw4sgdOY]{Maître des routes}
Runner@Compendium[wfrp4e-core.careers.t87v2oOpnztzrBPW]{Coureur}
Sage@Compendium[wfrp4e-core.careers.L4FGhEguFJVNWk6O]{Sage}
Scholar@Compendium[wfrp4e-core.careers.zmC4qBprmNxFNo2W]{Erudit}
Scion@Compendium[wfrp4e-core.careers.BmttbXNr3ZwydNUo]{Héritier}
Scoundrel@Compendium[wfrp4e-core.careers.yRRDOZ82C4ZLR6ju]{Vaurien}
Scout@Compendium[wfrp4e-core.careers.4bCFwNAaudD9wb40]{Eclaireur}
Seaman@Compendium[wfrp4e-core.careers.w5rHYhqw0bT15LCr]{Marin}
Seer@Compendium[wfrp4e-core.careers.zS1aRUvoj8fJIF3P]{Prophète}
Seneschal@Compendium[wfrp4e-core.careers.m2viFvv0MaXuxRit]{Sénéchal}
Sentry@Compendium[wfrp4e-core.careers.gTxHixydLdCoWRmj]{Sentinelle}
Sergeant@Compendium[wfrp4e-core.careers.8vPHNztfk9x7K2Na]{Sergent}
Servant@Compendium[wfrp4e-core.careers.S8MLQJK4n7pTGKHn]{Serviteur}
Sewer Jack@Compendium[wfrp4e-core.careers.fGwpty6AE9ZmRs9B]{Egoutier}
Ship's Master@Compendium[wfrp4e-core.careers.Ot8ZcvD78wPnJzkE]{Commandant de navire}
Shipsword@Compendium[wfrp4e-core.careers.FOGWbyemEGAkK746]{Abordeur}
Shipsword Master@Compendium[wfrp4e-core.careers.VIEEddQ4IW7Fjq2b]{Maître abordeur}
Sleuth@Compendium[wfrp4e-core.careers.AQmofCPcdFZNXCV6]{Limier}
Smuggler@Compendium[wfrp4e-core.careers.pVOuGshzCvWjNv2q]{Contrebandier}
Smuggler King@Compendium[wfrp4e-core.careers.XCfd7wimn69mZW9T]{Roi des contrebandiers}
Soldier@Compendium[wfrp4e-core.careers.FgVH1pPS9oRq0o2Z]{Soldat}
Spy@Compendium[wfrp4e-core.careers.QXZoHPoHFmDuTHpy]{Espion}
Spymaster@Compendium[wfrp4e-core.careers.cd8BJlDQUF1xoiSm]{Maître Espion}
Squire@Compendium[wfrp4e-core.careers.FrPCbQ7fq1Fchthn]{Ecuyer}
Stevedore@Compendium[wfrp4e-core.careers.oce4kxrsImFS7zlW]{Débardeur}
Steward@Compendium[wfrp4e-core.careers.WO6jKc1N37H2ZzwN]{Régisseur}
Student@Compendium[wfrp4e-core.careers.PiHjiktsOzTTn6U7]{Etudiant érudit}
Student Engineer@Compendium[wfrp4e-core.careers.4TgG1CMJ0zoVPbiZ]{Etudiant}
Student Lawyer@Compendium[wfrp4e-core.careers.ZSet34kUw1Bu1PDx]{Juriste étudiant}
Swindler@Compendium[wfrp4e-core.careers.5hmNqNxXRy3RjcFV]{Escroc}
Tax Collector@Compendium[wfrp4e-core.careers.kOmgIJIYcylhEUWK]{Percepteur}
Thief@Compendium[wfrp4e-core.careers.KEEmMZK5mpcoRU69]{Voleur}
Thief-taker@Compendium[wfrp4e-core.careers.t1TD7YCRFbjiicvi]{Chasseur de voleurs}
Thug@Compendium[wfrp4e-core.careers.VPKFN1VePTy3CY7V]{Voyou}
Toll Keeper@Compendium[wfrp4e-core.careers.4a69lleVImbw3JhI]{Garde barrière}
Tomb Robber@Compendium[wfrp4e-core.careers.FaAdpduKD4aUWAOg]{Pilleur de tombeaux}
Town Councilor@Compendium[wfrp4e-core.careers.Gwp6K1rKShTQshqB]{Conseiller municipal}
Townsman@Compendium[wfrp4e-core.careers.WuNc5hU1HoUS5gPa]{Bourgeois}
Tracker@Compendium[wfrp4e-core.careers.mokSUD62vhpKue2Z]{Pisteur}
Trader@Compendium[wfrp4e-core.careers.2aKiMpKfVnXWNfmy]{Négociant}
Trapper@Compendium[wfrp4e-core.careers.LYBKDZ0AhutYewfD]{Trappeur}
Treasure Hunter@Compendium[wfrp4e-core.careers.ufAAH4fyE4qfkH2c]{Chasseur de trésor}
Troll Slayer@Compendium[wfrp4e-core.careers.ltGl3eXxujQ23al3]{Tueur de Trolls}
Troubadour@Compendium[wfrp4e-core.careers.bNwRfl5P64gXgZON]{Troubadour}
Troupe Leader@Compendium[wfrp4e-core.careers.dNd0JKvUqjP3kiuy]{Chef de Troupe}
Vagabond@Compendium[wfrp4e-core.careers.eyKlEVLcSOvemRzp]{Vagabond}
Village Elder@Compendium[wfrp4e-core.careers.3UCjABRxB1GhbThg]{Doyen}
Villager@Compendium[wfrp4e-core.careers.TvTXvNwAR0hYz0FM]{Villageois}
Wandering Trader@Compendium[wfrp4e-core.careers.vkfLXwz3Vpi13LqP]{Négociant itinérant}
Warden@Compendium[wfrp4e-core.careers.ET4PZxqQ4RyBBWgN]{Intendant}
Warlock@Compendium[wfrp4e-core.careers.B0RRDSUqaCVp6P7h]{Démoniste}
Warrior Priest@Compendium[wfrp4e-core.careers.y8XGpUCRkxdnn0ys]{Prêtre Guerrier}
Watch Captain@Compendium[wfrp4e-core.careers.MR0d08qmDDbqujmS]{Capitaine de Milice}
Watch Recruit@Compendium[wfrp4e-core.careers.C8pqV1AJgqS6vUd6]{Recrue de la Milice}
Watch Sergeant@Compendium[wfrp4e-core.careers.1N1QMGBQJUV072w4]{Sergent de Milice}
Watchman@Compendium[wfrp4e-core.careers.LobXt1Wa3x3EogpB]{Milicien}
Witch@Compendium[wfrp4e-core.careers.NcLVAmFCMddUGUl3]{Sorcier sauvage}
Witch Hunter@Compendium[wfrp4e-core.careers.fixdd2ulR5HUyeoi]{Répurgateur}
Witchfinder General@Compendium[wfrp4e-core.careers.vsfAkV0SktCjFgKA]{Répurgateur vétéran}
Wizard@Compendium[wfrp4e-core.careers.JeWuOwm0nM4V1brh]{Sorcier}
Wizard Lord@Compendium[wfrp4e-core.careers.bTPBxrayfzeVmGsh]{Seigneur Sorcier}
Wizard's Apprentice@Compendium[wfrp4e-core.careers.WiMLDa950d9wsbbZ]{Apprenti Sorcier}
Wrecker@Compendium[wfrp4e-core.careers.SZLtCpySoeyZ6Sgw]{Naufrageur}
Wrecker Captain@Compendium[wfrp4e-core.careers.ho9cOHfrG2Zbeb7q]{Capitaine Naufrageur}
Wyrd@Compendium[wfrp4e-core.careers.CNoXG2ZZUudm8paf]{Devin}
Zealot@Compendium[wfrp4e-core.careers.UQMYUKgXAi2QFhFn]{Zélote}
"} -{"_id":"2y5tmE1nULbvndIM","name":"Traduction des Compétences","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Animal Care@Compendium[wfrp4e-core.skills.MXy22hFCgntdlQrn]{Soins aux animaux}
Animal Training ( )@Compendium[wfrp4e-core.skills.uZpeJ8P0g10UBRdE]{Dressage ()}
Animal Training (Demigryph)@Compendium[wfrp4e-core.skills.A5I729L56i4WQXfB]{Dressage (Hippogriffe)}
Animal Training (Dog)@Compendium[wfrp4e-core.skills.W0GnDjtcocY6m07J]{Dressage (Chien)}
Animal Training (Horse)@Compendium[wfrp4e-core.skills.6am9EDNE43mzwDvG]{Dressage (Cheval)}
Animal Training (Pegasus)@Compendium[wfrp4e-core.skills.c2HVWH6ZLRn3QjhH]{Dressage (Pégase)}
Animal Training (Pigeon)@Compendium[wfrp4e-core.skills.4HgOG0Ud3V2P52so]{Dressage (Pigeon)}
Art ( )@Compendium[wfrp4e-core.skills.fdq3RFSOKl5b3WzW]{Art ()}
Art (Cartogrpahy)@Compendium[wfrp4e-core.skills.h7OXI7PXcs8EHdxf]{Art (Cartographie)}
Art (Engraving)@Compendium[wfrp4e-core.skills.v2eVrGuRfN4p6NCA]{Art (Gravure)}
Art (Mosaics)@Compendium[wfrp4e-core.skills.GPrunawhB8das1O7]{Art (Mosaïque)}
Art (Painting)@Compendium[wfrp4e-core.skills.bJZ8le54J5OwGqFx]{Art (Peinture)}
Art (Sculpture)@Compendium[wfrp4e-core.skills.sUaPQdDiyWcTzC9p]{Art (Sculpture)}
Art (Tattoo)@Compendium[wfrp4e-core.skills.AaXk4bfDRTPeeYjn]{Art (Tattouage)}
Art (Weaving)@Compendium[wfrp4e-core.skills.RitSkR0YDixuUei9]{Art (Tissage)}
Athletics@Compendium[wfrp4e-core.skills.LGHozP5gmQ8cuDQV]{Athlétisme}
Bribery@Compendium[wfrp4e-core.skills.d3VZwO4Y5JH5DXdT]{Subornation}
Channelling@Compendium[wfrp4e-core.skills.V8eRx66SxB9Jha0Q]{Focalisation}
Channelling ( )@Compendium[wfrp4e-core.skills.3MbQF1W8U18ba9fb]{Focalisation ()}
Channelling (Aqshy)@Compendium[wfrp4e-core.skills.gh91jaxzTBgbMoi5]{Focalisation (Aqshy)}
Channelling (Azyr)@Compendium[wfrp4e-core.skills.hpc8g8Z9rl3fJECS]{Focalisation (Azyr)}
Channelling (Chamon)@Compendium[wfrp4e-core.skills.QJ1sfMkNmIh04nky]{Focalisation (Chamon)}
Channelling (Dhar)@Compendium[wfrp4e-core.skills.dBwnAzhe0bvobgbY]{Focalisation (Dhar)}
Channelling (Ghur)@Compendium[wfrp4e-core.skills.ssCqvqr2ORFX6lPL]{Focalisation (Ghur)}
Channelling (Ghyran)@Compendium[wfrp4e-core.skills.RLSVcLqPvnd1cg4U]{Focalisation (Ghyran)}
Channelling (Hysh)@Compendium[wfrp4e-core.skills.ChI09rjm2afh1bqI]{Focalisation (Hysh)}
Channelling (Shyish)@Compendium[wfrp4e-core.skills.IQ5MxF1XlWoRomfj]{Focalisation (Shyish)}
Channelling (Ulgu)@Compendium[wfrp4e-core.skills.e6uURn9IFt09beNU]{Focalisation (Ulgu)}
Charm@Compendium[wfrp4e-core.skills.exLrBrn2mjb6x2Cq]{Charme}
Charm Animal@Compendium[wfrp4e-core.skills.4IGdIhnwTaZijzg7]{Emprise sur les animaux}
Climb@Compendium[wfrp4e-core.skills.sRuMlaPU5xdIrwhd]{Escalade}
Consume Alcohol@Compendium[wfrp4e-core.skills.R2ytluHiEFF2KQ5e]{Résistance à l'alcool}
Cool@Compendium[wfrp4e-core.skills.pxNjTxsp1Kp0SmQe]{Calme}
Dodge@Compendium[wfrp4e-core.skills.1jCxbFAUuFuAPLJl]{Esquive}
Drive@Compendium[wfrp4e-core.skills.iYan4z52v7HYM9u9]{Conduite d'attelage}
Endurance@Compendium[wfrp4e-core.skills.CcNJsS4jSwB6Ug1J]{Résistance}
Entertain ()@Compendium[wfrp4e-core.skills.0CwV96kTDRF0jUhk]{Divertissement ()}
Entertain (Comedy)@Compendium[wfrp4e-core.skills.1SVd48nGAHbASqr8]{Divertissement (Comédie)}
Entertain (Singing)@Compendium[wfrp4e-core.skills.UFunAopCNaD8Zdc7]{Divertissement (Chant)}
Entertain (Storytelling)@Compendium[wfrp4e-core.skills.qBm2fu3oMhxsDBNQ]{Divertissement (Narration)}
Evaluate@Compendium[wfrp4e-core.skills.bSWoV1IiS5qWNw39]{Evaluation}
Gamble@Compendium[wfrp4e-core.skills.7pQo66cESWttzIlb]{Pari}
Gossip@Compendium[wfrp4e-core.skills.RLQHm1s4IuY9RSr2]{Ragot}
Haggle@Compendium[wfrp4e-core.skills.pKLMbmG3Ivt6mzMf]{Marchandage}
Heal@Compendium[wfrp4e-core.skills.HXZaV1CJhmTvcAz4]{Guérison}
Intimidate@Compendium[wfrp4e-core.skills.I0yPc4PH5erWJLmu]{Intimidation}
Intuition@Compendium[wfrp4e-core.skills.cYtU0ORRFCOpQLWz]{Intuition}
Language ()@Compendium[wfrp4e-core.skills.XQiiwS9m2Du1IMUz]{Langue ()}
Language (Albion)@Compendium[wfrp4e-core.skills.Nemd0MJ4MOcOJYhT]{Langue (Albionais)}
Language (Battle Tongue)@Compendium[wfrp4e-core.skills.nqhgjUbJWglxU59j]{Langue (Bataille)}
Language (Bretonnian)@Compendium[wfrp4e-core.skills.5EvSIh1khpt77uM7]{Langue (Bretonnien)}
Language (Classical)@Compendium[wfrp4e-core.skills.61L9aX2z164cjm7K]{Langue (Classique)}
Language (Elthárin)@Compendium[wfrp4e-core.skills.5MzxtQSzv5RtJGbw]{Langue (Elthárin)}
Language (Estalian)@Compendium[wfrp4e-core.skills.Emd8lVdIpaXTxLwL]{Langue (Estalien)}
Language (Gospodarinyi)@Compendium[wfrp4e-core.skills.EXysjCwmGzCOiRDx]{Langue (Gospodarin)}
Language (Grumbarth)@Compendium[wfrp4e-core.skills.xeGpCLz8uGaZb1nL]{Langue (Grumbarth)}
Language (Khazalid)@Compendium[wfrp4e-core.skills.XzPlUWFDtOOjG98P]{Langue (Khazalid)}
Language (Magick)@Compendium[wfrp4e-core.skills.e3McIND4Rrsn5cE6]{Langue (Magick)}
Language (Mootish)@Compendium[wfrp4e-core.skills.Cg2b92BRjvxYXZiE]{Langue (Halfling)}
Language (Norse)@Compendium[wfrp4e-core.skills.fPVnjkCnm5nKdKBh]{Langue (Norse)}
Language (Queekish)@Compendium[wfrp4e-core.skills.kEI7TLacmDfwcM3A]{Langue (Queekique)}
Language (Reikspiel)@Compendium[wfrp4e-core.skills.I0QRyEA0tk4IAEAn]{Langue (Reikspiel)}
Language (Thieves Tongue)@Compendium[wfrp4e-core.skills.Uxnxmtvshz8OAVaX]{Langue (Langage des voleurs)}
Language (Tilean)@Compendium[wfrp4e-core.skills.12e3H6NX4JH0bwI3]{Langue (Tiléen)}
Language (Wastelander)@Compendium[wfrp4e-core.skills.X16IoUlKcVLI4MRw]{Langue (Wastelander)}
Leadership@Compendium[wfrp4e-core.skills.oMaJZ5cvCJeOUq9H]{Commandement}
Lore ()@Compendium[wfrp4e-core.skills.DRO5DLF6UcfkvNSh]{Savoir ()}
Lore (Engineering)@Compendium[wfrp4e-core.skills.osMw1Be6YgRBolTm]{Savoir (Ingénierie)}
Lore (Geology)@Compendium[wfrp4e-core.skills.VNjHDKWD6sIbF6BI]{Savoir (Géologie)}
Lore (Heraldry)@Compendium[wfrp4e-core.skills.DiP9cmbqUir3HkkK]{Savoir (Généalogie)}
Lore (History)@Compendium[wfrp4e-core.skills.FChdV10BCuXQyUhU]{Savoir (Histoire)}
Lore (Law)@Compendium[wfrp4e-core.skills.2LDCVJQWkTFszMok]{Savoir (Loi)}
Lore (Magick)@Compendium[wfrp4e-core.skills.ZQzRZkB9JK1CveMW]{Savoir (Magick)}
Lore (Metallurgy)@Compendium[wfrp4e-core.skills.nLlRDNRC95plBgXs]{Savoir (Métallurgie)}
Lore (Science)@Compendium[wfrp4e-core.skills.7ToyUcqJDkceoJRd]{Savoir (Science)}
Lore (Theology)@Compendium[wfrp4e-core.skills.d9bGxy6Y3u3rOHIN]{Savoir (Théologie)}
Melee ()@Compendium[wfrp4e-core.skills.F8NfBZdVSEIGCMtu]{Corps à corps ()}
Melee (Basic)@Compendium[wfrp4e-core.skills.rOPmyLWa37e7s9v6]{Corps à corps (Base)}
Melee (Brawling)@Compendium[wfrp4e-core.skills.jLyoyqwmBVPjRjhM]{Corps à corps (Bagarre)}
Melee (Cavalry)@Compendium[wfrp4e-core.skills.rt1yfcjZoeSulddW]{Corps à corps (Cavalerie)}
Melee (Fencing)@Compendium[wfrp4e-core.skills.4mJoPBw4drm1kv2D]{Corps à corps (Escrime)}
Melee (Flail)@Compendium[wfrp4e-core.skills.ZqYYWZuWwqMb3wVf]{Corps à corps (Fléau)}
Melee (Parry)@Compendium[wfrp4e-core.skills.bJBesrdCaDqaXbQg]{Corps à corps (Parade)}
Melee (Polearm)@Compendium[wfrp4e-core.skills.PzimjNx9Ojq4g6mV]{Corps à corps (Armes d'hast)}
Melee (Two-Handed)@Compendium[wfrp4e-core.skills.Lst4xxUcxTYMlD3U]{Corps à corps (A deux mains)}
Navigation@Compendium[wfrp4e-core.skills.zZUX7wO4rOo8k9F0]{Navigation}
Outdoor Survival@Compendium[wfrp4e-core.skills.os4NKy5Oy6sRt1eh]{Survie en extérieur}
Perception@Compendium[wfrp4e-core.skills.Fs06sr7y9JKpVQmB]{Perception}
Perform ()@Compendium[wfrp4e-core.skills.HO8vIjGTHjmenIaV]{Représentation ()}
Perform (Acrobatics)@Compendium[wfrp4e-core.skills.vQtJqX0qb0bbpVDg]{Représentation (Acrobaties)}
Perform (Clowning)@Compendium[wfrp4e-core.skills.c6I7wHp56nulRLic]{Représentation (Pitreries)}
Perform (Dancing)@Compendium[wfrp4e-core.skills.OZMvB887CeshFy7b]{Représentation (Danser)}
Perform (Firebreathing)@Compendium[wfrp4e-core.skills.1dVlA24UQGuWCiPT]{Représentation (Cracheur de feu)}
Perform (Juggling)@Compendium[wfrp4e-core.skills.TXsoAJQZWcilgUli]{Représentation (Jonglage)}
Perform (Miming)@Compendium[wfrp4e-core.skills.qce9bEiaA9ICpl7V]{Représentation (Mime)}
Perform (Rope Walking)@Compendium[wfrp4e-core.skills.nCnEDGtiGYgv80xJ]{Représentation (Funambule)}
Pick Lock@Compendium[wfrp4e-core.skills.AkjRsazdAppqveZu]{Crochetage}
Play ()@Compendium[wfrp4e-core.skills.bBLK2hznjPlby6Jb]{Musicien ()}
Play (Bagpipe)@Compendium[wfrp4e-core.skills.kFfdmvE78pEUVB6f]{Musicien (Cornemuse)}
Play (Harpsichord)@Compendium[wfrp4e-core.skills.GJt5I57Fbb7pj1mF]{Musicien (Clavecin)}
Play (Horn)@Compendium[wfrp4e-core.skills.EsgYCZZbWaDZsLYx]{Musicien (Cor)}
Play (Lute)@Compendium[wfrp4e-core.skills.QXQA1ycrJHzZkIou]{Musicien (Luth)}
Play (Violin)@Compendium[wfrp4e-core.skills.nQPMcmt3Q1SXAzEd]{Musicien (Violon)}
Pray@Compendium[wfrp4e-core.skills.9xR9uO8FIvi4YsJp]{Prière}
Ranged ()@Compendium[wfrp4e-core.skills.Z9hQe46ykQBZneoU]{Projectiles ()}
Ranged (Blackpowder)@Compendium[wfrp4e-core.skills.H2upcZ7q7qAPtPic]{Projectiles (Poudre noire)}
Ranged (Bow)@Compendium[wfrp4e-core.skills.ZQSm2AwrgT2cHG0C]{Projectiles (Arc)}
Ranged (Crossbow)@Compendium[wfrp4e-core.skills.OuDdJRDo3W56zk0Z]{Projectiles (Arbalète)}
Ranged (Engineering)@Compendium[wfrp4e-core.skills.2Y91ebFapH6zRfHk]{Projectiles (Ingénierie)}
Ranged (Entangling)@Compendium[wfrp4e-core.skills.MWyxcAft5lonB1mB]{Projectiles (Entraves)}
Ranged (Explosives)@Compendium[wfrp4e-core.skills.UQgNIecnmaguYegE]{Projectiles (Explosifs)}
Ranged (Sling)@Compendium[wfrp4e-core.skills.KQjZ85kKz42YQGYT]{Projectiles (Fronde)}
Ranged (Throwing)@Compendium[wfrp4e-core.skills.NSnpJQiky8JcMnme]{Projectiles (Lancer)}
Research@Compendium[wfrp4e-core.skills.9tbHTeuvEMZrp0rx]{Recherche}
Ride ()@Compendium[wfrp4e-core.skills.MeXCAQ3wqJzX07X7]{Chevaucher ()}
Ride (Demigryph)@Compendium[wfrp4e-core.skills.yr4ikZaXnYt7kOZd]{Chevaucher (Hippogriffe)}
Ride (Great Wolf)@Compendium[wfrp4e-core.skills.aD6f4BzQlKEGAM8d]{Chevaucher (Grand Loup)}
Ride (Griffon)@Compendium[wfrp4e-core.skills.dfuN0EpNQS6eqCxZ]{Chevaucher (Griffon)}
Ride (Horse)@Compendium[wfrp4e-core.skills.oSbEE6eXH1S3LfUU]{Chevaucher (Cheval)}
Ride (Pegasus)@Compendium[wfrp4e-core.skills.NzmG8oghB65XqdDd]{Chevaucher (Pégase)}
Row@Compendium[wfrp4e-core.skills.KL4pCOqma5E7fLG4]{Ramer}
Sail ()@Compendium[wfrp4e-core.skills.n8IfmLt4kzMhIKIv]{Voile ()}
Sail (Barge)@Compendium[wfrp4e-core.skills.WuGqleOpKoMCfhO0]{Voile (Chaland)}
Sail (Caravel)@Compendium[wfrp4e-core.skills.FR60c6AX1pWZz6Mc]{Voile (Caravelle)}
Sail (Cog)@Compendium[wfrp4e-core.skills.ZUldeWVqTnMRw5xD]{Voile (Cogue)}
Sail (Frigate)@Compendium[wfrp4e-core.skills.9s8S1BlR4cd5UeN8]{Voile (Frégate)}
Sail (Wolfship)@Compendium[wfrp4e-core.skills.5WfSy7tUYgjvChyN]{Voile (Drakkar)}
Secret Signs ()@Compendium[wfrp4e-core.skills.bVdhLdfuSAfMi3qq]{Signes secrets ()}
Secret Signs (Grey Order)@Compendium[wfrp4e-core.skills.CJxLsDRzVMguEpF1]{Signes secrets (Ordre Gris)}
Secret Signs (Guilder)@Compendium[wfrp4e-core.skills.D4JNPSl6VOpsVmSi]{Signes secrets (Guilde)}
Secret Signs (Ranger)@Compendium[wfrp4e-core.skills.6l2JkMfD3mNxqiep]{Signes secrets (Ruraux)}
Secret Signs (Scout)@Compendium[wfrp4e-core.skills.COND1RfSn9v58QiN]{Signes secrets (Guetteur)}
Secret Signs (Thief)@Compendium[wfrp4e-core.skills.AIueed3kikw3euvn]{Signes secrets (Voleur)}
Secret Signs (Vagabond)@Compendium[wfrp4e-core.skills.eXLVhJVuIhm8wPUF]{Signes secrets (Vagabond)}
Set Trap@Compendium[wfrp4e-core.skills.HngrTVqKis08Nvcf]{Piégeage}
Sleight of Hand@Compendium[wfrp4e-core.skills.rvd0S8Z0v2m0MHmD]{Escamotage}
Stealth ()@Compendium[wfrp4e-core.skills.McTtmZu3Ac8Lh48W]{Discrétion ()}
Stealth (Rural)@Compendium[wfrp4e-core.skills.Xk5tp3aasPNtk4zt]{Discrétion (Rurale)}
Stealth (Underground)@Compendium[wfrp4e-core.skills.cHbQeJQ7cVZZyDyl]{Discrétion (Souterrains)}
Stealth (Urban)@Compendium[wfrp4e-core.skills.zkI6tIqbyAZvh0Th]{Discrétion (Urbaine)}
Swim@Compendium[wfrp4e-core.skills.hodHqFNKAmu40ajh]{Natation}
Track@Compendium[wfrp4e-core.skills.rt2rGSwFDCDHPh0A]{Pistage}
Trade ()@Compendium[wfrp4e-core.skills.wKwel9MG7NIG3i3w]{Métier ()}
Trade (Apothecary)@Compendium[wfrp4e-core.skills.0qQqFANTRUDTDpRg]{Métier (Apothicaire)}
Trade (Calligrapher)@Compendium[wfrp4e-core.skills.SMBkaNJzNKypJMA2]{Métier (Calligraphie)}
Trade (Carpenter)@Compendium[wfrp4e-core.skills.qy68sCupAbzhlvVU]{Métier (Charpentier)}
Trade (Chandler)@Compendium[wfrp4e-core.skills.PFQYm0XaYcoeSYxE]{Métier (Cirier)}
Trade (Cook)@Compendium[wfrp4e-core.skills.epSHxgJWtT1S0yMY]{Métier (Cuisinier)}
Trade (Embalmber)@Compendium[wfrp4e-core.skills.QNVlucN2nC2yBP5Q]{Métier (Embaumeur)}
Trade (Smith)@Compendium[wfrp4e-core.skills.Ml6ZblglcSbVhXyh]{Métier (Forgeron)}
Trade (Tanner)@Compendium[wfrp4e-core.skills.u9dLyalenY0AIzCT]{Métier (Tanneur)}
"} -{"_id":"t1rZcuX9msIZkpxn","name":"Traduction des Critiques","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Arterial Damage@Compendium[wfrp4e-core.criticals.sgBDLL1iLenHJ5um]{Artère endommagée}
Bad Cut@Compendium[wfrp4e-core.criticals.JcAgEHxuY9hwB4y5]{Mauvaise coupure}
Badly Cut Toe@Compendium[wfrp4e-core.criticals.9UjOMeBtKdoL5S34]{Coupure à l'orteil}
Badly Jarred Arm@Compendium[wfrp4e-core.criticals.VcKpiwNiQVwJJQVm]{Choc violent au bras}
Badly Twisted Knee@Compendium[wfrp4e-core.criticals.TxXIUDqoon9TivpO]{Genou tordu}
Black Eye@Compendium[wfrp4e-core.criticals.KB58O2LWcrzIb6do]{Cécité temporaire}
Bleeding hand@Compendium[wfrp4e-core.criticals.Z9aSUtiwhqVHENnR]{Main ensanglantée}
Broken Collar Bone@Compendium[wfrp4e-core.criticals.39906D4BcVGzsiQp]{Clavicule cassée}
Broken Jaw@Compendium[wfrp4e-core.criticals.nZK8CBZTlWTQG2K8]{Mâchoire cassée}
Broken Knee@Compendium[wfrp4e-core.criticals.njocSqK1sMPTi5K4]{Genou cassé}
Broken Nose@Compendium[wfrp4e-core.criticals.fIjnRUF4xplU2mhP]{Nez cassé}
Bruised Ribs@Compendium[wfrp4e-core.criticals.RLBB8XHqLDM4XejE]{Bleus aux côtes}
Brutal Dismemberment@Compendium[wfrp4e-core.criticals.tZc5KDSVW36sFx5G]{Démembrement brutal}
Carved Shin@Compendium[wfrp4e-core.criticals.heJZbvL0uXqKbljR]{Entaille au tibia}
Clean Break@Compendium[wfrp4e-core.criticals.ZE7gT3UWkw7gKeMv]{Cassure nette}
Cleft Hand@Compendium[wfrp4e-core.criticals.G8m6k3wEkhuXMjjp]{Main ouverte}
Concussive Blow@Compendium[wfrp4e-core.criticals.3Tk4cX1ri20oUoBh]{Commotion cérébrale}
Cracked Ribs@Compendium[wfrp4e-core.criticals.AXRma6wqpD5jvpuM]{Côtes fracturées}
Crushed Elbow@Compendium[wfrp4e-core.criticals.JKm6YDR88Friuw6h]{Coude fracassé}
Crushed Foot@Compendium[wfrp4e-core.criticals.NPhLsxsUV8wwdKWj]{Pied écrasé}
Cut Tendon@Compendium[wfrp4e-core.criticals.9s7eE2U30R774sxO]{Tendon coupé}
Damaged Artery@Compendium[wfrp4e-core.criticals.zXuy90mI1OLjxCvc]{Dégâts artériels}
Decapitated@Compendium[wfrp4e-core.criticals.Bpt4ZS0eHJOsuDXE]{Décapitation}
Deep Cut@Compendium[wfrp4e-core.criticals.Wpsybql9MWbWZUeH]{Coupure profonde}
Devastated Eye@Compendium[wfrp4e-core.criticals.GBaH4wyVes6ds7Wv]{Oeil crevé}
Disfiguring Blow@Compendium[wfrp4e-core.criticals.8WkGfg1oUsR16K3J]{Coup défigurant}
Dislocated Knee@Compendium[wfrp4e-core.criticals.8GrHGyhYlbdxqluu]{Genou démis}
Dislocated Shoulder@Compendium[wfrp4e-core.criticals.92vQ9g5DxlWNmD1c]{Epaule luxée}
Dramatic Injury@Compendium[wfrp4e-core.criticals.sSSUZXOXK2DSpxGx]{Blessure spectaculaire}
Ear Bash@Compendium[wfrp4e-core.criticals.cJ6raCFuP1diIXsy]{Frappe à l'oreille}
Fractured Hip@Compendium[wfrp4e-core.criticals.LdqCjnTAiiRZU1Sq]{Hanche fracturée}
Fractured Jaw@Compendium[wfrp4e-core.criticals.bAafQaKO9PdKQB8R]{Mâchoire fracturée}
Gaping Arm Wound@Compendium[wfrp4e-core.criticals.jvemdUZh3iRF67us]{Blessure béante}
Gaping Chest Wound@Compendium[wfrp4e-core.criticals.GmRF7GF7SZq6qeyj]{Blessure béante}
Gut Blow@Compendium[wfrp4e-core.criticals.VAKUqXH9nGyBXiGy]{Coup au ventre}
Gut Wound@Compendium[wfrp4e-core.criticals.pjJagbErW5tu3LJR]{Blessure au ventre}
Hacked Leg@Compendium[wfrp4e-core.criticals.uU2ibNRgeEjuSN7e]{Jambe charcutée}
Internal Bleeding@Compendium[wfrp4e-core.criticals.jma54Iat01N9X4Fb]{Hémorragie interne}
Jarred Arm@Compendium[wfrp4e-core.criticals.iLHKw6w3Ipmzj5ma]{Choc au bras}
Lost Footing@Compendium[wfrp4e-core.criticals.WRAuBX80vCwlnB0N]{Perte d'équilibre}
Low Blow!@Compendium[wfrp4e-core.criticals.l5X3wwVvctgQ4k2Q]{Dans les bijoux de famille!}
Major Chest Wound@Compendium[wfrp4e-core.criticals.zNzlJWzCqmyLtnFS]{Blessure majeure au torse}
Major Ear Wound@Compendium[wfrp4e-core.criticals.GWGaNV2kGRTlMlG7]{Blessure majeure à l'oreille}
Major Eye Wound@Compendium[wfrp4e-core.criticals.Ioxf9osVNGNyzIZA]{Blessure majeure à l'oeil}
Mangled Ear@Compendium[wfrp4e-core.criticals.XqxT8WjUbhsibhWd]{Oreille mutilée}
Mangled Hand@Compendium[wfrp4e-core.criticals.jeXKnpbV7xq8wDkH]{Main mutilée}
Mangled Jaw@Compendium[wfrp4e-core.criticals.qWJ2HWWj2411KSau]{Mâchoire mutilée}
Mauled Bicep@Compendium[wfrp4e-core.criticals.9NAkj43qHsH7Xok7]{Biceps déchiqueté}
Minor Arm Cut@Compendium[wfrp4e-core.criticals.sJU1kEp6yoHPmhIc]{Coupure mineure}
Minor Head Cut@Compendium[wfrp4e-core.criticals.btDTVsPFsOtBNpgF]{Coupure mineure}
Minor Leg Cut@Compendium[wfrp4e-core.criticals.wTGR340dwvAgwA9v]{Coupure mineure}
Painful Cut@Compendium[wfrp4e-core.criticals.GsBi7iz9z5tj9PiM]{Entaille douloureuse}
Poked Eye@Compendium[wfrp4e-core.criticals.3B3QEz9ImmloEQxv]{Vision brouillée}
Pulled Back@Compendium[wfrp4e-core.criticals.cWK3kNzvujhWi9jQ]{Dos froissé}
Ragged Wound@Compendium[wfrp4e-core.criticals.S8sbrHd9zxaYiDFJ]{Chairs déchirées}
Rattling Blow@Compendium[wfrp4e-core.criticals.M15Fg1Wdl047rD8L]{Coup percutant}
Ruptered Ligament@Compendium[wfrp4e-core.criticals.263ic3ulLuR9DPzP]{Ligament rompu}
Ruptured Tendon@Compendium[wfrp4e-core.criticals.9MKzpUh761nGa76M]{Tendon rompu}
Severed Finger@Compendium[wfrp4e-core.criticals.H07sv4W1RPoES06K]{Doigt sectionné}
Severed Foot@Compendium[wfrp4e-core.criticals.BzIaW1w6eTUFWgkk]{Pied sectionné}
Shattered Pelvis@Compendium[wfrp4e-core.criticals.F9aFPBvoCdxg8oFJ]{Bassin fracassé}
Sliced Ear@Compendium[wfrp4e-core.criticals.IZkWdvSwQPrnjdsD]{Oreille tranchée}
Sliced Tendons@Compendium[wfrp4e-core.criticals.WWdCfTZCgcHK2soX]{Tendons coupés}
Smashed Mouth@Compendium[wfrp4e-core.criticals.LZ8ThwJsGDgiPkAd]{Bouche explosée}
Smashed Rib Cage@Compendium[wfrp4e-core.criticals.MZuAg4zB17prHXaG]{Cage thoracique perforée}
Sprain@Compendium[wfrp4e-core.criticals.B6lS25BojearuvzW]{Torsion}
Sprained Ankle@Compendium[wfrp4e-core.criticals.wbbDM7rUetyWYgLt]{Cheville foulée}
Struck Forehead@Compendium[wfrp4e-core.criticals.GHa0StLRCchw6dQ0]{En plein front}
Stubbed Toe@Compendium[wfrp4e-core.criticals.TMjbr94rrtCqM6bk]{Orteil contusionné}
Thigh Strike@Compendium[wfrp4e-core.criticals.2ibzDR7EeMEq2QAe]{Coup à la cuisse}
Tis But A Scratch!@Compendium[wfrp4e-core.criticals.PhCFqJif8iQaiOm0]{Rien qu'une égratignure !}
Torn Apart@Compendium[wfrp4e-core.criticals.jY9wCTf7q86zk96P]{Éventré}
Torn Muscles@Compendium[wfrp4e-core.criticals.ShiLe2LWvvwTIa4o]{Déchirure Musculaire}
Torn Thigh@Compendium[wfrp4e-core.criticals.AUZLQkyu9kiqmzsq]{Cuisse lacérée}
Twisted Ankle@Compendium[wfrp4e-core.criticals.9j0KwH1Je1RiuZX2]{Cheville tordue}
Twisted Back@Compendium[wfrp4e-core.criticals.K0WjEuCqGDUwAPE6]{Torsion du dos}
Twisted Knee@Compendium[wfrp4e-core.criticals.wnYgHZm503oOERSf]{Genou tordu}
Winded@Compendium[wfrp4e-core.criticals.UC2zRorETcI8rheP]{Souffle coupé}
Wrenched Arm@Compendium[wfrp4e-core.criticals.nnPZijQYZGya1NJM]{Clef de bras}
Wrenched Collar Bone@Compendium[wfrp4e-core.criticals.P6opRTvzX1rgzfgE]{Clavicule tordue}
"} -{"_id":"ZOBHel03IV3YXiIa","name":"Traduction des Equipements","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Abacus@Compendium[wfrp4e-core.trappings.Ldf5kDBob8H0v6iV]{Boulier}
Ale, Keg@Compendium[wfrp4e-core.trappings.jyphOMwPqNU9KgmS]{Cervoise, Tonnelet}
Ale, pint@Compendium[wfrp4e-core.trappings.N8HJlumE3hOgpPC2]{Cervoise, pinte}
Amulet@Compendium[wfrp4e-core.trappings.o6VOoj3KUlkfLCia]{Amulette}
Animal Trap@Compendium[wfrp4e-core.trappings.k0KeWhPgFGUcOgs0]{Pièges à animal}
Antitoxin Kit@Compendium[wfrp4e-core.trappings.hhImniNwHKmcC6FK]{Nécessaire anti-poison}
Arrow@Compendium[wfrp4e-core.trappings.6GNNpWIGxO9CkTCR]{Flèche}
Backpack@Compendium[wfrp4e-core.trappings.kJziKlct30lfAiYA]{Sac à dos}
Ball@Compendium[wfrp4e-core.trappings.EE0feq68GJtdw1Nq]{Balle}
Bandage@Compendium[wfrp4e-core.trappings.1wtW4N8l3UKwlLI3]{Bandages}
Barrel@Compendium[wfrp4e-core.trappings.4hyL1z3ayI3ligQE]{Baril}
Bastard Sword@Compendium[wfrp4e-core.trappings.F7jJaldf3lbkjABW]{Epée Batârde}
Baton @Compendium[wfrp4e-core.trappings.utRev4dXTLI0A2GL]{Baton }
Bedroll @Compendium[wfrp4e-core.trappings.IFtoI87gZ4phMHy9]{Sac de couchage }
Black Lotus@Compendium[wfrp4e-core.trappings.qfd01sggD9xbCuJY]{Lotus Noir}
Blanket@Compendium[wfrp4e-core.trappings.3GlaCQyLuugXHEM2]{Couverture}
Blunderbuss@Compendium[wfrp4e-core.trappings.ByHt0vTWRIuHS2r8]{Tromblon}
Boat Hook@Compendium[wfrp4e-core.trappings.1XRNUP7fKAT2x7wR]{Gaffe}
Boiled Leather Breastplate@Compendium[wfrp4e-core.trappings.tIG1TGcmU2i4rgFh]{Plastron en Cuir Bouilli}
Bolas@Compendium[wfrp4e-core.trappings.qim3Ad0ldTS9mXDj]{Bolas}
Bolt@Compendium[wfrp4e-core.trappings.kFROfGFdExfyJTg9]{Carreau}
Bomb@Compendium[wfrp4e-core.trappings.X8WFQf0HB9yXKjdD]{Bombe}
Book, Apothecary@Compendium[wfrp4e-core.trappings.AWx6rqwOlN68pN6I]{Livre, Apothicaire}
Book, Art@Compendium[wfrp4e-core.trappings.H5CqkYPVVUslaORH]{Livre, Art}
Book, Cryptography@Compendium[wfrp4e-core.trappings.z8X2CMJdAZKoE3lk]{Livre, Cryptographie}
Book, Engineer@Compendium[wfrp4e-core.trappings.25Ek5A1EmQqzOcSK]{Livre, Ingénierie}
Book, Law@Compendium[wfrp4e-core.trappings.o4FSm7YgmfNV4Qgq]{Livre, Juridique}
Book, Magic@Compendium[wfrp4e-core.trappings.qQQ6rRUqcRIaU7kr]{Livre, Magick}
Book, Medicine@Compendium[wfrp4e-core.trappings.aQIxzS4uOcIe9oxd]{Livre, Médecine}
Book, Religion@Compendium[wfrp4e-core.trappings.PKkGM5Q0Chmt5qFe]{Livre, Religion}
Boots@Compendium[wfrp4e-core.trappings.nrIcHcULt5fjRKbL]{Bottes}
Bow@Compendium[wfrp4e-core.trappings.U94l3IDj3xfIc78i]{Arc}
Bowl@Compendium[wfrp4e-core.trappings.8TKV6yGaUHrf75UH]{Bol}
Brass Penny@Compendium[wfrp4e-core.trappings.0MYOJFx3vkYA95B4]{Sous de Cuivre}
Broom@Compendium[wfrp4e-core.trappings.w9VCyP12U7MrC3jk]{Balai}
Bucket@Compendium[wfrp4e-core.trappings.lq7bDxEeIIVSmLOg]{Seau}
Bugman’s XXXXXX Ale, pint @Compendium[wfrp4e-core.trappings.KzJkoB12jpidtngo]{Cervoise de Bugman, pinte }
Bullet and Powder@Compendium[wfrp4e-core.trappings.xdAP96GGDb87m0Pr]{Poudre et Balles}
Candle@Compendium[wfrp4e-core.trappings.TW3etL7RIU2EWTXp]{Bougie}
Canvas Tarp@Compendium[wfrp4e-core.trappings.Zhd2HM8nVcsfHRcI]{Bâche de toile}
Cart@Compendium[wfrp4e-core.trappings.oxZ02e5bphR9xHVu]{Charette}
Cask@Compendium[wfrp4e-core.trappings.t9I9s3MZQCIVjEpX]{Tonneau}
Cavalry Hammer@Compendium[wfrp4e-core.trappings.HDQVaCTpIy2PBdYu]{Marteau de Cavalerie}
Chalk@Compendium[wfrp4e-core.trappings.elraWaIlaaHeKwKl]{Craie}
Charcoal stick@Compendium[wfrp4e-core.trappings.b8SJ8qB0TpSjUGA6]{Batonnet de fusain}
Chicken@Compendium[wfrp4e-core.trappings.M5rVGn8jfQXVkY57]{Poulet}
Chisel@Compendium[wfrp4e-core.trappings.yMn4pNpf0KLCt3Z1]{Ciseau}
Cloak@Compendium[wfrp4e-core.trappings.GIFrMVqk0SimaBOM]{Cape}
Clothing@Compendium[wfrp4e-core.trappings.KWaFV7NPZqtgnL9Z]{Vêtement}
Coach@Compendium[wfrp4e-core.trappings.LORTDrR65x2k9raH]{Diligence}
Coat@Compendium[wfrp4e-core.trappings.Ieyr3r0Skl57DkAJ]{Manteau}
Comb@Compendium[wfrp4e-core.trappings.wrFLHWygOlwFG2q3]{Peigne}
Cooking Pot@Compendium[wfrp4e-core.trappings.dyt9NYLGBcgOxaMQ]{Marmite}
Coracle@Compendium[wfrp4e-core.trappings.BJDCewsSihieuEwE]{Coracle}
Courtly Garb @Compendium[wfrp4e-core.trappings.7hRfHr1ZCUigByms]{Courtly Garb }
Crossbow@Compendium[wfrp4e-core.trappings.ksRqHiMVpIL07Ij1]{Arbalète}
Crossbow Pistol@Compendium[wfrp4e-core.trappings.M71CyisSXU0I7V1S]{Arbalète de Poing}
Crowbar@Compendium[wfrp4e-core.trappings.WDawuBcvsglWEVMg]{Pied de Biche}
Cup@Compendium[wfrp4e-core.trappings.VIq5ronFVkpzF8Vb]{Coupe}
Cutlery@Compendium[wfrp4e-core.trappings.gLGSO3xrpAua0ydw]{Couvert}
Dagger@Compendium[wfrp4e-core.trappings.ahlxlfIl8xUhBkic]{Dague}
Dart@Compendium[wfrp4e-core.trappings.ddXgrDWZXSM3nXaf]{Fléchette}
Davrich Lamp@Compendium[wfrp4e-core.trappings.JX4Qy1qVog3PZBvA]{Lampe Davrich}
Deck of Cards@Compendium[wfrp4e-core.trappings.F65NP8BmRo66nQOm]{Paquet de cartes}
Destrier@Compendium[wfrp4e-core.trappings.ebsbEIJOY0Jy5raF]{Destrier}
Dice@Compendium[wfrp4e-core.trappings.eZN8HuDV0OnjIWM9]{Dé}
Digestive Tonic@Compendium[wfrp4e-core.trappings.aUQDbW33bWqVeY9V]{Tonique digestif}
Disguise Kit@Compendium[wfrp4e-core.trappings.gx451Vn2Ru3eKLIg]{Nécessaire de déguisement}
Dog collar and lead@Compendium[wfrp4e-core.trappings.gzriPtNbRFltaAsh]{Collier et laisse}
Doll@Compendium[wfrp4e-core.trappings.QpqxyJ8dkzG3qKrE]{Poupée}
Draught Horse@Compendium[wfrp4e-core.trappings.94SiNp9Iqq6HiOsG]{Cheval de trait}
Ear Pick@Compendium[wfrp4e-core.trappings.8bxAt6ru3cCyGr6N]{Cure Oreilles}
Earth Root@Compendium[wfrp4e-core.trappings.WiPzDDFjCAo2EQDT]{Racine de Terre}
Elf Arrow@Compendium[wfrp4e-core.trappings.NQ4OVp1ZfinJ7lQH]{Flèche Elfe}
Elf Bow@Compendium[wfrp4e-core.trappings.2mE771fGEEB38OqG]{Arc Elfique}
Engineering Marvel@Compendium[wfrp4e-core.trappings.KGW0J62iYLqRIfS4]{Merveille d'ingénierie}
Eye patch@Compendium[wfrp4e-core.trappings.1H8pOSNxRS69PADr]{Cache Oeil}
Face Powder@Compendium[wfrp4e-core.trappings.WECvYThPGMkyagcw]{Poudre pour le visage}
False Eye@Compendium[wfrp4e-core.trappings.wVL0ugPXCBLGzdNm]{Oeil de verre}
False Leg@Compendium[wfrp4e-core.trappings.lJ6Av6wQfORR4mnu]{Fausse jambe}
Faxtoryll@Compendium[wfrp4e-core.trappings.nRfcszo6wF2sVFDn]{Faxtoryll}
Fish Hooks@Compendium[wfrp4e-core.trappings.HozjxIwCSwkItBu5]{Hameçons}
Flail@Compendium[wfrp4e-core.trappings.bBX8MP6QfcyU6Fy3]{Fléau}
Flask@Compendium[wfrp4e-core.trappings.Hrs3p9z8NqyYEtRz]{Flasque}
Flask of Spirits@Compendium[wfrp4e-core.trappings.f6cvUapo8tQHp2OL]{Fasque de Liqueur}
Floor Brush@Compendium[wfrp4e-core.trappings.mu9ysWvO9QwQbd8S]{Brosse}
Foil@Compendium[wfrp4e-core.trappings.uSxXVJogASbJ62hl]{Fleuret}
Food, groceries/day@Compendium[wfrp4e-core.trappings.jA5TSMX64RR5paKk]{Nourriture, rations/jour}
Gavel@Compendium[wfrp4e-core.trappings.tzMoFhFAWUGaqhxq]{Marteau}
Gilded Nose@Compendium[wfrp4e-core.trappings.qDEu30xKhIxfSckg]{Nez doré}
Gloves@Compendium[wfrp4e-core.trappings.YmElVMceT7qNqd9S]{Gants}
Gold Crown@Compendium[wfrp4e-core.trappings.Ggx0bRaCuq8MbF0g]{Couronne d'Or}
Grain Flail@Compendium[wfrp4e-core.trappings.56Y8YRC8wF2e6yye]{Fléau à Grain}
Grappling Hook@Compendium[wfrp4e-core.trappings.VzwUlz7gZePXWuYz]{Grappin}
Great Axe@Compendium[wfrp4e-core.trappings.QnFLWJmz2DN76Dx5]{Grande Hache}
Guild License@Compendium[wfrp4e-core.trappings.ZgpVhv100Kd9rsao]{License de Guilde}
Halberd@Compendium[wfrp4e-core.trappings.CXg7XOFJwu4LZ9LM]{Hallebarde}
Hammer@Compendium[wfrp4e-core.trappings.HyfQNt0QGGa0EltW]{Marteau}
Hand Mirror@Compendium[wfrp4e-core.trappings.H4nKliXRB93HKH4r]{Miroir à main}
Hand Weapon@Compendium[wfrp4e-core.trappings.1zaqojk0Oq1m8vYv]{Arme à 1 main}
Handgun@Compendium[wfrp4e-core.trappings.zuFTVmBtN51K94Xy]{Arquebuse}
Hat@Compendium[wfrp4e-core.trappings.LrYz9nSsmH4H3He4]{Chapeau}
Healing Draught@Compendium[wfrp4e-core.trappings.gxdjLQoQUTYgD6fm]{Potion de Guérison}
Healing Poultice@Compendium[wfrp4e-core.trappings.s2lBWQFQt6M5Pngb]{Cataplasme de Guérison}
Heartkill@Compendium[wfrp4e-core.trappings.JbSjlgUdzsl5ok95]{Brise-coeur}
Heavy Crossbow@Compendium[wfrp4e-core.trappings.K34pxV6XsxhoZRiQ]{Arbalète Lourde}
Hochland Long Rifle@Compendium[wfrp4e-core.trappings.1tHkTZYaauicIh8I]{Long Fusil d'Hochland}
Hoe@Compendium[wfrp4e-core.trappings.aRvo3nkgPrPcKXVF]{Binette}
Homing Pigeon@Compendium[wfrp4e-core.trappings.AA7nhcqscDj1zoU9]{Pigeon Voyageur}
Hood@Compendium[wfrp4e-core.trappings.lM6cdnWRA3sVjiF9]{Capuchon}
Hook@Compendium[wfrp4e-core.trappings.YivL32R2L3J098VD]{Crochet}
Hunting Dog@Compendium[wfrp4e-core.trappings.y28P2G0NEVZvMzS5]{Chien de chasse}
Improvised Shot and Powder@Compendium[wfrp4e-core.trappings.CdsNf9MFRUhrJ3YA]{Munitions Improvisées Balles et Poudres}
Improvised Weapon@Compendium[wfrp4e-core.trappings.mRU10yAWWWs5WoKt]{Arme Improvisée}
Incendiary@Compendium[wfrp4e-core.trappings.vI0oorwbZdlszudf]{Molotof}
Instrument@Compendium[wfrp4e-core.trappings.Wp9qIwlQo6dpszOw]{Instrument}
Javelin@Compendium[wfrp4e-core.trappings.q3dEaQLL3ZYCZtU4]{Javelot}
Jewellry@Compendium[wfrp4e-core.trappings.8MpTb12W1x6ECZzt]{Bijoux}
Jug@Compendium[wfrp4e-core.trappings.vbNHaU50jr9T2dCQ]{Cruche}
Key@Compendium[wfrp4e-core.trappings.aExcYp7UPS5SL4ve]{Clé}
Knife@Compendium[wfrp4e-core.trappings.83KlMxHxGfKUdMfq]{Couteau}
Knife@Compendium[wfrp4e-core.trappings.Ao7DRZ1hS6uCGONP]{Couteau}
Knuckledusters@Compendium[wfrp4e-core.trappings.kOfcQJQOgmGsqA5U]{Cestes}
Lamp Oil@Compendium[wfrp4e-core.trappings.Bal23aLiOmnht42h]{Lampe à Huile}
Lance@Compendium[wfrp4e-core.trappings.O2jqCh3Zb5eR4yXe]{Lance}
Lantern@Compendium[wfrp4e-core.trappings.mcJi9yqMFRJRkhJs]{Lanterne}
Lasso@Compendium[wfrp4e-core.trappings.k0JKY8ck2QUx5mKS]{Lasso}
Lead Bullet@Compendium[wfrp4e-core.trappings.4hV1PpYm9Q2pyUNf]{Balle de plomb}
Leaflet@Compendium[wfrp4e-core.trappings.MtAmDCEzeM8LjtRn]{Brochure}
Leather Jack@Compendium[wfrp4e-core.trappings.OjcHE0VOGr1aRdy9]{Veste de cuir}
Leather Jerkin@Compendium[wfrp4e-core.trappings.ipaDvYY3qS66o593]{Justaucorps de cuir}
Leather Leggings@Compendium[wfrp4e-core.trappings.MzppW5E5c3by9iBU]{Jambières de cuir}
Leather Skullcap@Compendium[wfrp4e-core.trappings.0W0kEpa2kNEcRGK0]{Calotte de cuir}
Legal Document@Compendium[wfrp4e-core.trappings.s4Cds5JoW0YWhNzG]{Document légal}
Light Warhorse@Compendium[wfrp4e-core.trappings.pXDWUzKhyW83rBHB]{Cheval de guerre léger}
Lock Picks@Compendium[wfrp4e-core.trappings.oGzxLBKOwJ8C0q3E]{Outil de crochetage}
Longbow@Compendium[wfrp4e-core.trappings.RHkj94yUJp620xr1]{Arc long}
Mad Cap Mushrooms@Compendium[wfrp4e-core.trappings.CihEl1pzvTiMQswA]{Bonnet de Fou}
Mail Chausses@Compendium[wfrp4e-core.trappings.XWlkZVUhzO0CwaiJ]{Chausses de Mailles}
Mail Coat@Compendium[wfrp4e-core.trappings.i76oPVM2eFEs5IBh]{Cotte de Mailles}
Mail Coif@Compendium[wfrp4e-core.trappings.4xV16ttsxCa311vl]{Coiffe de Mailles}
Mail Shirt@Compendium[wfrp4e-core.trappings.cJdfHOVbghTf4Eo0]{Chemise de Mailles}
Main Gauche@Compendium[wfrp4e-core.trappings.5DOi1id1tatHp9Q5]{Main Gauche}
Manacles@Compendium[wfrp4e-core.trappings.zIf0i6DBqGlyQ5By]{Menottes}
Mandrake Root@Compendium[wfrp4e-core.trappings.5fowsr8vslorjeB2]{Racine de Mandragore}
Map@Compendium[wfrp4e-core.trappings.5PWRfQbGcYm4OnKP]{Carte}
Mask@Compendium[wfrp4e-core.trappings.ZLIG9CAgCgIa38hU]{Masque}
Match@Compendium[wfrp4e-core.trappings.AOLsFkqblrcCLv23]{Allumette}
Meal, inn@Compendium[wfrp4e-core.trappings.USL6G7P9pbdWHodY]{Nourriture, auberge}
Military Flail@Compendium[wfrp4e-core.trappings.N3aHfG4XASsiNoRv]{Fléau d'armes}
Monkey@Compendium[wfrp4e-core.trappings.9n8P8hWUzJw1oZ8Z]{Singe}
Moonflower@Compendium[wfrp4e-core.trappings.wgFj3lFhCuO8OeDb]{Fleur de Lune}
Mop@Compendium[wfrp4e-core.trappings.d4iZk3dpNCZvsRJE]{Serpillière}
Mule@Compendium[wfrp4e-core.trappings.Yf5KzF7u0gAbxam9]{Mule}
Nails @Compendium[wfrp4e-core.trappings.yqgOaCsgMNq6VDC7]{Clous }
Nightshade@Compendium[wfrp4e-core.trappings.OfGoWncevRmuj5TX]{Belladone}
Paint Brush@Compendium[wfrp4e-core.trappings.Q2Ip5ItHNSyBNwkg]{Pinceau}
Pan@Compendium[wfrp4e-core.trappings.YIUJ8FnHDm4OMRES]{Poêle}
Parchment/sheet@Compendium[wfrp4e-core.trappings.fHb7bFU8QX3oi33F]{Feuille de Parchemin}
Perfume@Compendium[wfrp4e-core.trappings.1BgoTqp0i0z8cA28]{Parfum}
Pestle & Mortar@Compendium[wfrp4e-core.trappings.tv7m7LS9MLTbTzaB]{Mortier et Pilon}
Pewter Stein@Compendium[wfrp4e-core.trappings.lIaPOGOBdJBvDZf4]{Chope en étain}
Pick@Compendium[wfrp4e-core.trappings.3RttGMwfxEuxRLYu]{Pioche}
Pick@Compendium[wfrp4e-core.trappings.FRI9L7BfKNB20aks]{Pioche}
Pike@Compendium[wfrp4e-core.trappings.Bda4Wvnlt3q5zkKC]{Pique}
Pins@Compendium[wfrp4e-core.trappings.HXUQCiVOii3sNKGe]{Epingle}
Pipe and Tobacco@Compendium[wfrp4e-core.trappings.Gr10zyYyGwAkrwnV]{Pipe et Tabac}
Pistol@Compendium[wfrp4e-core.trappings.PnYGK5FPgEGM1Ck3]{Pistolet}
Placard@Compendium[wfrp4e-core.trappings.jQGw8o4fY8swlmfM]{Placard}
Plate@Compendium[wfrp4e-core.trappings.68cSNeXpwBdXLPgb]{Assiette}
Plate Bracers@Compendium[wfrp4e-core.trappings.oW7wSkl4JMb5sBH8]{Brassards d'acier}
Plate Breastplate@Compendium[wfrp4e-core.trappings.oBNXxRFPh1sOT4K2]{Plastron d'acier}
Plate Helm@Compendium[wfrp4e-core.trappings.e9WmLbD7AuXSeWp0]{Heaume}
Plate Leggings@Compendium[wfrp4e-core.trappings.bY6M9XxbqmFmqpA8]{Jambières d'acier}
Plate Open Helm@Compendium[wfrp4e-core.trappings.TvUKzvXjc2VChuTT]{Plate Open Helm}
Pole (3 yards)@Compendium[wfrp4e-core.trappings.i2DKz375sriXqfkS]{Perche (3 mètres)}
Pony@Compendium[wfrp4e-core.trappings.nVf2096t5ynzh0Qq]{Poney}
Pouch@Compendium[wfrp4e-core.trappings.mCvZAj5F6hfUZhzR]{Bourse}
Quarterstaff@Compendium[wfrp4e-core.trappings.GkeMJrsqxQIek1xK]{Bâton de combat}
Quill Pen@Compendium[wfrp4e-core.trappings.61Fx3RHhSqaLCnao]{Plume d'oie}
Rags@Compendium[wfrp4e-core.trappings.TfRdF6baYuGd6i53]{Chiffons}
Rake@Compendium[wfrp4e-core.trappings.Y55qCcUkHVZAbG8s]{Rateau}
Ranald's Delight@Compendium[wfrp4e-core.trappings.jTFOrokjEHbi12rT]{Délice de Ranald}
Rapier@Compendium[wfrp4e-core.trappings.Uuu0bA2DmNp8o2JF]{Rapière}
Rations, 1 day@Compendium[wfrp4e-core.trappings.EVERNFcYxY7WY8ur]{Rations, 1 jour}
Reading Lens@Compendium[wfrp4e-core.trappings.ZaJHpJKlib0LoOd2]{Bésicles/Lentille}
Religious Symbol@Compendium[wfrp4e-core.trappings.hEr7pIXzUCHOXZIX]{Symbole Religieux}
Repeater Handgun@Compendium[wfrp4e-core.trappings.M23N8sjzEp16abQQ]{Arquebuse à Répétition}
Repeater Pistol@Compendium[wfrp4e-core.trappings.8dKmuti5IuIs9AJA]{Pistolet à Répétition}
Riding Horse@Compendium[wfrp4e-core.trappings.tL7ka28KOIvEi6Rc]{Cheval de selle}
River Barge@Compendium[wfrp4e-core.trappings.g796u6AgEQvRPlp7]{Chaland}
Robes@Compendium[wfrp4e-core.trappings.EDnMXoxQTU4TMrRV]{Robes}
Rock@Compendium[wfrp4e-core.trappings.NyIwm2Ge60jnUZft]{Pierre}
Room, common/night@Compendium[wfrp4e-core.trappings.BZmUt37Jk1UCokqS]{Chambre, commune/nuit}
Room, private/night@Compendium[wfrp4e-core.trappings.0TGOFL99jG1RJ4ft]{Chambre, privée/nuit}
Rope, 10 yards@Compendium[wfrp4e-core.trappings.horFAtaDz0EbuY3R]{Corde, 10 mètres}
Row Boat@Compendium[wfrp4e-core.trappings.zAXq89sUgwR4aU1p]{Barque}
Sack@Compendium[wfrp4e-core.trappings.RHqux3m4dgJoDkqG]{Sac}
Sack, Large@Compendium[wfrp4e-core.trappings.2znfMGBp5GOQ12M0]{Sac, Grand}
Saddle and Harness@Compendium[wfrp4e-core.trappings.5TDwZGuGwX1QJWAg]{Selle et Harnais}
Saddlebags@Compendium[wfrp4e-core.trappings.LKGrjbTZgEh3GUMF]{Fontes de selle}
Salwort@Compendium[wfrp4e-core.trappings.mUTrC5DA6bF8DDWz]{Soude Commune}
Saw@Compendium[wfrp4e-core.trappings.X7c87KbjSJ7F3yha]{Scie}
Scepter@Compendium[wfrp4e-core.trappings.XAJUqtLiM0Dqk5Wb]{Sceptre}
Scroll Case@Compendium[wfrp4e-core.trappings.sgJL9NtVEZZvgkys]{Etui à Parchemins}
Shield@Compendium[wfrp4e-core.trappings.8nJ9R8tbhW42VGhr]{Bouclier}
Shield (Buckler)@Compendium[wfrp4e-core.trappings.J9sVeK9nbQLFyUMU]{Bouclier (Parma)}
Shield (Large)@Compendium[wfrp4e-core.trappings.CYkA9Ax6BN7eiTvf]{Bouclier (Grand)}
Shoes@Compendium[wfrp4e-core.trappings.kCL3RKzIiGImZVZa]{Chaussures}
Shortbow@Compendium[wfrp4e-core.trappings.CRNrEnLXTGXVT1UW]{Arc court}
Sickle@Compendium[wfrp4e-core.trappings.hnuZUd35SCjKkJc2]{Faucille}
Signet Ring@Compendium[wfrp4e-core.trappings.BBiL0DSHcdPakVBS]{Chevalière}
Silver Shilling@Compendium[wfrp4e-core.trappings.KB8HgDz56dh2w7w1]{Pistole d'Argent}
Sling@Compendium[wfrp4e-core.trappings.7Bpc5I8Arucy3w4q]{Fronde}
Sling Bag@Compendium[wfrp4e-core.trappings.bImtd1QDrQWp53Ua]{Sac en Bandoulière}
Small shot and Powder@Compendium[wfrp4e-core.trappings.5wItcVAcA6mfa62q]{Petites munitions et Poudre}
Spade@Compendium[wfrp4e-core.trappings.VakWbquag1kV5WtT]{Pelle}
Spear@Compendium[wfrp4e-core.trappings.zIuarD5mB0EF0ji0]{Sarisse}
Spike@Compendium[wfrp4e-core.trappings.482LVHdTtG0WPzis]{Pointe/Clou}
Spirits, pint@Compendium[wfrp4e-core.trappings.lgYfVzNVZzKNoWd2]{Liqueur, pinte}
Spit@Compendium[wfrp4e-core.trappings.W4X1Jx8AN84yRPDx]{Bave}
Stables/night@Compendium[wfrp4e-core.trappings.JBRSMYhicrhD3b9v]{Etables/nuit}
Staff Sling@Compendium[wfrp4e-core.trappings.KSwMbO8dqISoGuIo]{Fustibale}
Stamp, engraved@Compendium[wfrp4e-core.trappings.QCgsQbeEvV4dPB2D]{Cachet, gravé}
Stone Bullet@Compendium[wfrp4e-core.trappings.mik7s6AqS8SMSaJ8]{Projectile de Pierre}
Storm Lantern@Compendium[wfrp4e-core.trappings.9pJenZDZD2lV75vq]{Lampe Tempête}
Swordbreaker@Compendium[wfrp4e-core.trappings.uDavMIqhDl5aDNOy]{Brise-Epée}
Tattoo@Compendium[wfrp4e-core.trappings.o51gUXXozGz4ON0h]{Tatouage}
Telescope@Compendium[wfrp4e-core.trappings.lJfy4k1wXI25Dq9D]{Téléscope}
Tent@Compendium[wfrp4e-core.trappings.MF43A52UBH8SHOnd]{Tente}
Throwing Axe@Compendium[wfrp4e-core.trappings.Xjwk84KnOKDaiZs1]{Hache de Lancer}
Throwing Knife@Compendium[wfrp4e-core.trappings.bwyUJua7I9hNg9WS]{Couteau de Lancer}
Tinderbox@Compendium[wfrp4e-core.trappings.aVLjCqY3guj1DD06]{Boîte d'Amadou}
Tongs, steel@Compendium[wfrp4e-core.trappings.RN1IeSarIRaqyT95]{Pinces en acier}
Trade Tools (Type)@Compendium[wfrp4e-core.trappings.OD83JAlc9KhDpHK5]{Outils Professionnels (Type)}
Tweezers@Compendium[wfrp4e-core.trappings.3OdiPr3vLqGiMeCB]{Pince à épiler}
Unarmed@Compendium[wfrp4e-core.trappings.KlT5qZzI1bsdvoHv]{Désarmé}
Uniform@Compendium[wfrp4e-core.trappings.CB6cxxqy5vXcV6gf]{Uniforme}
Vitality Draught@Compendium[wfrp4e-core.trappings.ZBBi7LpWvNgQgRcw]{Potion de vitalité}
Wagon@Compendium[wfrp4e-core.trappings.HvZ019niuZcDJ5P0]{Chariot}
Walking Cane@Compendium[wfrp4e-core.trappings.mAhbJCYGkeqLl6CJ]{Canne}
Warhammer@Compendium[wfrp4e-core.trappings.XduZyBViaSuCV7Yo]{Marteau de Guerre}
Waterskin@Compendium[wfrp4e-core.trappings.hG90GkelSekqH7i8]{Outre d'eau}
Weirdroot@Compendium[wfrp4e-core.trappings.b6tGqvNe1jYBdeN5]{Mystracine}
Whip@Compendium[wfrp4e-core.trappings.xiOYNJcfqPselfwT]{Fouet}
Wine & Spirits, drink@Compendium[wfrp4e-core.trappings.6x4YAR4iYsA5tjnC]{Vin et Liqueurs, boisson}
Wine, bottle@Compendium[wfrp4e-core.trappings.7CJfiEV10299s7c1]{Vin, bouteille}
Wooden Teeth@Compendium[wfrp4e-core.trappings.0ohrc7pJtVTo9IFk]{Dent en Bois}
Workshop (Type)@Compendium[wfrp4e-core.trappings.ixOMVrEC1ISyYdDU]{Atelier (Type)}
Worms@Compendium[wfrp4e-core.trappings.fSo6LWBvDMZQqfKC]{Vers}
Writing Kit@Compendium[wfrp4e-core.trappings.6OmsMPtz0NzCwvzL]{Nécessaire d'écriture}
Zweihander@Compendium[wfrp4e-core.trappings.039vRQ8jv5cY3P4o]{Zweihander}
"} -{"_id":"qk5Z0tPrHYO4E9Iq","name":"Traduction des Maladies","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n
Blood Rot@Compendium[wfrp4e-core.diseases.M8XyRs9DN12XsFTQ]{Infection du Sang}
Bronze Fever@Compendium[wfrp4e-core.diseases.yWaB18Oh1G1VgUM2]{Fièvre Dorée}
Festering Wound@Compendium[wfrp4e-core.diseases.kKccDTGzWzSXCBOb]{Blessure Purulente}
Galloping Trots@Compendium[wfrp4e-core.diseases.txeLd7R13qxSvmsr]{Courante Galopante}
Itching Pox@Compendium[wfrp4e-core.diseases.UAwTqZ3hqNb7vq9s]{Vérole Urticante}
Minor Infection@Compendium[wfrp4e-core.diseases.1hQuVFZt9QnnbWzg]{Infection Mineure}
Packer's Pox@Compendium[wfrp4e-core.diseases.BC4QyBeYAiw8cRuM]{Vérole du Tanneur}
Ratte Fever@Compendium[wfrp4e-core.diseases.QiHMX5OyXBhWCYoF]{Fièvre du rongeur}
The Black Plague@Compendium[wfrp4e-core.diseases.aKiuGzlVO51JvsjV]{Peste Noire}
The Bloody Flux@Compendium[wfrp4e-core.diseases.herUmN51D9TiL2Vn]{Flux Sanglant}
"} -{"_id":"Pa2AILhijWDBZVxS","name":"Traduction des Sorts","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Acquiescence@Compendium[wfrp4e-core.spells.2fBaYkBsPZzxNSNj]{Consentement}
Aethyric Armour@Compendium[wfrp4e-core.spells.pHITBuvCatCOBhZb]{Armure Aethyrique}
Aethyric Armour (Beasts)@Compendium[wfrp4e-core.spells.6XVrv2zgdL3CSJHX]{Armure Aethyrique (Bête)}
Aethyric Armour (Daemonology)@Compendium[wfrp4e-core.spells.pjZwhUmipn2XA6h1]{Armure Aethyrique (Démonologie)}
Aethyric Armour (Death)@Compendium[wfrp4e-core.spells.ojamLp1DFHJfgX6J]{Armure Aethyrique (Mort)}
Aethyric Armour (Fire)@Compendium[wfrp4e-core.spells.YNZdL7VIaShNfdnb]{Armure Aethyrique (Feu)}
Aethyric Armour (Heavens)@Compendium[wfrp4e-core.spells.kMu92bwMe2jyXSjM]{Armure Aethyrique (Cieux)}
Aethyric Armour (Life)@Compendium[wfrp4e-core.spells.5srkF8mJss2fJbnH]{Armure Aethyrique (Vie)}
Aethyric Armour (Light)@Compendium[wfrp4e-core.spells.HVtGSSEFgyQgpbx4]{Armure Aethyrique (Lumière)}
Aethyric Armour (Metal)@Compendium[wfrp4e-core.spells.HAnyF2QUfYGuXkPn]{Armure Aethyrique (Métal)}
Aethyric Armour (Necromancy)@Compendium[wfrp4e-core.spells.3GDfAQLXIOuaDo1d]{Armure Aethyrique (Nécromancie)}
Aethyric Armour (Shadow)@Compendium[wfrp4e-core.spells.k2DXiabtQZcgFggb]{Armure Aethyrique (Ombres)}
Aethyric Arms@Compendium[wfrp4e-core.spells.OnaQ9kiK5S2d31pE]{Arme aethyrique}
Aethyric Arms (Beasts)@Compendium[wfrp4e-core.spells.UjgiulCattmtfeGL]{Arme aethyrique (Bête)}
Aethyric Arms (Daemonology)@Compendium[wfrp4e-core.spells.ZqjcMFgrlsaS8zLZ]{Arme aethyrique (Démonologie)}
Aethyric Arms (Death)@Compendium[wfrp4e-core.spells.Kv2amawh7q3zGEij]{Arme aethyrique (Mort)}
Aethyric Arms (Fire)@Compendium[wfrp4e-core.spells.89Xcjrqa44LEluU5]{Arme aethyrique (Feu)}
Aethyric Arms (Heavens)@Compendium[wfrp4e-core.spells.bLCz5iBxd2wjfStI]{Arme aethyrique (Cieux)}
Aethyric Arms (Life)@Compendium[wfrp4e-core.spells.UMsw5Mi0Gs90yp5J]{Arme aethyrique (Vie)}
Aethyric Arms (Light)@Compendium[wfrp4e-core.spells.mOMiylDui4p0nDcO]{Arme aethyrique (Lumière)}
Aethyric Arms (Metal)@Compendium[wfrp4e-core.spells.w0pZ963P6QS7Eh2a]{Arme aethyrique (Métal)}
Aethyric Arms (Necromancy)@Compendium[wfrp4e-core.spells.dJYAXtG1e5pmo5NZ]{Arme aethyrique (Nécromancie)}
Aethyric Arms (Shadow)@Compendium[wfrp4e-core.spells.dUX1XGppNdZpUZyA]{Arme aethyrique (Ombres)}
Amber Talons@Compendium[wfrp4e-core.spells.tCCaNirq3zCIkyri]{Serres d'ambre}
Animal Friend@Compendium[wfrp4e-core.spells.gQ14yfwjfcJgNpMp]{Amitié animale}
Aqshy’s Aegis@Compendium[wfrp4e-core.spells.UktSswGGaToftXFk]{L'Égide d'Aegis}
Arrow Shield@Compendium[wfrp4e-core.spells.9uRDDAjndugmNmZr]{Bouclier anti-flèches}
Arrow Shield (Beasts)@Compendium[wfrp4e-core.spells.bd9bf1D55v6ov1UV]{Bouclier anti-flèches (Bête)}
Arrow Shield (Daemonology)@Compendium[wfrp4e-core.spells.wi9BBLoL1TIf5aUf]{Bouclier anti-flèches (Démonologie)}
Arrow Shield (Death)@Compendium[wfrp4e-core.spells.zwQQb0upMLj8bFe9]{Bouclier anti-flèches (Mort)}
Arrow Shield (Fire)@Compendium[wfrp4e-core.spells.WbaCw5ZrN1sZtbzu]{Bouclier anti-flèches (Feu)}
Arrow Shield (Heavens)@Compendium[wfrp4e-core.spells.nKmrZwwjvYcS0XhE]{Bouclier anti-flèches (Cieux)}
Arrow Shield (Life)@Compendium[wfrp4e-core.spells.teHEJyd80PqNHT9q]{Bouclier anti-flèches (Vie)}
Arrow Shield (Light)@Compendium[wfrp4e-core.spells.YsBRTjGGyISyUudZ]{Bouclier anti-flèches (Lumière)}
Arrow Shield (Metal)@Compendium[wfrp4e-core.spells.AywiuNyA8bMS7yFi]{Bouclier anti-flèches (Métal)}
Arrow Shield (Necromancy)@Compendium[wfrp4e-core.spells.iEZnh3fR7X0E0wqb]{Bouclier anti-flèches (Nécromancie)}
Arrow Shield (Shadow)@Compendium[wfrp4e-core.spells.G2LKMsTYXJhzF1Tn]{Bouclier anti-flèches (Ombres)}
Banishment@Compendium[wfrp4e-core.spells.sknoH0n9P9uC0qvW]{Bannissement}
Barkskin@Compendium[wfrp4e-core.spells.B7iwAtfa9EgNvKMz]{Écorce}
Bearing@Compendium[wfrp4e-core.spells.MIgKjszwK6hk7Pps]{Repères}
Beast Form@Compendium[wfrp4e-core.spells.WkItvLT52Bob8Up3]{Forme bestiale}
Beast Master@Compendium[wfrp4e-core.spells.FaHVRxdljzqklNTC]{Maître de la bête}
Beast Tongue@Compendium[wfrp4e-core.spells.gwnNz34Rh0jW4WmF]{Langue bestiale}
Blast@Compendium[wfrp4e-core.spells.gJYXrZa4pW49R9Vu]{Explosion}
Blast (Beasts)@Compendium[wfrp4e-core.spells.HhfVsm3ZRwSahyMU]{Explosion (Bête)}
Blast (Daemonology)@Compendium[wfrp4e-core.spells.3mZ76XJX38pT2d7r]{Explosion (Démonologie)}
Blast (Death)@Compendium[wfrp4e-core.spells.1QNOsOlEtjXccQjl]{Explosion (Mort)}
Blast (Fire)@Compendium[wfrp4e-core.spells.ROmZq14yqEXx6zYN]{Explosion (Feu)}
Blast (Heavens)@Compendium[wfrp4e-core.spells.TtiLLfX0a21t2YpO]{Explosion (Cieux)}
Blast (Life)@Compendium[wfrp4e-core.spells.Kh8kZ4aq8Xjp0cyL]{Explosion (Vie)}
Blast (Light)@Compendium[wfrp4e-core.spells.qiLudcBEdA7qgrZp]{Explosion (Lumière)}
Blast (Metal)@Compendium[wfrp4e-core.spells.K0zoHArrRehHV8t2]{Explosion (Métal)}
Blast (Necromancy)@Compendium[wfrp4e-core.spells.vzaBW9F5LVSAAV5H]{Explosion (Nécromancie)}
Blast (Shadow)@Compendium[wfrp4e-core.spells.8rRCSJGIdecFcpxm]{Explosion (Ombres)}
Blight@Compendium[wfrp4e-core.spells.NytMCgP0IXtHnFwm]{Dégradation}
Blinding Light@Compendium[wfrp4e-core.spells.57d5ugakBYcsphah]{Lumière aveuglante}
Bolt@Compendium[wfrp4e-core.spells.QmjYLCaEn3YKHxdv]{Carreau}
Bolt (Beasts)@Compendium[wfrp4e-core.spells.UWg4WPFALcsoPKau]{Carreau (Bête)}
Bolt (Daemonology)@Compendium[wfrp4e-core.spells.Rkg1tMICxdRsH1zB]{Carreau (Démonologie)}
Bolt (Death)@Compendium[wfrp4e-core.spells.zNobG855V6XwHTXh]{Carreau (Mort)}
Bolt (Fire)@Compendium[wfrp4e-core.spells.WqJubE8GuApAeIbb]{Carreau (Feu)}
Bolt (Heavens)@Compendium[wfrp4e-core.spells.ha5MaHoDPxGtzP2b]{Carreau (Cieux)}
Bolt (Life)@Compendium[wfrp4e-core.spells.Vk12kqjcz6aV9o7w]{Carreau (Vie)}
Bolt (Light)@Compendium[wfrp4e-core.spells.WNJuabKOre8IAu8y]{Carreau (Lumière)}
Bolt (Metal)@Compendium[wfrp4e-core.spells.mC2uukGCM4zykxUu]{Carreau (Métal)}
Bolt (Necromancy)@Compendium[wfrp4e-core.spells.B8dvTJtaLCHgfFuP]{Carreau (Nécromancie)}
Bolt (Shadow)@Compendium[wfrp4e-core.spells.mifZY3mi9Ed23DAv]{Carreau (Ombres)}
Breath@Compendium[wfrp4e-core.spells.cfvdViThaoOHyuSk]{Souffle}
Breath (Beasts)@Compendium[wfrp4e-core.spells.QkBpHcb2BuZMSDZt]{Souffle (Bête)}
Breath (Daemonology)@Compendium[wfrp4e-core.spells.XS9i8PasJ33rNA2g]{Souffle (Démonologie)}
Breath (Death)@Compendium[wfrp4e-core.spells.QcJfSMq3c50pGBen]{Souffle (Mort)}
Breath (Fire)@Compendium[wfrp4e-core.spells.FOmZlLUDNDfMAPuT]{Souffle (Feu)}
Breath (Heavens)@Compendium[wfrp4e-core.spells.44AO7oTKwqUu78C1]{Souffle (Cieux)}
Breath (Life)@Compendium[wfrp4e-core.spells.KGRIdIDE57BV54Ub]{Souffle (Vie)}
Breath (Light)@Compendium[wfrp4e-core.spells.3eGh2vUgXRk3Czj8]{Souffle (Lumière)}
Breath (Metal)@Compendium[wfrp4e-core.spells.ZvNSOZZzAcjRBVBk]{Souffle (Métal)}
Breath (Necromancy)@Compendium[wfrp4e-core.spells.nbqYJUSsVCSzmOU5]{Souffle (Nécromancie)}
Breath (Shadow)@Compendium[wfrp4e-core.spells.BKHMI2wI74a42ZQa]{Souffle (Ombres)}
Bridge@Compendium[wfrp4e-core.spells.3DvCrKaYw2mF42Nr]{Pont}
Bridge (Beasts)@Compendium[wfrp4e-core.spells.UkRsdBSzr4K0JsM8]{Pont (Bête)}
Bridge (Daemonology)@Compendium[wfrp4e-core.spells.Ofrbz80hutlvBXUe]{Pont (Démonologie)}
Bridge (Death)@Compendium[wfrp4e-core.spells.enG7NVLPcWHfRXg8]{Pont (Mort)}
Bridge (Fire)@Compendium[wfrp4e-core.spells.xQVVrzVD7V7yCq31]{Pont (Feu)}
Bridge (Heavens)@Compendium[wfrp4e-core.spells.hFjPSbBEQXVQNXmW]{Pont (Cieux)}
Bridge (Life)@Compendium[wfrp4e-core.spells.PKuHxRwZ2SVVIE0y]{Pont (Vie)}
Bridge (Light)@Compendium[wfrp4e-core.spells.PiX6AORRMfW2xB6f]{Pont (Lumière)}
Bridge (Metal)@Compendium[wfrp4e-core.spells.IlDSC7F3Ns4NDbyi]{Pont (Métal)}
Bridge (Necromancy)@Compendium[wfrp4e-core.spells.hNOnwU998jZlnGuk]{Pont (Nécromancie)}
Bridge (Shadow)@Compendium[wfrp4e-core.spells.tHjTlaoBNbBHbW6z]{Pont (Ombres)}
Careful Step@Compendium[wfrp4e-core.spells.cjD53QYSatQwL6CR]{Pas léger}
Caress of Laniph@Compendium[wfrp4e-core.spells.vEuljwoWR2rOTU5y]{Caresse de Laniph}
Cauterise@Compendium[wfrp4e-core.spells.aWxO2jpMvmZUEsK9]{Cauteriser}
Cerulean Shield@Compendium[wfrp4e-core.spells.wTfoDOFOnvQykpdm]{Bouclier céruléen}
Chain Attack@Compendium[wfrp4e-core.spells.Bx5CC17pRNITWhg8]{Attaques en chaîne}
Chain Attack (Beasts)@Compendium[wfrp4e-core.spells.ET5sNnUsGslSNEAm]{Attaques en chaîne (Bête)}
Chain Attack (Daemonology)@Compendium[wfrp4e-core.spells.fdhFU2wkYwpJIssM]{Attaques en chaîne (Démonologie)}
Chain Attack (Death)@Compendium[wfrp4e-core.spells.HM9WbGOtUngY5TEm]{Attaques en chaîne (Mort)}
Chain Attack (Fire)@Compendium[wfrp4e-core.spells.mYXcxTjAUlIHhlPo]{Attaques en chaîne (Feu)}
Chain Attack (Heavens)@Compendium[wfrp4e-core.spells.w5b653yUVENuVHzy]{Attaques en chaîne (Cieux)}
Chain Attack (Life)@Compendium[wfrp4e-core.spells.NUTVPuhPWA7xCCg3]{Attaques en chaîne (Vie)}
Chain Attack (Light)@Compendium[wfrp4e-core.spells.kWo9eTmKWa0MxtrB]{Attaques en chaîne (Lumière)}
Chain Attack (Metal)@Compendium[wfrp4e-core.spells.urBvn79ntZ0q44Op]{Attaques en chaîne (Métal)}
Chain Attack (Necromancy)@Compendium[wfrp4e-core.spells.oqV2s1CJix4eAUW7]{Attaques en chaîne (Nécromancie)}
Chain Attack (Shadow)@Compendium[wfrp4e-core.spells.2jXYoW0CJoA5BoMd]{Attaques en chaîne (Ombres)}
Choking Shadows@Compendium[wfrp4e-core.spells.qTVOlj1aU6776dep]{Ombres étrangleuses}
Clarity of Thought@Compendium[wfrp4e-core.spells.82mmGLTAKQ4mrsBl]{Clarté d'esprit}
Comet of Casandora@Compendium[wfrp4e-core.spells.208BiJLY0jXxelbd]{Comète de Cassandora}
Conserve@Compendium[wfrp4e-core.spells.cSjAAjixcMdYrKBz]{Conservation}
Corrosive Blood@Compendium[wfrp4e-core.spells.qgWy2MsylxyyIm6V]{Sang corrosif}
Corrosive Blood (Beasts)@Compendium[wfrp4e-core.spells.MasblfJG8SmHrVCF]{Sang corrosif (Bête)}
Corrosive Blood (Daemonology)@Compendium[wfrp4e-core.spells.iR1C4icHTLBIH2Mk]{Sang corrosif (Démonologie)}
Corrosive Blood (Death)@Compendium[wfrp4e-core.spells.Rpc1VfsdIfw0Zjzk]{Sang corrosif (Mort)}
Corrosive Blood (Fire)@Compendium[wfrp4e-core.spells.qwGYRwFkwMSHZDDj]{Sang corrosif (Feu)}
Corrosive Blood (Heavens)@Compendium[wfrp4e-core.spells.a0rkY56nliMmxoCf]{Sang corrosif (Cieux)}
Corrosive Blood (Life)@Compendium[wfrp4e-core.spells.LKrfb4o45tmEOmeg]{Sang corrosif (Vie)}
Corrosive Blood (Light)@Compendium[wfrp4e-core.spells.7QaIq838arGHgzKl]{Sang corrosif (Lumière)}
Corrosive Blood (Metal)@Compendium[wfrp4e-core.spells.E5M0Thnx6HFj46At]{Sang corrosif (Métal)}
Corrosive Blood (Necromancy)@Compendium[wfrp4e-core.spells.yiI4a3Yufcm8NXN6]{Sang corrosif (Nécromancie)}
Corrosive Blood (Shadow)@Compendium[wfrp4e-core.spells.YijozJARkRLN9iGA]{Sang corrosif (Ombres)}
Creeping Menace@Compendium[wfrp4e-core.spells.a8npXWG2o4BxhtVV]{Menace rampante}
Crown of Flame@Compendium[wfrp4e-core.spells.dzfhqgUxWleNZbyW]{Couronne de Flammes}
Crucible of Chamon@Compendium[wfrp4e-core.spells.wHaglsPNfRMpKB9K]{Creuset de Chamon}
Curse of Crippling Pain@Compendium[wfrp4e-core.spells.ZOlM8KjLfNIefAb0]{Malédiction de douleur paralysante}
Curse of Ill-Fortune@Compendium[wfrp4e-core.spells.sq47SZ1v9Pofa4L1]{Malédiction de malchance}
Daemonbane@Compendium[wfrp4e-core.spells.PIL4yBcGlk96cvcb]{Fauche-démon}
Dark Vision@Compendium[wfrp4e-core.spells.wx23bbK7pPqY2quI]{Vision dans l'obscurité}
Dark Vision (Beasts)@Compendium[wfrp4e-core.spells.aPhKykUG3I5R9P4u]{Vision dans l'obscurité (Bête)}
Dark Vision (Daemonology)@Compendium[wfrp4e-core.spells.ovBsMewZzi7r6Ffx]{Vision dans l'obscurité (Démonologie)}
Dark Vision (Death)@Compendium[wfrp4e-core.spells.0Aec8e6nNCmSWIvQ]{Vision dans l'obscurité (Mort)}
Dark Vision (Fire)@Compendium[wfrp4e-core.spells.v0agvdbIs8UC85IE]{Vision dans l'obscurité (Feu)}
Dark Vision (Heavens)@Compendium[wfrp4e-core.spells.bgQpVEP0PZNsAheP]{Vision dans l'obscurité (Cieux)}
Dark Vision (Life)@Compendium[wfrp4e-core.spells.zcH25H2Zr7Xwq1Xd]{Vision dans l'obscurité (Vie)}
Dark Vision (Light)@Compendium[wfrp4e-core.spells.wzDP2S8dphUGFWO3]{Vision dans l'obscurité (Lumière)}
Dark Vision (Metal)@Compendium[wfrp4e-core.spells.EfUTKGyYDR361dVu]{Vision dans l'obscurité (Métal)}
Dark Vision (Necromancy)@Compendium[wfrp4e-core.spells.hbWZeX5jVtGJXoTe]{Vision dans l'obscurité (Nécromancie)}
Dark Vision (Shadow)@Compendium[wfrp4e-core.spells.NwZeZd81PTXTK1WO]{Vision dans l'obscurité (Ombres)}
Dart@Compendium[wfrp4e-core.spells.T8nErqWnkqdvcNVz]{Fléchette}
Dazzle@Compendium[wfrp4e-core.spells.IFuUxTGFQAxp40si]{Éblouissant}
Destroy Lesser Demon@Compendium[wfrp4e-core.spells.Qg98e2pFgCW63aB1]{Destruction de Démon Mineur}
Detect Daemon@Compendium[wfrp4e-core.spells.MlF3ci9vxiDZYhmZ]{Détection de démon}
Distracting@Compendium[wfrp4e-core.spells.tNMQQhBYzHoRq7AD]{Perturbant}
Distracting (Beasts)@Compendium[wfrp4e-core.spells.JpKZSkyF2CZqkZ6d]{Perturbant (Bête)}
Distracting (Daemonology)@Compendium[wfrp4e-core.spells.7HSRFiY46vA8M2zY]{Perturbant (Démonologie)}
Distracting (Death)@Compendium[wfrp4e-core.spells.14tKnA2ILXw2oaMK]{Perturbant (Mort)}
Distracting (Fire)@Compendium[wfrp4e-core.spells.MdNzPNRgxkdMwbjj]{Perturbant (Feu)}
Distracting (Heavens)@Compendium[wfrp4e-core.spells.fxdXQBC34eLXcySP]{Perturbant (Cieux)}
Distracting (Life)@Compendium[wfrp4e-core.spells.tbgyz5b4lR8k1Nk4]{Perturbant (Vie)}
Distracting (Light)@Compendium[wfrp4e-core.spells.vxbYDthV1f7D2nyx]{Perturbant (Lumière)}
Distracting (Metal)@Compendium[wfrp4e-core.spells.QNkxj6vyBm2WEdOA]{Perturbant (Métal)}
Distracting (Necromancy)@Compendium[wfrp4e-core.spells.iLOpRevlkpP4zLMx]{Perturbant (Nécromancie)}
Distracting (Shadow)@Compendium[wfrp4e-core.spells.aT6shbEGQSOfHx57]{Perturbant (Ombres)}
Dome@Compendium[wfrp4e-core.spells.uZdUrRFgNpTtY00H]{Dôme}
Dome (Beasts)@Compendium[wfrp4e-core.spells.ILOsg4RfvpUhXhQa]{Dôme (Bête)}
Dome (Daemonology)@Compendium[wfrp4e-core.spells.mJAINJ9ufafeIUmq]{Dôme (Démonologie)}
Dome (Death)@Compendium[wfrp4e-core.spells.qh3sckvH1ioaHODD]{Dôme (Mort)}
Dome (Fire)@Compendium[wfrp4e-core.spells.rxFZ0x4pfbK3LfZy]{Dôme (Feu)}
Dome (Heavens)@Compendium[wfrp4e-core.spells.sWILR54qy3qsdQYQ]{Dôme (Cieux)}
Dome (Life)@Compendium[wfrp4e-core.spells.nZw4oN4yDo5ycrmk]{Dôme (Vie)}
Dome (Light)@Compendium[wfrp4e-core.spells.NM9FGsijRFByrl3M]{Dôme (Lumière)}
Dome (Metal)@Compendium[wfrp4e-core.spells.Ft0YBUCMN0VzE39c]{Dôme (Métal)}
Dome (Necromancy)@Compendium[wfrp4e-core.spells.SAjnT6vjJXmh8tDy]{Dôme (Nécromancie)}
Dome (Shadow)@Compendium[wfrp4e-core.spells.zXlqNl9jSTRWyKpm]{Dôme (Ombres)}
Doppelganger@Compendium[wfrp4e-core.spells.OcYPErjJzQKOX2aI]{Jumeau maléfique}
Drain@Compendium[wfrp4e-core.spells.O7G5olv0aWLpb7Ea]{Drain}
Drop@Compendium[wfrp4e-core.spells.Wt6ikb1n9CivB3JN]{Chute}
Drop (Beasts)@Compendium[wfrp4e-core.spells.1PXlilHc99nrt0zn]{Chute (Bête)}
Drop (Daemonology)@Compendium[wfrp4e-core.spells.rL22KLFNVzGrE9mG]{Chute (Démonologie)}
Drop (Death)@Compendium[wfrp4e-core.spells.gQAE2ifjBM5Cp9Gi]{Chute (Mort)}
Drop (Fire)@Compendium[wfrp4e-core.spells.0FlFXS9yDuLnr92k]{Chute (Feu)}
Drop (Heavens)@Compendium[wfrp4e-core.spells.R0n47B7PvdOaTl23]{Chute (Cieux)}
Drop (Life)@Compendium[wfrp4e-core.spells.1ltl7lPCsWIr4H6h]{Chute (Vie)}
Drop (Light)@Compendium[wfrp4e-core.spells.jsWKM8TEIwgacZfm]{Chute (Lumière)}
Drop (Metal)@Compendium[wfrp4e-core.spells.ZbJqeT8ffXMOPTMI]{Chute (Métal)}
Drop (Necromancy)@Compendium[wfrp4e-core.spells.aMQMBNGgolHJAzXF]{Chute (Nécromancie)}
Drop (Shadow)@Compendium[wfrp4e-core.spells.P136wDtdbsbvOsAk]{Chute (Ombres)}
Dying Words@Compendium[wfrp4e-core.spells.jD1PJib6NkYkatmq]{Dernières paroles}
Earthblood@Compendium[wfrp4e-core.spells.BU56aMyn8Hfaamrb]{Sang de la Terre}
Earthpool@Compendium[wfrp4e-core.spells.2cwR2BPkdi7IuV3e]{Eau de la terre}
Eavesdrop@Compendium[wfrp4e-core.spells.fmx1OeOsxkGf21wa]{Tendre l'oreille}
Enchant Weapon@Compendium[wfrp4e-core.spells.YDGi3tMQuK9MxXpt]{Arme enchantée}
Entangle@Compendium[wfrp4e-core.spells.WeIdAA7KArjUZfyH]{Enchevêtrement}
Entangle (Beasts)@Compendium[wfrp4e-core.spells.ZwyxHwGUEIEAwgg6]{Enchevêtrement (Bête)}
Entangle (Daemonology)@Compendium[wfrp4e-core.spells.bVcEr9YvMfBcE3tH]{Enchevêtrement (Démonologie)}
Entangle (Death)@Compendium[wfrp4e-core.spells.cuN77AhQ490wCmk6]{Enchevêtrement (Mort)}
Entangle (Fire)@Compendium[wfrp4e-core.spells.h71V7JrSChemeLxk]{Enchevêtrement (Feu)}
Entangle (Heavens)@Compendium[wfrp4e-core.spells.IYclEWSEVogFXf3w]{Enchevêtrement (Cieux)}
Entangle (Life)@Compendium[wfrp4e-core.spells.dQqsVfVNdO1PTdah]{Enchevêtrement (Vie)}
Entangle (Light)@Compendium[wfrp4e-core.spells.RShhxeal5U14P8Bh]{Enchevêtrement (Lumière)}
Entangle (Metal)@Compendium[wfrp4e-core.spells.dBIIdzVZh6cnbWDG]{Enchevêtrement (Métal)}
Entangle (Necromancy)@Compendium[wfrp4e-core.spells.3BB6QnnDq8OvchRk]{Enchevêtrement (Nécromancie)}
Entangle (Shadow)@Compendium[wfrp4e-core.spells.J0DWeBBIa40gzWqV]{Enchevêtrement (Ombres)}
Fat of the Land@Compendium[wfrp4e-core.spells.JGRyUj4AZq8oGpKs]{Graisse de la terre}
Fate’s Fickle Fingers@Compendium[wfrp4e-core.spells.lzTmKnhO1MY9ycPU]{Ironie du Destin}
Fearsome@Compendium[wfrp4e-core.spells.neCKUJ2yMwEl6GAX]{Effrayant}
Fearsome (Beasts)@Compendium[wfrp4e-core.spells.X6dcIMLvfo9aiOoA]{Effrayant (Bête)}
Fearsome (Daemonology)@Compendium[wfrp4e-core.spells.pMPYQC15eRIaJ2eL]{Effrayant (Démonologie)}
Fearsome (Death)@Compendium[wfrp4e-core.spells.cVDkOI7AQdpJo0kj]{Effrayant (Mort)}
Fearsome (Fire)@Compendium[wfrp4e-core.spells.eJJRmbyFlNheGjMG]{Effrayant (Feu)}
Fearsome (Heavens)@Compendium[wfrp4e-core.spells.3XZDELqDQ1BBUAmI]{Effrayant (Cieux)}
Fearsome (Life)@Compendium[wfrp4e-core.spells.pzccnv4TOgIyrf9R]{Effrayant (Vie)}
Fearsome (Light)@Compendium[wfrp4e-core.spells.pToozYRwOH6rC7ol]{Effrayant (Lumière)}
Fearsome (Metal)@Compendium[wfrp4e-core.spells.3dpFC0lsOPXEcTMX]{Effrayant (Métal)}
Fearsome (Necromancy)@Compendium[wfrp4e-core.spells.31sQbAwCE7viJDXi]{Effrayant (Nécromancie)}
Fearsome (Shadow)@Compendium[wfrp4e-core.spells.N9ICWNGmsYcBzmtv]{Effrayant (Ombres)}
Feather of Lead@Compendium[wfrp4e-core.spells.oMTXHeEhzlQ3sx5M]{Plume de plomb}
Firewall@Compendium[wfrp4e-core.spells.1RjTFiv9ooOW35LV]{Mur de feu}
Flaming Hearts@Compendium[wfrp4e-core.spells.nTbPOZJx5WB6Y4lL]{Coeurs ardents}
Flaming Sword of Rhuin@Compendium[wfrp4e-core.spells.3SzMz3ZiGzbHRjTP]{L'Épée ardente de Rhuin}
Flight@Compendium[wfrp4e-core.spells.9wmmln3DunIqGXM2]{Envol}
Flight (Beasts)@Compendium[wfrp4e-core.spells.yC4ry3bNP2Lc04WK]{Envol (Bête)}
Flight (Daemonology)@Compendium[wfrp4e-core.spells.hf9G7f8sMqZ0xweB]{Envol (Démonologie)}
Flight (Death)@Compendium[wfrp4e-core.spells.tkPrVMoZibf5kbhe]{Envol (Mort)}
Flight (Fire)@Compendium[wfrp4e-core.spells.eYrq2tyVjW8C84w6]{Envol (Feu)}
Flight (Heavens)@Compendium[wfrp4e-core.spells.U6P57Y8nJ3H7pFvx]{Envol (Cieux)}
Flight (Life)@Compendium[wfrp4e-core.spells.Q8LodCIteEa4ufrn]{Envol (Vie)}
Flight (Light)@Compendium[wfrp4e-core.spells.Pw4GYr6PZgFuOiT5]{Envol (Lumière)}
Flight (Metal)@Compendium[wfrp4e-core.spells.5QO1LkRkxCfaWCtS]{Envol (Métal)}
Flight (Necromancy)@Compendium[wfrp4e-core.spells.vLhS0qwea9LjvK6u]{Envol (Nécromancie)}
Flight (Shadow)@Compendium[wfrp4e-core.spells.lpSjuZSgTF8U62RG]{Envol (Ombres)}
Flock of Doom@Compendium[wfrp4e-core.spells.yR82MDHEF4zQoYyR]{Vol du destin}
Fool’s Gold@Compendium[wfrp4e-core.spells.druJd5YFjyW5liTz]{L'Or de fous}
Forest of Thorns@Compendium[wfrp4e-core.spells.H1Q0YjIX1wuS4phQ]{Forêt d'épines}
Forge of Chamon@Compendium[wfrp4e-core.spells.ddnMcWMN4MftxGLr]{Forge de Chamon}
Glittering Robe@Compendium[wfrp4e-core.spells.v1Qrow72mtUtgkFC]{Écaille d'acier}
Goodwill@Compendium[wfrp4e-core.spells.YaG8xthJF0zLy7xs]{Bonne Volonté}
Great Fires of U’Zhul@Compendium[wfrp4e-core.spells.HpFkVJ2lYPAWumUL]{Grands Feux d'U'Zhul}
Gust@Compendium[wfrp4e-core.spells.NeERYZQcEa0lI9kz]{Coup de vent}
Haunting Horror@Compendium[wfrp4e-core.spells.PkqPqy3Fy9fawQZ8]{Horreur obsédante}
Healing Light@Compendium[wfrp4e-core.spells.HOqmAugvYdgLwoQt]{Lumière de guérison}
Hunter's Hide@Compendium[wfrp4e-core.spells.QSHKYMNy2yr1n9ww]{Hunter's Hide}
Illusion@Compendium[wfrp4e-core.spells.OwH4hpe1EReh06t3]{Illusion}
Lie of the Land@Compendium[wfrp4e-core.spells.DOfyDATb1gcGOMry]{Configuration du terrain}
Lifebloom@Compendium[wfrp4e-core.spells.K37ME8M75JvtM3Vr]{Don de Vie}
Light@Compendium[wfrp4e-core.spells.wj5pXiyhNjaP6pom]{Lumière}
Magic Flame@Compendium[wfrp4e-core.spells.rZqr5r61z1kw9Zg5]{Flamme magique}
Magic Shield@Compendium[wfrp4e-core.spells.mJVPaGIUEg8cfpJj]{Bouclier magique}
Magic Shield (Beasts)@Compendium[wfrp4e-core.spells.4ZtCco8IAK6cucSc]{Bouclier magique (Bête)}
Magic Shield (Daemonology)@Compendium[wfrp4e-core.spells.24ichKVP2EzyO5ob]{Bouclier magique (Démonologie)}
Magic Shield (Death)@Compendium[wfrp4e-core.spells.6ax6mO8DPMTrG5Sp]{Bouclier magique (Mort)}
Magic Shield (Fire)@Compendium[wfrp4e-core.spells.f8bYT3ZqKLUZSZBY]{Bouclier magique (Feu)}
Magic Shield (Heavens)@Compendium[wfrp4e-core.spells.6eu6VVbYzq5mCNGW]{Bouclier magique (Cieux)}
Magic Shield (Life)@Compendium[wfrp4e-core.spells.PpMxNEHPJag1i9WJ]{Bouclier magique (Vie)}
Magic Shield (Light)@Compendium[wfrp4e-core.spells.pxfB6tZZVwKK8SG3]{Bouclier magique (Lumière)}
Magic Shield (Metal)@Compendium[wfrp4e-core.spells.Y7JOj3hCqq2OSzAb]{Bouclier magique (Métal)}
Magic Shield (Necromancy)@Compendium[wfrp4e-core.spells.eTAzKM5j06KwtdBt]{Bouclier magique (Nécromancie)}
Magic Shield (Shadow)@Compendium[wfrp4e-core.spells.gWMhBQ8wm1Td78Si]{Bouclier magique (Ombres)}
Manifest Lesser Daemon@Compendium[wfrp4e-core.spells.soyujZNyzu7NKxMs]{Manifestation de Démon Mineur}
Marsh Lights@Compendium[wfrp4e-core.spells.jdv7gnwKk6eEPtQK]{Feux follets}
Mindslip@Compendium[wfrp4e-core.spells.dGSUQiUmXHrGqwxY]{Perte de mémoire}
Mirkride@Compendium[wfrp4e-core.spells.xiTk3pZX0GYVO2TQ]{Chevaucher l'Obscurité}
Move Object@Compendium[wfrp4e-core.spells.wQ5ld4yCCqhG0lqL]{Déplacement d'objet}
Move Object (Beasts)@Compendium[wfrp4e-core.spells.CL2ysmNjmJopV9Tu]{Déplacement d'objet (Bête)}
Move Object (Daemonology)@Compendium[wfrp4e-core.spells.d9VeHlESTpPYww5o]{Déplacement d'objet (Démonologie)}
Move Object (Death)@Compendium[wfrp4e-core.spells.RuwPnfpvjAWQZzS3]{Déplacement d'objet (Mort)}
Move Object (Fire)@Compendium[wfrp4e-core.spells.TtuJjGh4fdU4mwBN]{Déplacement d'objet (Feu)}
Move Object (Heavens)@Compendium[wfrp4e-core.spells.MhpmVs0WVP96uOnw]{Déplacement d'objet (Cieux)}
Move Object (Life)@Compendium[wfrp4e-core.spells.cwnBquEIHjnvkJ7E]{Déplacement d'objet (Vie)}
Move Object (Light)@Compendium[wfrp4e-core.spells.fTjzN0fg1SmqvHYI]{Déplacement d'objet (Lumière)}
Move Object (Metal)@Compendium[wfrp4e-core.spells.0JlQdHgFqT4RcPh1]{Déplacement d'objet (Métal)}
Move Object (Necromancy)@Compendium[wfrp4e-core.spells.5rRSPXB064kaD7S6]{Déplacement d'objet (Nécromancie)}
Move Object (Shadow)@Compendium[wfrp4e-core.spells.kD7mJjGJ6owqV9nI]{Déplacement d'objet (Ombres)}
Mundane Aura@Compendium[wfrp4e-core.spells.T9cEYAUhqBiTxrp2]{Aura ordinaire}
Mundane Aura (Beasts)@Compendium[wfrp4e-core.spells.bNdVPhv1OT8LJnnt]{Aura ordinaire (Bête)}
Mundane Aura (Daemonology)@Compendium[wfrp4e-core.spells.aCOdKvw68yopHYJ2]{Aura ordinaire (Démonologie)}
Mundane Aura (Death)@Compendium[wfrp4e-core.spells.Ynbfu2VJDrYqN9aW]{Aura ordinaire (Mort)}
Mundane Aura (Fire)@Compendium[wfrp4e-core.spells.7pHcU30nMhgd0V5N]{Aura ordinaire (Feu)}
Mundane Aura (Heavens)@Compendium[wfrp4e-core.spells.QtWY9ruGFQ6cncLQ]{Aura ordinaire (Cieux)}
Mundane Aura (Life)@Compendium[wfrp4e-core.spells.CJvmSabjtw2SNmMA]{Aura ordinaire (Vie)}
Mundane Aura (Light)@Compendium[wfrp4e-core.spells.kLkvuZtSsedoypGm]{Aura ordinaire (Lumière)}
Mundane Aura (Metal)@Compendium[wfrp4e-core.spells.2hxE68YnEOLIceHb]{Aura ordinaire (Métal)}
Mundane Aura (Necromancy)@Compendium[wfrp4e-core.spells.pqdLI8MBZlExTRmV]{Aura ordinaire (Nécromancie)}
Mundane Aura (Shadow)@Compendium[wfrp4e-core.spells.oNnQmw8hJH6f5ct0]{Aura ordinaire (Ombres)}
Murmured Whisper@Compendium[wfrp4e-core.spells.pDvOunMrvaYoXjd9]{Murmures}
Mutable Metal@Compendium[wfrp4e-core.spells.jHMsJaaIQjyhYAgV]{Métal changeant}
Mystifying Miasma@Compendium[wfrp4e-core.spells.Tv9BIBNTPT6JV0HG]{Miasme mystifiant}
Nepenthe@Compendium[wfrp4e-core.spells.aVUKVQTwtWuQXIgx]{Nepenthès}
Net of Amyntok@Compendium[wfrp4e-core.spells.38qRyF13jCszeOe1]{Filet d'Amyntok}
Nostrum@Compendium[wfrp4e-core.spells.sxFriQ3XAtvwlmMq]{Panacée}
Octagram@Compendium[wfrp4e-core.spells.NwVgP5msZHERwEfK]{Octogramme}
Open Lock@Compendium[wfrp4e-core.spells.jWfYyh7QyK6XaQRU]{Serrure ouverte}
Part the Branches@Compendium[wfrp4e-core.spells.TL2IelDsaRWflCeY]{Séparer les branches}
Phâ’s Protection@Compendium[wfrp4e-core.spells.dS5zK3lMCumvuAAF]{Protection de Phâ}
Produce Small Animal@Compendium[wfrp4e-core.spells.EyBc9yQqFUNIP9S1]{Créer un petit animal}
Protection from Rain@Compendium[wfrp4e-core.spells.NXHZ3RtPN3SrSH8I]{Protection contre la pluie}
Protective Charm@Compendium[wfrp4e-core.spells.ngOHho544P05W7Qi]{Charme protecteur}
Purge@Compendium[wfrp4e-core.spells.RiqCDDKRHTEJp3Bm]{Purification}
Purify Water@Compendium[wfrp4e-core.spells.hW0jBCKx6noFKNMc]{Purificateur de l'eau}
Purple Pall of Shyish@Compendium[wfrp4e-core.spells.RkBdnQ4cjTLPUSim]{Le Voile violent de Shyish}
Push@Compendium[wfrp4e-core.spells.lM8c3LlW4s3KBVHR]{Poussée}
Push (Beasts)@Compendium[wfrp4e-core.spells.3Wilae1bkHUDR7Aj]{Poussée (Bête)}
Push (Daemonology)@Compendium[wfrp4e-core.spells.7wK4srcIgc8USRYt]{Poussée (Démonologie)}
Push (Death)@Compendium[wfrp4e-core.spells.RmIJdvjohr7n6nio]{Poussée (Mort)}
Push (Fire)@Compendium[wfrp4e-core.spells.99QJoyyHfYBQz5Wz]{Poussée (Feu)}
Push (Heavens)@Compendium[wfrp4e-core.spells.cfuqgV2PTnjMrgT7]{Poussée (Cieux)}
Push (Life)@Compendium[wfrp4e-core.spells.RYrUWrXH6O22FZY8]{Poussée (Vie)}
Push (Light)@Compendium[wfrp4e-core.spells.W47xmdZ3ztckm89t]{Poussée (Lumière)}
Push (Metal)@Compendium[wfrp4e-core.spells.S51eCqcrjMv7u7uH]{Poussée (Métal)}
Push (Necromancy)@Compendium[wfrp4e-core.spells.KvapXfYXiCcAOe7S]{Poussée (Nécromancie)}
Push (Shadow)@Compendium[wfrp4e-core.spells.BWjNKaTolhIPbNcO]{Poussée (Ombres)}
Raise Dead@Compendium[wfrp4e-core.spells.FRfAqPlOdwiIitR5]{Relever les morts}
Reanimate@Compendium[wfrp4e-core.spells.7BJDTRG65hwt1fUK]{Réanimation}
Regenerate@Compendium[wfrp4e-core.spells.4NQUrs2PUNpYxlWs]{Régénération}
Rot@Compendium[wfrp4e-core.spells.Wz1bb0g1mklJHfft]{Putréfaction}
Sanctify@Compendium[wfrp4e-core.spells.0HjjloXfVly8tZ4E]{Sanctifier}
Screaming Skull@Compendium[wfrp4e-core.spells.HqInHmOviuLqymdm]{Crane Hurlant}
Scythe of Shyish@Compendium[wfrp4e-core.spells.SQJQrAsAKc2Icatv]{La Faux de Shyish}
Shadowsteed@Compendium[wfrp4e-core.spells.1ndRohs7YMmV2OHh]{Destrier d'Ombre}
Shadowstep@Compendium[wfrp4e-core.spells.VFWBB9zlwCe5J9EZ]{Portail d'Ombre}
Shock@Compendium[wfrp4e-core.spells.hKFeMAsntzXscIGy]{Choc}
Shroud of Invisibility@Compendium[wfrp4e-core.spells.2ccKksxXFIMD2YLs]{Linceul d'Invisibilité}
Sleep@Compendium[wfrp4e-core.spells.4ePe5oNQakA8nJlk]{Sommeil}
Sly Hands@Compendium[wfrp4e-core.spells.BMnu4XfgsSqVnCB8]{En catimini}
Soul Vortex@Compendium[wfrp4e-core.spells.eJPjVeW9UEH891rm]{Vortex d'âmes}
Sounds@Compendium[wfrp4e-core.spells.lghYQXa227Sf8ofT]{Bruits}
Speed of Thought@Compendium[wfrp4e-core.spells.OB05oGoSZDzNYLjW]{Pensée rapide}
Spring@Compendium[wfrp4e-core.spells.XnNAe4R8hSXY5IsS]{Source}
Starcrossed@Compendium[wfrp4e-core.spells.XXEIfkXpNxpfkamo]{Maudit}
Steal Life@Compendium[wfrp4e-core.spells.ifjDVtgGEh787p20]{Vol de vie}
Stream of Corruption@Compendium[wfrp4e-core.spells.XhyZ140R1iA1J7wZ]{Flot de Corruption}
Swift Passing@Compendium[wfrp4e-core.spells.fWZxupuKCC2rZ2g7]{Mort rapide}
T'Essla's Arc@Compendium[wfrp4e-core.spells.r3BgUFaaCzsLIUDi]{Arc de T'essla}
Teleport@Compendium[wfrp4e-core.spells.CVam8L1cNsnxZHRR]{Téléportation}
Teleport (Beasts)@Compendium[wfrp4e-core.spells.4mUZ6UbD79OwrjqX]{Téléportation (Bête)}
Teleport (Daemonology)@Compendium[wfrp4e-core.spells.xyCPobJtYNSpYtr6]{Téléportation (Démonologie)}
Teleport (Death)@Compendium[wfrp4e-core.spells.vwphk8DwbBkUABDZ]{Téléportation (Mort)}
Teleport (Fire)@Compendium[wfrp4e-core.spells.uej1rqpQSyzK9wRT]{Téléportation (Feu)}
Teleport (Heavens)@Compendium[wfrp4e-core.spells.AwRVLEJZCLwPJKy2]{Téléportation (Cieux)}
Teleport (Life)@Compendium[wfrp4e-core.spells.4jNBpvM21vnZgUFw]{Téléportation (Vie)}
Teleport (Light)@Compendium[wfrp4e-core.spells.lniqTi6PlyCuLji6]{Téléportation (Lumière)}
Teleport (Metal)@Compendium[wfrp4e-core.spells.SJNRH1G9RJJftD5g]{Téléportation (Métal)}
Teleport (Necromancy)@Compendium[wfrp4e-core.spells.HZh2wueRro8Ks3yF]{Téléportation (Nécromancie)}
Teleport (Shadow)@Compendium[wfrp4e-core.spells.6GaqchV2dL60Xfsm]{Téléportation (Ombres)}
Terrifying@Compendium[wfrp4e-core.spells.J0wUSVSnos7fBprP]{Terrifiant}
Terrifying (Beasts)@Compendium[wfrp4e-core.spells.o1FW2B7PwFhcT53j]{Terrifiant (Bête)}
Terrifying (Daemonology)@Compendium[wfrp4e-core.spells.Iz88EUCTmIYQXOY9]{Terrifiant (Démonologie)}
Terrifying (Death)@Compendium[wfrp4e-core.spells.0IzOYTDhNWrgHoXJ]{Terrifiant (Mort)}
Terrifying (Fire)@Compendium[wfrp4e-core.spells.5BZJbIORcBTnHCKL]{Terrifiant (Feu)}
Terrifying (Heavens)@Compendium[wfrp4e-core.spells.N1aBnhPpQUu0Bkuh]{Terrifiant (Cieux)}
Terrifying (Life)@Compendium[wfrp4e-core.spells.rtnNRlwNbYst1gZz]{Terrifiant (Vie)}
Terrifying (Light)@Compendium[wfrp4e-core.spells.IuKAeoZqCEAC9NtH]{Terrifiant (Lumière)}
Terrifying (Metal)@Compendium[wfrp4e-core.spells.fHYVckKx4fnqz75K]{Terrifiant (Métal)}
Terrifying (Necromancy)@Compendium[wfrp4e-core.spells.SfYwurel0h4mLYV0]{Terrifiant (Nécromancie)}
Terrifying (Shadow)@Compendium[wfrp4e-core.spells.cSmcBYrwV385Tgbt]{Terrifiant (Ombres)}
The Amber Spear@Compendium[wfrp4e-core.spells.LTUC1fqIuuGSUaQ1]{La lance d'Ambre}
The Evil Eye@Compendium[wfrp4e-core.spells.CnydL8p3PVAuF98w]{Mauvais Oeil}
The First Portent of Amul@Compendium[wfrp4e-core.spells.04Qv4t0qMMZIUhRw]{Le Premier Signe d'Amul}
The Second Portent of Amul@Compendium[wfrp4e-core.spells.xPTG5wLvHULLEM2p]{Le Second Signe d'Amul}
The Third Portent of Amul@Compendium[wfrp4e-core.spells.uIamxlmA6SWAa3YR]{Le Troisième Signe d'Amul}
Transmutation of Chamon@Compendium[wfrp4e-core.spells.oZV3ImfM1kxQUCSD]{Transmutation de Chamon}
Treason of Tzeentch@Compendium[wfrp4e-core.spells.xhGjRScyU149nK3i]{Trahison de Tzeentch}
Twitch@Compendium[wfrp4e-core.spells.u0ykDg71xyZWSxn6]{Secousse}
Vanhel's Call@Compendium[wfrp4e-core.spells.foqexF06lguqPFK6]{L'appel de Vanhel}
Ward@Compendium[wfrp4e-core.spells.LOEdFN7fP0JHuGoE]{Protection}
Ward (Beasts)@Compendium[wfrp4e-core.spells.U9eqCSFiwY04tN1F]{Protection (Bête)}
Ward (Daemonology)@Compendium[wfrp4e-core.spells.W8VbsItRrBVRg9kg]{Protection (Démonologie)}
Ward (Death)@Compendium[wfrp4e-core.spells.4iSZ7vop0NVz8xih]{Protection (Mort)}
Ward (Fire)@Compendium[wfrp4e-core.spells.UZux81S2ZnD9sx6U]{Protection (Feu)}
Ward (Heavens)@Compendium[wfrp4e-core.spells.uaCXMXoY3UaJ26ne]{Protection (Cieux)}
Ward (Life)@Compendium[wfrp4e-core.spells.mRQTe8QOSt7MEwa0]{Protection (Vie)}
Ward (Light)@Compendium[wfrp4e-core.spells.SGREGarfzIreXelO]{Protection (Lumière)}
Ward (Metal)@Compendium[wfrp4e-core.spells.JvK9jnniMihpDuDX]{Protection (Métal)}
Ward (Necromancy)@Compendium[wfrp4e-core.spells.ondTnKp6pE0s0bDD]{Protection (Nécromancie)}
Ward (Shadow)@Compendium[wfrp4e-core.spells.aCDDeeYF24waaPgT]{Protection (Ombres)}
Warning@Compendium[wfrp4e-core.spells.PbCD8mjAKQSnxAe6]{Alerte}
Wyssan’s Wildform@Compendium[wfrp4e-core.spells.trieNRiCCulTerPb]{Incarnation de Wyssan}
"} -{"_id":"egICsLEJ7yFUooAb","name":"Traduction des Talents","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Accurate Shot@Compendium[wfrp4e-core.talents.XIcDsaW4D8wScezw]{Tir précis}
Acute Sense@Compendium[wfrp4e-core.talents.9h82z72XGo9tfgQS]{Sens Aiguisé}
Aethyric Attunement@Compendium[wfrp4e-core.talents.1IZWRr7BYOIcqPlQ]{Harmonisation Aethyrique}
Alley Cat@Compendium[wfrp4e-core.talents.wBhPFggGqIXwbx1r]{Chat de gouttière}
Ambidextrous@Compendium[wfrp4e-core.talents.IFKWu98qmWpaSfUi]{Ambidextre}
Animal Affinity@Compendium[wfrp4e-core.talents.9fq6p9Q6H02LjaSi]{Affinité avec les animaux}
Arcane Magic@Compendium[wfrp4e-core.talents.3O9clK7LGyuLTHPW]{Magie des Arcanes}
Argumentative@Compendium[wfrp4e-core.talents.41JhsSNW1Ttza3JK]{Ergoteur}
Artistic@Compendium[wfrp4e-core.talents.2eq8Ejotk54AZYwX]{Artiste}
Attractive@Compendium[wfrp4e-core.talents.6l3jvIAvrKxt0lA9]{Attirant}
Battle Rage@Compendium[wfrp4e-core.talents.FtjMeeGEO4YuGIBv]{Contrôle de la Frénésie}
Beat Blade@Compendium[wfrp4e-core.talents.L1MoarOIAlia1Ti4]{Battement}
Beneath Notice@Compendium[wfrp4e-core.talents.5KP9sOoLSGvj9EXp]{Insignifiant}
Berserk Charge@Compendium[wfrp4e-core.talents.oRx92ByVNEBN6YkK]{Charge Berserk}
Blather@Compendium[wfrp4e-core.talents.77p3QRKgFWakkndF]{Baratiner}
Bless@Compendium[wfrp4e-core.talents.QyjWtSdnVMT04l5Y]{Béni}
Bookish@Compendium[wfrp4e-core.talents.zv3IyoU2wkPZu8pD]{Studieux}
Break and Enter@Compendium[wfrp4e-core.talents.wrpVYmdiIy1jPulc]{Effraction}
Briber@Compendium[wfrp4e-core.talents.34EBUkHQkrqF1sq7]{Suborneur}
Cardsharp@Compendium[wfrp4e-core.talents.Yiw5h1Kj4B2WLlfm]{Tricheur}
Careful Strike@Compendium[wfrp4e-core.talents.GU1KpgY3MeFIaDaq]{Frappe précise}
Carouser@Compendium[wfrp4e-core.talents.hTgrGkWnmIR4xhVe]{Noctambule}
Cat-tongued@Compendium[wfrp4e-core.talents.LzgxyMknSHjSkkeQ]{Menteur}
Catfall@Compendium[wfrp4e-core.talents.g4Q6AtzZuo5iIvD4]{Souplesse féline}
Chaos Magic@Compendium[wfrp4e-core.talents.hiU7vhBOVpVI8c7C]{Magie du Chaos}
Combat Aware@Compendium[wfrp4e-core.talents.0LdHytqyNmg2pcAX]{Vigilance}
Combat Master@Compendium[wfrp4e-core.talents.NDetl9BhAQBVnHKf]{Maîtrise du combat}
Combat Reflexes@Compendium[wfrp4e-core.talents.tXKX29QZBdHmyMc7]{Combat Instinctif}
Commanding Presence@Compendium[wfrp4e-core.talents.x8g3U68oi8XzWiYr]{Présence imposante}
Concoct@Compendium[wfrp4e-core.talents.wXcJWxJdw0ib5b8W]{Concocter}
Contortionist@Compendium[wfrp4e-core.talents.TaYriYcJkFuIdBKp]{Contortionniste}
Coolheaded@Compendium[wfrp4e-core.talents.JLzJws09GMw9GWBV]{Imperturbable}
Crack the Whip@Compendium[wfrp4e-core.talents.edsenrEYTLOtpa6b]{Claquer le fouet}
Craftsman@Compendium[wfrp4e-core.talents.GRRN3XAKIpEVCY7z]{Maitre Artisan}
Criminal@Compendium[wfrp4e-core.talents.r180vP86SlwyJc8W]{Criminel}
Deadeye Shot@Compendium[wfrp4e-core.talents.jLJzZb4keVvE0qRv]{Tir mortel}
Dealmaker@Compendium[wfrp4e-core.talents.epPBu7x6BRWp2PHG]{Négociateur}
Detect Artifact@Compendium[wfrp4e-core.talents.g3y373FnWJEAxgEB]{Détection d'artefact}
Diceman@Compendium[wfrp4e-core.talents.cAxNctMFWIAjDgV3]{Maîtrise des dés}
Dirty Fighting@Compendium[wfrp4e-core.talents.2Nzqsc9aclP6rpnl]{Combat déloyal}
Disarm@Compendium[wfrp4e-core.talents.DS44h27iCOvUBa4O]{Désarmer}
Distract@Compendium[wfrp4e-core.talents.MoiYSfJRPHu7SZCQ]{Distraire}
Doomed@Compendium[wfrp4e-core.talents.fn8QNQQ1S2rh12Us]{Destinée}
Drilled@Compendium[wfrp4e-core.talents.J9MK0AIaTbvd5oF6]{Coude-à-coude}
Dual Wielder@Compendium[wfrp4e-core.talents.URwIDtInCsxOoGqM]{Maniement de 2 armes}
Embezzle@Compendium[wfrp4e-core.talents.HIofcsDLjXGKzSZf]{Escroqueur}
Enclosed Fighter@Compendium[wfrp4e-core.talents.VscjNv6RzHFb9CQp]{Combattant en espace clos}
Etiquette@Compendium[wfrp4e-core.talents.sYbgpSnRqSZWgwFP]{Savoir-vivre}
Fast Hands@Compendium[wfrp4e-core.talents.9sMAf0xmehjEmUao]{Mains agiles}
Fast Shot@Compendium[wfrp4e-core.talents.5eDd6iFeR9G6cCfz]{Tir Rapide}
Fearless@Compendium[wfrp4e-core.talents.8pVzgPkgWpTJvfhG]{Sans peur}
Feint@Compendium[wfrp4e-core.talents.0pXva9EODy9bngQX]{Feinte}
Field Dressing@Compendium[wfrp4e-core.talents.fEFAMNqh8nJIfBkM]{Pansement de fortune}
Fisherman@Compendium[wfrp4e-core.talents.1kgHcImgfyKI1IYp]{Pêcheur}
Flagellant@Compendium[wfrp4e-core.talents.Gs10qhA4CDmZyb1g]{Flagellant}
Flee!@Compendium[wfrp4e-core.talents.jrFIFLhyOYwcyMUl]{Fuite!}
Fleet Footed@Compendium[wfrp4e-core.talents.E3vTSCzgrasNijUO]{Véloce}
Frenzy@Compendium[wfrp4e-core.talents.hXcfygzujgyMN1uI]{Frénésie}
Frightening@Compendium[wfrp4e-core.talents.mqo51ORnxijcqNNu]{Effrayant}
Furious Assault@Compendium[wfrp4e-core.talents.BlHVzfs0Ow6IYEDw]{Assaut féroce}
Gregarious@Compendium[wfrp4e-core.talents.8lSoPDGrmeTIaapm]{Sociable}
Gunner@Compendium[wfrp4e-core.talents.0ep8BNMiZGVLTHpr]{Artilleur}
Hardy@Compendium[wfrp4e-core.talents.zImcTgEl2XNnbu5W]{Dur à cuire}
Hatred@Compendium[wfrp4e-core.talents.E98mVLZgE8bX5vQW]{Haine}
Holy Hatred@Compendium[wfrp4e-core.talents.RyxOZqcBNZ7Zw721]{Haine sacrée}
Holy Visions@Compendium[wfrp4e-core.talents.Nj3tC8A5fZ3zEdMR]{Visions Sacrées}
Hunter's Eye@Compendium[wfrp4e-core.talents.bxbTiLzbaz4vdukT]{Œil du chasseur}
Impassioned Zeal@Compendium[wfrp4e-core.talents.oGbDwnLOn3isPJpO]{Ferveur ardente}
Implacable@Compendium[wfrp4e-core.talents.xx8SgdWYEjKct7ym]{Endurci}
In-fighter@Compendium[wfrp4e-core.talents.tX9R9rSYm2YyEnOK]{Combattant au contact}
Inspiring@Compendium[wfrp4e-core.talents.WCXnFSV4WOSmzzc4]{Exaltant}
Instinctive Diction@Compendium[wfrp4e-core.talents.BYChSVfMG004eflQ]{Diction Instinctive}
Invoke@Compendium[wfrp4e-core.talents.voV0C2ar1bKpcpnH]{Invocation}
Iron Jaw@Compendium[wfrp4e-core.talents.UaDGF5MBFBwPq5YU]{Machoires d'acier}
Iron Will@Compendium[wfrp4e-core.talents.mgeiaDZXei7JBEgo]{Volonté de fer}
Jump Up@Compendium[wfrp4e-core.talents.BIaLeh4CPFaTMbFz]{Saut carpé}
Kingpin@Compendium[wfrp4e-core.talents.RbnrfHf7GSQap0ig]{Caïd}
Lightning Reflexes@Compendium[wfrp4e-core.talents.BbStIySkF1hDM2zq]{Reflexes Foudroyants}
Linguistics@Compendium[wfrp4e-core.talents.726gbrANZt8OqXr5]{Linguistique}
Lip Reading@Compendium[wfrp4e-core.talents.OXfa9uwG36syzaix]{Lire sur les Lèvres}
Luck@Compendium[wfrp4e-core.talents.u0CFf3xwiyidD9T5]{Chanceux}
Magic Resistance@Compendium[wfrp4e-core.talents.eowbsW6oHGSNJmxV]{Résistance à la Magie}
Magical Sense@Compendium[wfrp4e-core.talents.6w30u0VPsAicrqb5]{Perception de la magie}
Magnum Opus@Compendium[wfrp4e-core.talents.QdvY9hoDTbr12jXq]{Magnum Opus}
Marksman@Compendium[wfrp4e-core.talents.5lcttqGToT54WFrl]{Tireur de précision}
Master Orator@Compendium[wfrp4e-core.talents.ZWcTbeK8i9vKph2a]{Grand Orateur}
Master Tradesman@Compendium[wfrp4e-core.talents.GHmXS9zGNx3PWYZc]{Travailleur qualifié}
Master of Disguise@Compendium[wfrp4e-core.talents.WoXShzaYkV5F6c48]{Maitre en déguisement}
Menacing@Compendium[wfrp4e-core.talents.0hn6UaKq8CoZP2zD]{Menaçant}
Mimic@Compendium[wfrp4e-core.talents.LU6Ycl5z4kp1Wr04]{Imitation}
Night Vision@Compendium[wfrp4e-core.talents.x0WMGwuQzReXcQrs]{Vision Nocturne}
Nimble Fingered@Compendium[wfrp4e-core.talents.7bZjB82f6LSkeczP]{Doigts de fée}
Noble Blood@Compendium[wfrp4e-core.talents.1IVGksL10N7GVrw3]{Noblesse}
Nose for Trouble@Compendium[wfrp4e-core.talents.AcnFuDKRemLI9ey7]{Flairer les ennuis}
Numismatics@Compendium[wfrp4e-core.talents.5QcrpLQWWrsbKR79]{Numismate}
Old Salt@Compendium[wfrp4e-core.talents.L74MT9BDwE4CfutY]{Loup de mer}
Orientation@Compendium[wfrp4e-core.talents.afREA9q7v4Scuozn]{Orientation}
Panhandle@Compendium[wfrp4e-core.talents.eEHauevJWhmzvCSx]{Faire la manche}
Perfect Pitch@Compendium[wfrp4e-core.talents.pQjZdMJDDaz0DpAD]{Oreille absolue}
Petty Magic@Compendium[wfrp4e-core.talents.mdPGZsn2396dEpOf]{Magie Mineure}
Pharmacist@Compendium[wfrp4e-core.talents.G4rPR0XGiYFUZWKi]{Pharmacologie}
Pilot@Compendium[wfrp4e-core.talents.WEH97InIX29nzgW1]{Pilote}
Public Speaker@Compendium[wfrp4e-core.talents.XU7D9CCmumuhqDUi]{Orateur}
Pure Soul@Compendium[wfrp4e-core.talents.wNvPXAhlKABl6hpk]{Ame pure}
Rapid Reload@Compendium[wfrp4e-core.talents.769B469sqx6FXPfn]{Rechargement rapide}
Reaction Strike@Compendium[wfrp4e-core.talents.4AqSkJnFPqNuTkos]{Frappe réactive}
Read/Write@Compendium[wfrp4e-core.talents.GogGbYxkVdCmiKqf]{Lire/Ecrire}
Relentless@Compendium[wfrp4e-core.talents.SgjJMBgc85aswvhm]{Impitoyable}
Resistance@Compendium[wfrp4e-core.talents.vMYEkrWj0ip6ZOdv]{Resistant}
Resolute@Compendium[wfrp4e-core.talents.uRvOg8AnCcP2ufx8]{Déterminé}
Reversal@Compendium[wfrp4e-core.talents.QolNfSUkezLoAcky]{Renversement}
Riposte@Compendium[wfrp4e-core.talents.x8jsChg17VQ9XgiK]{Riposte}
River Guide@Compendium[wfrp4e-core.talents.PoYlemaEIbZw30Em]{Guide fluvial}
Robust@Compendium[wfrp4e-core.talents.nWLsoWQBCjPRKxYx]{Robuste}
Roughrider@Compendium[wfrp4e-core.talents.9CAkY3SQjQxRTlNJ]{Cavalier émérite}
Rover@Compendium[wfrp4e-core.talents.q58lK4kULJZB5GjE]{Nomade}
Savant@Compendium[wfrp4e-core.talents.580fwhKfOZJFxMID]{Savant}
Savvy@Compendium[wfrp4e-core.talents.QsrXxGZiHjth7RMg]{Perspicace}
Scale Sheer Surface@Compendium[wfrp4e-core.talents.MGEPI4jNhymNIRVz]{Grimpeur}
Schemer@Compendium[wfrp4e-core.talents.b4x1qEWcevX7xK58]{Intrigant}
Sea Legs@Compendium[wfrp4e-core.talents.Ij9N3G8jzxb4lrwy]{Pied marin}
Seasoned Traveller@Compendium[wfrp4e-core.talents.jQmIu8P85tF0njmD]{Voyageur aguerri}
Second Sight@Compendium[wfrp4e-core.talents.OEjUvJKi0xmBwbS2]{Seconde Vue}
Secret Identity@Compendium[wfrp4e-core.talents.PJ4oxDExnuFNr2Fi]{Identité Secrête}
Shadow@Compendium[wfrp4e-core.talents.XSb3QVB9ipPBFt56]{Discret}
Sharp@Compendium[wfrp4e-core.talents.oQzTJEXUx28sCiH3]{Vivacité}
Sharpshooter@Compendium[wfrp4e-core.talents.jrYW2OyDHd1Md2my]{Tireur d'élite}
Shieldsman@Compendium[wfrp4e-core.talents.IT3s7rmQFGNzIfYq]{Porte-bouclier}
Sixth Sense@Compendium[wfrp4e-core.talents.mNoCuaVbFBflfO6X]{Sixième Sens}
Slayer@Compendium[wfrp4e-core.talents.GOtpCOZ2br14GrBW]{Meurtrier}
Small@Compendium[wfrp4e-core.talents.eBwHnWdwQJ590ASb]{Petit}
Sniper@Compendium[wfrp4e-core.talents.cygaI9gq4BQJvbB5]{Tireur embusqué}
Speedreader@Compendium[wfrp4e-core.talents.kQbVFzsh4LbaIzHU]{Lecture rapide}
Sprinter@Compendium[wfrp4e-core.talents.AwUUEwwf2Vt4ksCN]{Sprinter}
Step Aside@Compendium[wfrp4e-core.talents.HpGjzrSR4tdogJtl]{Pas de côté}
Stone Soup@Compendium[wfrp4e-core.talents.spdiWsONKTzkLbg3]{Brouet}
Stout-hearted@Compendium[wfrp4e-core.talents.IogM5gnsoOX63w7j]{Coeur vaillant}
Strider@Compendium[wfrp4e-core.talents.1dUizIgLBgn4jICC]{Bon marcheur}
Strike Mighty Blow@Compendium[wfrp4e-core.talents.4MJJCiOKPkBByYwW]{Coup puissant}
Strike to Injure@Compendium[wfrp4e-core.talents.RWJrupj9seau0w31]{Frappe blessante}
Strike to Stun@Compendium[wfrp4e-core.talents.jt0DmVK9IiF6Sd2h]{Frappe assomante}
Strong Back@Compendium[wfrp4e-core.talents.FF41XPboORgyDNsv]{Infatigable}
Strong Legs@Compendium[wfrp4e-core.talents.CV9btQn09S9Fn8Jk]{Bonnes jambes}
Strong Swimmer@Compendium[wfrp4e-core.talents.4wnQc19allWlyOGe]{Nageur endurant}
Strong-minded@Compendium[wfrp4e-core.talents.Ywo6fZNPC4zbHHSQ]{Obstiné}
Sturdy@Compendium[wfrp4e-core.talents.qZ4cFy6z482ZONuA]{Costaud}
Suave@Compendium[wfrp4e-core.talents.LPgjE0cexTVOBVCY]{Affable}
Super Numerate@Compendium[wfrp4e-core.talents.sBHarYXR2o7jD1VY]{Doué en calcul}
Supportive@Compendium[wfrp4e-core.talents.aZavWXbSXVBmWeJi]{Coopératif}
Sure Shot@Compendium[wfrp4e-core.talents.phXzaUxl3mFqkmDq]{Tir sûr}
Surgery@Compendium[wfrp4e-core.talents.NP4EHyyh1yOLbsPU]{Chirurgie}
Tenacious@Compendium[wfrp4e-core.talents.jviOQmy0luQOySC2]{Persévérant}
Tinker@Compendium[wfrp4e-core.talents.6lQRRgjz8IZH4bbV]{Bricoleur}
Tower of Memories@Compendium[wfrp4e-core.talents.V9N0LMnXf1WYseCL]{Tour des souvenirs}
Trapper@Compendium[wfrp4e-core.talents.a7v422EZcOUUC20X]{Trappeur}
Trick Riding@Compendium[wfrp4e-core.talents.FjTnaxixsu1ShNNr]{Acrobaties équestres}
Tunnel Rat@Compendium[wfrp4e-core.talents.Z91GFaT6FhEwyESU]{Rat d'égout}
Unshakable@Compendium[wfrp4e-core.talents.8oWhzlcw7oiHGMFu]{Inébranlable}
Very Resilient@Compendium[wfrp4e-core.talents.RmY0CUjiFYZ3GEKY]{Très résistant}
Very Strong@Compendium[wfrp4e-core.talents.Zf0vk2rjllpDh0Ua]{Très fort}
War Leader@Compendium[wfrp4e-core.talents.vCgEAetBMngR53aT]{Seigneur de guerre}
War Wizard@Compendium[wfrp4e-core.talents.F2EiuAc6IpaGd4J7]{Mage de guerre}
Warrior Born@Compendium[wfrp4e-core.talents.zGQ0ShUTSlUvVtWh]{Guerrier né}
Waterman@Compendium[wfrp4e-core.talents.tlEg21DHMEJoWcJq]{Marinier}
Wealthy@Compendium[wfrp4e-core.talents.OROfMcVqRnZHINkU]{Nanti}
Well-prepared@Compendium[wfrp4e-core.talents.SHH2vUpNxj0wmmPT]{Prévoyant}
Witch!@Compendium[wfrp4e-core.talents.qdMbxW09FUoYBzmB]{Sorcier!}
"} -{"_id":"lDEV1syhsfGkUcvw","name":"Traduction des Traits","permission":{"default":0,"WpJo3fNJMmmfTMDk":3},"folder":"","flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
# Tentacles@Compendium[wfrp4e-core.traits.4xF7M6ylIiGntekh]{# Tentacules X}
Afraid@Compendium[wfrp4e-core.traits.4CMKeDTDrRQZbPIJ]{Craintif}
Amphibious@Compendium[wfrp4e-core.traits.sJ3yX1kvzu2hgNq5]{Amphibie}
Animosity@Compendium[wfrp4e-core.traits.0VpT5yubw4UL7j6f]{Animosité}
Arboreal@Compendium[wfrp4e-core.traits.rOV2s6PQBBrhpMOv]{Arboricole}
Armour@Compendium[wfrp4e-core.traits.VUJUZVN3VYhOaPjj]{Armure}
Belligerent@Compendium[wfrp4e-core.traits.GbDyBCu8ZjDp6dkj]{Belliqueux}
Bestial@Compendium[wfrp4e-core.traits.AGcJl5rHjkyIQBPP]{Bestial}
Big@Compendium[wfrp4e-core.traits.a8MC97PLzl10WocT]{Grand}
Bite@Compendium[wfrp4e-core.traits.pLW9SVX0TVTYPiPv]{Morsure}
Blessed@Compendium[wfrp4e-core.traits.5muSFXd6oc760uVj]{Bienheureux}
Bounce@Compendium[wfrp4e-core.traits.j6v78dnOOdCB6c3d]{Bond}
Breath@Compendium[wfrp4e-core.traits.uqGxFOEqeurwkAO3]{Souffle}
Brute@Compendium[wfrp4e-core.traits.15ENOMf345S5AL68]{Brutal}
Champion@Compendium[wfrp4e-core.traits.4mF5Sp3t09kZhBYc]{Champion}
Chill Grasp@Compendium[wfrp4e-core.traits.7HSUM2iPZLX4ueIW]{Etreinte glaciale}
Clever@Compendium[wfrp4e-core.traits.Ni4hNAPv3LhTpgMA]{Intelligent}
Cold Blooded@Compendium[wfrp4e-core.traits.mCh1KK9jomwFZcLB]{A Sang Froid}
Constrictor@Compendium[wfrp4e-core.traits.KynNUYYKzTMeHrKl]{Constricteur}
Construct@Compendium[wfrp4e-core.traits.UB4mDroL6S1F9B4u]{Fabriqué}
Corrosive Blood@Compendium[wfrp4e-core.traits.M5QSWOYt2Rbv2yxW]{Sang corrosif}
Corruption@Compendium[wfrp4e-core.traits.xsGbDFqK2qh7lsIj]{Corruption}
Cunning@Compendium[wfrp4e-core.traits.3WI8mhTinC8inxyj]{Sournois}
Daemonic@Compendium[wfrp4e-core.traits.v3uzEthcq0JRar0J]{Démoniaque}
Dark Vision@Compendium[wfrp4e-core.traits.JQa5DLnTs2SEzRrc]{Infravision}
Die Hard@Compendium[wfrp4e-core.traits.UsJ2uIOOtHA7JqD5]{Dur à cuire}
Disease@Compendium[wfrp4e-core.traits.PaW8i6JOxWyzAZCz]{Maladie}
Distracting@Compendium[wfrp4e-core.traits.MVI0lXcg6vvtooAF]{Perturbant}
Elite@Compendium[wfrp4e-core.traits.9NROryHer1uXAKwY]{Élite}
Ethereal@Compendium[wfrp4e-core.traits.tNWrJUOArwfWXsPw]{Éthéré}
Fast@Compendium[wfrp4e-core.traits.9MjH4xyVrd3Inzak]{Rapide}
Fear@Compendium[wfrp4e-core.traits.pTorrE0l3VybAbtn]{Peur}
Flight@Compendium[wfrp4e-core.traits.EO05HX7jql0g605A]{Vol}
Frenzy@Compendium[wfrp4e-core.traits.yRhhOlt18COq4e1q]{Frénésie}
Fury@Compendium[wfrp4e-core.traits.fjd1u9VAgiYzhBRp]{Rage}
Ghostly Howl@Compendium[wfrp4e-core.traits.plVyl4vjS2fX16Rv]{Hurlement fantomatique}
Hardy@Compendium[wfrp4e-core.traits.HbrwGhUl0ZXz4kLA]{Endurant}
Hatred@Compendium[wfrp4e-core.traits.aE3pyW20Orvdjzj0]{Haine}
Horns (Feature)@Compendium[wfrp4e-core.traits.BqPZn6q3VHn9HUrW]{Cornes x (aspect)}
Hungry@Compendium[wfrp4e-core.traits.xneBqGOs1QS7kfUr]{Affamé}
Immunity@Compendium[wfrp4e-core.traits.3wCtgMDNnu8MFmyk]{Immunité}
Immunity to Psychology@Compendium[wfrp4e-core.traits.IAWyzDfC286a9MPz]{Immunité Psychologique}
Infected@Compendium[wfrp4e-core.traits.V0c3qBU1CMm8bmsW]{Infecté}
Infestation@Compendium[wfrp4e-core.traits.TBcdTlYSRH8Rd1x0]{Parasité}
Leader@Compendium[wfrp4e-core.traits.wGTD2LezlI6Atyy0]{Meneur}
Magic Resistance@Compendium[wfrp4e-core.traits.yrkI7ATjqLPDTFmZ]{Résistance à la Magie}
Magical@Compendium[wfrp4e-core.traits.mDgEMOoJpi8DkRYb]{Magique}
Mental Corruption@Compendium[wfrp4e-core.traits.AGreVSdN2jDSenEl]{Corruption mentale}
Miracles@Compendium[wfrp4e-core.traits.c1T7MelXEZLQfpVv]{Miracles}
Mutation@Compendium[wfrp4e-core.traits.lV7Bxi3T3ps4QBlc]{Mutation}
Night Vision@Compendium[wfrp4e-core.traits.FmHDbCOy3pH8yKhm]{Vision Nocturne}
Painless@Compendium[wfrp4e-core.traits.wMwSRDmgiF2IdCJr]{Insensible à la douleur}
Petrifying Gaze@Compendium[wfrp4e-core.traits.0eEJ280MIC0IbEop]{Regard pétrifiant}
Prejudice@Compendium[wfrp4e-core.traits.GwjvDLZz3PvK6xgs]{Préjugé}
Ranged (Range)@Compendium[wfrp4e-core.traits.Z1TGphWhic2E3Lfx]{A distance (Portée)}
Rear@Compendium[wfrp4e-core.traits.VFV2dmrfuVJ3RJnD]{Se cabrer}
Regenerate@Compendium[wfrp4e-core.traits.SfUUdOGjdYpr3KSR]{Régénération}
Size@Compendium[wfrp4e-core.traits.8slW8CJ2oVTxeQ6q]{Taille}
Skittish@Compendium[wfrp4e-core.traits.IPKRMGry6WotuS1G]{Nerveux}
Spellcaster@Compendium[wfrp4e-core.traits.vY0CHKsJRV3gYBj3]{Lanceur de Sorts}
Stealthy@Compendium[wfrp4e-core.traits.OzwDT6kzoLYeeR2d]{Furtif}
Stride@Compendium[wfrp4e-core.traits.UmxGZRV0Lw3TZ0Kx]{Foulée}
Stupid@Compendium[wfrp4e-core.traits.9GNpAqgsKzxZKJpp]{Stupide}
Swamp-strider@Compendium[wfrp4e-core.traits.BxAvP2g1KbHPbbbA]{Limicole}
Swarm@Compendium[wfrp4e-core.traits.E2Es82TvBKa7CoDG]{Nuée}
Tail Attack@Compendium[wfrp4e-core.traits.UnJ25lL8aUzem5JO]{Attaque caudale}
Territorial@Compendium[wfrp4e-core.traits.JIAe7i7dqTQBu4do]{Territorial}
Terror@Compendium[wfrp4e-core.traits.kJNAY1YRaCy9IgmT]{Terreur}
Tongue Attack (Range)@Compendium[wfrp4e-core.traits.xg6z63j6BH5AaqLL]{Langue préhensible (Portée)}
Tough@Compendium[wfrp4e-core.traits.k9539MBTFplxsysT]{Coriace}
Tracker@Compendium[wfrp4e-core.traits.ClOlztW6hH8rslbp]{Pisteur}
Trained@Compendium[wfrp4e-core.traits.V0naR1YbYCl0KIxp]{Entraîné}
Undead@Compendium[wfrp4e-core.traits.PFTD9gDvRWW9uh5g]{Mort-vivant}
Unstable@Compendium[wfrp4e-core.traits.D0ImWEIMSDgElsnl]{Instable}
Vampiric@Compendium[wfrp4e-core.traits.3MDwUi7BVxwWVI2V]{Vampirique}
Venom@Compendium[wfrp4e-core.traits.gFkRm9wS65qe18Xv]{Venin}
Vomit@Compendium[wfrp4e-core.traits.JzeN9MZ0xUDvpE2l]{Vomissement}
Wallcrawler@Compendium[wfrp4e-core.traits.KII1gWnxIZ8HzmU5]{Grimpant}
Ward@Compendium[wfrp4e-core.traits.Bvd2aZ0gQUXHfCTh]{Protection}
Weapon@Compendium[wfrp4e-core.traits.AtpAudHA4ybXVlWM]{Arme}
Web@Compendium[wfrp4e-core.traits.Bw6tQyzOhcl7aQ46]{Toile}
"} -{"_id":"056ILNNrLiPq3Gi3","name":"Traduction du Bestiaire","permission":{"default":0,"KlpQY85kaIy1CjL6":3},"flags":{},"content":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Basilisk@Compendium[wfrp4e-core.bestiary.z8f3vySKIpTxGr62]{Basilic}
Bear@Compendium[wfrp4e-core.bestiary.NtEj1B9oWBRWXZZn]{Ours}
Bloodletter of Khorne@Compendium[wfrp4e-core.bestiary.KZkuwdOYmE3nwB2n]{Bloodletter de Khorne}
Boar@Compendium[wfrp4e-core.bestiary.7629Eaow3acVS59H]{Sanglier}
Bog Octopus@Compendium[wfrp4e-core.bestiary.FmEDHnfAe2iIugpt]{Pieuvre des Tourbières}
Bray-Shaman@Compendium[wfrp4e-core.bestiary.cHVOdcEkuatqjYV1]{Chaman-Bray}
Cairn Wraith@Compendium[wfrp4e-core.bestiary.hMbcLVjk7eUdxtqC]{Spectre de Cairn}
Cave Squig@Compendium[wfrp4e-core.bestiary.VMceSpLje0J7lfP0]{Squig des Cavernes}
Chaos Warrior@Compendium[wfrp4e-core.bestiary.a05lQsGjSv62wF0U]{Guerrier du Chaos}
Clanrat@Compendium[wfrp4e-core.bestiary.F1vAZZcmVKkRw8xn]{Guerrier des Clans}
Crypt Ghoul@Compendium[wfrp4e-core.bestiary.6B7LMdYtunAftsFN]{Goule de Crypte}
Cultist@Compendium[wfrp4e-core.bestiary.jfMhkQGzjFWDxVOm]{Cultiste}
Daemonette of Slaanesh@Compendium[wfrp4e-core.bestiary.8gG2Wim6wAlJWRax]{Démonette of Slaanesh}
Demigryph@Compendium[wfrp4e-core.bestiary.MLtDY4bwzGQpaABN]{Demigriffon}
Dire Wolf@Compendium[wfrp4e-core.bestiary.umddAQkmxVYG0AzO]{Loup funeste}
Dog@Compendium[wfrp4e-core.bestiary.R1iWvfV9EvgIc8bJ]{Chien}
Dragon@Compendium[wfrp4e-core.bestiary.LZttdCIxmFr1sGsS]{Dragon}
Fenbeast@Compendium[wfrp4e-core.bestiary.HKSn8iNSS9WcAuJc]{Bête des marais}
Fimir@Compendium[wfrp4e-core.bestiary.kt9ob9BdK6zLDWxn]{Fimir}
Fr'hough Mournbreath@Compendium[wfrp4e-core.bestiary.vK0WXrRDUjztB6QK]{Fr'hough Mournbreath}
Ghost@Compendium[wfrp4e-core.bestiary.GgSxlomoV220kd3G]{Fantôme}
Giant@Compendium[wfrp4e-core.bestiary.HZfZaCjdniz5Z4CP]{Géant}
Giant Rat@Compendium[wfrp4e-core.bestiary.oenbbB0PitRWUBfZ]{Rat géant}
Giant Spider@Compendium[wfrp4e-core.bestiary.VPVnyae6VHeD9cEP]{Araignée Géante}
Goblin@Compendium[wfrp4e-core.bestiary.zzdOpKqBC28J66Mn]{Gobelin}
Gor@Compendium[wfrp4e-core.bestiary.R37OtN5gmPWCYOP3]{Gor}
Griffon@Compendium[wfrp4e-core.bestiary.8g9rnHLiZ1pJcPPt]{Griffon}
Hippogryph@Compendium[wfrp4e-core.bestiary.RiXpMLex8SZf6gaQ]{Hippogryffe}
Horse@Compendium[wfrp4e-core.bestiary.b1R5sW6lYIViJ2ki]{Cheval}
Hydra@Compendium[wfrp4e-core.bestiary.A4G4bTYxot3ZygZO]{Hydre}
Jabberslythe@Compendium[wfrp4e-core.bestiary.9q8QzWB4o7aj6ZxL]{Jabberslythe}
Manticore@Compendium[wfrp4e-core.bestiary.XtVkAVgZRIIgrBXb]{Manticore}
Minotaur@Compendium[wfrp4e-core.bestiary.cAK1bMj1ne7HPcxI]{Minotaure}
Mutant@Compendium[wfrp4e-core.bestiary.P0GkA7DPaLbeOTkf]{Mutant}
Ogre@Compendium[wfrp4e-core.bestiary.nPvDzBcqDGuRaS7x]{Ogre}
Orc@Compendium[wfrp4e-core.bestiary.E7BiDqsB55BrOQut]{Orc}
Pegasus@Compendium[wfrp4e-core.bestiary.Yee9gwxJUceGbnO2]{Pégase}
Pigeon@Compendium[wfrp4e-core.bestiary.ge5zXH2qboxaac7v]{Pigeon}
Rat Ogre@Compendium[wfrp4e-core.bestiary.VfJgGmCTWqb0IDSW]{Rat Ogre}
Skeleton@Compendium[wfrp4e-core.bestiary.Mt5JAoOSaEH1PdcP]{Squelette}
Slenderthigh Whiptongue@Compendium[wfrp4e-core.bestiary.28MwFcDPwpcO12kt]{Slenderthigh Whiptongue}
Snake@Compendium[wfrp4e-core.bestiary.AAiKqD1IoweDpJI7]{Serpent}
Snotling@Compendium[wfrp4e-core.bestiary.wdnXbjtKK7MtsZzc]{Snotling}
Stormvermin@Compendium[wfrp4e-core.bestiary.kl4qHg0mqWOApBqH]{Vermine de choc}
Tomb Banshee@Compendium[wfrp4e-core.bestiary.TWy5l4uYTRAtjfit]{Banshee}
Troll@Compendium[wfrp4e-core.bestiary.7qslmdLa7so3BmFk]{Troll}
Ungor@Compendium[wfrp4e-core.bestiary.vrYs3cbxvXtre6rv]{Ungor}
Vampire@Compendium[wfrp4e-core.bestiary.T5qAtpoKtB8iwTBd]{Vampire}
Varghulf@Compendium[wfrp4e-core.bestiary.XoSSlIsqXkiBlycn]{Chauve-Souris Vampire}
Wolf@Compendium[wfrp4e-core.bestiary.lSvYEInG8sZ03vqd]{Loup}
Wyvern@Compendium[wfrp4e-core.bestiary.KeB0khEeq462qTJw]{Vouivre}
Zombie@Compendium[wfrp4e-core.bestiary.T79RqnDOAQLn3I1s]{Zombie}
"}