vibe-editor 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +51 -0
  3. package/package.json +56 -0
  4. package/src/fonts/bravura/FONTLOG.txt +243 -0
  5. package/src/fonts/bravura/OFL-FAQ.txt +369 -0
  6. package/src/fonts/bravura/OFL.txt +94 -0
  7. package/src/fonts/bravura/bravura-text.md +153 -0
  8. package/src/fonts/bravura/bravura_metadata.json +34718 -0
  9. package/src/fonts/bravura/eot/Bravura.eot +0 -0
  10. package/src/fonts/bravura/eot/BravuraText.eot +0 -0
  11. package/src/fonts/bravura/otf/Bravura.otf +0 -0
  12. package/src/fonts/bravura/otf/BravuraText.otf +0 -0
  13. package/src/fonts/bravura/svg/Bravura.svg +3517 -0
  14. package/src/fonts/bravura/svg/BravuraText.svg +18879 -0
  15. package/src/fonts/bravura/woff/Bravura.woff +0 -0
  16. package/src/fonts/bravura/woff/BravuraText.woff +0 -0
  17. package/src/fonts/colaborate/ColabBol-webfont.eot +0 -0
  18. package/src/fonts/colaborate/ColabBol-webfont.svg +976 -0
  19. package/src/fonts/colaborate/ColabBol-webfont.ttf +0 -0
  20. package/src/fonts/colaborate/ColabBol-webfont.woff +0 -0
  21. package/src/fonts/colaborate/ColabLig-webfont.eot +0 -0
  22. package/src/fonts/colaborate/ColabLig-webfont.svg +976 -0
  23. package/src/fonts/colaborate/ColabLig-webfont.ttf +0 -0
  24. package/src/fonts/colaborate/ColabLig-webfont.woff +0 -0
  25. package/src/fonts/colaborate/ColabMed-webfont.eot +0 -0
  26. package/src/fonts/colaborate/ColabMed-webfont.svg +976 -0
  27. package/src/fonts/colaborate/ColabMed-webfont.ttf +0 -0
  28. package/src/fonts/colaborate/ColabMed-webfont.woff +0 -0
  29. package/src/fonts/colaborate/ColabReg-webfont.eot +0 -0
  30. package/src/fonts/colaborate/ColabReg-webfont.svg +976 -0
  31. package/src/fonts/colaborate/ColabReg-webfont.ttf +0 -0
  32. package/src/fonts/colaborate/ColabReg-webfont.woff +0 -0
  33. package/src/fonts/colaborate/ColabThi-webfont.eot +0 -0
  34. package/src/fonts/colaborate/ColabThi-webfont.svg +970 -0
  35. package/src/fonts/colaborate/ColabThi-webfont.ttf +0 -0
  36. package/src/fonts/colaborate/ColabThi-webfont.woff +0 -0
  37. package/src/images/GUI/.DS_Store +0 -0
  38. package/src/images/GUI/backward-fast-solid.svg +1 -0
  39. package/src/images/GUI/bars-solid.svg +1 -0
  40. package/src/images/GUI/caret-left-solid.svg +1 -0
  41. package/src/images/GUI/caret-right-solid.svg +1 -0
  42. package/src/images/GUI/edit-solid.svg +1 -0
  43. package/src/images/GUI/pause-solid.svg +1 -0
  44. package/src/images/GUI/play-solid.svg +1 -0
  45. package/src/images/GUI/triplet.svg +21 -0
  46. package/src/images/GUI/zoomin.svg +1 -0
  47. package/src/images/GUI/zoomout.svg +1 -0
  48. package/src/images/bravura_notes/.DS_Store +0 -0
  49. package/src/images/bravura_notes/16th.svg +1 -0
  50. package/src/images/bravura_notes/32th.svg +1 -0
  51. package/src/images/bravura_notes/alterDDown.svg +1 -0
  52. package/src/images/bravura_notes/alterDUp.svg +1 -0
  53. package/src/images/bravura_notes/alterDown.svg +1 -0
  54. package/src/images/bravura_notes/alterNeutral.svg +1 -0
  55. package/src/images/bravura_notes/alterUp.svg +1 -0
  56. package/src/images/bravura_notes/beams.svg +1 -0
  57. package/src/images/bravura_notes/eigth.svg +1 -0
  58. package/src/images/bravura_notes/full.svg +1 -0
  59. package/src/images/bravura_notes/half.svg +1 -0
  60. package/src/images/bravura_notes/oneDot.svg +1 -0
  61. package/src/images/bravura_notes/pauseNote.svg +1 -0
  62. package/src/images/bravura_notes/quarter.svg +1 -0
  63. package/src/images/bravura_notes/tie.svg +1 -0
  64. package/src/images/bravura_notes/twoDot.svg +1 -0
  65. package/src/scripts/js/.DS_Store +0 -0
  66. package/src/scripts/js/Core.js +887 -0
  67. package/src/scripts/js/MusicPlayer.js +572 -0
  68. package/src/scripts/js/MusicProcessor.js +652 -0
  69. package/src/scripts/js/VerovioScoreEditor.js +183 -0
  70. package/src/scripts/js/assets/mei_template.js +161 -0
  71. package/src/scripts/js/constants.js +20 -0
  72. package/src/scripts/js/datastructures/MeasureMatrix.js +235 -0
  73. package/src/scripts/js/datastructures/ScoreGraph.js +432 -0
  74. package/src/scripts/js/datastructures/ScoreNode.js +78 -0
  75. package/src/scripts/js/entry.js +4 -0
  76. package/src/scripts/js/gui/Annotations.js +456 -0
  77. package/src/scripts/js/gui/Cursor.js +203 -0
  78. package/src/scripts/js/gui/CustomAnnotationDrawer.js +114 -0
  79. package/src/scripts/js/gui/CustomAnnotationShapeDrawer.js +114 -0
  80. package/src/scripts/js/gui/HarmonyLabel.js +104 -0
  81. package/src/scripts/js/gui/Label.js +2 -0
  82. package/src/scripts/js/gui/PhantomElement.js +132 -0
  83. package/src/scripts/js/gui/ScoreManipulator.js +156 -0
  84. package/src/scripts/js/gui/Tabbar.js +675 -0
  85. package/src/scripts/js/gui/TempoLabel.js +60 -0
  86. package/src/scripts/js/gui/Toolbar copy.js +614 -0
  87. package/src/scripts/js/gui/Toolbar.js +618 -0
  88. package/src/scripts/js/handlers/AnnotationChangeHandler.js +567 -0
  89. package/src/scripts/js/handlers/AnnotationDragHandler.js +113 -0
  90. package/src/scripts/js/handlers/AnnotationLineHandler.js +113 -0
  91. package/src/scripts/js/handlers/ArticulationHandler.js +20 -0
  92. package/src/scripts/js/handlers/ClickModeHandler.js +265 -0
  93. package/src/scripts/js/handlers/CustomAnnotationShapeDrawer.js +131 -0
  94. package/src/scripts/js/handlers/CustomToolbarHandler.js +297 -0
  95. package/src/scripts/js/handlers/DeleteHandler.js +102 -0
  96. package/src/scripts/js/handlers/GlobalKeyboardHandler.js +367 -0
  97. package/src/scripts/js/handlers/Handler.js +2 -0
  98. package/src/scripts/js/handlers/HarmonyHandler.js +282 -0
  99. package/src/scripts/js/handlers/InsertModeHandler copy.js +423 -0
  100. package/src/scripts/js/handlers/InsertModeHandler.js +380 -0
  101. package/src/scripts/js/handlers/InsertModeHandler_deprecated.js +424 -0
  102. package/src/scripts/js/handlers/KeyModeHandler copy.js +407 -0
  103. package/src/scripts/js/handlers/KeyModeHandler.js +456 -0
  104. package/src/scripts/js/handlers/KeyModeHandler_deprecated.js +411 -0
  105. package/src/scripts/js/handlers/LabelHandler.js +461 -0
  106. package/src/scripts/js/handlers/ModHandler.js +311 -0
  107. package/src/scripts/js/handlers/NoteDragHandler copy.js +148 -0
  108. package/src/scripts/js/handlers/NoteDragHandler.js +97 -0
  109. package/src/scripts/js/handlers/NoteDragHandler_deprecated.js +150 -0
  110. package/src/scripts/js/handlers/PhantomElementHandler.js +168 -0
  111. package/src/scripts/js/handlers/ScoreManipulatorHandler.js +135 -0
  112. package/src/scripts/js/handlers/SelectionHandler.js +218 -0
  113. package/src/scripts/js/handlers/SideBarHandler.js +499 -0
  114. package/src/scripts/js/handlers/TooltipHandler.js +132 -0
  115. package/src/scripts/js/handlers/WindowHandler.js +257 -0
  116. package/src/scripts/js/utils/DOMCreator.js +174 -0
  117. package/src/scripts/js/utils/MEIConverter.js +64 -0
  118. package/src/scripts/js/utils/MEIOperations.js +2112 -0
  119. package/src/scripts/js/utils/Mouse2MEI.js +735 -0
  120. package/src/scripts/js/utils/Mouse2SVG.js +737 -0
  121. package/src/scripts/js/utils/SVGEditor.js +352 -0
  122. package/src/scripts/js/utils/SVGFiller.js +245 -0
  123. package/src/scripts/js/utils/Types.js +2 -0
  124. package/src/scripts/js/utils/VerovioWrapper copy.js +156 -0
  125. package/src/scripts/js/utils/VerovioWrapper.js +165 -0
  126. package/src/scripts/js/utils/VerovioWrapperLocal.js +156 -0
  127. package/src/scripts/js/utils/convenienceQueries.js +37 -0
  128. package/src/scripts/js/utils/coordinates.js +54 -0
  129. package/src/scripts/js/utils/firefoxBBoxes.js +143 -0
  130. package/src/scripts/js/utils/mappings.js +332 -0
  131. package/src/scripts/js/utils/random.js +45 -0
  132. package/src/styles/VerovioScoreEditor.css +694 -0
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 415.1V96.03c0-17.67 14.33-31.1 31.1-31.1C49.67 64.03 64 78.36 64 96.03v131.8l171.5-156.5C256.1 54.28 288 68.66 288 96.03v131.9l171.5-156.5C480.1 54.28 512 68.66 512 96.03v319.9c0 27.37-31.88 41.74-52.5 24.62L288 285.2v130.7c0 27.37-31.88 41.74-52.5 24.62L64 285.2v130.7c0 17.67-14.33 31.1-31.1 31.1C14.33 447.1 0 433.6 0 415.1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg>
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="caret-left" class="svg-inline--fa fa-caret-left fa-w-6" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path fill="currentColor" d="M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="caret-right" class="svg-inline--fa fa-caret-right fa-w-6" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path fill="currentColor" d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="edit" class="svg-inline--fa fa-edit fa-w-18" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M272 63.1l-32 0c-26.51 0-48 21.49-48 47.1v288c0 26.51 21.49 48 48 48L272 448c26.51 0 48-21.49 48-48v-288C320 85.49 298.5 63.1 272 63.1zM80 63.1l-32 0c-26.51 0-48 21.49-48 48v288C0 426.5 21.49 448 48 448l32 0c26.51 0 48-21.49 48-48v-288C128 85.49 106.5 63.1 80 63.1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"/></svg>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="utf-8"?><svg xml:space="preserve" viewBox="0 0 128 128" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" id="圖層_1" version="1.1" width="200px" height="200px" style="width:100%;height:100%;background-size:initial;background-repeat-y:initial;background-repeat-x:initial;background-position-y:initial;background-position-x:initial;background-origin:initial;background-image:initial;background-color:rgb(255, 255, 255);background-clip:initial;background-attachment:initial;animation-play-state:paused" ><g class="ldl-scale" style="transform-origin:50% 50%;transform:rotate(0deg) scale(0.8, 0.8);animation-play-state:paused" ><style type="text/css" style="animation-play-state:paused" >.st0{fill:none}.st1{fill:#333}.st2{fill:none;stroke:#333;stroke-width:3;stroke-linecap:round;stroke-miterlimit:10}</style>
2
+ <path d="z" class="st0" style="animation-play-state:paused" ></path>
3
+ <g style="animation-play-state:paused" ><g style="animation-play-state:paused" ><ellipse ry="9.2" rx="13.8" cy="98.9" cx="25.3" class="st1" transform="matrix(0.866 -0.5 0.5 0.866 -46.0729 25.9247)" style="fill:rgb(51, 51, 51);animation-play-state:paused" ></ellipse>
4
+ <path d="M36.6,93.8V50.9" class="st2" style="stroke:rgb(51, 51, 51);animation-play-state:paused" ></path></g>
5
+ <g style="animation-play-state:paused" ><ellipse ry="9.2" rx="13.8" cy="99.2" cx="62.5" class="st1" transform="matrix(0.866 -0.5 0.5 0.866 -41.2178 44.5294)" style="fill:rgb(51, 51, 51);animation-play-state:paused" ></ellipse>
6
+ <path d="M73.7,94V51.2" class="st2" style="stroke:rgb(51, 51, 51);animation-play-state:paused" ></path></g>
7
+ <g style="animation-play-state:paused" ><ellipse ry="9.2" rx="13.8" cy="98" cx="99.6" class="st1" transform="matrix(0.866 -0.5 0.5 0.866 -35.6756 62.9162)" style="fill:rgb(51, 51, 51);animation-play-state:paused" ></ellipse>
8
+ <path d="M110.8,92.9V50" class="st2" style="stroke:rgb(51, 51, 51);animation-play-state:paused" ></path></g></g>
9
+ <g style="animation-play-state:paused" ><g style="animation-play-state:paused" ><path d="M36.6,42.9c5.1-4.2,11-7.6,17.3-9.9c6.3-2.3,13.1-3.6,19.8-3.6s13.6,1.3,19.8,3.6c6.3,2.3,12.2,5.6,17.3,9.9 c-6.1-2.3-12.3-4.5-18.4-6S80,34.6,73.7,34.6S61.2,35.3,55,36.9C48.9,38.3,42.8,40.6,36.6,42.9z" class="st1" style="fill:rgb(51, 51, 51);animation-play-state:paused" ></path></g>
10
+ <path d="M75.6,15.5c2.7,0.8,4.1,2,4.1,4c0,1.3-0.6,2.2-1.8,2.9c-1.2,0.8-2.6,1.2-4.2,1.2c-1.3,0-2.3-0.3-3.1-0.6 c-0.8-0.4-1.3-1-1.3-1.7c0-0.4,0.1-0.6,0.5-0.9c0.4-0.3,0.8-0.4,1.3-0.4s0.9,0.1,1.2,0.3c0.3,0.3,0.5,0.5,0.5,0.8 c0,0.4-0.1,0.6-0.5,0.9L72.2,22c0,0.1,0.1,0.3,0.4,0.3c0.3,0,0.6,0.1,1,0.1c1.9,0,2.8-1,2.8-3.2c0-0.8-0.1-1.4-0.4-1.9 c-0.3-0.5-0.5-0.6-0.9-0.9c-0.4-0.3-0.9-0.3-1.5-0.4c-0.4,0-0.5-0.1-0.5-0.3v-0.6c0-0.1,0.1-0.3,0.5-0.3c1.7-0.1,2.6-1,2.6-2.8 c0-1.5-0.8-2.3-2.2-2.3c-0.4,0-0.6,0-1,0.1c-0.4,0.1-0.4,0.3-0.4,0.4s0.1,0.1,0.3,0.3c0.3,0.1,0.3,0.4,0.3,0.6 c0,0.3-0.1,0.5-0.5,0.6c-0.3,0.3-0.6,0.3-1,0.3c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.5-0.4-0.8c0-0.5,0.4-1,1.3-1.5 c0.9-0.5,1.9-0.6,2.9-0.6c1.4,0,2.7,0.3,3.6,0.9c0.9,0.6,1.4,1.4,1.4,2.3C79.2,13.4,78.1,14.6,75.6,15.5z" style="animation-play-state:paused" ></path></g>
11
+ <path d="z" class="st0" style="animation-play-state:paused" ></path>
12
+ <metadata xmlns:d="https://loading.io/stock/" style="animation-play-state:paused" ><d:name style="animation-play-state:paused" >triplet note</d:name>
13
+
14
+
15
+ <d:tags style="animation-play-state:paused" >triplet note,quarter,crotchet</d:tags>
16
+
17
+
18
+ <d:license style="animation-play-state:paused" >by</d:license>
19
+
20
+
21
+ <d:slug style="animation-play-state:paused" >meofli</d:slug></metadata></g><!-- generated by https://loading.io/ --></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24V232h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24H280c13.3 0 24-10.7 24-24s-10.7-24-24-24H136z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 581 1000"><path d="M109 938C48 938 0 903 0 844c0-97 99-188 222-188 33 0 61 9 80 26V-72s11-1 17-1 18 2 20 13c17 106 73 122 127 180 72 78 98 106 108 174 2 12 3 23 3 36 0 61-22 121-25 127-1 3-1 5-1 7 0 4 1 6 1 9 18 37 29 78 29 120v22c0 48-3 105-7 110-6 13-13 17-20 17-14 0-22-13-22-26 0-3 0-5 1-9 5-30 8-60 8-89 0-52-9-101-32-149-60-122-122-139-177-143v424c0 95-123 188-223 188zm233-782c0 1 0 2 1 3 21 82 67 106 114 160 21 24 38 44 54 69 2 3 4 4 7 4 5 0 12-3 13-6 5-8 5-18 7-26 1-7 1-13 1-20 0-32-9-63-27-89-33-49-87-105-148-105h-8c-8 0-14 6-14 10z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 563 1000"><path d="M109 938C48 938 0 903 0 844c0-97 99-188 222-188 32 0 60 9 80 26v-893s6-12 12-12 19 10 20 19c17 100 71 116 121 170 67 73 90 100 101 161 2 9 2 18 2 28 0 39-11 80-20 106 14 29 21 61 21 93 0 57-21 112-23 119-1 2-1 4-1 6 0 3 0 5 1 7 19 45 27 93 27 141 0 43-4 89-7 95-7 11-14 16-20 16-2 0-4-1-6-2-7-3-13-12-13-24 0-2 1-4 1-7 5-29 8-57 8-85 0-48-9-93-31-137-55-112-112-129-164-133v400c0 95-123 188-222 188zm401-831C455 14 396-10 341-10c16 97 65 114 114 168 23 25 41 44 55 62 5-17 10-34 12-44 1-7 3-13 3-21 0-13-4-28-15-48zm-170 87c20 77 64 98 107 149l5 5c17 20 31 37 46 59 1 3 4 4 7 4 5 0 10-3 11-6 3-7 3-15 5-23 1-8 2-16 2-24 0-81-90-177-170-177-6 1-13 12-13 13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 410 1000"><path d="M12 970C5 961 0 389 0 389c1-17 17-26 31-26 10 0 19 5 19 16 0 19-7 260-7 281 0 8 4 15 11 17 2 1 3 1 5 1 9 0 16-9 24-13 16-9 28-16 47-16h6c19 0 36 6 51 16-2-139-3-276-3-276 2-17 18-26 31-26 10 0 19 5 19 16 0 19-6 260-6 281 0 8 3 15 10 17 1 1 3 1 5 1 9 0 17-9 24-13 16-9 29-16 47-16h6c47 1 91 38 91 94 0 46-32 107-122 170-23 16-47 44-78 60 0 0-3 2-6 2-2 0-5-1-8-5-3-3-5-60-7-135-19 24-47 51-84 77-23 17-48 45-79 61 0 0-3 2-6 2s-6-1-9-5zm34-220c-1 4-2 16-2 32 0 39 3 98 3 98 0 6 3 16 11 16 2 0 6-1 9-3 45-28 90-78 90-134 0-25-10-59-40-59-24 0-65 30-71 50zm182 23c0 38 3 107 3 107 0 6 3 16 11 16 2 0 5-1 9-3 45-28 89-78 89-134 0-20-6-37-15-49-6-7-14-10-24-10-24 0-66 30-72 50-1 3-1 12-1 23z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 251 1000"><path d="M0 877c0-18 2-35 5-38 6-5 25-7 43-7h10c14-5 46-21 46-34 0-7-36-27-47-33-3 0-6 1-10 1-17 0-35-4-42-10-3-3-5-21-5-39s2-35 5-37c6-5 24-7 41-7 16 0 32 2 36 7 5 4 8 22 8 39 4 14 20 47 34 47 12 0 28-36 33-47 0-18 1-36 5-39 5-5 23-7 41-7 41 0 44 6 44 47 0 16-2 31-7 36-7 6-22 10-38 10-4 0-8-1-12-1-14 5-47 20-47 34 0 7 36 27 47 33h10c17 0 35 2 40 7 4 5 7 23 7 40 0 36-7 46-45 46-17 0-33-4-40-10-4-3-5-20-5-38-4-14-21-46-34-46s-25 28-31 42c-1 1-2 3-2 4 0 16-2 33-8 38-6 7-22 10-37 10-17 0-33-4-40-10-3-2-5-20-5-38z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 228 1000"><path d="M-71 1003l71 40V381c0-13 2-18 16-18 10 0 14 6 14 17v282c0 13 6 18 14 18 18 0 48-22 58-25 10-4 21-5 31-5 50 0 93 42 93 95 0 52-36 97-73 130-22 21-48 38-72 58-3 3-30 24-51 38v72l70-40-85 149zM30 783v100c0 5 0 19 9 19 3 0 9-1 13-3 50-31 105-75 105-139 0-25-12-58-41-58-21 0-63 26-71 43-3 5-15 25-15 38z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 171 1000"><path d="M3 476c0-7 5-12 12-12h13c6 0 12 5 12 12v167c0 4 4 5 10 5 26 0 90-23 90-23 1 0 2-1 4-1l15-5c1-1 3-1 4-1 4 0 8 3 8 8v469h99l-117 258-117-258h98V979c0-8-7-11-17-11-29 0-85 24-99 30-1 1-6 2-7 2-5 0-8-3-8-9V476zm37 290v103c0 4 5 6 12 6 25 0 82-23 82-41V731c0-4-3-5-9-5-24 0-85 26-85 40z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 1000"><path d="M8 1009c-5 0-8-3-8-9v-71c0-6 5-14 12-16 0 0 21-9 27-11 6-3 11-12 11-23v-99c0-8-6-18-13-18-1 0-2 1-3 1-3 2-22 11-26 11-5 0-8-3-8-9v-71c0-6 5-14 12-16 0 0 20-8 26-11s12-13 12-27V505c0-6 6-11 16-11 7 0 14 5 14 11v120c0 8 3 20 12 20 17-4 51-18 63-25 9-6 12-19 13-29V461c0-6 6-11 16-11 8 0 14 5 14 11v122c0 8 7 13 14 13 5-1 25-9 25-9 2-1 3-1 5-1 4 0 7 3 7 8v71c0 6-5 14-12 17l-26 10c-8 3-13 22-13 29v93c0 12 7 18 13 18l26-10c2-1 3-1 5-1 4 0 7 3 7 8v71c0 6-5 14-12 17 0 0-21 8-28 11s-11 15-11 23v255l70-40-85 148-85-148 70 40V968c0-6-5-18-13-18-1 0-3 1-4 1l-61 25c-5 2-10 9-10 22v139c0 6-7 11-17 11-7 0-13-5-13-11v-123c0-5-5-16-12-16-1 0-2 0-3 1-9 3-23 9-23 9-1 0-3 1-4 1zm69-179c0 24 1 46 3 50 1 3 6 5 12 5 23 0 70-20 76-40 2-9 4-37 4-64s-2-52-4-57c-2-4-8-6-15-6-25 0-71 21-73 38-2 8-3 43-3 74z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 962 1000"><path d="M109 941C48 941 0 906 0 847c0-97 99-188 222-188 33 0 61 10 80 26V112h660v642c-1 94-123 187-223 187-61 0-109-35-109-94 0-97 99-188 222-188 33 0 60 10 80 26V237H332v517c-1 94-123 187-223 187z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 566 1000"><path d="M0 844c0-97 99-188 222-188 33 0 61 9 80 26V-64c1-7 5-9 10-9 19 0 27 6 30 22 16 96 58 178 109 257 63 100 115 218 115 343 0 78-26 173-26 173-5 17-17 21-26 20l-2-1c-6-4-16-13-16-29 0-4 1-9 3-15 17-45 24-92 24-137 0-59-9-116-24-150-31-73-105-183-167-221v561c0 95-123 188-223 188-61 0-109-35-109-94z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 459 1000"><path d="M0 799c0-74 90-135 235-135 101 0 224 58 224 135 0 76-57 138-235 138C62 937 0 872 0 799zm117-40c0 70 69 153 141 153 49 0 83-22 83-77 0-66-60-146-134-146-51 0-90 14-90 70z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 341 1000"><path d="M112 945C49 945 0 910 0 849c0-60 54-194 227-194 35 0 64 10 84 27V-75h30v827c0 39-39 193-229 193zm-78-94c0 28 26 49 53 49 25 0 61-12 113-47 81-53 105-81 105-104 0-26-24-46-49-46-55 0-222 91-222 148z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 1000"><path d="M36 695c-20 0-36-16-36-36s16-36 36-36 36 16 36 36-16 36-36 36z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 784 1000"><path d="M0 555c0-9 7-16 16-16s16 7 16 16v150h718V555c0-9 7-16 16-16s16 7 16 16v500c0 9-7 16-16 16s-16-7-16-16V905H32v150c0 9-7 16-16 16s-16-7-16-16V555z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 332 1000"><path d="M109 941C48 941 0 906 0 847c0-97 99-188 222-188 33 0 61 9 80 26V-75h30v828c0 95-123 188-223 188z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 465 1000"><path d="M-80 800h14c30 61 203 92 295 92 101 0 267-31 302-92h14c-32 95-190 143-317 143-124 0-279-47-308-143z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 206 1000"><path d="M170 695c-20 0-36-16-36-36s16-36 36-36 36 16 36 36-16 36-36 36zm-134 0c-20 0-36-16-36-36s16-36 36-36 36 16 36 36-16 36-36 36z"/></svg>
Binary file