chordsheetjs 13.2.0 → 13.2.2
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/lib/bundle.js +607 -570
- package/lib/bundle.min.js +61 -61
- package/lib/index.js +610 -586
- package/lib/index.js.map +1 -1
- package/lib/main.d.ts +11 -4
- package/lib/main.d.ts.map +1 -1
- package/lib/module.js +610 -586
- package/lib/module.js.map +1 -1
- package/package.json +3 -3
package/lib/bundle.js
CHANGED
|
@@ -33807,11 +33807,18 @@ var ChordSheetJS = (() => {
|
|
|
33807
33807
|
* @param {string} chords The chords
|
|
33808
33808
|
* @param {string | null} lyrics The lyrics
|
|
33809
33809
|
* @param {string | null} annotation The annotation
|
|
33810
|
+
* @param {Chord | null} chordObj Optional pre-parsed Chord object
|
|
33810
33811
|
*/
|
|
33811
|
-
constructor(chords = "", lyrics = null, annotation = null) {
|
|
33812
|
+
constructor(chords = "", lyrics = null, annotation = null, chordObj = null) {
|
|
33813
|
+
this._chordObj = null;
|
|
33812
33814
|
this.chords = chords || "";
|
|
33813
33815
|
this.lyrics = lyrics || "";
|
|
33814
33816
|
this.annotation = annotation || "";
|
|
33817
|
+
this._chordObj = chordObj;
|
|
33818
|
+
}
|
|
33819
|
+
/** Returns the Chord object if available, otherwise parses from string */
|
|
33820
|
+
get chord() {
|
|
33821
|
+
return this._chordObj || (0, $177a605b8569b31c$export$2e2bcd8739ae039).parse(this.chords.trim());
|
|
33815
33822
|
}
|
|
33816
33823
|
/**
|
|
33817
33824
|
* Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet (except for ChordPro sheets)
|
|
@@ -33831,13 +33838,13 @@ var ChordSheetJS = (() => {
|
|
|
33831
33838
|
* @returns {ChordLyricsPair}
|
|
33832
33839
|
*/
|
|
33833
33840
|
clone() {
|
|
33834
|
-
return new _$551a223fc13b5c10$var$ChordLyricsPair(this.chords, this.lyrics, this.annotation);
|
|
33841
|
+
return new _$551a223fc13b5c10$var$ChordLyricsPair(this.chords, this.lyrics, this.annotation, this._chordObj?.clone() || null);
|
|
33835
33842
|
}
|
|
33836
33843
|
toString() {
|
|
33837
33844
|
return `ChordLyricsPair(chords=${this.chords}, lyrics=${this.lyrics})`;
|
|
33838
33845
|
}
|
|
33839
|
-
set({ chords, lyrics, annotation }) {
|
|
33840
|
-
return new _$551a223fc13b5c10$var$ChordLyricsPair(chords
|
|
33846
|
+
set({ chords, lyrics, annotation, chordObj }) {
|
|
33847
|
+
return new _$551a223fc13b5c10$var$ChordLyricsPair(chords ?? this.chords, lyrics ?? this.lyrics, annotation ?? this.annotation, chordObj ?? null);
|
|
33841
33848
|
}
|
|
33842
33849
|
setLyrics(lyrics) {
|
|
33843
33850
|
return this.set({
|
|
@@ -33875,7 +33882,8 @@ var ChordSheetJS = (() => {
|
|
|
33875
33882
|
if (chordObj) {
|
|
33876
33883
|
const changedChord = func(chordObj);
|
|
33877
33884
|
return this.set({
|
|
33878
|
-
chords: changedChord.toString()
|
|
33885
|
+
chords: changedChord.toString(),
|
|
33886
|
+
chordObj: changedChord
|
|
33879
33887
|
});
|
|
33880
33888
|
}
|
|
33881
33889
|
return this.clone();
|
|
@@ -34520,6 +34528,8 @@ var ChordSheetJS = (() => {
|
|
|
34520
34528
|
"13(#7)": "ma13",
|
|
34521
34529
|
"+13": "ma13",
|
|
34522
34530
|
"M13": "ma13",
|
|
34531
|
+
"maj13": "ma13",
|
|
34532
|
+
"Maj13": "ma13",
|
|
34523
34533
|
"ma13(#11)": "ma13(#11)",
|
|
34524
34534
|
"maj13#11": "ma13(#11)",
|
|
34525
34535
|
"maj13+11": "ma13(#11)",
|
|
@@ -35092,12 +35102,13 @@ ${error.stack}`);
|
|
|
35092
35102
|
static distance(oneKey, otherKey) {
|
|
35093
35103
|
return this.wrapOrFail(oneKey).distanceTo(otherKey);
|
|
35094
35104
|
}
|
|
35095
|
-
constructor({ grade = null, number = null, minor, type, accidental, referenceKeyGrade = null, referenceKeyMode = null, originalKeyString = null, preferredAccidental = null }) {
|
|
35105
|
+
constructor({ grade = null, number = null, minor, type, accidental, referenceKeyGrade = null, referenceKeyMode = null, originalKeyString = null, preferredAccidental = null, explicitAccidental = false }) {
|
|
35096
35106
|
this.number = null;
|
|
35097
35107
|
this.minor = false;
|
|
35098
35108
|
this.referenceKeyGrade = null;
|
|
35099
35109
|
this.referenceKeyMode = null;
|
|
35100
35110
|
this.originalKeyString = null;
|
|
35111
|
+
this.explicitAccidental = false;
|
|
35101
35112
|
this.grade = grade;
|
|
35102
35113
|
this.number = number;
|
|
35103
35114
|
this.minor = minor;
|
|
@@ -35107,6 +35118,7 @@ ${error.stack}`);
|
|
|
35107
35118
|
this.referenceKeyGrade = referenceKeyGrade;
|
|
35108
35119
|
this.referenceKeyMode = referenceKeyMode;
|
|
35109
35120
|
this.originalKeyString = originalKeyString;
|
|
35121
|
+
this.explicitAccidental = explicitAccidental;
|
|
35110
35122
|
}
|
|
35111
35123
|
distanceTo(otherKey) {
|
|
35112
35124
|
const otherKeyObj = _$c2d6ab25ad00308f$var$Key.wrapOrFail(otherKey);
|
|
@@ -35359,7 +35371,8 @@ ${error.stack}`);
|
|
|
35359
35371
|
useAccidental(newAccidental) {
|
|
35360
35372
|
this.ensureGrade();
|
|
35361
35373
|
return this.set({
|
|
35362
|
-
accidental: newAccidental
|
|
35374
|
+
accidental: newAccidental,
|
|
35375
|
+
explicitAccidental: newAccidental !== null
|
|
35363
35376
|
});
|
|
35364
35377
|
}
|
|
35365
35378
|
/** @deprecated Use useAccidental instead */
|
|
@@ -35379,6 +35392,7 @@ ${error.stack}`);
|
|
|
35379
35392
|
}
|
|
35380
35393
|
normalizeEnharmonics(key) {
|
|
35381
35394
|
if (key) {
|
|
35395
|
+
if (this.explicitAccidental) return this.clone();
|
|
35382
35396
|
const rootKeyString = _$c2d6ab25ad00308f$var$Key.wrapOrFail(key).toString({
|
|
35383
35397
|
showMinor: true
|
|
35384
35398
|
});
|
|
@@ -35403,6 +35417,7 @@ ${error.stack}`);
|
|
|
35403
35417
|
referenceKeyGrade: this.referenceKeyGrade,
|
|
35404
35418
|
originalKeyString: this.originalKeyString,
|
|
35405
35419
|
preferredAccidental: this.preferredAccidental,
|
|
35420
|
+
explicitAccidental: this.explicitAccidental,
|
|
35406
35421
|
...overwrite ? attributes : {}
|
|
35407
35422
|
});
|
|
35408
35423
|
}
|
|
@@ -39212,10 +39227,10 @@ ${formattedContentLines}`;
|
|
|
39212
39227
|
}
|
|
39213
39228
|
formatChordLyricsPairChords(chordLyricsPair) {
|
|
39214
39229
|
if (chordLyricsPair.chords) {
|
|
39215
|
-
const
|
|
39216
|
-
if (!
|
|
39217
|
-
const
|
|
39218
|
-
return `[${
|
|
39230
|
+
const chordObj = chordLyricsPair.chord;
|
|
39231
|
+
if (!chordObj) return `[${chordLyricsPair.chords}]`;
|
|
39232
|
+
const finalChord = this.configuration.normalizeChords ? chordObj.normalize() : chordObj;
|
|
39233
|
+
return `[${finalChord}]`;
|
|
39219
39234
|
}
|
|
39220
39235
|
if (chordLyricsPair.annotation) return `[*${chordLyricsPair.annotation}]`;
|
|
39221
39236
|
return "";
|
|
@@ -47556,431 +47571,435 @@ Or set the song key before changing key:
|
|
|
47556
47571
|
const peg$c1455 = peg$literalExpectation("+11b9", false);
|
|
47557
47572
|
const peg$c1456 = "+11-9";
|
|
47558
47573
|
const peg$c1457 = peg$literalExpectation("+11-9", false);
|
|
47559
|
-
const peg$c1458 = "
|
|
47560
|
-
const peg$c1459 = peg$literalExpectation("
|
|
47561
|
-
const peg$c1460 = "
|
|
47562
|
-
const peg$c1461 = peg$literalExpectation("
|
|
47563
|
-
const peg$c1462 = "+13#
|
|
47564
|
-
const peg$c1463 = peg$literalExpectation("+13#
|
|
47565
|
-
const peg$c1464 = "+
|
|
47566
|
-
const peg$c1465 = peg$literalExpectation("+
|
|
47567
|
-
const peg$c1466 = "+
|
|
47568
|
-
const peg$c1467 = peg$literalExpectation("+
|
|
47569
|
-
const peg$c1468 = "
|
|
47570
|
-
const peg$c1469 = peg$literalExpectation("
|
|
47571
|
-
const peg$c1470 = "+
|
|
47572
|
-
const peg$c1471 = peg$literalExpectation("+
|
|
47573
|
-
const peg$c1472 = "M13-
|
|
47574
|
-
const peg$c1473 = peg$literalExpectation("M13-
|
|
47575
|
-
const peg$c1474 = "+
|
|
47576
|
-
const peg$c1475 = peg$literalExpectation("+
|
|
47577
|
-
const peg$c1476 = "
|
|
47578
|
-
const peg$c1477 = peg$literalExpectation("
|
|
47579
|
-
const peg$c1478 = "
|
|
47580
|
-
const peg$c1479 = peg$literalExpectation("
|
|
47581
|
-
const peg$c1480 = "
|
|
47582
|
-
const peg$c1481 = peg$literalExpectation("
|
|
47583
|
-
const peg$c1482 = "ma7#
|
|
47584
|
-
const peg$c1483 = peg$literalExpectation("ma7#
|
|
47585
|
-
const peg$c1484 = "ma7+
|
|
47586
|
-
const peg$c1485 = peg$literalExpectation("ma7+
|
|
47587
|
-
const peg$c1486 = "
|
|
47588
|
-
const peg$c1487 = peg$literalExpectation("
|
|
47589
|
-
const peg$c1488 = "
|
|
47590
|
-
const peg$c1489 = peg$literalExpectation("
|
|
47591
|
-
const peg$c1490 = "
|
|
47592
|
-
const peg$c1491 = peg$literalExpectation("
|
|
47593
|
-
const peg$c1492 = "
|
|
47594
|
-
const peg$c1493 = peg$literalExpectation("
|
|
47595
|
-
const peg$c1494 = "
|
|
47596
|
-
const peg$c1495 = peg$literalExpectation("
|
|
47597
|
-
const peg$c1496 = "ma7-
|
|
47598
|
-
const peg$c1497 = peg$literalExpectation("ma7-
|
|
47599
|
-
const peg$c1498 = "
|
|
47600
|
-
const peg$c1499 = peg$literalExpectation("
|
|
47601
|
-
const peg$c1500 = "
|
|
47602
|
-
const peg$c1501 = peg$literalExpectation("
|
|
47603
|
-
const peg$c1502 = "
|
|
47604
|
-
const peg$c1503 = peg$literalExpectation("
|
|
47605
|
-
const peg$c1504 = "
|
|
47606
|
-
const peg$c1505 = peg$literalExpectation("
|
|
47607
|
-
const peg$c1506 = "
|
|
47608
|
-
const peg$c1507 = peg$literalExpectation("
|
|
47609
|
-
const peg$c1508 = "
|
|
47610
|
-
const peg$c1509 = peg$literalExpectation("
|
|
47611
|
-
const peg$c1510 = "
|
|
47612
|
-
const peg$c1511 = peg$literalExpectation("
|
|
47613
|
-
const peg$c1512 = "
|
|
47614
|
-
const peg$c1513 = peg$literalExpectation("
|
|
47615
|
-
const peg$c1514 = "
|
|
47616
|
-
const peg$c1515 = peg$literalExpectation("
|
|
47617
|
-
const peg$c1516 = "
|
|
47618
|
-
const peg$c1517 = peg$literalExpectation("
|
|
47619
|
-
const peg$c1518 = "
|
|
47620
|
-
const peg$c1519 = peg$literalExpectation("
|
|
47621
|
-
const peg$c1520 = "(
|
|
47622
|
-
const peg$c1521 = peg$literalExpectation("(
|
|
47623
|
-
const peg$c1522 = "(
|
|
47624
|
-
const peg$c1523 = peg$literalExpectation("(
|
|
47625
|
-
const peg$c1524 = "
|
|
47626
|
-
const peg$c1525 = peg$literalExpectation("
|
|
47627
|
-
const peg$c1526 = "
|
|
47628
|
-
const peg$c1527 = peg$literalExpectation("
|
|
47629
|
-
const peg$c1528 = "
|
|
47630
|
-
const peg$c1529 = peg$literalExpectation("
|
|
47631
|
-
const peg$c1530 = "
|
|
47632
|
-
const peg$c1531 = peg$literalExpectation("
|
|
47633
|
-
const peg$c1532 = "
|
|
47634
|
-
const peg$c1533 = peg$literalExpectation("
|
|
47635
|
-
const peg$c1534 = "
|
|
47636
|
-
const peg$c1535 = peg$literalExpectation("
|
|
47637
|
-
const peg$c1536 = "
|
|
47638
|
-
const peg$c1537 = peg$literalExpectation("
|
|
47639
|
-
const peg$c1538 = "(
|
|
47640
|
-
const peg$c1539 = peg$literalExpectation("(
|
|
47641
|
-
const peg$c1540 = "
|
|
47642
|
-
const peg$c1541 = peg$literalExpectation("
|
|
47643
|
-
const peg$c1542 = "
|
|
47644
|
-
const peg$c1543 = peg$literalExpectation("
|
|
47645
|
-
const peg$c1544 = "
|
|
47646
|
-
const peg$c1545 = peg$literalExpectation("
|
|
47647
|
-
const peg$c1546 = "
|
|
47648
|
-
const peg$c1547 = peg$literalExpectation("
|
|
47649
|
-
const peg$c1548 = "
|
|
47650
|
-
const peg$c1549 = peg$literalExpectation("
|
|
47651
|
-
const peg$c1550 = "
|
|
47652
|
-
const peg$c1551 = peg$literalExpectation("
|
|
47653
|
-
const peg$c1552 = "11#
|
|
47654
|
-
const peg$c1553 = peg$literalExpectation("11#
|
|
47655
|
-
const peg$c1554 = "11+
|
|
47656
|
-
const peg$c1555 = peg$literalExpectation("11+
|
|
47657
|
-
const peg$c1556 = "
|
|
47658
|
-
const peg$c1557 = peg$literalExpectation("
|
|
47659
|
-
const peg$c1558 = "11
|
|
47660
|
-
const peg$c1559 = peg$literalExpectation("11
|
|
47661
|
-
const peg$c1560 = "
|
|
47662
|
-
const peg$c1561 = peg$literalExpectation("
|
|
47663
|
-
const peg$c1562 = "11-
|
|
47664
|
-
const peg$c1563 = peg$literalExpectation("11-
|
|
47665
|
-
const peg$c1564 = "
|
|
47666
|
-
const peg$c1565 = peg$literalExpectation("
|
|
47667
|
-
const peg$c1566 = "
|
|
47668
|
-
const peg$c1567 = peg$literalExpectation("
|
|
47669
|
-
const peg$c1568 = "13#
|
|
47670
|
-
const peg$c1569 = peg$literalExpectation("13#
|
|
47671
|
-
const peg$c1570 = "13+
|
|
47672
|
-
const peg$c1571 = peg$literalExpectation("13+
|
|
47673
|
-
const peg$c1572 = "
|
|
47674
|
-
const peg$c1573 = peg$literalExpectation("
|
|
47675
|
-
const peg$c1574 = "13
|
|
47676
|
-
const peg$c1575 = peg$literalExpectation("13
|
|
47677
|
-
const peg$c1576 = "
|
|
47678
|
-
const peg$c1577 = peg$literalExpectation("
|
|
47679
|
-
const peg$c1578 = "13-
|
|
47680
|
-
const peg$c1579 = peg$literalExpectation("13-
|
|
47681
|
-
const peg$c1580 = "
|
|
47682
|
-
const peg$c1581 = peg$literalExpectation("
|
|
47683
|
-
const peg$c1582 = "
|
|
47684
|
-
const peg$c1583 = peg$literalExpectation("
|
|
47685
|
-
const peg$c1584 = "
|
|
47686
|
-
const peg$c1585 = peg$literalExpectation("
|
|
47687
|
-
const peg$c1586 = "
|
|
47688
|
-
const peg$c1587 = peg$literalExpectation("
|
|
47689
|
-
const peg$c1588 = "
|
|
47690
|
-
const peg$c1589 = peg$literalExpectation("
|
|
47691
|
-
const peg$c1590 = "
|
|
47692
|
-
const peg$c1591 = peg$literalExpectation("
|
|
47693
|
-
const peg$c1592 = "
|
|
47694
|
-
const peg$c1593 = peg$literalExpectation("
|
|
47695
|
-
const peg$c1594 = "
|
|
47696
|
-
const peg$c1595 = peg$literalExpectation("
|
|
47697
|
-
const peg$c1596 = "
|
|
47698
|
-
const peg$c1597 = peg$literalExpectation("
|
|
47699
|
-
const peg$c1598 = "7
|
|
47700
|
-
const peg$c1599 = peg$literalExpectation("7
|
|
47701
|
-
const peg$c1600 = "
|
|
47702
|
-
const peg$c1601 = peg$literalExpectation("
|
|
47703
|
-
const peg$c1602 = "7
|
|
47704
|
-
const peg$c1603 = peg$literalExpectation("7
|
|
47705
|
-
const peg$c1604 = "
|
|
47706
|
-
const peg$c1605 = peg$literalExpectation("
|
|
47707
|
-
const peg$c1606 = "
|
|
47708
|
-
const peg$c1607 = peg$literalExpectation("
|
|
47709
|
-
const peg$c1608 = "
|
|
47710
|
-
const peg$c1609 = peg$literalExpectation("
|
|
47711
|
-
const peg$c1610 = "
|
|
47712
|
-
const peg$c1611 = peg$literalExpectation("
|
|
47713
|
-
const peg$c1612 = "
|
|
47714
|
-
const peg$c1613 = peg$literalExpectation("
|
|
47715
|
-
const peg$c1614 = "
|
|
47716
|
-
const peg$c1615 = peg$literalExpectation("
|
|
47717
|
-
const peg$c1616 = "
|
|
47718
|
-
const peg$c1617 = peg$literalExpectation("
|
|
47719
|
-
const peg$c1618 = "
|
|
47720
|
-
const peg$c1619 = peg$literalExpectation("
|
|
47721
|
-
const peg$c1620 = "
|
|
47722
|
-
const peg$c1621 = peg$literalExpectation("
|
|
47723
|
-
const peg$c1622 = "
|
|
47724
|
-
const peg$c1623 = peg$literalExpectation("
|
|
47725
|
-
const peg$c1624 = "
|
|
47726
|
-
const peg$c1625 = peg$literalExpectation("
|
|
47727
|
-
const peg$c1626 = "
|
|
47728
|
-
const peg$c1627 = peg$literalExpectation("
|
|
47729
|
-
const peg$c1628 = "
|
|
47730
|
-
const peg$c1629 = peg$literalExpectation("
|
|
47731
|
-
const peg$c1630 = "
|
|
47732
|
-
const peg$c1631 = peg$literalExpectation("
|
|
47733
|
-
const peg$c1632 = "
|
|
47734
|
-
const peg$c1633 = peg$literalExpectation("
|
|
47735
|
-
const peg$c1634 = "
|
|
47736
|
-
const peg$c1635 = peg$literalExpectation("
|
|
47737
|
-
const peg$c1636 = "
|
|
47738
|
-
const peg$c1637 = peg$literalExpectation("
|
|
47739
|
-
const peg$c1638 = "
|
|
47740
|
-
const peg$c1639 = peg$literalExpectation("
|
|
47741
|
-
const peg$c1640 = "
|
|
47742
|
-
const peg$c1641 = peg$literalExpectation("
|
|
47743
|
-
const peg$c1642 = "
|
|
47744
|
-
const peg$c1643 = peg$literalExpectation("
|
|
47745
|
-
const peg$c1644 = "
|
|
47746
|
-
const peg$c1645 = peg$literalExpectation("
|
|
47747
|
-
const peg$c1646 = "
|
|
47748
|
-
const peg$c1647 = peg$literalExpectation("
|
|
47749
|
-
const peg$c1648 = "
|
|
47750
|
-
const peg$c1649 = peg$literalExpectation("
|
|
47751
|
-
const peg$c1650 = "
|
|
47752
|
-
const peg$c1651 = peg$literalExpectation("
|
|
47753
|
-
const peg$c1652 = "m7
|
|
47754
|
-
const peg$c1653 = peg$literalExpectation("m7
|
|
47755
|
-
const peg$c1654 = "
|
|
47756
|
-
const peg$c1655 = peg$literalExpectation("
|
|
47757
|
-
const peg$c1656 = "
|
|
47758
|
-
const peg$c1657 = peg$literalExpectation("
|
|
47759
|
-
const peg$c1658 = "
|
|
47760
|
-
const peg$c1659 = peg$literalExpectation("
|
|
47761
|
-
const peg$c1660 = "
|
|
47762
|
-
const peg$c1661 = peg$literalExpectation("
|
|
47763
|
-
const peg$c1662 = "
|
|
47764
|
-
const peg$c1663 = peg$literalExpectation("
|
|
47765
|
-
const peg$c1664 = "
|
|
47766
|
-
const peg$c1665 = peg$literalExpectation("
|
|
47767
|
-
const peg$c1666 = "
|
|
47768
|
-
const peg$c1667 = peg$literalExpectation("
|
|
47769
|
-
const peg$c1668 = "
|
|
47770
|
-
const peg$c1669 = peg$literalExpectation("
|
|
47771
|
-
const peg$c1670 = "
|
|
47772
|
-
const peg$c1671 = peg$literalExpectation("
|
|
47773
|
-
const peg$c1672 = "
|
|
47774
|
-
const peg$c1673 = peg$literalExpectation("
|
|
47775
|
-
const peg$c1674 = "
|
|
47776
|
-
const peg$c1675 = peg$literalExpectation("
|
|
47777
|
-
const peg$c1676 = "
|
|
47778
|
-
const peg$c1677 = peg$literalExpectation("
|
|
47779
|
-
const peg$c1678 = "
|
|
47780
|
-
const peg$c1679 = peg$literalExpectation("
|
|
47781
|
-
const peg$c1680 = "
|
|
47782
|
-
const peg$c1681 = peg$literalExpectation("
|
|
47783
|
-
const peg$c1682 = "
|
|
47784
|
-
const peg$c1683 = peg$literalExpectation("
|
|
47785
|
-
const peg$c1684 = "
|
|
47786
|
-
const peg$c1685 = peg$literalExpectation("
|
|
47787
|
-
const peg$c1686 = "
|
|
47788
|
-
const peg$c1687 = peg$literalExpectation("
|
|
47789
|
-
const peg$c1688 = "
|
|
47790
|
-
const peg$c1689 = peg$literalExpectation("
|
|
47791
|
-
const peg$c1690 = "
|
|
47792
|
-
const peg$c1691 = peg$literalExpectation("
|
|
47793
|
-
const peg$c1692 = "
|
|
47794
|
-
const peg$c1693 = peg$literalExpectation("
|
|
47795
|
-
const peg$c1694 = "
|
|
47796
|
-
const peg$c1695 = peg$literalExpectation("
|
|
47797
|
-
const peg$c1696 = "
|
|
47798
|
-
const peg$c1697 = peg$literalExpectation("
|
|
47799
|
-
const peg$c1698 = "
|
|
47800
|
-
const peg$c1699 = peg$literalExpectation("
|
|
47801
|
-
const peg$c1700 = "
|
|
47802
|
-
const peg$c1701 = peg$literalExpectation("
|
|
47803
|
-
const peg$c1702 = "
|
|
47804
|
-
const peg$c1703 = peg$literalExpectation("
|
|
47805
|
-
const peg$c1704 = "+7#
|
|
47806
|
-
const peg$c1705 = peg$literalExpectation("+7#
|
|
47807
|
-
const peg$c1706 = "M7+
|
|
47808
|
-
const peg$c1707 = peg$literalExpectation("M7+
|
|
47809
|
-
const peg$c1708 = "+
|
|
47810
|
-
const peg$c1709 = peg$literalExpectation("+
|
|
47811
|
-
const peg$c1710 = "M7
|
|
47812
|
-
const peg$c1711 = peg$literalExpectation("M7
|
|
47813
|
-
const peg$c1712 = "+
|
|
47814
|
-
const peg$c1713 = peg$literalExpectation("+
|
|
47815
|
-
const peg$c1714 = "M7-
|
|
47816
|
-
const peg$c1715 = peg$literalExpectation("M7-
|
|
47817
|
-
const peg$c1716 = "+
|
|
47818
|
-
const peg$c1717 = peg$literalExpectation("+
|
|
47819
|
-
const peg$c1718 = "
|
|
47820
|
-
const peg$c1719 = peg$literalExpectation("
|
|
47821
|
-
const peg$c1720 = "+
|
|
47822
|
-
const peg$c1721 = peg$literalExpectation("+
|
|
47823
|
-
const peg$c1722 = "M9
|
|
47824
|
-
const peg$c1723 = peg$literalExpectation("M9
|
|
47825
|
-
const peg$c1724 = "
|
|
47826
|
-
const peg$c1725 = peg$literalExpectation("
|
|
47827
|
-
const peg$c1726 = "
|
|
47828
|
-
const peg$c1727 = peg$literalExpectation("
|
|
47829
|
-
const peg$c1728 = "
|
|
47830
|
-
const peg$c1729 = peg$literalExpectation("
|
|
47831
|
-
const peg$c1730 = "(
|
|
47832
|
-
const peg$c1731 = peg$literalExpectation("(
|
|
47833
|
-
const peg$c1732 = "(
|
|
47834
|
-
const peg$c1733 = peg$literalExpectation("(
|
|
47835
|
-
const peg$c1734 = "(
|
|
47836
|
-
const peg$c1735 = peg$literalExpectation("(
|
|
47837
|
-
const peg$c1736 = "
|
|
47838
|
-
const peg$c1737 = peg$literalExpectation("
|
|
47839
|
-
const peg$c1738 = "
|
|
47840
|
-
const peg$c1739 = peg$literalExpectation("
|
|
47841
|
-
const peg$c1740 = "
|
|
47842
|
-
const peg$c1741 = peg$literalExpectation("
|
|
47843
|
-
const peg$c1742 = "
|
|
47844
|
-
const peg$c1743 = peg$literalExpectation("
|
|
47845
|
-
const peg$c1744 = "
|
|
47846
|
-
const peg$c1745 = peg$literalExpectation("
|
|
47847
|
-
const peg$c1746 = "
|
|
47848
|
-
const peg$c1747 = peg$literalExpectation("
|
|
47849
|
-
const peg$c1748 = "
|
|
47850
|
-
const peg$c1749 = peg$literalExpectation("
|
|
47851
|
-
const peg$c1750 = "7#
|
|
47852
|
-
const peg$c1751 = peg$literalExpectation("7#
|
|
47853
|
-
const peg$c1752 = "7+
|
|
47854
|
-
const peg$c1753 = peg$literalExpectation("7+
|
|
47855
|
-
const peg$c1754 = "
|
|
47856
|
-
const peg$c1755 = peg$literalExpectation("
|
|
47857
|
-
const peg$c1756 = "7
|
|
47858
|
-
const peg$c1757 = peg$literalExpectation("7
|
|
47859
|
-
const peg$c1758 = "
|
|
47860
|
-
const peg$c1759 = peg$literalExpectation("
|
|
47861
|
-
const peg$c1760 = "7-
|
|
47862
|
-
const peg$c1761 = peg$literalExpectation("7-
|
|
47863
|
-
const peg$c1762 = "
|
|
47864
|
-
const peg$c1763 = peg$literalExpectation("
|
|
47865
|
-
const peg$c1764 = "9
|
|
47866
|
-
const peg$c1765 = peg$literalExpectation("9
|
|
47867
|
-
const peg$c1766 = "
|
|
47868
|
-
const peg$c1767 = peg$literalExpectation("
|
|
47869
|
-
const peg$c1768 = "9
|
|
47870
|
-
const peg$c1769 = peg$literalExpectation("9
|
|
47871
|
-
const peg$c1770 = "
|
|
47872
|
-
const peg$c1771 = peg$literalExpectation("
|
|
47873
|
-
const peg$c1772 = "
|
|
47874
|
-
const peg$c1773 = peg$literalExpectation("
|
|
47875
|
-
const peg$c1774 = "
|
|
47876
|
-
const peg$c1775 = peg$literalExpectation("
|
|
47877
|
-
const peg$c1776 = "
|
|
47878
|
-
const peg$c1777 = peg$literalExpectation("
|
|
47879
|
-
const peg$c1778 = "
|
|
47880
|
-
const peg$c1779 = peg$literalExpectation("
|
|
47881
|
-
const peg$c1780 = "
|
|
47882
|
-
const peg$c1781 = peg$literalExpectation("
|
|
47883
|
-
const peg$c1782 = "
|
|
47884
|
-
const peg$c1783 = peg$literalExpectation("
|
|
47885
|
-
const peg$c1784 = "
|
|
47886
|
-
const peg$c1785 = peg$literalExpectation("
|
|
47887
|
-
const peg$c1786 = "m+
|
|
47888
|
-
const peg$c1787 = peg$literalExpectation("m+
|
|
47889
|
-
const peg$c1788 = "
|
|
47890
|
-
const peg$c1789 = peg$literalExpectation("
|
|
47891
|
-
const peg$c1790 = "
|
|
47892
|
-
const peg$c1791 = peg$literalExpectation("
|
|
47893
|
-
const peg$c1792 = "
|
|
47894
|
-
const peg$c1793 = peg$literalExpectation("
|
|
47895
|
-
const peg$c1794 = "-
|
|
47896
|
-
const peg$c1795 = peg$literalExpectation("-
|
|
47897
|
-
const peg$c1796 = "
|
|
47898
|
-
const peg$c1797 = peg$literalExpectation("
|
|
47899
|
-
const peg$c1798 = "
|
|
47900
|
-
const peg$c1799 = peg$literalExpectation("
|
|
47901
|
-
const peg$c1800 = "
|
|
47902
|
-
const peg$c1801 = peg$literalExpectation("
|
|
47903
|
-
const peg$c1802 = "
|
|
47904
|
-
const peg$c1803 = peg$literalExpectation("
|
|
47905
|
-
const peg$c1804 = "
|
|
47906
|
-
const peg$c1805 = peg$literalExpectation("
|
|
47907
|
-
const peg$c1806 = "
|
|
47908
|
-
const peg$c1807 = peg$literalExpectation("
|
|
47909
|
-
const peg$c1808 = "
|
|
47910
|
-
const peg$c1809 = peg$literalExpectation("
|
|
47911
|
-
const peg$c1810 = "
|
|
47912
|
-
const peg$c1811 = peg$literalExpectation("
|
|
47913
|
-
const peg$c1812 = "
|
|
47914
|
-
const peg$c1813 = peg$literalExpectation("
|
|
47915
|
-
const peg$c1814 = "+
|
|
47916
|
-
const peg$c1815 = peg$literalExpectation("+
|
|
47917
|
-
const peg$c1816 = "
|
|
47918
|
-
const peg$c1817 = peg$literalExpectation("
|
|
47919
|
-
const peg$c1818 = "
|
|
47920
|
-
const peg$c1819 = peg$literalExpectation("
|
|
47921
|
-
const peg$c1820 = "
|
|
47922
|
-
const peg$c1821 = peg$literalExpectation("
|
|
47923
|
-
const peg$c1822 = "
|
|
47924
|
-
const peg$c1823 = peg$literalExpectation("
|
|
47925
|
-
const peg$c1824 = "
|
|
47926
|
-
const peg$c1825 = peg$literalExpectation("
|
|
47927
|
-
const peg$c1826 = "
|
|
47928
|
-
const peg$c1827 = peg$literalExpectation("
|
|
47929
|
-
const peg$c1828 = "
|
|
47930
|
-
const peg$c1829 = peg$literalExpectation("
|
|
47931
|
-
const peg$c1830 = "
|
|
47932
|
-
const peg$c1831 = peg$literalExpectation("
|
|
47933
|
-
const peg$c1832 = "
|
|
47934
|
-
const peg$c1833 = peg$literalExpectation("
|
|
47935
|
-
const peg$c1834 = "
|
|
47936
|
-
const peg$c1835 = peg$literalExpectation("
|
|
47937
|
-
const peg$c1836 = "
|
|
47938
|
-
const peg$c1837 = peg$literalExpectation("
|
|
47939
|
-
const peg$c1838 = "
|
|
47940
|
-
const peg$c1839 = peg$literalExpectation("
|
|
47941
|
-
const peg$c1840 = "
|
|
47942
|
-
const peg$c1841 = peg$literalExpectation("
|
|
47943
|
-
const peg$c1842 = "
|
|
47944
|
-
const peg$c1843 = peg$literalExpectation("
|
|
47945
|
-
const peg$c1844 = "
|
|
47946
|
-
const peg$c1845 = peg$literalExpectation("
|
|
47947
|
-
const peg$c1846 = "
|
|
47948
|
-
const peg$c1847 = peg$literalExpectation("
|
|
47949
|
-
const peg$c1848 = "
|
|
47950
|
-
const peg$c1849 = peg$literalExpectation("
|
|
47951
|
-
const peg$c1850 = "
|
|
47952
|
-
const peg$c1851 = peg$literalExpectation("
|
|
47953
|
-
const peg$c1852 = "
|
|
47954
|
-
const peg$c1853 = peg$literalExpectation("
|
|
47955
|
-
const peg$c1854 =
|
|
47956
|
-
const peg$c1855 = "
|
|
47957
|
-
const peg$c1856 =
|
|
47958
|
-
const peg$c1857 = "
|
|
47959
|
-
const peg$c1858 = peg$literalExpectation("
|
|
47960
|
-
const peg$c1859 = "
|
|
47961
|
-
const peg$c1860 = peg$literalExpectation("
|
|
47962
|
-
const peg$c1861 = "
|
|
47963
|
-
const peg$c1862 = peg$literalExpectation("
|
|
47964
|
-
const peg$c1863 = "
|
|
47965
|
-
const peg$c1864 = peg$literalExpectation("
|
|
47966
|
-
const peg$c1865 = "-
|
|
47967
|
-
const peg$c1866 = peg$literalExpectation("-
|
|
47968
|
-
const peg$c1867 = "
|
|
47969
|
-
const peg$c1868 = peg$literalExpectation("
|
|
47970
|
-
const peg$c1869 = "-
|
|
47971
|
-
const peg$c1870 = peg$literalExpectation("-
|
|
47972
|
-
const peg$c1871 = "
|
|
47973
|
-
const peg$c1872 = peg$literalExpectation("
|
|
47974
|
-
const peg$c1873 = "
|
|
47975
|
-
const peg$c1874 = peg$literalExpectation("
|
|
47976
|
-
const peg$c1875 = "
|
|
47977
|
-
const peg$c1876 = peg$literalExpectation("
|
|
47978
|
-
const peg$c1877 = "
|
|
47979
|
-
const peg$c1878 = peg$literalExpectation("
|
|
47980
|
-
const peg$c1879 = "
|
|
47981
|
-
const peg$c1880 = peg$literalExpectation("
|
|
47982
|
-
const peg$c1881 =
|
|
47983
|
-
const peg$c1882 = peg$
|
|
47574
|
+
const peg$c1458 = "maj13";
|
|
47575
|
+
const peg$c1459 = peg$literalExpectation("maj13", false);
|
|
47576
|
+
const peg$c1460 = "Maj13";
|
|
47577
|
+
const peg$c1461 = peg$literalExpectation("Maj13", false);
|
|
47578
|
+
const peg$c1462 = "+13#5";
|
|
47579
|
+
const peg$c1463 = peg$literalExpectation("+13#5", false);
|
|
47580
|
+
const peg$c1464 = "M13+5";
|
|
47581
|
+
const peg$c1465 = peg$literalExpectation("M13+5", false);
|
|
47582
|
+
const peg$c1466 = "+13#9";
|
|
47583
|
+
const peg$c1467 = peg$literalExpectation("+13#9", false);
|
|
47584
|
+
const peg$c1468 = "+13+9";
|
|
47585
|
+
const peg$c1469 = peg$literalExpectation("+13+9", false);
|
|
47586
|
+
const peg$c1470 = "+13b5";
|
|
47587
|
+
const peg$c1471 = peg$literalExpectation("+13b5", false);
|
|
47588
|
+
const peg$c1472 = "M13-5";
|
|
47589
|
+
const peg$c1473 = peg$literalExpectation("M13-5", false);
|
|
47590
|
+
const peg$c1474 = "+13b9";
|
|
47591
|
+
const peg$c1475 = peg$literalExpectation("+13b9", false);
|
|
47592
|
+
const peg$c1476 = "M13-9";
|
|
47593
|
+
const peg$c1477 = peg$literalExpectation("M13-9", false);
|
|
47594
|
+
const peg$c1478 = "+7#11";
|
|
47595
|
+
const peg$c1479 = peg$literalExpectation("+7#11", false);
|
|
47596
|
+
const peg$c1480 = "M7+11";
|
|
47597
|
+
const peg$c1481 = peg$literalExpectation("M7+11", false);
|
|
47598
|
+
const peg$c1482 = "ma7#5";
|
|
47599
|
+
const peg$c1483 = peg$literalExpectation("ma7#5", false);
|
|
47600
|
+
const peg$c1484 = "ma7+5";
|
|
47601
|
+
const peg$c1485 = peg$literalExpectation("ma7+5", false);
|
|
47602
|
+
const peg$c1486 = "ma7#9";
|
|
47603
|
+
const peg$c1487 = peg$literalExpectation("ma7#9", false);
|
|
47604
|
+
const peg$c1488 = "ma7+9";
|
|
47605
|
+
const peg$c1489 = peg$literalExpectation("ma7+9", false);
|
|
47606
|
+
const peg$c1490 = "+7b13";
|
|
47607
|
+
const peg$c1491 = peg$literalExpectation("+7b13", false);
|
|
47608
|
+
const peg$c1492 = "M7-13";
|
|
47609
|
+
const peg$c1493 = peg$literalExpectation("M7-13", false);
|
|
47610
|
+
const peg$c1494 = "ma7b5";
|
|
47611
|
+
const peg$c1495 = peg$literalExpectation("ma7b5", false);
|
|
47612
|
+
const peg$c1496 = "ma7-5";
|
|
47613
|
+
const peg$c1497 = peg$literalExpectation("ma7-5", false);
|
|
47614
|
+
const peg$c1498 = "ma7b9";
|
|
47615
|
+
const peg$c1499 = peg$literalExpectation("ma7b9", false);
|
|
47616
|
+
const peg$c1500 = "ma7-9";
|
|
47617
|
+
const peg$c1501 = peg$literalExpectation("ma7-9", false);
|
|
47618
|
+
const peg$c1502 = "9(#7)";
|
|
47619
|
+
const peg$c1503 = peg$literalExpectation("9(#7)", false);
|
|
47620
|
+
const peg$c1504 = "+9#11";
|
|
47621
|
+
const peg$c1505 = peg$literalExpectation("+9#11", false);
|
|
47622
|
+
const peg$c1506 = "M9+11";
|
|
47623
|
+
const peg$c1507 = peg$literalExpectation("M9+11", false);
|
|
47624
|
+
const peg$c1508 = "ma9#5";
|
|
47625
|
+
const peg$c1509 = peg$literalExpectation("ma9#5", false);
|
|
47626
|
+
const peg$c1510 = "ma9+5";
|
|
47627
|
+
const peg$c1511 = peg$literalExpectation("ma9+5", false);
|
|
47628
|
+
const peg$c1512 = "+9b13";
|
|
47629
|
+
const peg$c1513 = peg$literalExpectation("+9b13", false);
|
|
47630
|
+
const peg$c1514 = "M9-13";
|
|
47631
|
+
const peg$c1515 = peg$literalExpectation("M9-13", false);
|
|
47632
|
+
const peg$c1516 = "ma9b5";
|
|
47633
|
+
const peg$c1517 = peg$literalExpectation("ma9b5", false);
|
|
47634
|
+
const peg$c1518 = "ma9-5";
|
|
47635
|
+
const peg$c1519 = peg$literalExpectation("ma9-5", false);
|
|
47636
|
+
const peg$c1520 = "(#4)";
|
|
47637
|
+
const peg$c1521 = peg$literalExpectation("(#4)", false);
|
|
47638
|
+
const peg$c1522 = "(+4)";
|
|
47639
|
+
const peg$c1523 = peg$literalExpectation("(+4)", false);
|
|
47640
|
+
const peg$c1524 = "(11)";
|
|
47641
|
+
const peg$c1525 = peg$literalExpectation("(11)", false);
|
|
47642
|
+
const peg$c1526 = "(13)";
|
|
47643
|
+
const peg$c1527 = peg$literalExpectation("(13)", false);
|
|
47644
|
+
const peg$c1528 = "add2";
|
|
47645
|
+
const peg$c1529 = peg$literalExpectation("add2", false);
|
|
47646
|
+
const peg$c1530 = "add4";
|
|
47647
|
+
const peg$c1531 = peg$literalExpectation("add4", false);
|
|
47648
|
+
const peg$c1532 = "add6";
|
|
47649
|
+
const peg$c1533 = peg$literalExpectation("add6", false);
|
|
47650
|
+
const peg$c1534 = "add9";
|
|
47651
|
+
const peg$c1535 = peg$literalExpectation("add9", false);
|
|
47652
|
+
const peg$c1536 = "(b5)";
|
|
47653
|
+
const peg$c1537 = peg$literalExpectation("(b5)", false);
|
|
47654
|
+
const peg$c1538 = "(-5)";
|
|
47655
|
+
const peg$c1539 = peg$literalExpectation("(-5)", false);
|
|
47656
|
+
const peg$c1540 = "2(6)";
|
|
47657
|
+
const peg$c1541 = peg$literalExpectation("2(6)", false);
|
|
47658
|
+
const peg$c1542 = "(b6)";
|
|
47659
|
+
const peg$c1543 = peg$literalExpectation("(b6)", false);
|
|
47660
|
+
const peg$c1544 = "unis";
|
|
47661
|
+
const peg$c1545 = peg$literalExpectation("unis", false);
|
|
47662
|
+
const peg$c1546 = "Majj";
|
|
47663
|
+
const peg$c1547 = peg$literalExpectation("Majj", false);
|
|
47664
|
+
const peg$c1548 = "(#5)";
|
|
47665
|
+
const peg$c1549 = peg$literalExpectation("(#5)", false);
|
|
47666
|
+
const peg$c1550 = "(+5)";
|
|
47667
|
+
const peg$c1551 = peg$literalExpectation("(+5)", false);
|
|
47668
|
+
const peg$c1552 = "11#5";
|
|
47669
|
+
const peg$c1553 = peg$literalExpectation("11#5", false);
|
|
47670
|
+
const peg$c1554 = "11+5";
|
|
47671
|
+
const peg$c1555 = peg$literalExpectation("11+5", false);
|
|
47672
|
+
const peg$c1556 = "11#9";
|
|
47673
|
+
const peg$c1557 = peg$literalExpectation("11#9", false);
|
|
47674
|
+
const peg$c1558 = "11+9";
|
|
47675
|
+
const peg$c1559 = peg$literalExpectation("11+9", false);
|
|
47676
|
+
const peg$c1560 = "11b5";
|
|
47677
|
+
const peg$c1561 = peg$literalExpectation("11b5", false);
|
|
47678
|
+
const peg$c1562 = "11-5";
|
|
47679
|
+
const peg$c1563 = peg$literalExpectation("11-5", false);
|
|
47680
|
+
const peg$c1564 = "11b9";
|
|
47681
|
+
const peg$c1565 = peg$literalExpectation("11b9", false);
|
|
47682
|
+
const peg$c1566 = "11-9";
|
|
47683
|
+
const peg$c1567 = peg$literalExpectation("11-9", false);
|
|
47684
|
+
const peg$c1568 = "13#5";
|
|
47685
|
+
const peg$c1569 = peg$literalExpectation("13#5", false);
|
|
47686
|
+
const peg$c1570 = "13+5";
|
|
47687
|
+
const peg$c1571 = peg$literalExpectation("13+5", false);
|
|
47688
|
+
const peg$c1572 = "13#9";
|
|
47689
|
+
const peg$c1573 = peg$literalExpectation("13#9", false);
|
|
47690
|
+
const peg$c1574 = "13+9";
|
|
47691
|
+
const peg$c1575 = peg$literalExpectation("13+9", false);
|
|
47692
|
+
const peg$c1576 = "13b5";
|
|
47693
|
+
const peg$c1577 = peg$literalExpectation("13b5", false);
|
|
47694
|
+
const peg$c1578 = "13-5";
|
|
47695
|
+
const peg$c1579 = peg$literalExpectation("13-5", false);
|
|
47696
|
+
const peg$c1580 = "13b9";
|
|
47697
|
+
const peg$c1581 = peg$literalExpectation("13b9", false);
|
|
47698
|
+
const peg$c1582 = "13-9";
|
|
47699
|
+
const peg$c1583 = peg$literalExpectation("13-9", false);
|
|
47700
|
+
const peg$c1584 = "sus2";
|
|
47701
|
+
const peg$c1585 = peg$literalExpectation("sus2", false);
|
|
47702
|
+
const peg$c1586 = "2(4)";
|
|
47703
|
+
const peg$c1587 = peg$literalExpectation("2(4)", false);
|
|
47704
|
+
const peg$c1588 = "4(2)";
|
|
47705
|
+
const peg$c1589 = peg$literalExpectation("4(2)", false);
|
|
47706
|
+
const peg$c1590 = "6(2)";
|
|
47707
|
+
const peg$c1591 = peg$literalExpectation("6(2)", false);
|
|
47708
|
+
const peg$c1592 = "6(9)";
|
|
47709
|
+
const peg$c1593 = peg$literalExpectation("6(9)", false);
|
|
47710
|
+
const peg$c1594 = "dom7";
|
|
47711
|
+
const peg$c1595 = peg$literalExpectation("dom7", false);
|
|
47712
|
+
const peg$c1596 = "7#11";
|
|
47713
|
+
const peg$c1597 = peg$literalExpectation("7#11", false);
|
|
47714
|
+
const peg$c1598 = "7+11";
|
|
47715
|
+
const peg$c1599 = peg$literalExpectation("7+11", false);
|
|
47716
|
+
const peg$c1600 = "aug7";
|
|
47717
|
+
const peg$c1601 = peg$literalExpectation("aug7", false);
|
|
47718
|
+
const peg$c1602 = "7(6)";
|
|
47719
|
+
const peg$c1603 = peg$literalExpectation("7(6)", false);
|
|
47720
|
+
const peg$c1604 = "7b13";
|
|
47721
|
+
const peg$c1605 = peg$literalExpectation("7b13", false);
|
|
47722
|
+
const peg$c1606 = "7-13";
|
|
47723
|
+
const peg$c1607 = peg$literalExpectation("7-13", false);
|
|
47724
|
+
const peg$c1608 = "7sus";
|
|
47725
|
+
const peg$c1609 = peg$literalExpectation("7sus", false);
|
|
47726
|
+
const peg$c1610 = "dom9";
|
|
47727
|
+
const peg$c1611 = peg$literalExpectation("dom9", false);
|
|
47728
|
+
const peg$c1612 = "9#11";
|
|
47729
|
+
const peg$c1613 = peg$literalExpectation("9#11", false);
|
|
47730
|
+
const peg$c1614 = "9+11";
|
|
47731
|
+
const peg$c1615 = peg$literalExpectation("9+11", false);
|
|
47732
|
+
const peg$c1616 = "aug9";
|
|
47733
|
+
const peg$c1617 = peg$literalExpectation("aug9", false);
|
|
47734
|
+
const peg$c1618 = "9b13";
|
|
47735
|
+
const peg$c1619 = peg$literalExpectation("9b13", false);
|
|
47736
|
+
const peg$c1620 = "9-13";
|
|
47737
|
+
const peg$c1621 = peg$literalExpectation("9-13", false);
|
|
47738
|
+
const peg$c1622 = "9aug";
|
|
47739
|
+
const peg$c1623 = peg$literalExpectation("9aug", false);
|
|
47740
|
+
const peg$c1624 = "9sus";
|
|
47741
|
+
const peg$c1625 = peg$literalExpectation("9sus", false);
|
|
47742
|
+
const peg$c1626 = "dim7";
|
|
47743
|
+
const peg$c1627 = peg$literalExpectation("dim7", false);
|
|
47744
|
+
const peg$c1628 = "m(4)";
|
|
47745
|
+
const peg$c1629 = peg$literalExpectation("m(4)", false);
|
|
47746
|
+
const peg$c1630 = "m(9)";
|
|
47747
|
+
const peg$c1631 = peg$literalExpectation("m(9)", false);
|
|
47748
|
+
const peg$c1632 = "mi11";
|
|
47749
|
+
const peg$c1633 = peg$literalExpectation("mi11", false);
|
|
47750
|
+
const peg$c1634 = "m9+5";
|
|
47751
|
+
const peg$c1635 = peg$literalExpectation("m9+5", false);
|
|
47752
|
+
const peg$c1636 = "-9-5";
|
|
47753
|
+
const peg$c1637 = peg$literalExpectation("-9-5", false);
|
|
47754
|
+
const peg$c1638 = "mi13";
|
|
47755
|
+
const peg$c1639 = peg$literalExpectation("mi13", false);
|
|
47756
|
+
const peg$c1640 = "min2";
|
|
47757
|
+
const peg$c1641 = peg$literalExpectation("min2", false);
|
|
47758
|
+
const peg$c1642 = "min6";
|
|
47759
|
+
const peg$c1643 = peg$literalExpectation("min6", false);
|
|
47760
|
+
const peg$c1644 = "m6M7";
|
|
47761
|
+
const peg$c1645 = peg$literalExpectation("m6M7", false);
|
|
47762
|
+
const peg$c1646 = "m6+7";
|
|
47763
|
+
const peg$c1647 = peg$literalExpectation("m6+7", false);
|
|
47764
|
+
const peg$c1648 = "min7";
|
|
47765
|
+
const peg$c1649 = peg$literalExpectation("min7", false);
|
|
47766
|
+
const peg$c1650 = "m7#5";
|
|
47767
|
+
const peg$c1651 = peg$literalExpectation("m7#5", false);
|
|
47768
|
+
const peg$c1652 = "m7+5";
|
|
47769
|
+
const peg$c1653 = peg$literalExpectation("m7+5", false);
|
|
47770
|
+
const peg$c1654 = "-7#5";
|
|
47771
|
+
const peg$c1655 = peg$literalExpectation("-7#5", false);
|
|
47772
|
+
const peg$c1656 = "m7#9";
|
|
47773
|
+
const peg$c1657 = peg$literalExpectation("m7#9", false);
|
|
47774
|
+
const peg$c1658 = "m7+9";
|
|
47775
|
+
const peg$c1659 = peg$literalExpectation("m7+9", false);
|
|
47776
|
+
const peg$c1660 = "-7#9";
|
|
47777
|
+
const peg$c1661 = peg$literalExpectation("-7#9", false);
|
|
47778
|
+
const peg$c1662 = "m7b5";
|
|
47779
|
+
const peg$c1663 = peg$literalExpectation("m7b5", false);
|
|
47780
|
+
const peg$c1664 = "m7-5";
|
|
47781
|
+
const peg$c1665 = peg$literalExpectation("m7-5", false);
|
|
47782
|
+
const peg$c1666 = "-7b5";
|
|
47783
|
+
const peg$c1667 = peg$literalExpectation("-7b5", false);
|
|
47784
|
+
const peg$c1668 = "m7b9";
|
|
47785
|
+
const peg$c1669 = peg$literalExpectation("m7b9", false);
|
|
47786
|
+
const peg$c1670 = "m7-9";
|
|
47787
|
+
const peg$c1671 = peg$literalExpectation("m7-9", false);
|
|
47788
|
+
const peg$c1672 = "-7b9";
|
|
47789
|
+
const peg$c1673 = peg$literalExpectation("-7b9", false);
|
|
47790
|
+
const peg$c1674 = "min9";
|
|
47791
|
+
const peg$c1675 = peg$literalExpectation("min9", false);
|
|
47792
|
+
const peg$c1676 = "m9#5";
|
|
47793
|
+
const peg$c1677 = peg$literalExpectation("m9#5", false);
|
|
47794
|
+
const peg$c1678 = "-9#5";
|
|
47795
|
+
const peg$c1679 = peg$literalExpectation("-9#5", false);
|
|
47796
|
+
const peg$c1680 = "m9b5";
|
|
47797
|
+
const peg$c1681 = peg$literalExpectation("m9b5", false);
|
|
47798
|
+
const peg$c1682 = "m9-5";
|
|
47799
|
+
const peg$c1683 = peg$literalExpectation("m9-5", false);
|
|
47800
|
+
const peg$c1684 = "-9b5";
|
|
47801
|
+
const peg$c1685 = peg$literalExpectation("-9b5", false);
|
|
47802
|
+
const peg$c1686 = "m9M7";
|
|
47803
|
+
const peg$c1687 = peg$literalExpectation("m9M7", false);
|
|
47804
|
+
const peg$c1688 = "maj9";
|
|
47805
|
+
const peg$c1689 = peg$literalExpectation("maj9", false);
|
|
47806
|
+
const peg$c1690 = "ma11";
|
|
47807
|
+
const peg$c1691 = peg$literalExpectation("ma11", false);
|
|
47808
|
+
const peg$c1692 = "11#7";
|
|
47809
|
+
const peg$c1693 = peg$literalExpectation("11#7", false);
|
|
47810
|
+
const peg$c1694 = "11+7";
|
|
47811
|
+
const peg$c1695 = peg$literalExpectation("11+7", false);
|
|
47812
|
+
const peg$c1696 = "ma13";
|
|
47813
|
+
const peg$c1697 = peg$literalExpectation("ma13", false);
|
|
47814
|
+
const peg$c1698 = "ma69";
|
|
47815
|
+
const peg$c1699 = peg$literalExpectation("ma69", false);
|
|
47816
|
+
const peg$c1700 = "Maj7";
|
|
47817
|
+
const peg$c1701 = peg$literalExpectation("Maj7", false);
|
|
47818
|
+
const peg$c1702 = "maj7";
|
|
47819
|
+
const peg$c1703 = peg$literalExpectation("maj7", false);
|
|
47820
|
+
const peg$c1704 = "+7#5";
|
|
47821
|
+
const peg$c1705 = peg$literalExpectation("+7#5", false);
|
|
47822
|
+
const peg$c1706 = "M7+5";
|
|
47823
|
+
const peg$c1707 = peg$literalExpectation("M7+5", false);
|
|
47824
|
+
const peg$c1708 = "+7#9";
|
|
47825
|
+
const peg$c1709 = peg$literalExpectation("+7#9", false);
|
|
47826
|
+
const peg$c1710 = "M7+9";
|
|
47827
|
+
const peg$c1711 = peg$literalExpectation("M7+9", false);
|
|
47828
|
+
const peg$c1712 = "+7b5";
|
|
47829
|
+
const peg$c1713 = peg$literalExpectation("+7b5", false);
|
|
47830
|
+
const peg$c1714 = "M7-5";
|
|
47831
|
+
const peg$c1715 = peg$literalExpectation("M7-5", false);
|
|
47832
|
+
const peg$c1716 = "+7b9";
|
|
47833
|
+
const peg$c1717 = peg$literalExpectation("+7b9", false);
|
|
47834
|
+
const peg$c1718 = "M7-9";
|
|
47835
|
+
const peg$c1719 = peg$literalExpectation("M7-9", false);
|
|
47836
|
+
const peg$c1720 = "+9#5";
|
|
47837
|
+
const peg$c1721 = peg$literalExpectation("+9#5", false);
|
|
47838
|
+
const peg$c1722 = "M9+5";
|
|
47839
|
+
const peg$c1723 = peg$literalExpectation("M9+5", false);
|
|
47840
|
+
const peg$c1724 = "+9b5";
|
|
47841
|
+
const peg$c1725 = peg$literalExpectation("+9b5", false);
|
|
47842
|
+
const peg$c1726 = "M9-5";
|
|
47843
|
+
const peg$c1727 = peg$literalExpectation("M9-5", false);
|
|
47844
|
+
const peg$c1728 = "sus4";
|
|
47845
|
+
const peg$c1729 = peg$literalExpectation("sus4", false);
|
|
47846
|
+
const peg$c1730 = "(2)";
|
|
47847
|
+
const peg$c1731 = peg$literalExpectation("(2)", false);
|
|
47848
|
+
const peg$c1732 = "(4)";
|
|
47849
|
+
const peg$c1733 = peg$literalExpectation("(4)", false);
|
|
47850
|
+
const peg$c1734 = "(6)";
|
|
47851
|
+
const peg$c1735 = peg$literalExpectation("(6)", false);
|
|
47852
|
+
const peg$c1736 = "(7)";
|
|
47853
|
+
const peg$c1737 = peg$literalExpectation("(7)", false);
|
|
47854
|
+
const peg$c1738 = "(9)";
|
|
47855
|
+
const peg$c1739 = peg$literalExpectation("(9)", false);
|
|
47856
|
+
const peg$c1740 = "maj";
|
|
47857
|
+
const peg$c1741 = peg$literalExpectation("maj", false);
|
|
47858
|
+
const peg$c1742 = "aug";
|
|
47859
|
+
const peg$c1743 = peg$literalExpectation("aug", false);
|
|
47860
|
+
const peg$c1744 = "2+4";
|
|
47861
|
+
const peg$c1745 = peg$literalExpectation("2+4", false);
|
|
47862
|
+
const peg$c1746 = "2#4";
|
|
47863
|
+
const peg$c1747 = peg$literalExpectation("2#4", false);
|
|
47864
|
+
const peg$c1748 = "no3";
|
|
47865
|
+
const peg$c1749 = peg$literalExpectation("no3", false);
|
|
47866
|
+
const peg$c1750 = "7#5";
|
|
47867
|
+
const peg$c1751 = peg$literalExpectation("7#5", false);
|
|
47868
|
+
const peg$c1752 = "7+5";
|
|
47869
|
+
const peg$c1753 = peg$literalExpectation("7+5", false);
|
|
47870
|
+
const peg$c1754 = "7#9";
|
|
47871
|
+
const peg$c1755 = peg$literalExpectation("7#9", false);
|
|
47872
|
+
const peg$c1756 = "7+9";
|
|
47873
|
+
const peg$c1757 = peg$literalExpectation("7+9", false);
|
|
47874
|
+
const peg$c1758 = "7b5";
|
|
47875
|
+
const peg$c1759 = peg$literalExpectation("7b5", false);
|
|
47876
|
+
const peg$c1760 = "7-5";
|
|
47877
|
+
const peg$c1761 = peg$literalExpectation("7-5", false);
|
|
47878
|
+
const peg$c1762 = "7b9";
|
|
47879
|
+
const peg$c1763 = peg$literalExpectation("7b9", false);
|
|
47880
|
+
const peg$c1764 = "7-9";
|
|
47881
|
+
const peg$c1765 = peg$literalExpectation("7-9", false);
|
|
47882
|
+
const peg$c1766 = "9#5";
|
|
47883
|
+
const peg$c1767 = peg$literalExpectation("9#5", false);
|
|
47884
|
+
const peg$c1768 = "9+5";
|
|
47885
|
+
const peg$c1769 = peg$literalExpectation("9+5", false);
|
|
47886
|
+
const peg$c1770 = "9b5";
|
|
47887
|
+
const peg$c1771 = peg$literalExpectation("9b5", false);
|
|
47888
|
+
const peg$c1772 = "9-5";
|
|
47889
|
+
const peg$c1773 = peg$literalExpectation("9-5", false);
|
|
47890
|
+
const peg$c1774 = "dim";
|
|
47891
|
+
const peg$c1775 = peg$literalExpectation("dim", false);
|
|
47892
|
+
const peg$c1776 = "mb5";
|
|
47893
|
+
const peg$c1777 = peg$literalExpectation("mb5", false);
|
|
47894
|
+
const peg$c1778 = "m-5";
|
|
47895
|
+
const peg$c1779 = peg$literalExpectation("m-5", false);
|
|
47896
|
+
const peg$c1780 = "-b5";
|
|
47897
|
+
const peg$c1781 = peg$literalExpectation("-b5", false);
|
|
47898
|
+
const peg$c1782 = "min";
|
|
47899
|
+
const peg$c1783 = peg$literalExpectation("min", false);
|
|
47900
|
+
const peg$c1784 = "mM7";
|
|
47901
|
+
const peg$c1785 = peg$literalExpectation("mM7", false);
|
|
47902
|
+
const peg$c1786 = "m+7";
|
|
47903
|
+
const peg$c1787 = peg$literalExpectation("m+7", false);
|
|
47904
|
+
const peg$c1788 = "mM9";
|
|
47905
|
+
const peg$c1789 = peg$literalExpectation("mM9", false);
|
|
47906
|
+
const peg$c1790 = "m+9";
|
|
47907
|
+
const peg$c1791 = peg$literalExpectation("m+9", false);
|
|
47908
|
+
const peg$c1792 = "m11";
|
|
47909
|
+
const peg$c1793 = peg$literalExpectation("m11", false);
|
|
47910
|
+
const peg$c1794 = "-11";
|
|
47911
|
+
const peg$c1795 = peg$literalExpectation("-11", false);
|
|
47912
|
+
const peg$c1796 = "m13";
|
|
47913
|
+
const peg$c1797 = peg$literalExpectation("m13", false);
|
|
47914
|
+
const peg$c1798 = "-13";
|
|
47915
|
+
const peg$c1799 = peg$literalExpectation("-13", false);
|
|
47916
|
+
const peg$c1800 = "mi2";
|
|
47917
|
+
const peg$c1801 = peg$literalExpectation("mi2", false);
|
|
47918
|
+
const peg$c1802 = "mi6";
|
|
47919
|
+
const peg$c1803 = peg$literalExpectation("mi6", false);
|
|
47920
|
+
const peg$c1804 = "m69";
|
|
47921
|
+
const peg$c1805 = peg$literalExpectation("m69", false);
|
|
47922
|
+
const peg$c1806 = "mi7";
|
|
47923
|
+
const peg$c1807 = peg$literalExpectation("mi7", false);
|
|
47924
|
+
const peg$c1808 = "m74";
|
|
47925
|
+
const peg$c1809 = peg$literalExpectation("m74", false);
|
|
47926
|
+
const peg$c1810 = "mi9";
|
|
47927
|
+
const peg$c1811 = peg$literalExpectation("mi9", false);
|
|
47928
|
+
const peg$c1812 = "ma9";
|
|
47929
|
+
const peg$c1813 = peg$literalExpectation("ma9", false);
|
|
47930
|
+
const peg$c1814 = "+11";
|
|
47931
|
+
const peg$c1815 = peg$literalExpectation("+11", false);
|
|
47932
|
+
const peg$c1816 = "M11";
|
|
47933
|
+
const peg$c1817 = peg$literalExpectation("M11", false);
|
|
47934
|
+
const peg$c1818 = "+13";
|
|
47935
|
+
const peg$c1819 = peg$literalExpectation("+13", false);
|
|
47936
|
+
const peg$c1820 = "M13";
|
|
47937
|
+
const peg$c1821 = peg$literalExpectation("M13", false);
|
|
47938
|
+
const peg$c1822 = "ma6";
|
|
47939
|
+
const peg$c1823 = peg$literalExpectation("ma6", false);
|
|
47940
|
+
const peg$c1824 = "ma7";
|
|
47941
|
+
const peg$c1825 = peg$literalExpectation("ma7", false);
|
|
47942
|
+
const peg$c1826 = "sus";
|
|
47943
|
+
const peg$c1827 = peg$literalExpectation("sus", false);
|
|
47944
|
+
const peg$c1828 = "#4";
|
|
47945
|
+
const peg$c1829 = peg$literalExpectation("#4", false);
|
|
47946
|
+
const peg$c1830 = "+4";
|
|
47947
|
+
const peg$c1831 = peg$literalExpectation("+4", false);
|
|
47948
|
+
const peg$c1832 = "-5";
|
|
47949
|
+
const peg$c1833 = peg$literalExpectation("-5", false);
|
|
47950
|
+
const peg$c1834 = "b5";
|
|
47951
|
+
const peg$c1835 = peg$literalExpectation("b5", false);
|
|
47952
|
+
const peg$c1836 = "ma";
|
|
47953
|
+
const peg$c1837 = peg$literalExpectation("ma", false);
|
|
47954
|
+
const peg$c1838 = "Ma";
|
|
47955
|
+
const peg$c1839 = peg$literalExpectation("Ma", false);
|
|
47956
|
+
const peg$c1840 = "#5";
|
|
47957
|
+
const peg$c1841 = peg$literalExpectation("#5", false);
|
|
47958
|
+
const peg$c1842 = "+5";
|
|
47959
|
+
const peg$c1843 = peg$literalExpectation("+5", false);
|
|
47960
|
+
const peg$c1844 = "11";
|
|
47961
|
+
const peg$c1845 = peg$literalExpectation("11", false);
|
|
47962
|
+
const peg$c1846 = "13";
|
|
47963
|
+
const peg$c1847 = peg$literalExpectation("13", false);
|
|
47964
|
+
const peg$c1848 = "42";
|
|
47965
|
+
const peg$c1849 = peg$literalExpectation("42", false);
|
|
47966
|
+
const peg$c1850 = "69";
|
|
47967
|
+
const peg$c1851 = peg$literalExpectation("69", false);
|
|
47968
|
+
const peg$c1852 = "x7";
|
|
47969
|
+
const peg$c1853 = peg$literalExpectation("x7", false);
|
|
47970
|
+
const peg$c1854 = "x9";
|
|
47971
|
+
const peg$c1855 = peg$literalExpectation("x9", false);
|
|
47972
|
+
const peg$c1856 = "o7";
|
|
47973
|
+
const peg$c1857 = peg$literalExpectation("o7", false);
|
|
47974
|
+
const peg$c1858 = peg$literalExpectation("mi", false);
|
|
47975
|
+
const peg$c1859 = "m2";
|
|
47976
|
+
const peg$c1860 = peg$literalExpectation("m2", false);
|
|
47977
|
+
const peg$c1861 = "m4";
|
|
47978
|
+
const peg$c1862 = peg$literalExpectation("m4", false);
|
|
47979
|
+
const peg$c1863 = "m6";
|
|
47980
|
+
const peg$c1864 = peg$literalExpectation("m6", false);
|
|
47981
|
+
const peg$c1865 = "-6";
|
|
47982
|
+
const peg$c1866 = peg$literalExpectation("-6", false);
|
|
47983
|
+
const peg$c1867 = "m7";
|
|
47984
|
+
const peg$c1868 = peg$literalExpectation("m7", false);
|
|
47985
|
+
const peg$c1869 = "-7";
|
|
47986
|
+
const peg$c1870 = peg$literalExpectation("-7", false);
|
|
47987
|
+
const peg$c1871 = "m9";
|
|
47988
|
+
const peg$c1872 = peg$literalExpectation("m9", false);
|
|
47989
|
+
const peg$c1873 = "-9";
|
|
47990
|
+
const peg$c1874 = peg$literalExpectation("-9", false);
|
|
47991
|
+
const peg$c1875 = "+7";
|
|
47992
|
+
const peg$c1876 = peg$literalExpectation("+7", false);
|
|
47993
|
+
const peg$c1877 = "#7";
|
|
47994
|
+
const peg$c1878 = peg$literalExpectation("#7", false);
|
|
47995
|
+
const peg$c1879 = "M7";
|
|
47996
|
+
const peg$c1880 = peg$literalExpectation("M7", false);
|
|
47997
|
+
const peg$c1881 = "+9";
|
|
47998
|
+
const peg$c1882 = peg$literalExpectation("+9", false);
|
|
47999
|
+
const peg$c1883 = "M9";
|
|
48000
|
+
const peg$c1884 = peg$literalExpectation("M9", false);
|
|
48001
|
+
const peg$c1885 = /^[+\-24-79Mmx]/;
|
|
48002
|
+
const peg$c1886 = peg$classExpectation([
|
|
47984
48003
|
"+",
|
|
47985
48004
|
"-",
|
|
47986
48005
|
"2",
|
|
@@ -47993,15 +48012,15 @@ Or set the song key before changing key:
|
|
|
47993
48012
|
"m",
|
|
47994
48013
|
"x"
|
|
47995
48014
|
], false, false);
|
|
47996
|
-
const peg$
|
|
47997
|
-
const peg$
|
|
48015
|
+
const peg$c1887 = /^[\n\r]/;
|
|
48016
|
+
const peg$c1888 = peg$classExpectation([
|
|
47998
48017
|
"\n",
|
|
47999
48018
|
"\r"
|
|
48000
48019
|
], false, false);
|
|
48001
|
-
const peg$
|
|
48002
|
-
const peg$
|
|
48003
|
-
const peg$
|
|
48004
|
-
const peg$
|
|
48020
|
+
const peg$c1889 = "\n";
|
|
48021
|
+
const peg$c1890 = peg$literalExpectation("\n", false);
|
|
48022
|
+
const peg$c1891 = "\r";
|
|
48023
|
+
const peg$c1892 = peg$literalExpectation("\r", false);
|
|
48005
48024
|
let peg$currPos = 0;
|
|
48006
48025
|
let peg$savedPos = 0;
|
|
48007
48026
|
const peg$posDetailsCache = [
|
|
@@ -55924,17 +55943,17 @@ Or set the song key before changing key:
|
|
|
55924
55943
|
if (peg$silentFails === 0) peg$fail(peg$c1515);
|
|
55925
55944
|
}
|
|
55926
55945
|
if (s0 === peg$FAILED) {
|
|
55927
|
-
if (input.substr(peg$currPos,
|
|
55946
|
+
if (input.substr(peg$currPos, 5) === peg$c1516) {
|
|
55928
55947
|
s0 = peg$c1516;
|
|
55929
|
-
peg$currPos +=
|
|
55948
|
+
peg$currPos += 5;
|
|
55930
55949
|
} else {
|
|
55931
55950
|
s0 = peg$FAILED;
|
|
55932
55951
|
if (peg$silentFails === 0) peg$fail(peg$c1517);
|
|
55933
55952
|
}
|
|
55934
55953
|
if (s0 === peg$FAILED) {
|
|
55935
|
-
if (input.substr(peg$currPos,
|
|
55954
|
+
if (input.substr(peg$currPos, 5) === peg$c1518) {
|
|
55936
55955
|
s0 = peg$c1518;
|
|
55937
|
-
peg$currPos +=
|
|
55956
|
+
peg$currPos += 5;
|
|
55938
55957
|
} else {
|
|
55939
55958
|
s0 = peg$FAILED;
|
|
55940
55959
|
if (peg$silentFails === 0) peg$fail(peg$c1519);
|
|
@@ -56468,28 +56487,28 @@ Or set the song key before changing key:
|
|
|
56468
56487
|
if (peg$silentFails === 0) peg$fail(peg$c1651);
|
|
56469
56488
|
}
|
|
56470
56489
|
if (s0 === peg$FAILED) {
|
|
56471
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56472
|
-
s0 = peg$
|
|
56490
|
+
if (input.substr(peg$currPos, 4) === peg$c1652) {
|
|
56491
|
+
s0 = peg$c1652;
|
|
56473
56492
|
peg$currPos += 4;
|
|
56474
56493
|
} else {
|
|
56475
56494
|
s0 = peg$FAILED;
|
|
56476
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56495
|
+
if (peg$silentFails === 0) peg$fail(peg$c1653);
|
|
56477
56496
|
}
|
|
56478
56497
|
if (s0 === peg$FAILED) {
|
|
56479
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56480
|
-
s0 = peg$
|
|
56498
|
+
if (input.substr(peg$currPos, 4) === peg$c1654) {
|
|
56499
|
+
s0 = peg$c1654;
|
|
56481
56500
|
peg$currPos += 4;
|
|
56482
56501
|
} else {
|
|
56483
56502
|
s0 = peg$FAILED;
|
|
56484
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56503
|
+
if (peg$silentFails === 0) peg$fail(peg$c1655);
|
|
56485
56504
|
}
|
|
56486
56505
|
if (s0 === peg$FAILED) {
|
|
56487
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56488
|
-
s0 = peg$
|
|
56506
|
+
if (input.substr(peg$currPos, 4) === peg$c1652) {
|
|
56507
|
+
s0 = peg$c1652;
|
|
56489
56508
|
peg$currPos += 4;
|
|
56490
56509
|
} else {
|
|
56491
56510
|
s0 = peg$FAILED;
|
|
56492
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56511
|
+
if (peg$silentFails === 0) peg$fail(peg$c1653);
|
|
56493
56512
|
}
|
|
56494
56513
|
if (s0 === peg$FAILED) {
|
|
56495
56514
|
if (input.substr(peg$currPos, 4) === peg$c1656) {
|
|
@@ -56500,28 +56519,28 @@ Or set the song key before changing key:
|
|
|
56500
56519
|
if (peg$silentFails === 0) peg$fail(peg$c1657);
|
|
56501
56520
|
}
|
|
56502
56521
|
if (s0 === peg$FAILED) {
|
|
56503
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56504
|
-
s0 = peg$
|
|
56522
|
+
if (input.substr(peg$currPos, 4) === peg$c1658) {
|
|
56523
|
+
s0 = peg$c1658;
|
|
56505
56524
|
peg$currPos += 4;
|
|
56506
56525
|
} else {
|
|
56507
56526
|
s0 = peg$FAILED;
|
|
56508
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56527
|
+
if (peg$silentFails === 0) peg$fail(peg$c1659);
|
|
56509
56528
|
}
|
|
56510
56529
|
if (s0 === peg$FAILED) {
|
|
56511
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56512
|
-
s0 = peg$
|
|
56530
|
+
if (input.substr(peg$currPos, 4) === peg$c1660) {
|
|
56531
|
+
s0 = peg$c1660;
|
|
56513
56532
|
peg$currPos += 4;
|
|
56514
56533
|
} else {
|
|
56515
56534
|
s0 = peg$FAILED;
|
|
56516
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56535
|
+
if (peg$silentFails === 0) peg$fail(peg$c1661);
|
|
56517
56536
|
}
|
|
56518
56537
|
if (s0 === peg$FAILED) {
|
|
56519
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56520
|
-
s0 = peg$
|
|
56538
|
+
if (input.substr(peg$currPos, 4) === peg$c1658) {
|
|
56539
|
+
s0 = peg$c1658;
|
|
56521
56540
|
peg$currPos += 4;
|
|
56522
56541
|
} else {
|
|
56523
56542
|
s0 = peg$FAILED;
|
|
56524
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56543
|
+
if (peg$silentFails === 0) peg$fail(peg$c1659);
|
|
56525
56544
|
}
|
|
56526
56545
|
if (s0 === peg$FAILED) {
|
|
56527
56546
|
if (input.substr(peg$currPos, 4) === peg$c1662) {
|
|
@@ -56532,28 +56551,28 @@ Or set the song key before changing key:
|
|
|
56532
56551
|
if (peg$silentFails === 0) peg$fail(peg$c1663);
|
|
56533
56552
|
}
|
|
56534
56553
|
if (s0 === peg$FAILED) {
|
|
56535
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56536
|
-
s0 = peg$
|
|
56554
|
+
if (input.substr(peg$currPos, 4) === peg$c1664) {
|
|
56555
|
+
s0 = peg$c1664;
|
|
56537
56556
|
peg$currPos += 4;
|
|
56538
56557
|
} else {
|
|
56539
56558
|
s0 = peg$FAILED;
|
|
56540
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56559
|
+
if (peg$silentFails === 0) peg$fail(peg$c1665);
|
|
56541
56560
|
}
|
|
56542
56561
|
if (s0 === peg$FAILED) {
|
|
56543
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56544
|
-
s0 = peg$
|
|
56562
|
+
if (input.substr(peg$currPos, 4) === peg$c1666) {
|
|
56563
|
+
s0 = peg$c1666;
|
|
56545
56564
|
peg$currPos += 4;
|
|
56546
56565
|
} else {
|
|
56547
56566
|
s0 = peg$FAILED;
|
|
56548
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56567
|
+
if (peg$silentFails === 0) peg$fail(peg$c1667);
|
|
56549
56568
|
}
|
|
56550
56569
|
if (s0 === peg$FAILED) {
|
|
56551
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56552
|
-
s0 = peg$
|
|
56570
|
+
if (input.substr(peg$currPos, 4) === peg$c1664) {
|
|
56571
|
+
s0 = peg$c1664;
|
|
56553
56572
|
peg$currPos += 4;
|
|
56554
56573
|
} else {
|
|
56555
56574
|
s0 = peg$FAILED;
|
|
56556
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56575
|
+
if (peg$silentFails === 0) peg$fail(peg$c1665);
|
|
56557
56576
|
}
|
|
56558
56577
|
if (s0 === peg$FAILED) {
|
|
56559
56578
|
if (input.substr(peg$currPos, 4) === peg$c1668) {
|
|
@@ -56564,44 +56583,44 @@ Or set the song key before changing key:
|
|
|
56564
56583
|
if (peg$silentFails === 0) peg$fail(peg$c1669);
|
|
56565
56584
|
}
|
|
56566
56585
|
if (s0 === peg$FAILED) {
|
|
56567
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56568
|
-
s0 = peg$
|
|
56586
|
+
if (input.substr(peg$currPos, 4) === peg$c1670) {
|
|
56587
|
+
s0 = peg$c1670;
|
|
56569
56588
|
peg$currPos += 4;
|
|
56570
56589
|
} else {
|
|
56571
56590
|
s0 = peg$FAILED;
|
|
56572
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56591
|
+
if (peg$silentFails === 0) peg$fail(peg$c1671);
|
|
56573
56592
|
}
|
|
56574
56593
|
if (s0 === peg$FAILED) {
|
|
56575
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56576
|
-
s0 = peg$
|
|
56594
|
+
if (input.substr(peg$currPos, 4) === peg$c1672) {
|
|
56595
|
+
s0 = peg$c1672;
|
|
56577
56596
|
peg$currPos += 4;
|
|
56578
56597
|
} else {
|
|
56579
56598
|
s0 = peg$FAILED;
|
|
56580
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56599
|
+
if (peg$silentFails === 0) peg$fail(peg$c1673);
|
|
56581
56600
|
}
|
|
56582
56601
|
if (s0 === peg$FAILED) {
|
|
56583
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56584
|
-
s0 = peg$
|
|
56602
|
+
if (input.substr(peg$currPos, 4) === peg$c1670) {
|
|
56603
|
+
s0 = peg$c1670;
|
|
56585
56604
|
peg$currPos += 4;
|
|
56586
56605
|
} else {
|
|
56587
56606
|
s0 = peg$FAILED;
|
|
56588
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56607
|
+
if (peg$silentFails === 0) peg$fail(peg$c1671);
|
|
56589
56608
|
}
|
|
56590
56609
|
if (s0 === peg$FAILED) {
|
|
56591
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56592
|
-
s0 = peg$
|
|
56610
|
+
if (input.substr(peg$currPos, 4) === peg$c1674) {
|
|
56611
|
+
s0 = peg$c1674;
|
|
56593
56612
|
peg$currPos += 4;
|
|
56594
56613
|
} else {
|
|
56595
56614
|
s0 = peg$FAILED;
|
|
56596
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56615
|
+
if (peg$silentFails === 0) peg$fail(peg$c1675);
|
|
56597
56616
|
}
|
|
56598
56617
|
if (s0 === peg$FAILED) {
|
|
56599
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56600
|
-
s0 = peg$
|
|
56618
|
+
if (input.substr(peg$currPos, 4) === peg$c1676) {
|
|
56619
|
+
s0 = peg$c1676;
|
|
56601
56620
|
peg$currPos += 4;
|
|
56602
56621
|
} else {
|
|
56603
56622
|
s0 = peg$FAILED;
|
|
56604
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56623
|
+
if (peg$silentFails === 0) peg$fail(peg$c1677);
|
|
56605
56624
|
}
|
|
56606
56625
|
}
|
|
56607
56626
|
}
|
|
@@ -56706,28 +56725,28 @@ Or set the song key before changing key:
|
|
|
56706
56725
|
}
|
|
56707
56726
|
function peg$parseChordSuffix8() {
|
|
56708
56727
|
let s0;
|
|
56709
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56710
|
-
s0 = peg$
|
|
56728
|
+
if (input.substr(peg$currPos, 4) === peg$c1634) {
|
|
56729
|
+
s0 = peg$c1634;
|
|
56711
56730
|
peg$currPos += 4;
|
|
56712
56731
|
} else {
|
|
56713
56732
|
s0 = peg$FAILED;
|
|
56714
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56733
|
+
if (peg$silentFails === 0) peg$fail(peg$c1635);
|
|
56715
56734
|
}
|
|
56716
56735
|
if (s0 === peg$FAILED) {
|
|
56717
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56718
|
-
s0 = peg$
|
|
56736
|
+
if (input.substr(peg$currPos, 4) === peg$c1678) {
|
|
56737
|
+
s0 = peg$c1678;
|
|
56719
56738
|
peg$currPos += 4;
|
|
56720
56739
|
} else {
|
|
56721
56740
|
s0 = peg$FAILED;
|
|
56722
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56741
|
+
if (peg$silentFails === 0) peg$fail(peg$c1679);
|
|
56723
56742
|
}
|
|
56724
56743
|
if (s0 === peg$FAILED) {
|
|
56725
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56726
|
-
s0 = peg$
|
|
56744
|
+
if (input.substr(peg$currPos, 4) === peg$c1634) {
|
|
56745
|
+
s0 = peg$c1634;
|
|
56727
56746
|
peg$currPos += 4;
|
|
56728
56747
|
} else {
|
|
56729
56748
|
s0 = peg$FAILED;
|
|
56730
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56749
|
+
if (peg$silentFails === 0) peg$fail(peg$c1635);
|
|
56731
56750
|
}
|
|
56732
56751
|
if (s0 === peg$FAILED) {
|
|
56733
56752
|
if (input.substr(peg$currPos, 4) === peg$c1680) {
|
|
@@ -56738,28 +56757,28 @@ Or set the song key before changing key:
|
|
|
56738
56757
|
if (peg$silentFails === 0) peg$fail(peg$c1681);
|
|
56739
56758
|
}
|
|
56740
56759
|
if (s0 === peg$FAILED) {
|
|
56741
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56742
|
-
s0 = peg$
|
|
56760
|
+
if (input.substr(peg$currPos, 4) === peg$c1682) {
|
|
56761
|
+
s0 = peg$c1682;
|
|
56743
56762
|
peg$currPos += 4;
|
|
56744
56763
|
} else {
|
|
56745
56764
|
s0 = peg$FAILED;
|
|
56746
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56765
|
+
if (peg$silentFails === 0) peg$fail(peg$c1683);
|
|
56747
56766
|
}
|
|
56748
56767
|
if (s0 === peg$FAILED) {
|
|
56749
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56750
|
-
s0 = peg$
|
|
56768
|
+
if (input.substr(peg$currPos, 4) === peg$c1684) {
|
|
56769
|
+
s0 = peg$c1684;
|
|
56751
56770
|
peg$currPos += 4;
|
|
56752
56771
|
} else {
|
|
56753
56772
|
s0 = peg$FAILED;
|
|
56754
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56773
|
+
if (peg$silentFails === 0) peg$fail(peg$c1685);
|
|
56755
56774
|
}
|
|
56756
56775
|
if (s0 === peg$FAILED) {
|
|
56757
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56758
|
-
s0 = peg$
|
|
56776
|
+
if (input.substr(peg$currPos, 4) === peg$c1636) {
|
|
56777
|
+
s0 = peg$c1636;
|
|
56759
56778
|
peg$currPos += 4;
|
|
56760
56779
|
} else {
|
|
56761
56780
|
s0 = peg$FAILED;
|
|
56762
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56781
|
+
if (peg$silentFails === 0) peg$fail(peg$c1637);
|
|
56763
56782
|
}
|
|
56764
56783
|
if (s0 === peg$FAILED) {
|
|
56765
56784
|
if (input.substr(peg$currPos, 4) === peg$c1686) {
|
|
@@ -56786,36 +56805,36 @@ Or set the song key before changing key:
|
|
|
56786
56805
|
if (peg$silentFails === 0) peg$fail(peg$c1691);
|
|
56787
56806
|
}
|
|
56788
56807
|
if (s0 === peg$FAILED) {
|
|
56789
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56790
|
-
s0 = peg$
|
|
56808
|
+
if (input.substr(peg$currPos, 4) === peg$c1692) {
|
|
56809
|
+
s0 = peg$c1692;
|
|
56791
56810
|
peg$currPos += 4;
|
|
56792
56811
|
} else {
|
|
56793
56812
|
s0 = peg$FAILED;
|
|
56794
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56813
|
+
if (peg$silentFails === 0) peg$fail(peg$c1693);
|
|
56795
56814
|
}
|
|
56796
56815
|
if (s0 === peg$FAILED) {
|
|
56797
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56798
|
-
s0 = peg$
|
|
56816
|
+
if (input.substr(peg$currPos, 4) === peg$c1694) {
|
|
56817
|
+
s0 = peg$c1694;
|
|
56799
56818
|
peg$currPos += 4;
|
|
56800
56819
|
} else {
|
|
56801
56820
|
s0 = peg$FAILED;
|
|
56802
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56821
|
+
if (peg$silentFails === 0) peg$fail(peg$c1695);
|
|
56803
56822
|
}
|
|
56804
56823
|
if (s0 === peg$FAILED) {
|
|
56805
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56806
|
-
s0 = peg$
|
|
56824
|
+
if (input.substr(peg$currPos, 4) === peg$c1690) {
|
|
56825
|
+
s0 = peg$c1690;
|
|
56807
56826
|
peg$currPos += 4;
|
|
56808
56827
|
} else {
|
|
56809
56828
|
s0 = peg$FAILED;
|
|
56810
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56829
|
+
if (peg$silentFails === 0) peg$fail(peg$c1691);
|
|
56811
56830
|
}
|
|
56812
56831
|
if (s0 === peg$FAILED) {
|
|
56813
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56814
|
-
s0 = peg$
|
|
56832
|
+
if (input.substr(peg$currPos, 4) === peg$c1696) {
|
|
56833
|
+
s0 = peg$c1696;
|
|
56815
56834
|
peg$currPos += 4;
|
|
56816
56835
|
} else {
|
|
56817
56836
|
s0 = peg$FAILED;
|
|
56818
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56837
|
+
if (peg$silentFails === 0) peg$fail(peg$c1697);
|
|
56819
56838
|
}
|
|
56820
56839
|
if (s0 === peg$FAILED) {
|
|
56821
56840
|
if (input.substr(peg$currPos, 4) === peg$c1696) {
|
|
@@ -56898,28 +56917,28 @@ Or set the song key before changing key:
|
|
|
56898
56917
|
if (peg$silentFails === 0) peg$fail(peg$c1715);
|
|
56899
56918
|
}
|
|
56900
56919
|
if (s0 === peg$FAILED) {
|
|
56901
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56902
|
-
s0 = peg$
|
|
56920
|
+
if (input.substr(peg$currPos, 4) === peg$c1716) {
|
|
56921
|
+
s0 = peg$c1716;
|
|
56903
56922
|
peg$currPos += 4;
|
|
56904
56923
|
} else {
|
|
56905
56924
|
s0 = peg$FAILED;
|
|
56906
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56925
|
+
if (peg$silentFails === 0) peg$fail(peg$c1717);
|
|
56907
56926
|
}
|
|
56908
56927
|
if (s0 === peg$FAILED) {
|
|
56909
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56910
|
-
s0 = peg$
|
|
56928
|
+
if (input.substr(peg$currPos, 4) === peg$c1718) {
|
|
56929
|
+
s0 = peg$c1718;
|
|
56911
56930
|
peg$currPos += 4;
|
|
56912
56931
|
} else {
|
|
56913
56932
|
s0 = peg$FAILED;
|
|
56914
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56933
|
+
if (peg$silentFails === 0) peg$fail(peg$c1719);
|
|
56915
56934
|
}
|
|
56916
56935
|
if (s0 === peg$FAILED) {
|
|
56917
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
56918
|
-
s0 = peg$
|
|
56936
|
+
if (input.substr(peg$currPos, 4) === peg$c1688) {
|
|
56937
|
+
s0 = peg$c1688;
|
|
56919
56938
|
peg$currPos += 4;
|
|
56920
56939
|
} else {
|
|
56921
56940
|
s0 = peg$FAILED;
|
|
56922
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56941
|
+
if (peg$silentFails === 0) peg$fail(peg$c1689);
|
|
56923
56942
|
}
|
|
56924
56943
|
if (s0 === peg$FAILED) {
|
|
56925
56944
|
if (input.substr(peg$currPos, 4) === peg$c1720) {
|
|
@@ -56946,17 +56965,17 @@ Or set the song key before changing key:
|
|
|
56946
56965
|
if (peg$silentFails === 0) peg$fail(peg$c1725);
|
|
56947
56966
|
}
|
|
56948
56967
|
if (s0 === peg$FAILED) {
|
|
56949
|
-
if (input.substr(peg$currPos,
|
|
56968
|
+
if (input.substr(peg$currPos, 4) === peg$c1726) {
|
|
56950
56969
|
s0 = peg$c1726;
|
|
56951
|
-
peg$currPos +=
|
|
56970
|
+
peg$currPos += 4;
|
|
56952
56971
|
} else {
|
|
56953
56972
|
s0 = peg$FAILED;
|
|
56954
56973
|
if (peg$silentFails === 0) peg$fail(peg$c1727);
|
|
56955
56974
|
}
|
|
56956
56975
|
if (s0 === peg$FAILED) {
|
|
56957
|
-
if (input.substr(peg$currPos,
|
|
56976
|
+
if (input.substr(peg$currPos, 4) === peg$c1728) {
|
|
56958
56977
|
s0 = peg$c1728;
|
|
56959
|
-
peg$currPos +=
|
|
56978
|
+
peg$currPos += 4;
|
|
56960
56979
|
} else {
|
|
56961
56980
|
s0 = peg$FAILED;
|
|
56962
56981
|
if (peg$silentFails === 0) peg$fail(peg$c1729);
|
|
@@ -57330,41 +57349,41 @@ Or set the song key before changing key:
|
|
|
57330
57349
|
if (peg$silentFails === 0) peg$fail(peg$c1821);
|
|
57331
57350
|
}
|
|
57332
57351
|
if (s0 === peg$FAILED) {
|
|
57333
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
57334
|
-
s0 = peg$
|
|
57352
|
+
if (input.substr(peg$currPos, 3) === peg$c1822) {
|
|
57353
|
+
s0 = peg$c1822;
|
|
57335
57354
|
peg$currPos += 3;
|
|
57336
57355
|
} else {
|
|
57337
57356
|
s0 = peg$FAILED;
|
|
57338
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57357
|
+
if (peg$silentFails === 0) peg$fail(peg$c1823);
|
|
57339
57358
|
}
|
|
57340
57359
|
if (s0 === peg$FAILED) {
|
|
57341
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
57342
|
-
s0 = peg$
|
|
57360
|
+
if (input.substr(peg$currPos, 3) === peg$c1824) {
|
|
57361
|
+
s0 = peg$c1824;
|
|
57343
57362
|
peg$currPos += 3;
|
|
57344
57363
|
} else {
|
|
57345
57364
|
s0 = peg$FAILED;
|
|
57346
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57365
|
+
if (peg$silentFails === 0) peg$fail(peg$c1825);
|
|
57347
57366
|
}
|
|
57348
57367
|
if (s0 === peg$FAILED) {
|
|
57349
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
57350
|
-
s0 = peg$
|
|
57368
|
+
if (input.substr(peg$currPos, 3) === peg$c1812) {
|
|
57369
|
+
s0 = peg$c1812;
|
|
57351
57370
|
peg$currPos += 3;
|
|
57352
57371
|
} else {
|
|
57353
57372
|
s0 = peg$FAILED;
|
|
57354
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57373
|
+
if (peg$silentFails === 0) peg$fail(peg$c1813);
|
|
57355
57374
|
}
|
|
57356
57375
|
if (s0 === peg$FAILED) {
|
|
57357
|
-
if (input.substr(peg$currPos,
|
|
57358
|
-
s0 = peg$
|
|
57359
|
-
peg$currPos +=
|
|
57376
|
+
if (input.substr(peg$currPos, 3) === peg$c1812) {
|
|
57377
|
+
s0 = peg$c1812;
|
|
57378
|
+
peg$currPos += 3;
|
|
57360
57379
|
} else {
|
|
57361
57380
|
s0 = peg$FAILED;
|
|
57362
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57381
|
+
if (peg$silentFails === 0) peg$fail(peg$c1813);
|
|
57363
57382
|
}
|
|
57364
57383
|
if (s0 === peg$FAILED) {
|
|
57365
|
-
if (input.substr(peg$currPos,
|
|
57384
|
+
if (input.substr(peg$currPos, 3) === peg$c1826) {
|
|
57366
57385
|
s0 = peg$c1826;
|
|
57367
|
-
peg$currPos +=
|
|
57386
|
+
peg$currPos += 3;
|
|
57368
57387
|
} else {
|
|
57369
57388
|
s0 = peg$FAILED;
|
|
57370
57389
|
if (peg$silentFails === 0) peg$fail(peg$c1827);
|
|
@@ -57434,20 +57453,20 @@ Or set the song key before changing key:
|
|
|
57434
57453
|
if (peg$silentFails === 0) peg$fail(peg$c1843);
|
|
57435
57454
|
}
|
|
57436
57455
|
if (s0 === peg$FAILED) {
|
|
57437
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
57438
|
-
s0 = peg$
|
|
57456
|
+
if (input.substr(peg$currPos, 2) === peg$c1844) {
|
|
57457
|
+
s0 = peg$c1844;
|
|
57439
57458
|
peg$currPos += 2;
|
|
57440
57459
|
} else {
|
|
57441
57460
|
s0 = peg$FAILED;
|
|
57442
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57461
|
+
if (peg$silentFails === 0) peg$fail(peg$c1845);
|
|
57443
57462
|
}
|
|
57444
57463
|
if (s0 === peg$FAILED) {
|
|
57445
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
57446
|
-
s0 = peg$
|
|
57464
|
+
if (input.substr(peg$currPos, 2) === peg$c1846) {
|
|
57465
|
+
s0 = peg$c1846;
|
|
57447
57466
|
peg$currPos += 2;
|
|
57448
57467
|
} else {
|
|
57449
57468
|
s0 = peg$FAILED;
|
|
57450
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57469
|
+
if (peg$silentFails === 0) peg$fail(peg$c1847);
|
|
57451
57470
|
}
|
|
57452
57471
|
if (s0 === peg$FAILED) {
|
|
57453
57472
|
if (input.substr(peg$currPos, 2) === peg$c1846) {
|
|
@@ -57482,24 +57501,24 @@ Or set the song key before changing key:
|
|
|
57482
57501
|
if (peg$silentFails === 0) peg$fail(peg$c1853);
|
|
57483
57502
|
}
|
|
57484
57503
|
if (s0 === peg$FAILED) {
|
|
57485
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
57486
|
-
s0 = peg$
|
|
57504
|
+
if (input.substr(peg$currPos, 2) === peg$c1854) {
|
|
57505
|
+
s0 = peg$c1854;
|
|
57487
57506
|
peg$currPos += 2;
|
|
57488
57507
|
} else {
|
|
57489
57508
|
s0 = peg$FAILED;
|
|
57490
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57509
|
+
if (peg$silentFails === 0) peg$fail(peg$c1855);
|
|
57491
57510
|
}
|
|
57492
57511
|
if (s0 === peg$FAILED) {
|
|
57493
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
57494
|
-
s0 = peg$
|
|
57512
|
+
if (input.substr(peg$currPos, 2) === peg$c1856) {
|
|
57513
|
+
s0 = peg$c1856;
|
|
57495
57514
|
peg$currPos += 2;
|
|
57496
57515
|
} else {
|
|
57497
57516
|
s0 = peg$FAILED;
|
|
57498
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57517
|
+
if (peg$silentFails === 0) peg$fail(peg$c1857);
|
|
57499
57518
|
}
|
|
57500
57519
|
if (s0 === peg$FAILED) {
|
|
57501
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
57502
|
-
s0 = peg$
|
|
57520
|
+
if (input.substr(peg$currPos, 2) === peg$c71) {
|
|
57521
|
+
s0 = peg$c71;
|
|
57503
57522
|
peg$currPos += 2;
|
|
57504
57523
|
} else {
|
|
57505
57524
|
s0 = peg$FAILED;
|
|
@@ -57696,13 +57715,31 @@ Or set the song key before changing key:
|
|
|
57696
57715
|
if (peg$silentFails === 0) peg$fail(peg$c1880);
|
|
57697
57716
|
}
|
|
57698
57717
|
if (s0 === peg$FAILED) {
|
|
57699
|
-
if (
|
|
57700
|
-
s0 =
|
|
57701
|
-
peg$currPos
|
|
57718
|
+
if (input.substr(peg$currPos, 2) === peg$c1881) {
|
|
57719
|
+
s0 = peg$c1881;
|
|
57720
|
+
peg$currPos += 2;
|
|
57702
57721
|
} else {
|
|
57703
57722
|
s0 = peg$FAILED;
|
|
57704
57723
|
if (peg$silentFails === 0) peg$fail(peg$c1882);
|
|
57705
57724
|
}
|
|
57725
|
+
if (s0 === peg$FAILED) {
|
|
57726
|
+
if (input.substr(peg$currPos, 2) === peg$c1883) {
|
|
57727
|
+
s0 = peg$c1883;
|
|
57728
|
+
peg$currPos += 2;
|
|
57729
|
+
} else {
|
|
57730
|
+
s0 = peg$FAILED;
|
|
57731
|
+
if (peg$silentFails === 0) peg$fail(peg$c1884);
|
|
57732
|
+
}
|
|
57733
|
+
if (s0 === peg$FAILED) {
|
|
57734
|
+
if (peg$c1885.test(input.charAt(peg$currPos))) {
|
|
57735
|
+
s0 = input.charAt(peg$currPos);
|
|
57736
|
+
peg$currPos++;
|
|
57737
|
+
} else {
|
|
57738
|
+
s0 = peg$FAILED;
|
|
57739
|
+
if (peg$silentFails === 0) peg$fail(peg$c1886);
|
|
57740
|
+
}
|
|
57741
|
+
}
|
|
57742
|
+
}
|
|
57706
57743
|
}
|
|
57707
57744
|
}
|
|
57708
57745
|
}
|
|
@@ -57718,12 +57755,12 @@ Or set the song key before changing key:
|
|
|
57718
57755
|
}
|
|
57719
57756
|
function peg$parseNewLine() {
|
|
57720
57757
|
let s0;
|
|
57721
|
-
if (peg$
|
|
57758
|
+
if (peg$c1887.test(input.charAt(peg$currPos))) {
|
|
57722
57759
|
s0 = input.charAt(peg$currPos);
|
|
57723
57760
|
peg$currPos++;
|
|
57724
57761
|
} else {
|
|
57725
57762
|
s0 = peg$FAILED;
|
|
57726
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57763
|
+
if (peg$silentFails === 0) peg$fail(peg$c1888);
|
|
57727
57764
|
}
|
|
57728
57765
|
if (s0 === peg$FAILED) s0 = peg$parseCarriageReturnLineFeed();
|
|
57729
57766
|
return s0;
|
|
@@ -57753,22 +57790,22 @@ Or set the song key before changing key:
|
|
|
57753
57790
|
function peg$parseLineFeed() {
|
|
57754
57791
|
let s0;
|
|
57755
57792
|
if (input.charCodeAt(peg$currPos) === 10) {
|
|
57756
|
-
s0 = peg$
|
|
57793
|
+
s0 = peg$c1889;
|
|
57757
57794
|
peg$currPos++;
|
|
57758
57795
|
} else {
|
|
57759
57796
|
s0 = peg$FAILED;
|
|
57760
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57797
|
+
if (peg$silentFails === 0) peg$fail(peg$c1890);
|
|
57761
57798
|
}
|
|
57762
57799
|
return s0;
|
|
57763
57800
|
}
|
|
57764
57801
|
function peg$parseCarriageReturn() {
|
|
57765
57802
|
let s0;
|
|
57766
57803
|
if (input.charCodeAt(peg$currPos) === 13) {
|
|
57767
|
-
s0 = peg$
|
|
57804
|
+
s0 = peg$c1891;
|
|
57768
57805
|
peg$currPos++;
|
|
57769
57806
|
} else {
|
|
57770
57807
|
s0 = peg$FAILED;
|
|
57771
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57808
|
+
if (peg$silentFails === 0) peg$fail(peg$c1892);
|
|
57772
57809
|
}
|
|
57773
57810
|
return s0;
|
|
57774
57811
|
}
|
|
@@ -68804,7 +68841,7 @@ AjwCRQJ5AAAAAAABAAAAANpTmfAAAAAA0e+yRgAAAADR77JG
|
|
|
68804
68841
|
}
|
|
68805
68842
|
};
|
|
68806
68843
|
var $a5a21ced491ea51f$export$2e2bcd8739ae039 = $a5a21ced491ea51f$var$UltimateGuitarParser;
|
|
68807
|
-
var $ae92e002ce14f11a$export$2e2bcd8739ae039 = "13.2.
|
|
68844
|
+
var $ae92e002ce14f11a$export$2e2bcd8739ae039 = "13.2.2";
|
|
68808
68845
|
var $a3816b486f741c00$exports = {};
|
|
68809
68846
|
var $892913528e7f60f9$export$2e2bcd8739ae039 = {
|
|
68810
68847
|
CHORUS: $dce48cb70c4120bb$export$8db6c706fc9142b2,
|