@savvy-web/silk 3.13.0 → 3.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changesets-changelog.cjs +105 -85
- package/changesets-changelog.d.cts +2 -2
- package/changesets-changelog.d.ts +2 -2
- package/changesets-changelog.js +106 -86
- package/changesets-markdownlint.cjs +105 -85
- package/changesets-markdownlint.d.cts +2 -2
- package/changesets-markdownlint.d.ts +2 -2
- package/changesets-markdownlint.js +106 -86
- package/package.json +9 -9
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
package/changesets-changelog.js
CHANGED
|
@@ -2262,7 +2262,7 @@ var require_dataloader = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
2262
2262
|
}));
|
|
2263
2263
|
|
|
2264
2264
|
//#endregion
|
|
2265
|
-
//#region ../../node_modules/.pnpm/@changesets+get-github-info@1.0.
|
|
2265
|
+
//#region ../../node_modules/.pnpm/@changesets+get-github-info@1.0.1/node_modules/@changesets/get-github-info/dist/index.mjs
|
|
2266
2266
|
var import_dataloader = /* @__PURE__ */ __toESM(require_dataloader(), 1);
|
|
2267
2267
|
async function readEnvFile() {
|
|
2268
2268
|
const envFile = path$1.resolve(process.cwd(), ".env");
|
|
@@ -2286,7 +2286,12 @@ async function readEnv() {
|
|
|
2286
2286
|
GITHUB_TOKEN: process.env.GITHUB_TOKEN || (await readEnvFileCached()).GITHUB_TOKEN
|
|
2287
2287
|
};
|
|
2288
2288
|
}
|
|
2289
|
-
const GHDataLoader = new import_dataloader.default(batchLoad, {
|
|
2289
|
+
const GHDataLoader = new import_dataloader.default(batchLoad, {
|
|
2290
|
+
maxBatchSize: 50,
|
|
2291
|
+
cacheKeyFn(request) {
|
|
2292
|
+
return request.kind === "commit" ? `commit:${request.repo}:${request.commit}` : `pull:${request.repo}:${request.pull}`;
|
|
2293
|
+
}
|
|
2294
|
+
});
|
|
2290
2295
|
async function loadCommitData(options) {
|
|
2291
2296
|
return await GHDataLoader.load({
|
|
2292
2297
|
...options,
|
|
@@ -2948,7 +2953,7 @@ const DependencyTableRowSchema = Schema.Struct({
|
|
|
2948
2953
|
const DependencyTableSchema = Schema.Array(DependencyTableRowSchema).check(Schema.isMinLength(1));
|
|
2949
2954
|
|
|
2950
2955
|
//#endregion
|
|
2951
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
2956
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/MarkdownNode.js
|
|
2952
2957
|
/**
|
|
2953
2958
|
* A single point in a source document: 1-based `line` and `column`, 0-based
|
|
2954
2959
|
* `offset`.
|
|
@@ -3755,7 +3760,7 @@ const MarkdownNode = Schema.suspend(() => Schema.Union([
|
|
|
3755
3760
|
]));
|
|
3756
3761
|
|
|
3757
3762
|
//#endregion
|
|
3758
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
3763
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/frontmatter.js
|
|
3759
3764
|
const FENCES = /* @__PURE__ */ new Map([
|
|
3760
3765
|
["---", {
|
|
3761
3766
|
format: "yaml",
|
|
@@ -3810,7 +3815,7 @@ const scanFrontmatter = (lines, text) => {
|
|
|
3810
3815
|
};
|
|
3811
3816
|
|
|
3812
3817
|
//#endregion
|
|
3813
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
3818
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncNode.js
|
|
3814
3819
|
/**
|
|
3815
3820
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
3816
3821
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -3986,7 +3991,7 @@ function evaluateNode(node, depth) {
|
|
|
3986
3991
|
}
|
|
3987
3992
|
|
|
3988
3993
|
//#endregion
|
|
3989
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
3994
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/scanner.js
|
|
3990
3995
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
3991
3996
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
3992
3997
|
const isDigit$2 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -4288,7 +4293,7 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
4288
4293
|
};
|
|
4289
4294
|
|
|
4290
4295
|
//#endregion
|
|
4291
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
4296
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/skip.js
|
|
4292
4297
|
/**
|
|
4293
4298
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
4294
4299
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -4319,7 +4324,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
4319
4324
|
};
|
|
4320
4325
|
|
|
4321
4326
|
//#endregion
|
|
4322
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
4327
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/parser.js
|
|
4323
4328
|
/**
|
|
4324
4329
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
4325
4330
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -4733,7 +4738,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
4733
4738
|
};
|
|
4734
4739
|
|
|
4735
4740
|
//#endregion
|
|
4736
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
4741
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/Jsonc.js
|
|
4737
4742
|
/**
|
|
4738
4743
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
4739
4744
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -5302,7 +5307,7 @@ var Jsonc = class Jsonc {
|
|
|
5302
5307
|
};
|
|
5303
5308
|
|
|
5304
5309
|
//#endregion
|
|
5305
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5310
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncEdit.js
|
|
5306
5311
|
/**
|
|
5307
5312
|
* A range within a JSONC document, expressed as a zero-based character
|
|
5308
5313
|
* `offset` and a `length` in UTF-16 code units. Pass to `JsoncFormatter.format`
|
|
@@ -5373,7 +5378,7 @@ var JsoncEdit = class extends Schema.Class("JsoncEdit")({
|
|
|
5373
5378
|
};
|
|
5374
5379
|
|
|
5375
5380
|
//#endregion
|
|
5376
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5381
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/navigate.js
|
|
5377
5382
|
/**
|
|
5378
5383
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
5379
5384
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -5501,7 +5506,7 @@ function navigate(text, path) {
|
|
|
5501
5506
|
}
|
|
5502
5507
|
|
|
5503
5508
|
//#endregion
|
|
5504
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5509
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncModifier.js
|
|
5505
5510
|
/**
|
|
5506
5511
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
5507
5512
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -5630,7 +5635,7 @@ var JsoncModifier = class {
|
|
|
5630
5635
|
};
|
|
5631
5636
|
|
|
5632
5637
|
//#endregion
|
|
5633
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5638
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/carriers.js
|
|
5634
5639
|
/**
|
|
5635
5640
|
* P1's error-code vocabulary. Widens as later phases add parse-error kinds;
|
|
5636
5641
|
* P1 registers exactly one, the hardening-guard trip.
|
|
@@ -5671,7 +5676,7 @@ var GuardExceeded$1 = class extends Error {
|
|
|
5671
5676
|
const isGuardExceeded$1 = (u) => u instanceof GuardExceeded$1;
|
|
5672
5677
|
|
|
5673
5678
|
//#endregion
|
|
5674
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5679
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/MarkdownDiagnostic.js
|
|
5675
5680
|
/**
|
|
5676
5681
|
* Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
|
|
5677
5682
|
* registers exactly the hardening-guard trip; later phases widen the union
|
|
@@ -5752,7 +5757,7 @@ function lineChar(text, offset) {
|
|
|
5752
5757
|
}
|
|
5753
5758
|
|
|
5754
5759
|
//#endregion
|
|
5755
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5760
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blockTypes.js
|
|
5756
5761
|
/** Narrow materialized children to the flow content most constructs contain. */
|
|
5757
5762
|
const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
|
|
5758
5763
|
/** Narrow materialized children to the list items a list contains. */
|
|
@@ -5778,7 +5783,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
|
|
|
5778
5783
|
});
|
|
5779
5784
|
|
|
5780
5785
|
//#endregion
|
|
5781
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5786
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/preprocess.js
|
|
5782
5787
|
/**
|
|
5783
5788
|
* Split `text` into lines, preserving each line's absolute start offset.
|
|
5784
5789
|
*
|
|
@@ -5833,7 +5838,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
|
|
|
5833
5838
|
const columnsToNextTabStop = (column) => 4 - column % 4;
|
|
5834
5839
|
|
|
5835
5840
|
//#endregion
|
|
5836
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5841
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/htmlTags.js
|
|
5837
5842
|
const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
|
|
5838
5843
|
/** An opening tag, with any attributes and an optional self-closing slash. */
|
|
5839
5844
|
const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
|
|
@@ -5845,7 +5850,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
|
|
|
5845
5850
|
const reHtmlTag = new RegExp(`^${HTMLTAG}`);
|
|
5846
5851
|
|
|
5847
5852
|
//#endregion
|
|
5848
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5853
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
|
|
5849
5854
|
const C_LESSTHAN$3 = 60;
|
|
5850
5855
|
const reHtmlBlockOpen = [
|
|
5851
5856
|
/./,
|
|
@@ -5912,7 +5917,7 @@ const htmlBlockStart = {
|
|
|
5912
5917
|
};
|
|
5913
5918
|
|
|
5914
5919
|
//#endregion
|
|
5915
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5920
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/atxHeading.js
|
|
5916
5921
|
const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
|
|
5917
5922
|
const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
|
|
5918
5923
|
const reClosingHashes = /[ \t]+#+[ \t]*$/;
|
|
@@ -5963,7 +5968,7 @@ const atxHeadingStart = {
|
|
|
5963
5968
|
};
|
|
5964
5969
|
|
|
5965
5970
|
//#endregion
|
|
5966
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5971
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/blockquote.js
|
|
5967
5972
|
const C_GREATERTHAN = 62;
|
|
5968
5973
|
/** Blockquote: continues while each line carries its `>` marker. */
|
|
5969
5974
|
const blockquoteConstruct = {
|
|
@@ -5998,12 +6003,12 @@ const blockquoteStart = {
|
|
|
5998
6003
|
};
|
|
5999
6004
|
|
|
6000
6005
|
//#endregion
|
|
6001
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6006
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/entityMap.js
|
|
6002
6007
|
/** The HTML5 named character references, keyed without `&` or `;`. */
|
|
6003
6008
|
const ENTITY_MAP = new Map(JSON.parse("[[\"AElig\",\"Æ\"],[\"AMP\",\"&\"],[\"Aacute\",\"Á\"],[\"Abreve\",\"Ă\"],[\"Acirc\",\"Â\"],[\"Acy\",\"А\"],[\"Afr\",\"𝔄\"],[\"Agrave\",\"À\"],[\"Alpha\",\"Α\"],[\"Amacr\",\"Ā\"],[\"And\",\"⩓\"],[\"Aogon\",\"Ą\"],[\"Aopf\",\"𝔸\"],[\"ApplyFunction\",\"\"],[\"Aring\",\"Å\"],[\"Ascr\",\"𝒜\"],[\"Assign\",\"≔\"],[\"Atilde\",\"Ã\"],[\"Auml\",\"Ä\"],[\"Backslash\",\"∖\"],[\"Barv\",\"⫧\"],[\"Barwed\",\"⌆\"],[\"Bcy\",\"Б\"],[\"Because\",\"∵\"],[\"Bernoullis\",\"ℬ\"],[\"Beta\",\"Β\"],[\"Bfr\",\"𝔅\"],[\"Bopf\",\"𝔹\"],[\"Breve\",\"˘\"],[\"Bscr\",\"ℬ\"],[\"Bumpeq\",\"≎\"],[\"CHcy\",\"Ч\"],[\"COPY\",\"©\"],[\"Cacute\",\"Ć\"],[\"Cap\",\"⋒\"],[\"CapitalDifferentialD\",\"ⅅ\"],[\"Cayleys\",\"ℭ\"],[\"Ccaron\",\"Č\"],[\"Ccedil\",\"Ç\"],[\"Ccirc\",\"Ĉ\"],[\"Cconint\",\"∰\"],[\"Cdot\",\"Ċ\"],[\"Cedilla\",\"¸\"],[\"CenterDot\",\"·\"],[\"Cfr\",\"ℭ\"],[\"Chi\",\"Χ\"],[\"CircleDot\",\"⊙\"],[\"CircleMinus\",\"⊖\"],[\"CirclePlus\",\"⊕\"],[\"CircleTimes\",\"⊗\"],[\"ClockwiseContourIntegral\",\"∲\"],[\"CloseCurlyDoubleQuote\",\"”\"],[\"CloseCurlyQuote\",\"’\"],[\"Colon\",\"∷\"],[\"Colone\",\"⩴\"],[\"Congruent\",\"≡\"],[\"Conint\",\"∯\"],[\"ContourIntegral\",\"∮\"],[\"Copf\",\"ℂ\"],[\"Coproduct\",\"∐\"],[\"CounterClockwiseContourIntegral\",\"∳\"],[\"Cross\",\"⨯\"],[\"Cscr\",\"𝒞\"],[\"Cup\",\"⋓\"],[\"CupCap\",\"≍\"],[\"DD\",\"ⅅ\"],[\"DDotrahd\",\"⤑\"],[\"DJcy\",\"Ђ\"],[\"DScy\",\"Ѕ\"],[\"DZcy\",\"Џ\"],[\"Dagger\",\"‡\"],[\"Darr\",\"↡\"],[\"Dashv\",\"⫤\"],[\"Dcaron\",\"Ď\"],[\"Dcy\",\"Д\"],[\"Del\",\"∇\"],[\"Delta\",\"Δ\"],[\"Dfr\",\"𝔇\"],[\"DiacriticalAcute\",\"´\"],[\"DiacriticalDot\",\"˙\"],[\"DiacriticalDoubleAcute\",\"˝\"],[\"DiacriticalGrave\",\"`\"],[\"DiacriticalTilde\",\"˜\"],[\"Diamond\",\"⋄\"],[\"DifferentialD\",\"ⅆ\"],[\"Dopf\",\"𝔻\"],[\"Dot\",\"¨\"],[\"DotDot\",\"⃜\"],[\"DotEqual\",\"≐\"],[\"DoubleContourIntegral\",\"∯\"],[\"DoubleDot\",\"¨\"],[\"DoubleDownArrow\",\"⇓\"],[\"DoubleLeftArrow\",\"⇐\"],[\"DoubleLeftRightArrow\",\"⇔\"],[\"DoubleLeftTee\",\"⫤\"],[\"DoubleLongLeftArrow\",\"⟸\"],[\"DoubleLongLeftRightArrow\",\"⟺\"],[\"DoubleLongRightArrow\",\"⟹\"],[\"DoubleRightArrow\",\"⇒\"],[\"DoubleRightTee\",\"⊨\"],[\"DoubleUpArrow\",\"⇑\"],[\"DoubleUpDownArrow\",\"⇕\"],[\"DoubleVerticalBar\",\"∥\"],[\"DownArrow\",\"↓\"],[\"DownArrowBar\",\"⤓\"],[\"DownArrowUpArrow\",\"⇵\"],[\"DownBreve\",\"̑\"],[\"DownLeftRightVector\",\"⥐\"],[\"DownLeftTeeVector\",\"⥞\"],[\"DownLeftVector\",\"↽\"],[\"DownLeftVectorBar\",\"⥖\"],[\"DownRightTeeVector\",\"⥟\"],[\"DownRightVector\",\"⇁\"],[\"DownRightVectorBar\",\"⥗\"],[\"DownTee\",\"⊤\"],[\"DownTeeArrow\",\"↧\"],[\"Downarrow\",\"⇓\"],[\"Dscr\",\"𝒟\"],[\"Dstrok\",\"Đ\"],[\"ENG\",\"Ŋ\"],[\"ETH\",\"Ð\"],[\"Eacute\",\"É\"],[\"Ecaron\",\"Ě\"],[\"Ecirc\",\"Ê\"],[\"Ecy\",\"Э\"],[\"Edot\",\"Ė\"],[\"Efr\",\"𝔈\"],[\"Egrave\",\"È\"],[\"Element\",\"∈\"],[\"Emacr\",\"Ē\"],[\"EmptySmallSquare\",\"◻\"],[\"EmptyVerySmallSquare\",\"▫\"],[\"Eogon\",\"Ę\"],[\"Eopf\",\"𝔼\"],[\"Epsilon\",\"Ε\"],[\"Equal\",\"⩵\"],[\"EqualTilde\",\"≂\"],[\"Equilibrium\",\"⇌\"],[\"Escr\",\"ℰ\"],[\"Esim\",\"⩳\"],[\"Eta\",\"Η\"],[\"Euml\",\"Ë\"],[\"Exists\",\"∃\"],[\"ExponentialE\",\"ⅇ\"],[\"Fcy\",\"Ф\"],[\"Ffr\",\"𝔉\"],[\"FilledSmallSquare\",\"◼\"],[\"FilledVerySmallSquare\",\"▪\"],[\"Fopf\",\"𝔽\"],[\"ForAll\",\"∀\"],[\"Fouriertrf\",\"ℱ\"],[\"Fscr\",\"ℱ\"],[\"GJcy\",\"Ѓ\"],[\"GT\",\">\"],[\"Gamma\",\"Γ\"],[\"Gammad\",\"Ϝ\"],[\"Gbreve\",\"Ğ\"],[\"Gcedil\",\"Ģ\"],[\"Gcirc\",\"Ĝ\"],[\"Gcy\",\"Г\"],[\"Gdot\",\"Ġ\"],[\"Gfr\",\"𝔊\"],[\"Gg\",\"⋙\"],[\"Gopf\",\"𝔾\"],[\"GreaterEqual\",\"≥\"],[\"GreaterEqualLess\",\"⋛\"],[\"GreaterFullEqual\",\"≧\"],[\"GreaterGreater\",\"⪢\"],[\"GreaterLess\",\"≷\"],[\"GreaterSlantEqual\",\"⩾\"],[\"GreaterTilde\",\"≳\"],[\"Gscr\",\"𝒢\"],[\"Gt\",\"≫\"],[\"HARDcy\",\"Ъ\"],[\"Hacek\",\"ˇ\"],[\"Hat\",\"^\"],[\"Hcirc\",\"Ĥ\"],[\"Hfr\",\"ℌ\"],[\"HilbertSpace\",\"ℋ\"],[\"Hopf\",\"ℍ\"],[\"HorizontalLine\",\"─\"],[\"Hscr\",\"ℋ\"],[\"Hstrok\",\"Ħ\"],[\"HumpDownHump\",\"≎\"],[\"HumpEqual\",\"≏\"],[\"IEcy\",\"Е\"],[\"IJlig\",\"IJ\"],[\"IOcy\",\"Ё\"],[\"Iacute\",\"Í\"],[\"Icirc\",\"Î\"],[\"Icy\",\"И\"],[\"Idot\",\"İ\"],[\"Ifr\",\"ℑ\"],[\"Igrave\",\"Ì\"],[\"Im\",\"ℑ\"],[\"Imacr\",\"Ī\"],[\"ImaginaryI\",\"ⅈ\"],[\"Implies\",\"⇒\"],[\"Int\",\"∬\"],[\"Integral\",\"∫\"],[\"Intersection\",\"⋂\"],[\"InvisibleComma\",\"\"],[\"InvisibleTimes\",\"\"],[\"Iogon\",\"Į\"],[\"Iopf\",\"𝕀\"],[\"Iota\",\"Ι\"],[\"Iscr\",\"ℐ\"],[\"Itilde\",\"Ĩ\"],[\"Iukcy\",\"І\"],[\"Iuml\",\"Ï\"],[\"Jcirc\",\"Ĵ\"],[\"Jcy\",\"Й\"],[\"Jfr\",\"𝔍\"],[\"Jopf\",\"𝕁\"],[\"Jscr\",\"𝒥\"],[\"Jsercy\",\"Ј\"],[\"Jukcy\",\"Є\"],[\"KHcy\",\"Х\"],[\"KJcy\",\"Ќ\"],[\"Kappa\",\"Κ\"],[\"Kcedil\",\"Ķ\"],[\"Kcy\",\"К\"],[\"Kfr\",\"𝔎\"],[\"Kopf\",\"𝕂\"],[\"Kscr\",\"𝒦\"],[\"LJcy\",\"Љ\"],[\"LT\",\"<\"],[\"Lacute\",\"Ĺ\"],[\"Lambda\",\"Λ\"],[\"Lang\",\"⟪\"],[\"Laplacetrf\",\"ℒ\"],[\"Larr\",\"↞\"],[\"Lcaron\",\"Ľ\"],[\"Lcedil\",\"Ļ\"],[\"Lcy\",\"Л\"],[\"LeftAngleBracket\",\"⟨\"],[\"LeftArrow\",\"←\"],[\"LeftArrowBar\",\"⇤\"],[\"LeftArrowRightArrow\",\"⇆\"],[\"LeftCeiling\",\"⌈\"],[\"LeftDoubleBracket\",\"⟦\"],[\"LeftDownTeeVector\",\"⥡\"],[\"LeftDownVector\",\"⇃\"],[\"LeftDownVectorBar\",\"⥙\"],[\"LeftFloor\",\"⌊\"],[\"LeftRightArrow\",\"↔\"],[\"LeftRightVector\",\"⥎\"],[\"LeftTee\",\"⊣\"],[\"LeftTeeArrow\",\"↤\"],[\"LeftTeeVector\",\"⥚\"],[\"LeftTriangle\",\"⊲\"],[\"LeftTriangleBar\",\"⧏\"],[\"LeftTriangleEqual\",\"⊴\"],[\"LeftUpDownVector\",\"⥑\"],[\"LeftUpTeeVector\",\"⥠\"],[\"LeftUpVector\",\"↿\"],[\"LeftUpVectorBar\",\"⥘\"],[\"LeftVector\",\"↼\"],[\"LeftVectorBar\",\"⥒\"],[\"Leftarrow\",\"⇐\"],[\"Leftrightarrow\",\"⇔\"],[\"LessEqualGreater\",\"⋚\"],[\"LessFullEqual\",\"≦\"],[\"LessGreater\",\"≶\"],[\"LessLess\",\"⪡\"],[\"LessSlantEqual\",\"⩽\"],[\"LessTilde\",\"≲\"],[\"Lfr\",\"𝔏\"],[\"Ll\",\"⋘\"],[\"Lleftarrow\",\"⇚\"],[\"Lmidot\",\"Ŀ\"],[\"LongLeftArrow\",\"⟵\"],[\"LongLeftRightArrow\",\"⟷\"],[\"LongRightArrow\",\"⟶\"],[\"Longleftarrow\",\"⟸\"],[\"Longleftrightarrow\",\"⟺\"],[\"Longrightarrow\",\"⟹\"],[\"Lopf\",\"𝕃\"],[\"LowerLeftArrow\",\"↙\"],[\"LowerRightArrow\",\"↘\"],[\"Lscr\",\"ℒ\"],[\"Lsh\",\"↰\"],[\"Lstrok\",\"Ł\"],[\"Lt\",\"≪\"],[\"Map\",\"⤅\"],[\"Mcy\",\"М\"],[\"MediumSpace\",\" \"],[\"Mellintrf\",\"ℳ\"],[\"Mfr\",\"𝔐\"],[\"MinusPlus\",\"∓\"],[\"Mopf\",\"𝕄\"],[\"Mscr\",\"ℳ\"],[\"Mu\",\"Μ\"],[\"NJcy\",\"Њ\"],[\"Nacute\",\"Ń\"],[\"Ncaron\",\"Ň\"],[\"Ncedil\",\"Ņ\"],[\"Ncy\",\"Н\"],[\"NegativeMediumSpace\",\"\"],[\"NegativeThickSpace\",\"\"],[\"NegativeThinSpace\",\"\"],[\"NegativeVeryThinSpace\",\"\"],[\"NestedGreaterGreater\",\"≫\"],[\"NestedLessLess\",\"≪\"],[\"NewLine\",\"\\n\"],[\"Nfr\",\"𝔑\"],[\"NoBreak\",\"\"],[\"NonBreakingSpace\",\"\xA0\"],[\"Nopf\",\"ℕ\"],[\"Not\",\"⫬\"],[\"NotCongruent\",\"≢\"],[\"NotCupCap\",\"≭\"],[\"NotDoubleVerticalBar\",\"∦\"],[\"NotElement\",\"∉\"],[\"NotEqual\",\"≠\"],[\"NotEqualTilde\",\"≂̸\"],[\"NotExists\",\"∄\"],[\"NotGreater\",\"≯\"],[\"NotGreaterEqual\",\"≱\"],[\"NotGreaterFullEqual\",\"≧̸\"],[\"NotGreaterGreater\",\"≫̸\"],[\"NotGreaterLess\",\"≹\"],[\"NotGreaterSlantEqual\",\"⩾̸\"],[\"NotGreaterTilde\",\"≵\"],[\"NotHumpDownHump\",\"≎̸\"],[\"NotHumpEqual\",\"≏̸\"],[\"NotLeftTriangle\",\"⋪\"],[\"NotLeftTriangleBar\",\"⧏̸\"],[\"NotLeftTriangleEqual\",\"⋬\"],[\"NotLess\",\"≮\"],[\"NotLessEqual\",\"≰\"],[\"NotLessGreater\",\"≸\"],[\"NotLessLess\",\"≪̸\"],[\"NotLessSlantEqual\",\"⩽̸\"],[\"NotLessTilde\",\"≴\"],[\"NotNestedGreaterGreater\",\"⪢̸\"],[\"NotNestedLessLess\",\"⪡̸\"],[\"NotPrecedes\",\"⊀\"],[\"NotPrecedesEqual\",\"⪯̸\"],[\"NotPrecedesSlantEqual\",\"⋠\"],[\"NotReverseElement\",\"∌\"],[\"NotRightTriangle\",\"⋫\"],[\"NotRightTriangleBar\",\"⧐̸\"],[\"NotRightTriangleEqual\",\"⋭\"],[\"NotSquareSubset\",\"⊏̸\"],[\"NotSquareSubsetEqual\",\"⋢\"],[\"NotSquareSuperset\",\"⊐̸\"],[\"NotSquareSupersetEqual\",\"⋣\"],[\"NotSubset\",\"⊂⃒\"],[\"NotSubsetEqual\",\"⊈\"],[\"NotSucceeds\",\"⊁\"],[\"NotSucceedsEqual\",\"⪰̸\"],[\"NotSucceedsSlantEqual\",\"⋡\"],[\"NotSucceedsTilde\",\"≿̸\"],[\"NotSuperset\",\"⊃⃒\"],[\"NotSupersetEqual\",\"⊉\"],[\"NotTilde\",\"≁\"],[\"NotTildeEqual\",\"≄\"],[\"NotTildeFullEqual\",\"≇\"],[\"NotTildeTilde\",\"≉\"],[\"NotVerticalBar\",\"∤\"],[\"Nscr\",\"𝒩\"],[\"Ntilde\",\"Ñ\"],[\"Nu\",\"Ν\"],[\"OElig\",\"Œ\"],[\"Oacute\",\"Ó\"],[\"Ocirc\",\"Ô\"],[\"Ocy\",\"О\"],[\"Odblac\",\"Ő\"],[\"Ofr\",\"𝔒\"],[\"Ograve\",\"Ò\"],[\"Omacr\",\"Ō\"],[\"Omega\",\"Ω\"],[\"Omicron\",\"Ο\"],[\"Oopf\",\"𝕆\"],[\"OpenCurlyDoubleQuote\",\"“\"],[\"OpenCurlyQuote\",\"‘\"],[\"Or\",\"⩔\"],[\"Oscr\",\"𝒪\"],[\"Oslash\",\"Ø\"],[\"Otilde\",\"Õ\"],[\"Otimes\",\"⨷\"],[\"Ouml\",\"Ö\"],[\"OverBar\",\"‾\"],[\"OverBrace\",\"⏞\"],[\"OverBracket\",\"⎴\"],[\"OverParenthesis\",\"⏜\"],[\"PartialD\",\"∂\"],[\"Pcy\",\"П\"],[\"Pfr\",\"𝔓\"],[\"Phi\",\"Φ\"],[\"Pi\",\"Π\"],[\"PlusMinus\",\"±\"],[\"Poincareplane\",\"ℌ\"],[\"Popf\",\"ℙ\"],[\"Pr\",\"⪻\"],[\"Precedes\",\"≺\"],[\"PrecedesEqual\",\"⪯\"],[\"PrecedesSlantEqual\",\"≼\"],[\"PrecedesTilde\",\"≾\"],[\"Prime\",\"″\"],[\"Product\",\"∏\"],[\"Proportion\",\"∷\"],[\"Proportional\",\"∝\"],[\"Pscr\",\"𝒫\"],[\"Psi\",\"Ψ\"],[\"QUOT\",\"\\\"\"],[\"Qfr\",\"𝔔\"],[\"Qopf\",\"ℚ\"],[\"Qscr\",\"𝒬\"],[\"RBarr\",\"⤐\"],[\"REG\",\"®\"],[\"Racute\",\"Ŕ\"],[\"Rang\",\"⟫\"],[\"Rarr\",\"↠\"],[\"Rarrtl\",\"⤖\"],[\"Rcaron\",\"Ř\"],[\"Rcedil\",\"Ŗ\"],[\"Rcy\",\"Р\"],[\"Re\",\"ℜ\"],[\"ReverseElement\",\"∋\"],[\"ReverseEquilibrium\",\"⇋\"],[\"ReverseUpEquilibrium\",\"⥯\"],[\"Rfr\",\"ℜ\"],[\"Rho\",\"Ρ\"],[\"RightAngleBracket\",\"⟩\"],[\"RightArrow\",\"→\"],[\"RightArrowBar\",\"⇥\"],[\"RightArrowLeftArrow\",\"⇄\"],[\"RightCeiling\",\"⌉\"],[\"RightDoubleBracket\",\"⟧\"],[\"RightDownTeeVector\",\"⥝\"],[\"RightDownVector\",\"⇂\"],[\"RightDownVectorBar\",\"⥕\"],[\"RightFloor\",\"⌋\"],[\"RightTee\",\"⊢\"],[\"RightTeeArrow\",\"↦\"],[\"RightTeeVector\",\"⥛\"],[\"RightTriangle\",\"⊳\"],[\"RightTriangleBar\",\"⧐\"],[\"RightTriangleEqual\",\"⊵\"],[\"RightUpDownVector\",\"⥏\"],[\"RightUpTeeVector\",\"⥜\"],[\"RightUpVector\",\"↾\"],[\"RightUpVectorBar\",\"⥔\"],[\"RightVector\",\"⇀\"],[\"RightVectorBar\",\"⥓\"],[\"Rightarrow\",\"⇒\"],[\"Ropf\",\"ℝ\"],[\"RoundImplies\",\"⥰\"],[\"Rrightarrow\",\"⇛\"],[\"Rscr\",\"ℛ\"],[\"Rsh\",\"↱\"],[\"RuleDelayed\",\"⧴\"],[\"SHCHcy\",\"Щ\"],[\"SHcy\",\"Ш\"],[\"SOFTcy\",\"Ь\"],[\"Sacute\",\"Ś\"],[\"Sc\",\"⪼\"],[\"Scaron\",\"Š\"],[\"Scedil\",\"Ş\"],[\"Scirc\",\"Ŝ\"],[\"Scy\",\"С\"],[\"Sfr\",\"𝔖\"],[\"ShortDownArrow\",\"↓\"],[\"ShortLeftArrow\",\"←\"],[\"ShortRightArrow\",\"→\"],[\"ShortUpArrow\",\"↑\"],[\"Sigma\",\"Σ\"],[\"SmallCircle\",\"∘\"],[\"Sopf\",\"𝕊\"],[\"Sqrt\",\"√\"],[\"Square\",\"□\"],[\"SquareIntersection\",\"⊓\"],[\"SquareSubset\",\"⊏\"],[\"SquareSubsetEqual\",\"⊑\"],[\"SquareSuperset\",\"⊐\"],[\"SquareSupersetEqual\",\"⊒\"],[\"SquareUnion\",\"⊔\"],[\"Sscr\",\"𝒮\"],[\"Star\",\"⋆\"],[\"Sub\",\"⋐\"],[\"Subset\",\"⋐\"],[\"SubsetEqual\",\"⊆\"],[\"Succeeds\",\"≻\"],[\"SucceedsEqual\",\"⪰\"],[\"SucceedsSlantEqual\",\"≽\"],[\"SucceedsTilde\",\"≿\"],[\"SuchThat\",\"∋\"],[\"Sum\",\"∑\"],[\"Sup\",\"⋑\"],[\"Superset\",\"⊃\"],[\"SupersetEqual\",\"⊇\"],[\"Supset\",\"⋑\"],[\"THORN\",\"Þ\"],[\"TRADE\",\"™\"],[\"TSHcy\",\"Ћ\"],[\"TScy\",\"Ц\"],[\"Tab\",\"\\t\"],[\"Tau\",\"Τ\"],[\"Tcaron\",\"Ť\"],[\"Tcedil\",\"Ţ\"],[\"Tcy\",\"Т\"],[\"Tfr\",\"𝔗\"],[\"Therefore\",\"∴\"],[\"Theta\",\"Θ\"],[\"ThickSpace\",\" \"],[\"ThinSpace\",\" \"],[\"Tilde\",\"∼\"],[\"TildeEqual\",\"≃\"],[\"TildeFullEqual\",\"≅\"],[\"TildeTilde\",\"≈\"],[\"Topf\",\"𝕋\"],[\"TripleDot\",\"⃛\"],[\"Tscr\",\"𝒯\"],[\"Tstrok\",\"Ŧ\"],[\"Uacute\",\"Ú\"],[\"Uarr\",\"↟\"],[\"Uarrocir\",\"⥉\"],[\"Ubrcy\",\"Ў\"],[\"Ubreve\",\"Ŭ\"],[\"Ucirc\",\"Û\"],[\"Ucy\",\"У\"],[\"Udblac\",\"Ű\"],[\"Ufr\",\"𝔘\"],[\"Ugrave\",\"Ù\"],[\"Umacr\",\"Ū\"],[\"UnderBar\",\"_\"],[\"UnderBrace\",\"⏟\"],[\"UnderBracket\",\"⎵\"],[\"UnderParenthesis\",\"⏝\"],[\"Union\",\"⋃\"],[\"UnionPlus\",\"⊎\"],[\"Uogon\",\"Ų\"],[\"Uopf\",\"𝕌\"],[\"UpArrow\",\"↑\"],[\"UpArrowBar\",\"⤒\"],[\"UpArrowDownArrow\",\"⇅\"],[\"UpDownArrow\",\"↕\"],[\"UpEquilibrium\",\"⥮\"],[\"UpTee\",\"⊥\"],[\"UpTeeArrow\",\"↥\"],[\"Uparrow\",\"⇑\"],[\"Updownarrow\",\"⇕\"],[\"UpperLeftArrow\",\"↖\"],[\"UpperRightArrow\",\"↗\"],[\"Upsi\",\"ϒ\"],[\"Upsilon\",\"Υ\"],[\"Uring\",\"Ů\"],[\"Uscr\",\"𝒰\"],[\"Utilde\",\"Ũ\"],[\"Uuml\",\"Ü\"],[\"VDash\",\"⊫\"],[\"Vbar\",\"⫫\"],[\"Vcy\",\"В\"],[\"Vdash\",\"⊩\"],[\"Vdashl\",\"⫦\"],[\"Vee\",\"⋁\"],[\"Verbar\",\"‖\"],[\"Vert\",\"‖\"],[\"VerticalBar\",\"∣\"],[\"VerticalLine\",\"|\"],[\"VerticalSeparator\",\"❘\"],[\"VerticalTilde\",\"≀\"],[\"VeryThinSpace\",\" \"],[\"Vfr\",\"𝔙\"],[\"Vopf\",\"𝕍\"],[\"Vscr\",\"𝒱\"],[\"Vvdash\",\"⊪\"],[\"Wcirc\",\"Ŵ\"],[\"Wedge\",\"⋀\"],[\"Wfr\",\"𝔚\"],[\"Wopf\",\"𝕎\"],[\"Wscr\",\"𝒲\"],[\"Xfr\",\"𝔛\"],[\"Xi\",\"Ξ\"],[\"Xopf\",\"𝕏\"],[\"Xscr\",\"𝒳\"],[\"YAcy\",\"Я\"],[\"YIcy\",\"Ї\"],[\"YUcy\",\"Ю\"],[\"Yacute\",\"Ý\"],[\"Ycirc\",\"Ŷ\"],[\"Ycy\",\"Ы\"],[\"Yfr\",\"𝔜\"],[\"Yopf\",\"𝕐\"],[\"Yscr\",\"𝒴\"],[\"Yuml\",\"Ÿ\"],[\"ZHcy\",\"Ж\"],[\"Zacute\",\"Ź\"],[\"Zcaron\",\"Ž\"],[\"Zcy\",\"З\"],[\"Zdot\",\"Ż\"],[\"ZeroWidthSpace\",\"\"],[\"Zeta\",\"Ζ\"],[\"Zfr\",\"ℨ\"],[\"Zopf\",\"ℤ\"],[\"Zscr\",\"𝒵\"],[\"aacute\",\"á\"],[\"abreve\",\"ă\"],[\"ac\",\"∾\"],[\"acE\",\"∾̳\"],[\"acd\",\"∿\"],[\"acirc\",\"â\"],[\"acute\",\"´\"],[\"acy\",\"а\"],[\"aelig\",\"æ\"],[\"af\",\"\"],[\"afr\",\"𝔞\"],[\"agrave\",\"à\"],[\"alefsym\",\"ℵ\"],[\"aleph\",\"ℵ\"],[\"alpha\",\"α\"],[\"amacr\",\"ā\"],[\"amalg\",\"⨿\"],[\"amp\",\"&\"],[\"and\",\"∧\"],[\"andand\",\"⩕\"],[\"andd\",\"⩜\"],[\"andslope\",\"⩘\"],[\"andv\",\"⩚\"],[\"ang\",\"∠\"],[\"ange\",\"⦤\"],[\"angle\",\"∠\"],[\"angmsd\",\"∡\"],[\"angmsdaa\",\"⦨\"],[\"angmsdab\",\"⦩\"],[\"angmsdac\",\"⦪\"],[\"angmsdad\",\"⦫\"],[\"angmsdae\",\"⦬\"],[\"angmsdaf\",\"⦭\"],[\"angmsdag\",\"⦮\"],[\"angmsdah\",\"⦯\"],[\"angrt\",\"∟\"],[\"angrtvb\",\"⊾\"],[\"angrtvbd\",\"⦝\"],[\"angsph\",\"∢\"],[\"angst\",\"Å\"],[\"angzarr\",\"⍼\"],[\"aogon\",\"ą\"],[\"aopf\",\"𝕒\"],[\"ap\",\"≈\"],[\"apE\",\"⩰\"],[\"apacir\",\"⩯\"],[\"ape\",\"≊\"],[\"apid\",\"≋\"],[\"apos\",\"'\"],[\"approx\",\"≈\"],[\"approxeq\",\"≊\"],[\"aring\",\"å\"],[\"ascr\",\"𝒶\"],[\"ast\",\"*\"],[\"asymp\",\"≈\"],[\"asympeq\",\"≍\"],[\"atilde\",\"ã\"],[\"auml\",\"ä\"],[\"awconint\",\"∳\"],[\"awint\",\"⨑\"],[\"bNot\",\"⫭\"],[\"backcong\",\"≌\"],[\"backepsilon\",\"϶\"],[\"backprime\",\"‵\"],[\"backsim\",\"∽\"],[\"backsimeq\",\"⋍\"],[\"barvee\",\"⊽\"],[\"barwed\",\"⌅\"],[\"barwedge\",\"⌅\"],[\"bbrk\",\"⎵\"],[\"bbrktbrk\",\"⎶\"],[\"bcong\",\"≌\"],[\"bcy\",\"б\"],[\"bdquo\",\"„\"],[\"becaus\",\"∵\"],[\"because\",\"∵\"],[\"bemptyv\",\"⦰\"],[\"bepsi\",\"϶\"],[\"bernou\",\"ℬ\"],[\"beta\",\"β\"],[\"beth\",\"ℶ\"],[\"between\",\"≬\"],[\"bfr\",\"𝔟\"],[\"bigcap\",\"⋂\"],[\"bigcirc\",\"◯\"],[\"bigcup\",\"⋃\"],[\"bigodot\",\"⨀\"],[\"bigoplus\",\"⨁\"],[\"bigotimes\",\"⨂\"],[\"bigsqcup\",\"⨆\"],[\"bigstar\",\"★\"],[\"bigtriangledown\",\"▽\"],[\"bigtriangleup\",\"△\"],[\"biguplus\",\"⨄\"],[\"bigvee\",\"⋁\"],[\"bigwedge\",\"⋀\"],[\"bkarow\",\"⤍\"],[\"blacklozenge\",\"⧫\"],[\"blacksquare\",\"▪\"],[\"blacktriangle\",\"▴\"],[\"blacktriangledown\",\"▾\"],[\"blacktriangleleft\",\"◂\"],[\"blacktriangleright\",\"▸\"],[\"blank\",\"␣\"],[\"blk12\",\"▒\"],[\"blk14\",\"░\"],[\"blk34\",\"▓\"],[\"block\",\"█\"],[\"bne\",\"=⃥\"],[\"bnequiv\",\"≡⃥\"],[\"bnot\",\"⌐\"],[\"bopf\",\"𝕓\"],[\"bot\",\"⊥\"],[\"bottom\",\"⊥\"],[\"bowtie\",\"⋈\"],[\"boxDL\",\"╗\"],[\"boxDR\",\"╔\"],[\"boxDl\",\"╖\"],[\"boxDr\",\"╓\"],[\"boxH\",\"═\"],[\"boxHD\",\"╦\"],[\"boxHU\",\"╩\"],[\"boxHd\",\"╤\"],[\"boxHu\",\"╧\"],[\"boxUL\",\"╝\"],[\"boxUR\",\"╚\"],[\"boxUl\",\"╜\"],[\"boxUr\",\"╙\"],[\"boxV\",\"║\"],[\"boxVH\",\"╬\"],[\"boxVL\",\"╣\"],[\"boxVR\",\"╠\"],[\"boxVh\",\"╫\"],[\"boxVl\",\"╢\"],[\"boxVr\",\"╟\"],[\"boxbox\",\"⧉\"],[\"boxdL\",\"╕\"],[\"boxdR\",\"╒\"],[\"boxdl\",\"┐\"],[\"boxdr\",\"┌\"],[\"boxh\",\"─\"],[\"boxhD\",\"╥\"],[\"boxhU\",\"╨\"],[\"boxhd\",\"┬\"],[\"boxhu\",\"┴\"],[\"boxminus\",\"⊟\"],[\"boxplus\",\"⊞\"],[\"boxtimes\",\"⊠\"],[\"boxuL\",\"╛\"],[\"boxuR\",\"╘\"],[\"boxul\",\"┘\"],[\"boxur\",\"└\"],[\"boxv\",\"│\"],[\"boxvH\",\"╪\"],[\"boxvL\",\"╡\"],[\"boxvR\",\"╞\"],[\"boxvh\",\"┼\"],[\"boxvl\",\"┤\"],[\"boxvr\",\"├\"],[\"bprime\",\"‵\"],[\"breve\",\"˘\"],[\"brvbar\",\"¦\"],[\"bscr\",\"𝒷\"],[\"bsemi\",\"⁏\"],[\"bsim\",\"∽\"],[\"bsime\",\"⋍\"],[\"bsol\",\"\\\\\"],[\"bsolb\",\"⧅\"],[\"bsolhsub\",\"⟈\"],[\"bull\",\"•\"],[\"bullet\",\"•\"],[\"bump\",\"≎\"],[\"bumpE\",\"⪮\"],[\"bumpe\",\"≏\"],[\"bumpeq\",\"≏\"],[\"cacute\",\"ć\"],[\"cap\",\"∩\"],[\"capand\",\"⩄\"],[\"capbrcup\",\"⩉\"],[\"capcap\",\"⩋\"],[\"capcup\",\"⩇\"],[\"capdot\",\"⩀\"],[\"caps\",\"∩︀\"],[\"caret\",\"⁁\"],[\"caron\",\"ˇ\"],[\"ccaps\",\"⩍\"],[\"ccaron\",\"č\"],[\"ccedil\",\"ç\"],[\"ccirc\",\"ĉ\"],[\"ccups\",\"⩌\"],[\"ccupssm\",\"⩐\"],[\"cdot\",\"ċ\"],[\"cedil\",\"¸\"],[\"cemptyv\",\"⦲\"],[\"cent\",\"¢\"],[\"centerdot\",\"·\"],[\"cfr\",\"𝔠\"],[\"chcy\",\"ч\"],[\"check\",\"✓\"],[\"checkmark\",\"✓\"],[\"chi\",\"χ\"],[\"cir\",\"○\"],[\"cirE\",\"⧃\"],[\"circ\",\"ˆ\"],[\"circeq\",\"≗\"],[\"circlearrowleft\",\"↺\"],[\"circlearrowright\",\"↻\"],[\"circledR\",\"®\"],[\"circledS\",\"Ⓢ\"],[\"circledast\",\"⊛\"],[\"circledcirc\",\"⊚\"],[\"circleddash\",\"⊝\"],[\"cire\",\"≗\"],[\"cirfnint\",\"⨐\"],[\"cirmid\",\"⫯\"],[\"cirscir\",\"⧂\"],[\"clubs\",\"♣\"],[\"clubsuit\",\"♣\"],[\"colon\",\":\"],[\"colone\",\"≔\"],[\"coloneq\",\"≔\"],[\"comma\",\",\"],[\"commat\",\"@\"],[\"comp\",\"∁\"],[\"compfn\",\"∘\"],[\"complement\",\"∁\"],[\"complexes\",\"ℂ\"],[\"cong\",\"≅\"],[\"congdot\",\"⩭\"],[\"conint\",\"∮\"],[\"copf\",\"𝕔\"],[\"coprod\",\"∐\"],[\"copy\",\"©\"],[\"copysr\",\"℗\"],[\"crarr\",\"↵\"],[\"cross\",\"✗\"],[\"cscr\",\"𝒸\"],[\"csub\",\"⫏\"],[\"csube\",\"⫑\"],[\"csup\",\"⫐\"],[\"csupe\",\"⫒\"],[\"ctdot\",\"⋯\"],[\"cudarrl\",\"⤸\"],[\"cudarrr\",\"⤵\"],[\"cuepr\",\"⋞\"],[\"cuesc\",\"⋟\"],[\"cularr\",\"↶\"],[\"cularrp\",\"⤽\"],[\"cup\",\"∪\"],[\"cupbrcap\",\"⩈\"],[\"cupcap\",\"⩆\"],[\"cupcup\",\"⩊\"],[\"cupdot\",\"⊍\"],[\"cupor\",\"⩅\"],[\"cups\",\"∪︀\"],[\"curarr\",\"↷\"],[\"curarrm\",\"⤼\"],[\"curlyeqprec\",\"⋞\"],[\"curlyeqsucc\",\"⋟\"],[\"curlyvee\",\"⋎\"],[\"curlywedge\",\"⋏\"],[\"curren\",\"¤\"],[\"curvearrowleft\",\"↶\"],[\"curvearrowright\",\"↷\"],[\"cuvee\",\"⋎\"],[\"cuwed\",\"⋏\"],[\"cwconint\",\"∲\"],[\"cwint\",\"∱\"],[\"cylcty\",\"⌭\"],[\"dArr\",\"⇓\"],[\"dHar\",\"⥥\"],[\"dagger\",\"†\"],[\"daleth\",\"ℸ\"],[\"darr\",\"↓\"],[\"dash\",\"‐\"],[\"dashv\",\"⊣\"],[\"dbkarow\",\"⤏\"],[\"dblac\",\"˝\"],[\"dcaron\",\"ď\"],[\"dcy\",\"д\"],[\"dd\",\"ⅆ\"],[\"ddagger\",\"‡\"],[\"ddarr\",\"⇊\"],[\"ddotseq\",\"⩷\"],[\"deg\",\"°\"],[\"delta\",\"δ\"],[\"demptyv\",\"⦱\"],[\"dfisht\",\"⥿\"],[\"dfr\",\"𝔡\"],[\"dharl\",\"⇃\"],[\"dharr\",\"⇂\"],[\"diam\",\"⋄\"],[\"diamond\",\"⋄\"],[\"diamondsuit\",\"♦\"],[\"diams\",\"♦\"],[\"die\",\"¨\"],[\"digamma\",\"ϝ\"],[\"disin\",\"⋲\"],[\"div\",\"÷\"],[\"divide\",\"÷\"],[\"divideontimes\",\"⋇\"],[\"divonx\",\"⋇\"],[\"djcy\",\"ђ\"],[\"dlcorn\",\"⌞\"],[\"dlcrop\",\"⌍\"],[\"dollar\",\"$\"],[\"dopf\",\"𝕕\"],[\"dot\",\"˙\"],[\"doteq\",\"≐\"],[\"doteqdot\",\"≑\"],[\"dotminus\",\"∸\"],[\"dotplus\",\"∔\"],[\"dotsquare\",\"⊡\"],[\"doublebarwedge\",\"⌆\"],[\"downarrow\",\"↓\"],[\"downdownarrows\",\"⇊\"],[\"downharpoonleft\",\"⇃\"],[\"downharpoonright\",\"⇂\"],[\"drbkarow\",\"⤐\"],[\"drcorn\",\"⌟\"],[\"drcrop\",\"⌌\"],[\"dscr\",\"𝒹\"],[\"dscy\",\"ѕ\"],[\"dsol\",\"⧶\"],[\"dstrok\",\"đ\"],[\"dtdot\",\"⋱\"],[\"dtri\",\"▿\"],[\"dtrif\",\"▾\"],[\"duarr\",\"⇵\"],[\"duhar\",\"⥯\"],[\"dwangle\",\"⦦\"],[\"dzcy\",\"џ\"],[\"dzigrarr\",\"⟿\"],[\"eDDot\",\"⩷\"],[\"eDot\",\"≑\"],[\"eacute\",\"é\"],[\"easter\",\"⩮\"],[\"ecaron\",\"ě\"],[\"ecir\",\"≖\"],[\"ecirc\",\"ê\"],[\"ecolon\",\"≕\"],[\"ecy\",\"э\"],[\"edot\",\"ė\"],[\"ee\",\"ⅇ\"],[\"efDot\",\"≒\"],[\"efr\",\"𝔢\"],[\"eg\",\"⪚\"],[\"egrave\",\"è\"],[\"egs\",\"⪖\"],[\"egsdot\",\"⪘\"],[\"el\",\"⪙\"],[\"elinters\",\"⏧\"],[\"ell\",\"ℓ\"],[\"els\",\"⪕\"],[\"elsdot\",\"⪗\"],[\"emacr\",\"ē\"],[\"empty\",\"∅\"],[\"emptyset\",\"∅\"],[\"emptyv\",\"∅\"],[\"emsp\",\" \"],[\"emsp13\",\" \"],[\"emsp14\",\" \"],[\"eng\",\"ŋ\"],[\"ensp\",\" \"],[\"eogon\",\"ę\"],[\"eopf\",\"𝕖\"],[\"epar\",\"⋕\"],[\"eparsl\",\"⧣\"],[\"eplus\",\"⩱\"],[\"epsi\",\"ε\"],[\"epsilon\",\"ε\"],[\"epsiv\",\"ϵ\"],[\"eqcirc\",\"≖\"],[\"eqcolon\",\"≕\"],[\"eqsim\",\"≂\"],[\"eqslantgtr\",\"⪖\"],[\"eqslantless\",\"⪕\"],[\"equals\",\"=\"],[\"equest\",\"≟\"],[\"equiv\",\"≡\"],[\"equivDD\",\"⩸\"],[\"eqvparsl\",\"⧥\"],[\"erDot\",\"≓\"],[\"erarr\",\"⥱\"],[\"escr\",\"ℯ\"],[\"esdot\",\"≐\"],[\"esim\",\"≂\"],[\"eta\",\"η\"],[\"eth\",\"ð\"],[\"euml\",\"ë\"],[\"euro\",\"€\"],[\"excl\",\"!\"],[\"exist\",\"∃\"],[\"expectation\",\"ℰ\"],[\"exponentiale\",\"ⅇ\"],[\"fallingdotseq\",\"≒\"],[\"fcy\",\"ф\"],[\"female\",\"♀\"],[\"ffilig\",\"ffi\"],[\"fflig\",\"ff\"],[\"ffllig\",\"ffl\"],[\"ffr\",\"𝔣\"],[\"filig\",\"fi\"],[\"fjlig\",\"fj\"],[\"flat\",\"♭\"],[\"fllig\",\"fl\"],[\"fltns\",\"▱\"],[\"fnof\",\"ƒ\"],[\"fopf\",\"𝕗\"],[\"forall\",\"∀\"],[\"fork\",\"⋔\"],[\"forkv\",\"⫙\"],[\"fpartint\",\"⨍\"],[\"frac12\",\"½\"],[\"frac13\",\"⅓\"],[\"frac14\",\"¼\"],[\"frac15\",\"⅕\"],[\"frac16\",\"⅙\"],[\"frac18\",\"⅛\"],[\"frac23\",\"⅔\"],[\"frac25\",\"⅖\"],[\"frac34\",\"¾\"],[\"frac35\",\"⅗\"],[\"frac38\",\"⅜\"],[\"frac45\",\"⅘\"],[\"frac56\",\"⅚\"],[\"frac58\",\"⅝\"],[\"frac78\",\"⅞\"],[\"frasl\",\"⁄\"],[\"frown\",\"⌢\"],[\"fscr\",\"𝒻\"],[\"gE\",\"≧\"],[\"gEl\",\"⪌\"],[\"gacute\",\"ǵ\"],[\"gamma\",\"γ\"],[\"gammad\",\"ϝ\"],[\"gap\",\"⪆\"],[\"gbreve\",\"ğ\"],[\"gcirc\",\"ĝ\"],[\"gcy\",\"г\"],[\"gdot\",\"ġ\"],[\"ge\",\"≥\"],[\"gel\",\"⋛\"],[\"geq\",\"≥\"],[\"geqq\",\"≧\"],[\"geqslant\",\"⩾\"],[\"ges\",\"⩾\"],[\"gescc\",\"⪩\"],[\"gesdot\",\"⪀\"],[\"gesdoto\",\"⪂\"],[\"gesdotol\",\"⪄\"],[\"gesl\",\"⋛︀\"],[\"gesles\",\"⪔\"],[\"gfr\",\"𝔤\"],[\"gg\",\"≫\"],[\"ggg\",\"⋙\"],[\"gimel\",\"ℷ\"],[\"gjcy\",\"ѓ\"],[\"gl\",\"≷\"],[\"glE\",\"⪒\"],[\"gla\",\"⪥\"],[\"glj\",\"⪤\"],[\"gnE\",\"≩\"],[\"gnap\",\"⪊\"],[\"gnapprox\",\"⪊\"],[\"gne\",\"⪈\"],[\"gneq\",\"⪈\"],[\"gneqq\",\"≩\"],[\"gnsim\",\"⋧\"],[\"gopf\",\"𝕘\"],[\"grave\",\"`\"],[\"gscr\",\"ℊ\"],[\"gsim\",\"≳\"],[\"gsime\",\"⪎\"],[\"gsiml\",\"⪐\"],[\"gt\",\">\"],[\"gtcc\",\"⪧\"],[\"gtcir\",\"⩺\"],[\"gtdot\",\"⋗\"],[\"gtlPar\",\"⦕\"],[\"gtquest\",\"⩼\"],[\"gtrapprox\",\"⪆\"],[\"gtrarr\",\"⥸\"],[\"gtrdot\",\"⋗\"],[\"gtreqless\",\"⋛\"],[\"gtreqqless\",\"⪌\"],[\"gtrless\",\"≷\"],[\"gtrsim\",\"≳\"],[\"gvertneqq\",\"≩︀\"],[\"gvnE\",\"≩︀\"],[\"hArr\",\"⇔\"],[\"hairsp\",\" \"],[\"half\",\"½\"],[\"hamilt\",\"ℋ\"],[\"hardcy\",\"ъ\"],[\"harr\",\"↔\"],[\"harrcir\",\"⥈\"],[\"harrw\",\"↭\"],[\"hbar\",\"ℏ\"],[\"hcirc\",\"ĥ\"],[\"hearts\",\"♥\"],[\"heartsuit\",\"♥\"],[\"hellip\",\"…\"],[\"hercon\",\"⊹\"],[\"hfr\",\"𝔥\"],[\"hksearow\",\"⤥\"],[\"hkswarow\",\"⤦\"],[\"hoarr\",\"⇿\"],[\"homtht\",\"∻\"],[\"hookleftarrow\",\"↩\"],[\"hookrightarrow\",\"↪\"],[\"hopf\",\"𝕙\"],[\"horbar\",\"―\"],[\"hscr\",\"𝒽\"],[\"hslash\",\"ℏ\"],[\"hstrok\",\"ħ\"],[\"hybull\",\"⁃\"],[\"hyphen\",\"‐\"],[\"iacute\",\"í\"],[\"ic\",\"\"],[\"icirc\",\"î\"],[\"icy\",\"и\"],[\"iecy\",\"е\"],[\"iexcl\",\"¡\"],[\"iff\",\"⇔\"],[\"ifr\",\"𝔦\"],[\"igrave\",\"ì\"],[\"ii\",\"ⅈ\"],[\"iiiint\",\"⨌\"],[\"iiint\",\"∭\"],[\"iinfin\",\"⧜\"],[\"iiota\",\"℩\"],[\"ijlig\",\"ij\"],[\"imacr\",\"ī\"],[\"image\",\"ℑ\"],[\"imagline\",\"ℐ\"],[\"imagpart\",\"ℑ\"],[\"imath\",\"ı\"],[\"imof\",\"⊷\"],[\"imped\",\"Ƶ\"],[\"in\",\"∈\"],[\"incare\",\"℅\"],[\"infin\",\"∞\"],[\"infintie\",\"⧝\"],[\"inodot\",\"ı\"],[\"int\",\"∫\"],[\"intcal\",\"⊺\"],[\"integers\",\"ℤ\"],[\"intercal\",\"⊺\"],[\"intlarhk\",\"⨗\"],[\"intprod\",\"⨼\"],[\"iocy\",\"ё\"],[\"iogon\",\"į\"],[\"iopf\",\"𝕚\"],[\"iota\",\"ι\"],[\"iprod\",\"⨼\"],[\"iquest\",\"¿\"],[\"iscr\",\"𝒾\"],[\"isin\",\"∈\"],[\"isinE\",\"⋹\"],[\"isindot\",\"⋵\"],[\"isins\",\"⋴\"],[\"isinsv\",\"⋳\"],[\"isinv\",\"∈\"],[\"it\",\"\"],[\"itilde\",\"ĩ\"],[\"iukcy\",\"і\"],[\"iuml\",\"ï\"],[\"jcirc\",\"ĵ\"],[\"jcy\",\"й\"],[\"jfr\",\"𝔧\"],[\"jmath\",\"ȷ\"],[\"jopf\",\"𝕛\"],[\"jscr\",\"𝒿\"],[\"jsercy\",\"ј\"],[\"jukcy\",\"є\"],[\"kappa\",\"κ\"],[\"kappav\",\"ϰ\"],[\"kcedil\",\"ķ\"],[\"kcy\",\"к\"],[\"kfr\",\"𝔨\"],[\"kgreen\",\"ĸ\"],[\"khcy\",\"х\"],[\"kjcy\",\"ќ\"],[\"kopf\",\"𝕜\"],[\"kscr\",\"𝓀\"],[\"lAarr\",\"⇚\"],[\"lArr\",\"⇐\"],[\"lAtail\",\"⤛\"],[\"lBarr\",\"⤎\"],[\"lE\",\"≦\"],[\"lEg\",\"⪋\"],[\"lHar\",\"⥢\"],[\"lacute\",\"ĺ\"],[\"laemptyv\",\"⦴\"],[\"lagran\",\"ℒ\"],[\"lambda\",\"λ\"],[\"lang\",\"⟨\"],[\"langd\",\"⦑\"],[\"langle\",\"⟨\"],[\"lap\",\"⪅\"],[\"laquo\",\"«\"],[\"larr\",\"←\"],[\"larrb\",\"⇤\"],[\"larrbfs\",\"⤟\"],[\"larrfs\",\"⤝\"],[\"larrhk\",\"↩\"],[\"larrlp\",\"↫\"],[\"larrpl\",\"⤹\"],[\"larrsim\",\"⥳\"],[\"larrtl\",\"↢\"],[\"lat\",\"⪫\"],[\"latail\",\"⤙\"],[\"late\",\"⪭\"],[\"lates\",\"⪭︀\"],[\"lbarr\",\"⤌\"],[\"lbbrk\",\"❲\"],[\"lbrace\",\"{\"],[\"lbrack\",\"[\"],[\"lbrke\",\"⦋\"],[\"lbrksld\",\"⦏\"],[\"lbrkslu\",\"⦍\"],[\"lcaron\",\"ľ\"],[\"lcedil\",\"ļ\"],[\"lceil\",\"⌈\"],[\"lcub\",\"{\"],[\"lcy\",\"л\"],[\"ldca\",\"⤶\"],[\"ldquo\",\"“\"],[\"ldquor\",\"„\"],[\"ldrdhar\",\"⥧\"],[\"ldrushar\",\"⥋\"],[\"ldsh\",\"↲\"],[\"le\",\"≤\"],[\"leftarrow\",\"←\"],[\"leftarrowtail\",\"↢\"],[\"leftharpoondown\",\"↽\"],[\"leftharpoonup\",\"↼\"],[\"leftleftarrows\",\"⇇\"],[\"leftrightarrow\",\"↔\"],[\"leftrightarrows\",\"⇆\"],[\"leftrightharpoons\",\"⇋\"],[\"leftrightsquigarrow\",\"↭\"],[\"leftthreetimes\",\"⋋\"],[\"leg\",\"⋚\"],[\"leq\",\"≤\"],[\"leqq\",\"≦\"],[\"leqslant\",\"⩽\"],[\"les\",\"⩽\"],[\"lescc\",\"⪨\"],[\"lesdot\",\"⩿\"],[\"lesdoto\",\"⪁\"],[\"lesdotor\",\"⪃\"],[\"lesg\",\"⋚︀\"],[\"lesges\",\"⪓\"],[\"lessapprox\",\"⪅\"],[\"lessdot\",\"⋖\"],[\"lesseqgtr\",\"⋚\"],[\"lesseqqgtr\",\"⪋\"],[\"lessgtr\",\"≶\"],[\"lesssim\",\"≲\"],[\"lfisht\",\"⥼\"],[\"lfloor\",\"⌊\"],[\"lfr\",\"𝔩\"],[\"lg\",\"≶\"],[\"lgE\",\"⪑\"],[\"lhard\",\"↽\"],[\"lharu\",\"↼\"],[\"lharul\",\"⥪\"],[\"lhblk\",\"▄\"],[\"ljcy\",\"љ\"],[\"ll\",\"≪\"],[\"llarr\",\"⇇\"],[\"llcorner\",\"⌞\"],[\"llhard\",\"⥫\"],[\"lltri\",\"◺\"],[\"lmidot\",\"ŀ\"],[\"lmoust\",\"⎰\"],[\"lmoustache\",\"⎰\"],[\"lnE\",\"≨\"],[\"lnap\",\"⪉\"],[\"lnapprox\",\"⪉\"],[\"lne\",\"⪇\"],[\"lneq\",\"⪇\"],[\"lneqq\",\"≨\"],[\"lnsim\",\"⋦\"],[\"loang\",\"⟬\"],[\"loarr\",\"⇽\"],[\"lobrk\",\"⟦\"],[\"longleftarrow\",\"⟵\"],[\"longleftrightarrow\",\"⟷\"],[\"longmapsto\",\"⟼\"],[\"longrightarrow\",\"⟶\"],[\"looparrowleft\",\"↫\"],[\"looparrowright\",\"↬\"],[\"lopar\",\"⦅\"],[\"lopf\",\"𝕝\"],[\"loplus\",\"⨭\"],[\"lotimes\",\"⨴\"],[\"lowast\",\"∗\"],[\"lowbar\",\"_\"],[\"loz\",\"◊\"],[\"lozenge\",\"◊\"],[\"lozf\",\"⧫\"],[\"lpar\",\"(\"],[\"lparlt\",\"⦓\"],[\"lrarr\",\"⇆\"],[\"lrcorner\",\"⌟\"],[\"lrhar\",\"⇋\"],[\"lrhard\",\"⥭\"],[\"lrm\",\"\"],[\"lrtri\",\"⊿\"],[\"lsaquo\",\"‹\"],[\"lscr\",\"𝓁\"],[\"lsh\",\"↰\"],[\"lsim\",\"≲\"],[\"lsime\",\"⪍\"],[\"lsimg\",\"⪏\"],[\"lsqb\",\"[\"],[\"lsquo\",\"‘\"],[\"lsquor\",\"‚\"],[\"lstrok\",\"ł\"],[\"lt\",\"<\"],[\"ltcc\",\"⪦\"],[\"ltcir\",\"⩹\"],[\"ltdot\",\"⋖\"],[\"lthree\",\"⋋\"],[\"ltimes\",\"⋉\"],[\"ltlarr\",\"⥶\"],[\"ltquest\",\"⩻\"],[\"ltrPar\",\"⦖\"],[\"ltri\",\"◃\"],[\"ltrie\",\"⊴\"],[\"ltrif\",\"◂\"],[\"lurdshar\",\"⥊\"],[\"luruhar\",\"⥦\"],[\"lvertneqq\",\"≨︀\"],[\"lvnE\",\"≨︀\"],[\"mDDot\",\"∺\"],[\"macr\",\"¯\"],[\"male\",\"♂\"],[\"malt\",\"✠\"],[\"maltese\",\"✠\"],[\"map\",\"↦\"],[\"mapsto\",\"↦\"],[\"mapstodown\",\"↧\"],[\"mapstoleft\",\"↤\"],[\"mapstoup\",\"↥\"],[\"marker\",\"▮\"],[\"mcomma\",\"⨩\"],[\"mcy\",\"м\"],[\"mdash\",\"—\"],[\"measuredangle\",\"∡\"],[\"mfr\",\"𝔪\"],[\"mho\",\"℧\"],[\"micro\",\"µ\"],[\"mid\",\"∣\"],[\"midast\",\"*\"],[\"midcir\",\"⫰\"],[\"middot\",\"·\"],[\"minus\",\"−\"],[\"minusb\",\"⊟\"],[\"minusd\",\"∸\"],[\"minusdu\",\"⨪\"],[\"mlcp\",\"⫛\"],[\"mldr\",\"…\"],[\"mnplus\",\"∓\"],[\"models\",\"⊧\"],[\"mopf\",\"𝕞\"],[\"mp\",\"∓\"],[\"mscr\",\"𝓂\"],[\"mstpos\",\"∾\"],[\"mu\",\"μ\"],[\"multimap\",\"⊸\"],[\"mumap\",\"⊸\"],[\"nGg\",\"⋙̸\"],[\"nGt\",\"≫⃒\"],[\"nGtv\",\"≫̸\"],[\"nLeftarrow\",\"⇍\"],[\"nLeftrightarrow\",\"⇎\"],[\"nLl\",\"⋘̸\"],[\"nLt\",\"≪⃒\"],[\"nLtv\",\"≪̸\"],[\"nRightarrow\",\"⇏\"],[\"nVDash\",\"⊯\"],[\"nVdash\",\"⊮\"],[\"nabla\",\"∇\"],[\"nacute\",\"ń\"],[\"nang\",\"∠⃒\"],[\"nap\",\"≉\"],[\"napE\",\"⩰̸\"],[\"napid\",\"≋̸\"],[\"napos\",\"ʼn\"],[\"napprox\",\"≉\"],[\"natur\",\"♮\"],[\"natural\",\"♮\"],[\"naturals\",\"ℕ\"],[\"nbsp\",\"\xA0\"],[\"nbump\",\"≎̸\"],[\"nbumpe\",\"≏̸\"],[\"ncap\",\"⩃\"],[\"ncaron\",\"ň\"],[\"ncedil\",\"ņ\"],[\"ncong\",\"≇\"],[\"ncongdot\",\"⩭̸\"],[\"ncup\",\"⩂\"],[\"ncy\",\"н\"],[\"ndash\",\"–\"],[\"ne\",\"≠\"],[\"neArr\",\"⇗\"],[\"nearhk\",\"⤤\"],[\"nearr\",\"↗\"],[\"nearrow\",\"↗\"],[\"nedot\",\"≐̸\"],[\"nequiv\",\"≢\"],[\"nesear\",\"⤨\"],[\"nesim\",\"≂̸\"],[\"nexist\",\"∄\"],[\"nexists\",\"∄\"],[\"nfr\",\"𝔫\"],[\"ngE\",\"≧̸\"],[\"nge\",\"≱\"],[\"ngeq\",\"≱\"],[\"ngeqq\",\"≧̸\"],[\"ngeqslant\",\"⩾̸\"],[\"nges\",\"⩾̸\"],[\"ngsim\",\"≵\"],[\"ngt\",\"≯\"],[\"ngtr\",\"≯\"],[\"nhArr\",\"⇎\"],[\"nharr\",\"↮\"],[\"nhpar\",\"⫲\"],[\"ni\",\"∋\"],[\"nis\",\"⋼\"],[\"nisd\",\"⋺\"],[\"niv\",\"∋\"],[\"njcy\",\"њ\"],[\"nlArr\",\"⇍\"],[\"nlE\",\"≦̸\"],[\"nlarr\",\"↚\"],[\"nldr\",\"‥\"],[\"nle\",\"≰\"],[\"nleftarrow\",\"↚\"],[\"nleftrightarrow\",\"↮\"],[\"nleq\",\"≰\"],[\"nleqq\",\"≦̸\"],[\"nleqslant\",\"⩽̸\"],[\"nles\",\"⩽̸\"],[\"nless\",\"≮\"],[\"nlsim\",\"≴\"],[\"nlt\",\"≮\"],[\"nltri\",\"⋪\"],[\"nltrie\",\"⋬\"],[\"nmid\",\"∤\"],[\"nopf\",\"𝕟\"],[\"not\",\"¬\"],[\"notin\",\"∉\"],[\"notinE\",\"⋹̸\"],[\"notindot\",\"⋵̸\"],[\"notinva\",\"∉\"],[\"notinvb\",\"⋷\"],[\"notinvc\",\"⋶\"],[\"notni\",\"∌\"],[\"notniva\",\"∌\"],[\"notnivb\",\"⋾\"],[\"notnivc\",\"⋽\"],[\"npar\",\"∦\"],[\"nparallel\",\"∦\"],[\"nparsl\",\"⫽⃥\"],[\"npart\",\"∂̸\"],[\"npolint\",\"⨔\"],[\"npr\",\"⊀\"],[\"nprcue\",\"⋠\"],[\"npre\",\"⪯̸\"],[\"nprec\",\"⊀\"],[\"npreceq\",\"⪯̸\"],[\"nrArr\",\"⇏\"],[\"nrarr\",\"↛\"],[\"nrarrc\",\"⤳̸\"],[\"nrarrw\",\"↝̸\"],[\"nrightarrow\",\"↛\"],[\"nrtri\",\"⋫\"],[\"nrtrie\",\"⋭\"],[\"nsc\",\"⊁\"],[\"nsccue\",\"⋡\"],[\"nsce\",\"⪰̸\"],[\"nscr\",\"𝓃\"],[\"nshortmid\",\"∤\"],[\"nshortparallel\",\"∦\"],[\"nsim\",\"≁\"],[\"nsime\",\"≄\"],[\"nsimeq\",\"≄\"],[\"nsmid\",\"∤\"],[\"nspar\",\"∦\"],[\"nsqsube\",\"⋢\"],[\"nsqsupe\",\"⋣\"],[\"nsub\",\"⊄\"],[\"nsubE\",\"⫅̸\"],[\"nsube\",\"⊈\"],[\"nsubset\",\"⊂⃒\"],[\"nsubseteq\",\"⊈\"],[\"nsubseteqq\",\"⫅̸\"],[\"nsucc\",\"⊁\"],[\"nsucceq\",\"⪰̸\"],[\"nsup\",\"⊅\"],[\"nsupE\",\"⫆̸\"],[\"nsupe\",\"⊉\"],[\"nsupset\",\"⊃⃒\"],[\"nsupseteq\",\"⊉\"],[\"nsupseteqq\",\"⫆̸\"],[\"ntgl\",\"≹\"],[\"ntilde\",\"ñ\"],[\"ntlg\",\"≸\"],[\"ntriangleleft\",\"⋪\"],[\"ntrianglelefteq\",\"⋬\"],[\"ntriangleright\",\"⋫\"],[\"ntrianglerighteq\",\"⋭\"],[\"nu\",\"ν\"],[\"num\",\"#\"],[\"numero\",\"№\"],[\"numsp\",\" \"],[\"nvDash\",\"⊭\"],[\"nvHarr\",\"⤄\"],[\"nvap\",\"≍⃒\"],[\"nvdash\",\"⊬\"],[\"nvge\",\"≥⃒\"],[\"nvgt\",\">⃒\"],[\"nvinfin\",\"⧞\"],[\"nvlArr\",\"⤂\"],[\"nvle\",\"≤⃒\"],[\"nvlt\",\"<⃒\"],[\"nvltrie\",\"⊴⃒\"],[\"nvrArr\",\"⤃\"],[\"nvrtrie\",\"⊵⃒\"],[\"nvsim\",\"∼⃒\"],[\"nwArr\",\"⇖\"],[\"nwarhk\",\"⤣\"],[\"nwarr\",\"↖\"],[\"nwarrow\",\"↖\"],[\"nwnear\",\"⤧\"],[\"oS\",\"Ⓢ\"],[\"oacute\",\"ó\"],[\"oast\",\"⊛\"],[\"ocir\",\"⊚\"],[\"ocirc\",\"ô\"],[\"ocy\",\"о\"],[\"odash\",\"⊝\"],[\"odblac\",\"ő\"],[\"odiv\",\"⨸\"],[\"odot\",\"⊙\"],[\"odsold\",\"⦼\"],[\"oelig\",\"œ\"],[\"ofcir\",\"⦿\"],[\"ofr\",\"𝔬\"],[\"ogon\",\"˛\"],[\"ograve\",\"ò\"],[\"ogt\",\"⧁\"],[\"ohbar\",\"⦵\"],[\"ohm\",\"Ω\"],[\"oint\",\"∮\"],[\"olarr\",\"↺\"],[\"olcir\",\"⦾\"],[\"olcross\",\"⦻\"],[\"oline\",\"‾\"],[\"olt\",\"⧀\"],[\"omacr\",\"ō\"],[\"omega\",\"ω\"],[\"omicron\",\"ο\"],[\"omid\",\"⦶\"],[\"ominus\",\"⊖\"],[\"oopf\",\"𝕠\"],[\"opar\",\"⦷\"],[\"operp\",\"⦹\"],[\"oplus\",\"⊕\"],[\"or\",\"∨\"],[\"orarr\",\"↻\"],[\"ord\",\"⩝\"],[\"order\",\"ℴ\"],[\"orderof\",\"ℴ\"],[\"ordf\",\"ª\"],[\"ordm\",\"º\"],[\"origof\",\"⊶\"],[\"oror\",\"⩖\"],[\"orslope\",\"⩗\"],[\"orv\",\"⩛\"],[\"oscr\",\"ℴ\"],[\"oslash\",\"ø\"],[\"osol\",\"⊘\"],[\"otilde\",\"õ\"],[\"otimes\",\"⊗\"],[\"otimesas\",\"⨶\"],[\"ouml\",\"ö\"],[\"ovbar\",\"⌽\"],[\"par\",\"∥\"],[\"para\",\"¶\"],[\"parallel\",\"∥\"],[\"parsim\",\"⫳\"],[\"parsl\",\"⫽\"],[\"part\",\"∂\"],[\"pcy\",\"п\"],[\"percnt\",\"%\"],[\"period\",\".\"],[\"permil\",\"‰\"],[\"perp\",\"⊥\"],[\"pertenk\",\"‱\"],[\"pfr\",\"𝔭\"],[\"phi\",\"φ\"],[\"phiv\",\"ϕ\"],[\"phmmat\",\"ℳ\"],[\"phone\",\"☎\"],[\"pi\",\"π\"],[\"pitchfork\",\"⋔\"],[\"piv\",\"ϖ\"],[\"planck\",\"ℏ\"],[\"planckh\",\"ℎ\"],[\"plankv\",\"ℏ\"],[\"plus\",\"+\"],[\"plusacir\",\"⨣\"],[\"plusb\",\"⊞\"],[\"pluscir\",\"⨢\"],[\"plusdo\",\"∔\"],[\"plusdu\",\"⨥\"],[\"pluse\",\"⩲\"],[\"plusmn\",\"±\"],[\"plussim\",\"⨦\"],[\"plustwo\",\"⨧\"],[\"pm\",\"±\"],[\"pointint\",\"⨕\"],[\"popf\",\"𝕡\"],[\"pound\",\"£\"],[\"pr\",\"≺\"],[\"prE\",\"⪳\"],[\"prap\",\"⪷\"],[\"prcue\",\"≼\"],[\"pre\",\"⪯\"],[\"prec\",\"≺\"],[\"precapprox\",\"⪷\"],[\"preccurlyeq\",\"≼\"],[\"preceq\",\"⪯\"],[\"precnapprox\",\"⪹\"],[\"precneqq\",\"⪵\"],[\"precnsim\",\"⋨\"],[\"precsim\",\"≾\"],[\"prime\",\"′\"],[\"primes\",\"ℙ\"],[\"prnE\",\"⪵\"],[\"prnap\",\"⪹\"],[\"prnsim\",\"⋨\"],[\"prod\",\"∏\"],[\"profalar\",\"⌮\"],[\"profline\",\"⌒\"],[\"profsurf\",\"⌓\"],[\"prop\",\"∝\"],[\"propto\",\"∝\"],[\"prsim\",\"≾\"],[\"prurel\",\"⊰\"],[\"pscr\",\"𝓅\"],[\"psi\",\"ψ\"],[\"puncsp\",\" \"],[\"qfr\",\"𝔮\"],[\"qint\",\"⨌\"],[\"qopf\",\"𝕢\"],[\"qprime\",\"⁗\"],[\"qscr\",\"𝓆\"],[\"quaternions\",\"ℍ\"],[\"quatint\",\"⨖\"],[\"quest\",\"?\"],[\"questeq\",\"≟\"],[\"quot\",\"\\\"\"],[\"rAarr\",\"⇛\"],[\"rArr\",\"⇒\"],[\"rAtail\",\"⤜\"],[\"rBarr\",\"⤏\"],[\"rHar\",\"⥤\"],[\"race\",\"∽̱\"],[\"racute\",\"ŕ\"],[\"radic\",\"√\"],[\"raemptyv\",\"⦳\"],[\"rang\",\"⟩\"],[\"rangd\",\"⦒\"],[\"range\",\"⦥\"],[\"rangle\",\"⟩\"],[\"raquo\",\"»\"],[\"rarr\",\"→\"],[\"rarrap\",\"⥵\"],[\"rarrb\",\"⇥\"],[\"rarrbfs\",\"⤠\"],[\"rarrc\",\"⤳\"],[\"rarrfs\",\"⤞\"],[\"rarrhk\",\"↪\"],[\"rarrlp\",\"↬\"],[\"rarrpl\",\"⥅\"],[\"rarrsim\",\"⥴\"],[\"rarrtl\",\"↣\"],[\"rarrw\",\"↝\"],[\"ratail\",\"⤚\"],[\"ratio\",\"∶\"],[\"rationals\",\"ℚ\"],[\"rbarr\",\"⤍\"],[\"rbbrk\",\"❳\"],[\"rbrace\",\"}\"],[\"rbrack\",\"]\"],[\"rbrke\",\"⦌\"],[\"rbrksld\",\"⦎\"],[\"rbrkslu\",\"⦐\"],[\"rcaron\",\"ř\"],[\"rcedil\",\"ŗ\"],[\"rceil\",\"⌉\"],[\"rcub\",\"}\"],[\"rcy\",\"р\"],[\"rdca\",\"⤷\"],[\"rdldhar\",\"⥩\"],[\"rdquo\",\"”\"],[\"rdquor\",\"”\"],[\"rdsh\",\"↳\"],[\"real\",\"ℜ\"],[\"realine\",\"ℛ\"],[\"realpart\",\"ℜ\"],[\"reals\",\"ℝ\"],[\"rect\",\"▭\"],[\"reg\",\"®\"],[\"rfisht\",\"⥽\"],[\"rfloor\",\"⌋\"],[\"rfr\",\"𝔯\"],[\"rhard\",\"⇁\"],[\"rharu\",\"⇀\"],[\"rharul\",\"⥬\"],[\"rho\",\"ρ\"],[\"rhov\",\"ϱ\"],[\"rightarrow\",\"→\"],[\"rightarrowtail\",\"↣\"],[\"rightharpoondown\",\"⇁\"],[\"rightharpoonup\",\"⇀\"],[\"rightleftarrows\",\"⇄\"],[\"rightleftharpoons\",\"⇌\"],[\"rightrightarrows\",\"⇉\"],[\"rightsquigarrow\",\"↝\"],[\"rightthreetimes\",\"⋌\"],[\"ring\",\"˚\"],[\"risingdotseq\",\"≓\"],[\"rlarr\",\"⇄\"],[\"rlhar\",\"⇌\"],[\"rlm\",\"\"],[\"rmoust\",\"⎱\"],[\"rmoustache\",\"⎱\"],[\"rnmid\",\"⫮\"],[\"roang\",\"⟭\"],[\"roarr\",\"⇾\"],[\"robrk\",\"⟧\"],[\"ropar\",\"⦆\"],[\"ropf\",\"𝕣\"],[\"roplus\",\"⨮\"],[\"rotimes\",\"⨵\"],[\"rpar\",\")\"],[\"rpargt\",\"⦔\"],[\"rppolint\",\"⨒\"],[\"rrarr\",\"⇉\"],[\"rsaquo\",\"›\"],[\"rscr\",\"𝓇\"],[\"rsh\",\"↱\"],[\"rsqb\",\"]\"],[\"rsquo\",\"’\"],[\"rsquor\",\"’\"],[\"rthree\",\"⋌\"],[\"rtimes\",\"⋊\"],[\"rtri\",\"▹\"],[\"rtrie\",\"⊵\"],[\"rtrif\",\"▸\"],[\"rtriltri\",\"⧎\"],[\"ruluhar\",\"⥨\"],[\"rx\",\"℞\"],[\"sacute\",\"ś\"],[\"sbquo\",\"‚\"],[\"sc\",\"≻\"],[\"scE\",\"⪴\"],[\"scap\",\"⪸\"],[\"scaron\",\"š\"],[\"sccue\",\"≽\"],[\"sce\",\"⪰\"],[\"scedil\",\"ş\"],[\"scirc\",\"ŝ\"],[\"scnE\",\"⪶\"],[\"scnap\",\"⪺\"],[\"scnsim\",\"⋩\"],[\"scpolint\",\"⨓\"],[\"scsim\",\"≿\"],[\"scy\",\"с\"],[\"sdot\",\"⋅\"],[\"sdotb\",\"⊡\"],[\"sdote\",\"⩦\"],[\"seArr\",\"⇘\"],[\"searhk\",\"⤥\"],[\"searr\",\"↘\"],[\"searrow\",\"↘\"],[\"sect\",\"§\"],[\"semi\",\";\"],[\"seswar\",\"⤩\"],[\"setminus\",\"∖\"],[\"setmn\",\"∖\"],[\"sext\",\"✶\"],[\"sfr\",\"𝔰\"],[\"sfrown\",\"⌢\"],[\"sharp\",\"♯\"],[\"shchcy\",\"щ\"],[\"shcy\",\"ш\"],[\"shortmid\",\"∣\"],[\"shortparallel\",\"∥\"],[\"shy\",\"\"],[\"sigma\",\"σ\"],[\"sigmaf\",\"ς\"],[\"sigmav\",\"ς\"],[\"sim\",\"∼\"],[\"simdot\",\"⩪\"],[\"sime\",\"≃\"],[\"simeq\",\"≃\"],[\"simg\",\"⪞\"],[\"simgE\",\"⪠\"],[\"siml\",\"⪝\"],[\"simlE\",\"⪟\"],[\"simne\",\"≆\"],[\"simplus\",\"⨤\"],[\"simrarr\",\"⥲\"],[\"slarr\",\"←\"],[\"smallsetminus\",\"∖\"],[\"smashp\",\"⨳\"],[\"smeparsl\",\"⧤\"],[\"smid\",\"∣\"],[\"smile\",\"⌣\"],[\"smt\",\"⪪\"],[\"smte\",\"⪬\"],[\"smtes\",\"⪬︀\"],[\"softcy\",\"ь\"],[\"sol\",\"/\"],[\"solb\",\"⧄\"],[\"solbar\",\"⌿\"],[\"sopf\",\"𝕤\"],[\"spades\",\"♠\"],[\"spadesuit\",\"♠\"],[\"spar\",\"∥\"],[\"sqcap\",\"⊓\"],[\"sqcaps\",\"⊓︀\"],[\"sqcup\",\"⊔\"],[\"sqcups\",\"⊔︀\"],[\"sqsub\",\"⊏\"],[\"sqsube\",\"⊑\"],[\"sqsubset\",\"⊏\"],[\"sqsubseteq\",\"⊑\"],[\"sqsup\",\"⊐\"],[\"sqsupe\",\"⊒\"],[\"sqsupset\",\"⊐\"],[\"sqsupseteq\",\"⊒\"],[\"squ\",\"□\"],[\"square\",\"□\"],[\"squarf\",\"▪\"],[\"squf\",\"▪\"],[\"srarr\",\"→\"],[\"sscr\",\"𝓈\"],[\"ssetmn\",\"∖\"],[\"ssmile\",\"⌣\"],[\"sstarf\",\"⋆\"],[\"star\",\"☆\"],[\"starf\",\"★\"],[\"straightepsilon\",\"ϵ\"],[\"straightphi\",\"ϕ\"],[\"strns\",\"¯\"],[\"sub\",\"⊂\"],[\"subE\",\"⫅\"],[\"subdot\",\"⪽\"],[\"sube\",\"⊆\"],[\"subedot\",\"⫃\"],[\"submult\",\"⫁\"],[\"subnE\",\"⫋\"],[\"subne\",\"⊊\"],[\"subplus\",\"⪿\"],[\"subrarr\",\"⥹\"],[\"subset\",\"⊂\"],[\"subseteq\",\"⊆\"],[\"subseteqq\",\"⫅\"],[\"subsetneq\",\"⊊\"],[\"subsetneqq\",\"⫋\"],[\"subsim\",\"⫇\"],[\"subsub\",\"⫕\"],[\"subsup\",\"⫓\"],[\"succ\",\"≻\"],[\"succapprox\",\"⪸\"],[\"succcurlyeq\",\"≽\"],[\"succeq\",\"⪰\"],[\"succnapprox\",\"⪺\"],[\"succneqq\",\"⪶\"],[\"succnsim\",\"⋩\"],[\"succsim\",\"≿\"],[\"sum\",\"∑\"],[\"sung\",\"♪\"],[\"sup\",\"⊃\"],[\"sup1\",\"¹\"],[\"sup2\",\"²\"],[\"sup3\",\"³\"],[\"supE\",\"⫆\"],[\"supdot\",\"⪾\"],[\"supdsub\",\"⫘\"],[\"supe\",\"⊇\"],[\"supedot\",\"⫄\"],[\"suphsol\",\"⟉\"],[\"suphsub\",\"⫗\"],[\"suplarr\",\"⥻\"],[\"supmult\",\"⫂\"],[\"supnE\",\"⫌\"],[\"supne\",\"⊋\"],[\"supplus\",\"⫀\"],[\"supset\",\"⊃\"],[\"supseteq\",\"⊇\"],[\"supseteqq\",\"⫆\"],[\"supsetneq\",\"⊋\"],[\"supsetneqq\",\"⫌\"],[\"supsim\",\"⫈\"],[\"supsub\",\"⫔\"],[\"supsup\",\"⫖\"],[\"swArr\",\"⇙\"],[\"swarhk\",\"⤦\"],[\"swarr\",\"↙\"],[\"swarrow\",\"↙\"],[\"swnwar\",\"⤪\"],[\"szlig\",\"ß\"],[\"target\",\"⌖\"],[\"tau\",\"τ\"],[\"tbrk\",\"⎴\"],[\"tcaron\",\"ť\"],[\"tcedil\",\"ţ\"],[\"tcy\",\"т\"],[\"tdot\",\"⃛\"],[\"telrec\",\"⌕\"],[\"tfr\",\"𝔱\"],[\"there4\",\"∴\"],[\"therefore\",\"∴\"],[\"theta\",\"θ\"],[\"thetasym\",\"ϑ\"],[\"thetav\",\"ϑ\"],[\"thickapprox\",\"≈\"],[\"thicksim\",\"∼\"],[\"thinsp\",\" \"],[\"thkap\",\"≈\"],[\"thksim\",\"∼\"],[\"thorn\",\"þ\"],[\"tilde\",\"˜\"],[\"times\",\"×\"],[\"timesb\",\"⊠\"],[\"timesbar\",\"⨱\"],[\"timesd\",\"⨰\"],[\"tint\",\"∭\"],[\"toea\",\"⤨\"],[\"top\",\"⊤\"],[\"topbot\",\"⌶\"],[\"topcir\",\"⫱\"],[\"topf\",\"𝕥\"],[\"topfork\",\"⫚\"],[\"tosa\",\"⤩\"],[\"tprime\",\"‴\"],[\"trade\",\"™\"],[\"triangle\",\"▵\"],[\"triangledown\",\"▿\"],[\"triangleleft\",\"◃\"],[\"trianglelefteq\",\"⊴\"],[\"triangleq\",\"≜\"],[\"triangleright\",\"▹\"],[\"trianglerighteq\",\"⊵\"],[\"tridot\",\"◬\"],[\"trie\",\"≜\"],[\"triminus\",\"⨺\"],[\"triplus\",\"⨹\"],[\"trisb\",\"⧍\"],[\"tritime\",\"⨻\"],[\"trpezium\",\"⏢\"],[\"tscr\",\"𝓉\"],[\"tscy\",\"ц\"],[\"tshcy\",\"ћ\"],[\"tstrok\",\"ŧ\"],[\"twixt\",\"≬\"],[\"twoheadleftarrow\",\"↞\"],[\"twoheadrightarrow\",\"↠\"],[\"uArr\",\"⇑\"],[\"uHar\",\"⥣\"],[\"uacute\",\"ú\"],[\"uarr\",\"↑\"],[\"ubrcy\",\"ў\"],[\"ubreve\",\"ŭ\"],[\"ucirc\",\"û\"],[\"ucy\",\"у\"],[\"udarr\",\"⇅\"],[\"udblac\",\"ű\"],[\"udhar\",\"⥮\"],[\"ufisht\",\"⥾\"],[\"ufr\",\"𝔲\"],[\"ugrave\",\"ù\"],[\"uharl\",\"↿\"],[\"uharr\",\"↾\"],[\"uhblk\",\"▀\"],[\"ulcorn\",\"⌜\"],[\"ulcorner\",\"⌜\"],[\"ulcrop\",\"⌏\"],[\"ultri\",\"◸\"],[\"umacr\",\"ū\"],[\"uml\",\"¨\"],[\"uogon\",\"ų\"],[\"uopf\",\"𝕦\"],[\"uparrow\",\"↑\"],[\"updownarrow\",\"↕\"],[\"upharpoonleft\",\"↿\"],[\"upharpoonright\",\"↾\"],[\"uplus\",\"⊎\"],[\"upsi\",\"υ\"],[\"upsih\",\"ϒ\"],[\"upsilon\",\"υ\"],[\"upuparrows\",\"⇈\"],[\"urcorn\",\"⌝\"],[\"urcorner\",\"⌝\"],[\"urcrop\",\"⌎\"],[\"uring\",\"ů\"],[\"urtri\",\"◹\"],[\"uscr\",\"𝓊\"],[\"utdot\",\"⋰\"],[\"utilde\",\"ũ\"],[\"utri\",\"▵\"],[\"utrif\",\"▴\"],[\"uuarr\",\"⇈\"],[\"uuml\",\"ü\"],[\"uwangle\",\"⦧\"],[\"vArr\",\"⇕\"],[\"vBar\",\"⫨\"],[\"vBarv\",\"⫩\"],[\"vDash\",\"⊨\"],[\"vangrt\",\"⦜\"],[\"varepsilon\",\"ϵ\"],[\"varkappa\",\"ϰ\"],[\"varnothing\",\"∅\"],[\"varphi\",\"ϕ\"],[\"varpi\",\"ϖ\"],[\"varpropto\",\"∝\"],[\"varr\",\"↕\"],[\"varrho\",\"ϱ\"],[\"varsigma\",\"ς\"],[\"varsubsetneq\",\"⊊︀\"],[\"varsubsetneqq\",\"⫋︀\"],[\"varsupsetneq\",\"⊋︀\"],[\"varsupsetneqq\",\"⫌︀\"],[\"vartheta\",\"ϑ\"],[\"vartriangleleft\",\"⊲\"],[\"vartriangleright\",\"⊳\"],[\"vcy\",\"в\"],[\"vdash\",\"⊢\"],[\"vee\",\"∨\"],[\"veebar\",\"⊻\"],[\"veeeq\",\"≚\"],[\"vellip\",\"⋮\"],[\"verbar\",\"|\"],[\"vert\",\"|\"],[\"vfr\",\"𝔳\"],[\"vltri\",\"⊲\"],[\"vnsub\",\"⊂⃒\"],[\"vnsup\",\"⊃⃒\"],[\"vopf\",\"𝕧\"],[\"vprop\",\"∝\"],[\"vrtri\",\"⊳\"],[\"vscr\",\"𝓋\"],[\"vsubnE\",\"⫋︀\"],[\"vsubne\",\"⊊︀\"],[\"vsupnE\",\"⫌︀\"],[\"vsupne\",\"⊋︀\"],[\"vzigzag\",\"⦚\"],[\"wcirc\",\"ŵ\"],[\"wedbar\",\"⩟\"],[\"wedge\",\"∧\"],[\"wedgeq\",\"≙\"],[\"weierp\",\"℘\"],[\"wfr\",\"𝔴\"],[\"wopf\",\"𝕨\"],[\"wp\",\"℘\"],[\"wr\",\"≀\"],[\"wreath\",\"≀\"],[\"wscr\",\"𝓌\"],[\"xcap\",\"⋂\"],[\"xcirc\",\"◯\"],[\"xcup\",\"⋃\"],[\"xdtri\",\"▽\"],[\"xfr\",\"𝔵\"],[\"xhArr\",\"⟺\"],[\"xharr\",\"⟷\"],[\"xi\",\"ξ\"],[\"xlArr\",\"⟸\"],[\"xlarr\",\"⟵\"],[\"xmap\",\"⟼\"],[\"xnis\",\"⋻\"],[\"xodot\",\"⨀\"],[\"xopf\",\"𝕩\"],[\"xoplus\",\"⨁\"],[\"xotime\",\"⨂\"],[\"xrArr\",\"⟹\"],[\"xrarr\",\"⟶\"],[\"xscr\",\"𝓍\"],[\"xsqcup\",\"⨆\"],[\"xuplus\",\"⨄\"],[\"xutri\",\"△\"],[\"xvee\",\"⋁\"],[\"xwedge\",\"⋀\"],[\"yacute\",\"ý\"],[\"yacy\",\"я\"],[\"ycirc\",\"ŷ\"],[\"ycy\",\"ы\"],[\"yen\",\"¥\"],[\"yfr\",\"𝔶\"],[\"yicy\",\"ї\"],[\"yopf\",\"𝕪\"],[\"yscr\",\"𝓎\"],[\"yucy\",\"ю\"],[\"yuml\",\"ÿ\"],[\"zacute\",\"ź\"],[\"zcaron\",\"ž\"],[\"zcy\",\"з\"],[\"zdot\",\"ż\"],[\"zeetrf\",\"ℨ\"],[\"zeta\",\"ζ\"],[\"zfr\",\"𝔷\"],[\"zhcy\",\"ж\"],[\"zigrarr\",\"⇝\"],[\"zopf\",\"𝕫\"],[\"zscr\",\"𝓏\"],[\"zwj\",\"\"],[\"zwnj\",\"\"]]"));
|
|
6004
6009
|
|
|
6005
6010
|
//#endregion
|
|
6006
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6011
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/entities.js
|
|
6007
6012
|
/** The largest code point Unicode defines. */
|
|
6008
6013
|
const MAX_CODE_POINT = 1114111;
|
|
6009
6014
|
/**
|
|
@@ -6026,7 +6031,7 @@ const decodeEntity = (entity) => {
|
|
|
6026
6031
|
};
|
|
6027
6032
|
|
|
6028
6033
|
//#endregion
|
|
6029
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6034
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/unescape.js
|
|
6030
6035
|
/** The punctuation set a backslash may escape, per the spec. */
|
|
6031
6036
|
const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
6032
6037
|
/** One entity, in any of the three spec forms. */
|
|
@@ -6041,7 +6046,7 @@ const unescapeChar = (source) => {
|
|
|
6041
6046
|
const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
|
|
6042
6047
|
|
|
6043
6048
|
//#endregion
|
|
6044
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6049
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/code.js
|
|
6045
6050
|
const reBlankLine = /^[ \t]*$/;
|
|
6046
6051
|
const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
|
|
6047
6052
|
/**
|
|
@@ -6126,7 +6131,7 @@ const codeConstruct = {
|
|
|
6126
6131
|
};
|
|
6127
6132
|
|
|
6128
6133
|
//#endregion
|
|
6129
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6134
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/document.js
|
|
6130
6135
|
/** The document root: contains everything except a bare list item. */
|
|
6131
6136
|
const documentConstruct = {
|
|
6132
6137
|
type: "document",
|
|
@@ -6140,7 +6145,7 @@ const documentConstruct = {
|
|
|
6140
6145
|
};
|
|
6141
6146
|
|
|
6142
6147
|
//#endregion
|
|
6143
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6148
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/fencedCode.js
|
|
6144
6149
|
const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
|
|
6145
6150
|
const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
|
|
6146
6151
|
/** The fenced-code block start: three or more backticks or tildes. */
|
|
@@ -6165,7 +6170,7 @@ const fencedCodeStart = {
|
|
|
6165
6170
|
};
|
|
6166
6171
|
|
|
6167
6172
|
//#endregion
|
|
6168
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6173
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/patterns.js
|
|
6169
6174
|
const stickyCache = /* @__PURE__ */ new WeakMap();
|
|
6170
6175
|
const globalCache = /* @__PURE__ */ new WeakMap();
|
|
6171
6176
|
const clone = (pattern, flag, dropCaret) => {
|
|
@@ -6190,7 +6195,7 @@ const globalOf = (pattern) => {
|
|
|
6190
6195
|
};
|
|
6191
6196
|
|
|
6192
6197
|
//#endregion
|
|
6193
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6198
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/references.js
|
|
6194
6199
|
const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
6195
6200
|
const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
|
|
6196
6201
|
const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
|
|
@@ -6365,7 +6370,7 @@ const parseReference = (text) => {
|
|
|
6365
6370
|
};
|
|
6366
6371
|
|
|
6367
6372
|
//#endregion
|
|
6368
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6373
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
|
|
6369
6374
|
/**
|
|
6370
6375
|
* `_scan_footnote_definition` from `src/scanners.re`:
|
|
6371
6376
|
*
|
|
@@ -6443,7 +6448,7 @@ const footnoteDefinitionStart = {
|
|
|
6443
6448
|
};
|
|
6444
6449
|
|
|
6445
6450
|
//#endregion
|
|
6446
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6451
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/indentedCode.js
|
|
6447
6452
|
/** The indented-code block start: four columns of indentation. */
|
|
6448
6453
|
const indentedCodeStart = {
|
|
6449
6454
|
name: "indentedCode",
|
|
@@ -6458,7 +6463,7 @@ const indentedCodeStart = {
|
|
|
6458
6463
|
};
|
|
6459
6464
|
|
|
6460
6465
|
//#endregion
|
|
6461
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6466
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/segments.js
|
|
6462
6467
|
/**
|
|
6463
6468
|
* The absolute source offset of `textIndex` within a segmented content run.
|
|
6464
6469
|
*
|
|
@@ -6493,7 +6498,7 @@ const sliceWithSegments = (segments, from, to) => {
|
|
|
6493
6498
|
};
|
|
6494
6499
|
|
|
6495
6500
|
//#endregion
|
|
6496
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6501
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
|
|
6497
6502
|
const C_OPEN_BRACKET$1 = 91;
|
|
6498
6503
|
/**
|
|
6499
6504
|
* Split every leading link reference definition out of `block`, inserting one
|
|
@@ -6559,7 +6564,7 @@ const definitionConstruct = {
|
|
|
6559
6564
|
};
|
|
6560
6565
|
|
|
6561
6566
|
//#endregion
|
|
6562
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6567
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/list.js
|
|
6563
6568
|
const reBulletListMarker = /^[*+-]/;
|
|
6564
6569
|
const reOrderedListMarker = /^(\d{1,9})([.)])/;
|
|
6565
6570
|
const reNonSpace$1 = /[^ \t\f\v\r\n]/;
|
|
@@ -6713,7 +6718,7 @@ const listItemStart = {
|
|
|
6713
6718
|
};
|
|
6714
6719
|
|
|
6715
6720
|
//#endregion
|
|
6716
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6721
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/paragraph.js
|
|
6717
6722
|
/** Paragraph: absorbs lines until a blank one, and contains nothing. */
|
|
6718
6723
|
const paragraphConstruct = {
|
|
6719
6724
|
type: "paragraph",
|
|
@@ -6736,7 +6741,7 @@ const paragraphConstruct = {
|
|
|
6736
6741
|
};
|
|
6737
6742
|
|
|
6738
6743
|
//#endregion
|
|
6739
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6744
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/setextHeading.js
|
|
6740
6745
|
const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
|
|
6741
6746
|
/** The setext heading block start: a run of `=` or `-` under a paragraph. */
|
|
6742
6747
|
const setextHeadingStart = {
|
|
@@ -6757,7 +6762,7 @@ const setextHeadingStart = {
|
|
|
6757
6762
|
};
|
|
6758
6763
|
|
|
6759
6764
|
//#endregion
|
|
6760
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6765
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/table.js
|
|
6761
6766
|
/**
|
|
6762
6767
|
* Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
|
|
6763
6768
|
* invents to pad short rows, which is what stops a wide header followed by a
|
|
@@ -7129,7 +7134,7 @@ const tableCellConstruct = {
|
|
|
7129
7134
|
};
|
|
7130
7135
|
|
|
7131
7136
|
//#endregion
|
|
7132
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7137
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/taskListItem.js
|
|
7133
7138
|
/**
|
|
7134
7139
|
* `_scan_tasklist`, as the generated scanner accepts it.
|
|
7135
7140
|
*
|
|
@@ -7164,7 +7169,7 @@ const taskListItemStart = {
|
|
|
7164
7169
|
};
|
|
7165
7170
|
|
|
7166
7171
|
//#endregion
|
|
7167
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7172
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
|
|
7168
7173
|
const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
|
|
7169
7174
|
const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
|
|
7170
7175
|
/** Thematic break: one line, no children. */
|
|
@@ -7196,7 +7201,7 @@ const thematicBreakStart = {
|
|
|
7196
7201
|
};
|
|
7197
7202
|
|
|
7198
7203
|
//#endregion
|
|
7199
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7204
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blockRegistry.js
|
|
7200
7205
|
const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
|
|
7201
7206
|
const commonmarkDialect$1 = {
|
|
7202
7207
|
constructs: constructTable([
|
|
@@ -7269,7 +7274,7 @@ const blockDialect = (dialect) => {
|
|
|
7269
7274
|
};
|
|
7270
7275
|
|
|
7271
7276
|
//#endregion
|
|
7272
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7277
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/lineIndex.js
|
|
7273
7278
|
/**
|
|
7274
7279
|
* A precomputed index of line-start offsets over a fixed source text,
|
|
7275
7280
|
* answering `positionAt(offset)` in `O(log n)` via binary search rather than
|
|
@@ -7344,7 +7349,7 @@ var LineIndex = class LineIndex {
|
|
|
7344
7349
|
};
|
|
7345
7350
|
|
|
7346
7351
|
//#endregion
|
|
7347
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7352
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlineNode.js
|
|
7348
7353
|
/** Open a node with no links. */
|
|
7349
7354
|
const makeInlineNode = (type, start, end, value = "") => ({
|
|
7350
7355
|
type,
|
|
@@ -7397,7 +7402,7 @@ const childrenOf = (node) => {
|
|
|
7397
7402
|
};
|
|
7398
7403
|
|
|
7399
7404
|
//#endregion
|
|
7400
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7405
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/emphasis.js
|
|
7401
7406
|
const C_ASTERISK$1 = 42;
|
|
7402
7407
|
const C_UNDERSCORE$1 = 95;
|
|
7403
7408
|
const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
|
|
@@ -7475,7 +7480,7 @@ const emphasisConstruct = {
|
|
|
7475
7480
|
};
|
|
7476
7481
|
|
|
7477
7482
|
//#endregion
|
|
7478
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7483
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/strikethrough.js
|
|
7479
7484
|
/**
|
|
7480
7485
|
* Consume a `~` run as literal text and, when it is a viable one- or
|
|
7481
7486
|
* two-tilde run, push it onto the shared delimiter stack.
|
|
@@ -7550,7 +7555,7 @@ const strikethroughConstruct = {
|
|
|
7550
7555
|
};
|
|
7551
7556
|
|
|
7552
7557
|
//#endregion
|
|
7553
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7558
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/autolink.js
|
|
7554
7559
|
const C_LESSTHAN$1 = 60;
|
|
7555
7560
|
const reEmailAutolink = /^<([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/;
|
|
7556
7561
|
const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
|
|
@@ -7583,7 +7588,7 @@ const autolinkConstruct = {
|
|
|
7583
7588
|
};
|
|
7584
7589
|
|
|
7585
7590
|
//#endregion
|
|
7586
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7591
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
|
|
7587
7592
|
const C_LOWER_W = 119;
|
|
7588
7593
|
const C_COLON = 58;
|
|
7589
7594
|
/** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
|
|
@@ -7954,7 +7959,7 @@ const linkifyEmails = (root) => {
|
|
|
7954
7959
|
};
|
|
7955
7960
|
|
|
7956
7961
|
//#endregion
|
|
7957
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7962
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/codeSpan.js
|
|
7958
7963
|
const C_BACKTICK$1 = 96;
|
|
7959
7964
|
const reTicksHere = /^`+/;
|
|
7960
7965
|
const reNewline = /\n/gm;
|
|
@@ -7983,7 +7988,7 @@ const codeSpanConstruct = {
|
|
|
7983
7988
|
};
|
|
7984
7989
|
|
|
7985
7990
|
//#endregion
|
|
7986
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7991
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/entity.js
|
|
7987
7992
|
const C_AMPERSAND = 38;
|
|
7988
7993
|
const reEntityHere = new RegExp(`^${ENTITY}`, "i");
|
|
7989
7994
|
/** A named, decimal or hexadecimal character reference. */
|
|
@@ -8000,7 +8005,7 @@ const entityConstruct = {
|
|
|
8000
8005
|
};
|
|
8001
8006
|
|
|
8002
8007
|
//#endregion
|
|
8003
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8008
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/escape.js
|
|
8004
8009
|
const C_BACKSLASH = 92;
|
|
8005
8010
|
const C_NEWLINE$1 = 10;
|
|
8006
8011
|
const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
|
|
@@ -8030,7 +8035,7 @@ const escapeConstruct = {
|
|
|
8030
8035
|
};
|
|
8031
8036
|
|
|
8032
8037
|
//#endregion
|
|
8033
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8038
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/link.js
|
|
8034
8039
|
const C_BANG = 33;
|
|
8035
8040
|
const C_CARET$1 = 94;
|
|
8036
8041
|
const C_OPEN_BRACKET = 91;
|
|
@@ -8238,7 +8243,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
|
|
|
8238
8243
|
const linkCloseConstruct = makeLinkCloseConstruct();
|
|
8239
8244
|
|
|
8240
8245
|
//#endregion
|
|
8241
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8246
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
|
|
8242
8247
|
const C_CARET = 94;
|
|
8243
8248
|
/**
|
|
8244
8249
|
* Whether the bracket that just closed looks like `[^...]` with something
|
|
@@ -8296,7 +8301,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
|
|
|
8296
8301
|
const gfmImageOpenConstruct = makeImageOpenConstruct(false);
|
|
8297
8302
|
|
|
8298
8303
|
//#endregion
|
|
8299
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8304
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/lineBreak.js
|
|
8300
8305
|
const C_NEWLINE = 10;
|
|
8301
8306
|
const reInitialSpace = /^ */;
|
|
8302
8307
|
/** A soft or hard line break. */
|
|
@@ -8318,7 +8323,7 @@ const lineBreakConstruct = {
|
|
|
8318
8323
|
};
|
|
8319
8324
|
|
|
8320
8325
|
//#endregion
|
|
8321
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8326
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/rawHtml.js
|
|
8322
8327
|
const C_LESSTHAN = 60;
|
|
8323
8328
|
/** The raw-HTML forms that scan forward for a fixed closing sequence. */
|
|
8324
8329
|
const UNTERMINATED_FORMS = [
|
|
@@ -8341,7 +8346,7 @@ const rawHtmlConstruct = {
|
|
|
8341
8346
|
};
|
|
8342
8347
|
|
|
8343
8348
|
//#endregion
|
|
8344
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8349
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/text.js
|
|
8345
8350
|
const reMain = /^[^\n`[\]\\!<&*_'"]+/;
|
|
8346
8351
|
const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
|
|
8347
8352
|
/** Consume a run of ordinary characters, stopping before any construct's. */
|
|
@@ -8362,7 +8367,7 @@ const textConstruct = runConstruct("text", reMain);
|
|
|
8362
8367
|
const gfmTextConstruct = runConstruct("text", reMainGfm);
|
|
8363
8368
|
|
|
8364
8369
|
//#endregion
|
|
8365
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8370
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlineRegistry.js
|
|
8366
8371
|
const triggerTable = (constructs) => {
|
|
8367
8372
|
const table = /* @__PURE__ */ new Map();
|
|
8368
8373
|
for (const construct of constructs) for (const trigger of construct.triggers) {
|
|
@@ -8416,7 +8421,7 @@ const inlineDialect = (dialect) => {
|
|
|
8416
8421
|
};
|
|
8417
8422
|
|
|
8418
8423
|
//#endregion
|
|
8419
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8424
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlineParser.js
|
|
8420
8425
|
const C_UNDERSCORE = 95;
|
|
8421
8426
|
const C_ASTERISK = 42;
|
|
8422
8427
|
const reTrailingSpaces = / +$/;
|
|
@@ -8811,7 +8816,7 @@ var InlineParser = class {
|
|
|
8811
8816
|
const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
|
|
8812
8817
|
|
|
8813
8818
|
//#endregion
|
|
8814
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8819
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/rawInline.js
|
|
8815
8820
|
const reWhitespace = /\s/;
|
|
8816
8821
|
const reCmarkSpace = /[ \t\n\r]/;
|
|
8817
8822
|
/**
|
|
@@ -8867,7 +8872,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
|
|
|
8867
8872
|
};
|
|
8868
8873
|
|
|
8869
8874
|
//#endregion
|
|
8870
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8875
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blockParser.js
|
|
8871
8876
|
/** Upstream's cheap pre-filter: a line that cannot start any block. */
|
|
8872
8877
|
const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
|
|
8873
8878
|
var BlockParser = class {
|
|
@@ -9275,7 +9280,7 @@ var BlockParser = class {
|
|
|
9275
9280
|
const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
|
|
9276
9281
|
|
|
9277
9282
|
//#endregion
|
|
9278
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
9283
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/phrasing.js
|
|
9279
9284
|
const EMPTY_REFMAP = /* @__PURE__ */ new Map();
|
|
9280
9285
|
const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
|
|
9281
9286
|
/**
|
|
@@ -9325,7 +9330,7 @@ const parsePhrasingText = (text, dialect) => {
|
|
|
9325
9330
|
};
|
|
9326
9331
|
|
|
9327
9332
|
//#endregion
|
|
9328
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
9333
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/stringify.js
|
|
9329
9334
|
const FLOW_CONTEXT = {
|
|
9330
9335
|
singleLine: false,
|
|
9331
9336
|
inTable: false,
|
|
@@ -10022,7 +10027,7 @@ const stringifyTree = (root) => {
|
|
|
10022
10027
|
};
|
|
10023
10028
|
|
|
10024
10029
|
//#endregion
|
|
10025
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
10030
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/Markdown.js
|
|
10026
10031
|
/**
|
|
10027
10032
|
* The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
|
|
10028
10033
|
* 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
|
|
@@ -10416,7 +10421,7 @@ var Markdown = class Markdown {
|
|
|
10416
10421
|
};
|
|
10417
10422
|
|
|
10418
10423
|
//#endregion
|
|
10419
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
10424
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/Mdast.js
|
|
10420
10425
|
/**
|
|
10421
10426
|
* The remark-ecosystem interop boundary: projection between this package's
|
|
10422
10427
|
* node classes and plain mdast JSON.
|
|
@@ -31252,7 +31257,7 @@ function parseCommitMessage(message) {
|
|
|
31252
31257
|
}
|
|
31253
31258
|
|
|
31254
31259
|
//#endregion
|
|
31255
|
-
//#region ../../node_modules/.pnpm/@effected+github-references@0.
|
|
31260
|
+
//#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/IssueReferences.js
|
|
31256
31261
|
/**
|
|
31257
31262
|
* GitHub's closing-keyword issue-reference grammar, as pure functions.
|
|
31258
31263
|
*
|
|
@@ -31314,7 +31319,7 @@ const INLINE_PATTERN = new RegExp(`\\b(${KEYWORDS})\\s+#(\\d+)`, "gi");
|
|
|
31314
31319
|
const BARE_LINE_PATTERN = new RegExp(`^(${KEYWORDS}):?[ \\t]+#(\\d+)$`, "i");
|
|
31315
31320
|
|
|
31316
31321
|
//#endregion
|
|
31317
|
-
//#region ../../node_modules/.pnpm/@effected+github-references@0.
|
|
31322
|
+
//#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/ClosingList.js
|
|
31318
31323
|
/**
|
|
31319
31324
|
* The closing-list dialect: one whole line naming several issues at once.
|
|
31320
31325
|
*
|
|
@@ -31633,7 +31638,7 @@ const harvestReferenceLists = (text) => {
|
|
|
31633
31638
|
};
|
|
31634
31639
|
|
|
31635
31640
|
//#endregion
|
|
31636
|
-
//#region ../../node_modules/.pnpm/@effected+github-references@0.
|
|
31641
|
+
//#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/KeywordFamily.js
|
|
31637
31642
|
/**
|
|
31638
31643
|
* The projection table IS the totality proof: `Record` over the union of
|
|
31639
31644
|
* both keyword types makes a keyword added to either constant without an
|
|
@@ -33493,6 +33498,18 @@ const ContributorFootnotesPlugin = (options) => {
|
|
|
33493
33498
|
|
|
33494
33499
|
//#endregion
|
|
33495
33500
|
//#region ../silk-effects/dist/dev/pkg/changesets/remark/plugins/maintenance-note.js
|
|
33501
|
+
/**
|
|
33502
|
+
* Placeholder sentence `@changesets/apply-release-plan` (>= 8.1.0) emits as the
|
|
33503
|
+
* body of a version block that would otherwise render as a bare heading. Older
|
|
33504
|
+
* engine versions left such a block structurally empty.
|
|
33505
|
+
*/
|
|
33506
|
+
const ENGINE_PLACEHOLDER = "No changes in this release.";
|
|
33507
|
+
/** True when the block's only content is the engine's empty-release placeholder. */
|
|
33508
|
+
function isPlaceholderOnly(tree, block) {
|
|
33509
|
+
if (block.endIndex - block.startIndex !== 1) return false;
|
|
33510
|
+
const node = tree.children[block.startIndex];
|
|
33511
|
+
return node.type === "paragraph" && toString(node).trim() === ENGINE_PLACEHOLDER;
|
|
33512
|
+
}
|
|
33496
33513
|
function buildNoteChildren(reason) {
|
|
33497
33514
|
if (reason.kind === "unspecified" || reason.triggers.length === 0) return [{
|
|
33498
33515
|
type: "text",
|
|
@@ -33523,7 +33540,8 @@ const MaintenanceNotePlugin = (options) => {
|
|
|
33523
33540
|
return (tree) => {
|
|
33524
33541
|
const block = getVersionBlocks(tree).find((b) => getHeadingText$1(tree.children[b.headingIndex]) === options.version);
|
|
33525
33542
|
if (!block) return;
|
|
33526
|
-
|
|
33543
|
+
const placeholderOnly = isPlaceholderOnly(tree, block);
|
|
33544
|
+
if (block.endIndex > block.startIndex && !placeholderOnly) return;
|
|
33527
33545
|
const heading = {
|
|
33528
33546
|
type: "heading",
|
|
33529
33547
|
depth: 3,
|
|
@@ -33545,7 +33563,7 @@ const MaintenanceNotePlugin = (options) => {
|
|
|
33545
33563
|
}]
|
|
33546
33564
|
}]
|
|
33547
33565
|
};
|
|
33548
|
-
tree.children.splice(block.startIndex, 0, heading, list);
|
|
33566
|
+
tree.children.splice(block.startIndex, placeholderOnly ? 1 : 0, heading, list);
|
|
33549
33567
|
};
|
|
33550
33568
|
};
|
|
33551
33569
|
|
|
@@ -34173,7 +34191,7 @@ const LegacySavvyLintHygieneDef = SectionId.make({
|
|
|
34173
34191
|
});
|
|
34174
34192
|
|
|
34175
34193
|
//#endregion
|
|
34176
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34194
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/limits.js
|
|
34177
34195
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
34178
34196
|
const MAX_PATTERN_LENGTH = 65536;
|
|
34179
34197
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -34208,7 +34226,7 @@ const assertCap = (name, value) => {
|
|
|
34208
34226
|
};
|
|
34209
34227
|
|
|
34210
34228
|
//#endregion
|
|
34211
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34229
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/unescape.js
|
|
34212
34230
|
/**
|
|
34213
34231
|
* Un-escape a string that has been escaped with `escape`.
|
|
34214
34232
|
*
|
|
@@ -34232,12 +34250,12 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
34232
34250
|
};
|
|
34233
34251
|
|
|
34234
34252
|
//#endregion
|
|
34235
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34253
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/types.js
|
|
34236
34254
|
/** The globstar marker in a compiled pattern set. */
|
|
34237
34255
|
const GLOBSTAR = Symbol("globstar **");
|
|
34238
34256
|
|
|
34239
34257
|
//#endregion
|
|
34240
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34258
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/escape.js
|
|
34241
34259
|
/**
|
|
34242
34260
|
* Escape all magic characters in a glob pattern.
|
|
34243
34261
|
*
|
|
@@ -34256,14 +34274,14 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
34256
34274
|
};
|
|
34257
34275
|
|
|
34258
34276
|
//#endregion
|
|
34259
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34277
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/assertValidPattern.js
|
|
34260
34278
|
const assertValidPattern = (pattern) => {
|
|
34261
34279
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
34262
34280
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
34263
34281
|
};
|
|
34264
34282
|
|
|
34265
34283
|
//#endregion
|
|
34266
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34284
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/braceExpressions.js
|
|
34267
34285
|
const posixClasses = {
|
|
34268
34286
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
34269
34287
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -34387,7 +34405,7 @@ const parseClass = (glob, position) => {
|
|
|
34387
34405
|
};
|
|
34388
34406
|
|
|
34389
34407
|
//#endregion
|
|
34390
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34408
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/ast.js
|
|
34391
34409
|
const types = /* @__PURE__ */ new Set([
|
|
34392
34410
|
"!",
|
|
34393
34411
|
"?",
|
|
@@ -34905,7 +34923,7 @@ var AST = class AST {
|
|
|
34905
34923
|
};
|
|
34906
34924
|
|
|
34907
34925
|
//#endregion
|
|
34908
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34926
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/balancedMatch.js
|
|
34909
34927
|
const maybeMatch = (reg, str) => {
|
|
34910
34928
|
const m = str.match(reg);
|
|
34911
34929
|
return m ? m[0] : null;
|
|
@@ -34964,7 +34982,7 @@ const range = (a, b, str) => {
|
|
|
34964
34982
|
};
|
|
34965
34983
|
|
|
34966
34984
|
//#endregion
|
|
34967
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34985
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/braceExpansion.js
|
|
34968
34986
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
34969
34987
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
34970
34988
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -35112,7 +35130,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
35112
35130
|
}
|
|
35113
35131
|
|
|
35114
35132
|
//#endregion
|
|
35115
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
35133
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/minimatch.js
|
|
35116
35134
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
35117
35135
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
35118
35136
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -35686,7 +35704,7 @@ var Minimatch = class {
|
|
|
35686
35704
|
};
|
|
35687
35705
|
|
|
35688
35706
|
//#endregion
|
|
35689
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
35707
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/GlobPattern.js
|
|
35690
35708
|
/**
|
|
35691
35709
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
35692
35710
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -35966,7 +35984,7 @@ var GlobPattern = class GlobPattern extends Schema.Class("GlobPattern")(Schema.S
|
|
|
35966
35984
|
};
|
|
35967
35985
|
|
|
35968
35986
|
//#endregion
|
|
35969
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
35987
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.6.0_@effected+glob@0.5.0_effect@4.0.0-rc.112__effect@4.0.0-rc.112/node_modules/@effected/walker/Descend.js
|
|
35970
35988
|
/**
|
|
35971
35989
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
35972
35990
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -36102,7 +36120,7 @@ const descend = Effect.fn("Walker.descend")(function* (pattern, options) {
|
|
|
36102
36120
|
});
|
|
36103
36121
|
|
|
36104
36122
|
//#endregion
|
|
36105
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
36123
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.6.0_@effected+glob@0.5.0_effect@4.0.0-rc.112__effect@4.0.0-rc.112/node_modules/@effected/walker/Expand.js
|
|
36106
36124
|
/**
|
|
36107
36125
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
36108
36126
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -51951,7 +51969,7 @@ var InternalError = class extends Error {
|
|
|
51951
51969
|
};
|
|
51952
51970
|
|
|
51953
51971
|
//#endregion
|
|
51954
|
-
//#region ../../node_modules/.pnpm/@changesets+git@4.0.
|
|
51972
|
+
//#region ../../node_modules/.pnpm/@changesets+git@4.0.1/node_modules/@changesets/git/dist/index.mjs
|
|
51955
51973
|
async function getDivergedCommit(cwd, ref) {
|
|
51956
51974
|
const cmd = await exec("git", [
|
|
51957
51975
|
"merge-base",
|
|
@@ -51974,7 +51992,7 @@ async function getCommitsThatAddFiles(gitPaths, { cwd, short = false }) {
|
|
|
51974
51992
|
const commitInfos = await Promise.all(remaining.map(async (gitPath) => {
|
|
51975
51993
|
const [commitSha, parentSha] = (await exec("git", [
|
|
51976
51994
|
"log",
|
|
51977
|
-
"--diff-filter=
|
|
51995
|
+
"--diff-filter=AC",
|
|
51978
51996
|
"--follow",
|
|
51979
51997
|
"--max-count=1",
|
|
51980
51998
|
short ? "--pretty=format:%h:%p" : "--pretty=format:%H:%p",
|
|
@@ -54131,7 +54149,7 @@ function applyEdits(text, edits) {
|
|
|
54131
54149
|
}
|
|
54132
54150
|
|
|
54133
54151
|
//#endregion
|
|
54134
|
-
//#region ../../node_modules/.pnpm/@changesets+apply-release-plan@8.
|
|
54152
|
+
//#region ../../node_modules/.pnpm/@changesets+apply-release-plan@8.1.0/node_modules/@changesets/apply-release-plan/dist/index.mjs
|
|
54135
54153
|
/**
|
|
54136
54154
|
* A simple JSON editing utility that preserves formatting. They specified operation keys
|
|
54137
54155
|
* must exist in the JSON for this implementation.
|
|
@@ -54241,12 +54259,14 @@ async function getChangelogEntry(cwd, release, releases, changesets, changelogFu
|
|
|
54241
54259
|
minor: await Promise.all(changelogLines.minor),
|
|
54242
54260
|
patch: await Promise.all(changelogLines.patch)
|
|
54243
54261
|
};
|
|
54244
|
-
|
|
54262
|
+
const renderedLines = [
|
|
54245
54263
|
`## ${release.newVersion}`,
|
|
54246
54264
|
generateMarkdownForVersionType("major", resolvedChangelogLines.major),
|
|
54247
54265
|
generateMarkdownForVersionType("minor", resolvedChangelogLines.minor),
|
|
54248
54266
|
generateMarkdownForVersionType("patch", resolvedChangelogLines.patch)
|
|
54249
|
-
].filter((line) => line)
|
|
54267
|
+
].filter((line) => line);
|
|
54268
|
+
if (renderedLines.length === 1) renderedLines.push("No changes in this release.");
|
|
54269
|
+
return renderedLines.join("\n\n");
|
|
54250
54270
|
}
|
|
54251
54271
|
function generateMarkdownForVersionType(type, lines) {
|
|
54252
54272
|
const releaseLines = lines.filter((l) => l);
|
|
@@ -54921,7 +54941,7 @@ YAML error: ${e instanceof Error ? e.message : String(e)}\nFrontmatter content:\
|
|
|
54921
54941
|
}
|
|
54922
54942
|
|
|
54923
54943
|
//#endregion
|
|
54924
|
-
//#region ../../node_modules/.pnpm/@changesets+read@1.0.
|
|
54944
|
+
//#region ../../node_modules/.pnpm/@changesets+read@1.0.1/node_modules/@changesets/read/dist/index.mjs
|
|
54925
54945
|
const ignoredMdFiles = [
|
|
54926
54946
|
/^README\.md$/i,
|
|
54927
54947
|
"AGENTS.md",
|
|
@@ -54964,7 +54984,7 @@ async function readChangesets(rootDir, sinceRef) {
|
|
|
54964
54984
|
}
|
|
54965
54985
|
|
|
54966
54986
|
//#endregion
|
|
54967
|
-
//#region ../../node_modules/.pnpm/@changesets+get-release-plan@5.0.
|
|
54987
|
+
//#region ../../node_modules/.pnpm/@changesets+get-release-plan@5.0.1/node_modules/@changesets/get-release-plan/dist/index.mjs
|
|
54968
54988
|
async function getReleasePlan(cwd, sinceRef, passedConfig) {
|
|
54969
54989
|
const packages = await getPackages(cwd);
|
|
54970
54990
|
const configResult = await readConfig(packages.rootDir, packages);
|