astro-tractstack 2.0.0-rc.8 → 2.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 (141) hide show
  1. package/LICENSE +8 -97
  2. package/README.md +7 -5
  3. package/bin/create-tractstack.js +35 -11
  4. package/dist/index.js +106 -29
  5. package/package.json +10 -5
  6. package/templates/css/frontend.css +1 -1
  7. package/templates/custom/minimal/CodeHook.astro +13 -12
  8. package/templates/custom/minimal/CustomRoutes.astro +25 -31
  9. package/templates/custom/with-examples/CodeHook.astro +22 -11
  10. package/templates/custom/with-examples/CustomRoutes.astro +4 -8
  11. package/templates/custom/with-examples/ProductCard.astro +29 -0
  12. package/templates/custom/with-examples/ProductCardWrapper.astro +43 -0
  13. package/templates/custom/with-examples/ProductGrid.astro +64 -0
  14. package/templates/custom/with-examples/pages/Collections.astro +58 -98
  15. package/templates/gitignore +42 -0
  16. package/templates/prettierignore +5 -0
  17. package/templates/prettierrc +19 -0
  18. package/templates/src/client/app.js +127 -0
  19. package/templates/src/client/htmx.min.js +3519 -0
  20. package/templates/src/client/view.js +429 -0
  21. package/templates/src/components/Footer.astro +4 -9
  22. package/templates/src/components/Header.astro +67 -60
  23. package/templates/src/components/Menu.tsx +188 -52
  24. package/templates/src/components/codehooks/BunnyVideoSetup.tsx +2 -2
  25. package/templates/src/components/codehooks/EpinetDurationSelector.tsx +9 -13
  26. package/templates/src/components/codehooks/EpinetTableView.tsx +11 -7
  27. package/templates/src/components/codehooks/EpinetWrapper.tsx +1 -0
  28. package/templates/src/components/codehooks/FeaturedArticle.astro +105 -0
  29. package/templates/src/components/codehooks/FeaturedArticleSetup.tsx +318 -0
  30. package/templates/src/components/codehooks/ListContent.astro +32 -162
  31. package/templates/src/components/codehooks/ListContentSetup.tsx +43 -138
  32. package/templates/src/components/codehooks/ProductCardSetup.tsx +152 -0
  33. package/templates/src/components/codehooks/ProductGridSetup.tsx +274 -0
  34. package/templates/src/components/codehooks/SearchWidget.tsx +453 -0
  35. package/templates/src/components/compositor/Node.tsx +3 -6
  36. package/templates/src/components/compositor/PanelVisibilityWrapper.tsx +21 -11
  37. package/templates/src/components/compositor/elements/BunnyVideo.tsx +21 -20
  38. package/templates/src/components/compositor/nodes/Pane.tsx +51 -21
  39. package/templates/src/components/compositor/nodes/RenderChildren.tsx +6 -1
  40. package/templates/src/components/compositor/nodes/Widget.tsx +16 -2
  41. package/templates/src/components/compositor/preview/FeaturedArticlePreview.tsx +155 -0
  42. package/templates/src/components/compositor/preview/PaneSnapshotGenerator.tsx +20 -1
  43. package/templates/src/components/edit/Header.tsx +10 -4
  44. package/templates/src/components/edit/PanelSwitch.tsx +11 -7
  45. package/templates/src/components/edit/SettingsPanel.tsx +29 -18
  46. package/templates/src/components/edit/ToolBar.tsx +1 -28
  47. package/templates/src/components/edit/ToolMode.tsx +45 -32
  48. package/templates/src/components/edit/pane/AddPanePanel_break.tsx +12 -2
  49. package/templates/src/components/edit/pane/AddPanePanel_codehook.tsx +8 -2
  50. package/templates/src/components/edit/pane/AddPanePanel_newAICopy_modal.tsx +1 -1
  51. package/templates/src/components/edit/pane/ConfigPanePanel.tsx +17 -27
  52. package/templates/src/components/edit/pane/PageGenSelector.tsx +16 -16
  53. package/templates/src/components/edit/pane/PageGenSpecial.tsx +26 -49
  54. package/templates/src/components/edit/pane/PageGen_preview.tsx +17 -2
  55. package/templates/src/components/edit/pane/PanePanel_path.tsx +2 -4
  56. package/templates/src/components/edit/pane/PanePanel_title.tsx +243 -76
  57. package/templates/src/components/edit/panels/StyleBreakPanel.tsx +17 -19
  58. package/templates/src/components/edit/panels/StyleCodeHookPanel.tsx +48 -37
  59. package/templates/src/components/edit/panels/StyleElementPanel_add.tsx +60 -55
  60. package/templates/src/components/edit/panels/StyleImagePanel_add.tsx +56 -50
  61. package/templates/src/components/edit/panels/StyleLiElementPanel_add.tsx +54 -47
  62. package/templates/src/components/edit/panels/StyleLinkPanel_add.tsx +54 -44
  63. package/templates/src/components/edit/panels/StyleLinkPanel_config.tsx +113 -138
  64. package/templates/src/components/edit/panels/StyleParentPanel_add.tsx +54 -40
  65. package/templates/src/components/edit/panels/StyleWidgetPanel.tsx +3 -3
  66. package/templates/src/components/edit/panels/StyleWidgetPanel_add.tsx +56 -49
  67. package/templates/src/components/edit/panels/StyleWidgetPanel_config.tsx +14 -5
  68. package/templates/src/components/edit/state/SaveModal.tsx +316 -169
  69. package/templates/src/components/edit/storyfragment/StoryFragmentPanel_og.tsx +1 -1
  70. package/templates/src/components/edit/storyfragment/StoryFragmentPanel_slug.tsx +56 -55
  71. package/templates/src/components/edit/widgets/BunnyWidget.tsx +538 -59
  72. package/templates/src/components/edit/widgets/InteractiveDisclosureWidget.tsx +656 -0
  73. package/templates/src/components/edit/widgets/ToggleWidget.tsx +9 -16
  74. package/templates/src/components/fields/ArtpackImage.tsx +4 -1
  75. package/templates/src/components/fields/BackgroundImage.tsx +1 -1
  76. package/templates/src/components/fields/BackgroundImageWrapper.tsx +127 -35
  77. package/templates/src/components/fields/ColorPickerCombo.tsx +66 -62
  78. package/templates/src/components/fields/ImageUpload.tsx +1 -1
  79. package/templates/src/components/fields/ViewportComboBox.tsx +59 -42
  80. package/templates/src/components/form/ActionBuilderBeliefSelector.tsx +117 -0
  81. package/templates/src/components/form/ActionBuilderField.tsx +306 -87
  82. package/templates/src/components/search/SearchModal.tsx +420 -0
  83. package/templates/src/components/search/SearchResults.tsx +367 -0
  84. package/templates/src/components/search/SearchWrapper.tsx +46 -0
  85. package/templates/src/components/storykeep/Dashboard_Advanced.tsx +1 -1
  86. package/templates/src/components/storykeep/Dashboard_Analytics.tsx +34 -8
  87. package/templates/src/components/storykeep/Dashboard_Content.tsx +6 -0
  88. package/templates/src/components/storykeep/StoryKeepBackdrop.astro +87 -0
  89. package/templates/src/components/storykeep/controls/content/BeliefForm.tsx +37 -33
  90. package/templates/src/components/storykeep/controls/content/MenuForm.tsx +55 -7
  91. package/templates/src/components/storykeep/controls/content/ResourceForm.tsx +17 -2
  92. package/templates/src/components/storykeep/controls/content/StoryFragmentTable.tsx +5 -8
  93. package/templates/src/components/storykeep/state/FetchAnalytics.tsx +274 -228
  94. package/templates/src/components/storykeep/widgets/Wizard.tsx +14 -7
  95. package/templates/src/components/tenant/RegistrationForm.tsx +1 -1
  96. package/templates/src/components/widgets/ImpressionWrapper.tsx +0 -1
  97. package/templates/src/constants/shapes.ts +9 -0
  98. package/templates/src/constants.ts +2121 -16
  99. package/templates/src/hooks/useSearch.ts +228 -0
  100. package/templates/src/layouts/Layout.astro +213 -104
  101. package/templates/src/lib/storyData.ts +4 -1
  102. package/templates/src/pages/[...slug]/edit.astro +14 -14
  103. package/templates/src/pages/[...slug].astro +82 -21
  104. package/templates/src/pages/api/orphan-analysis.ts +0 -1
  105. package/templates/src/pages/api/tailwind.ts +23 -21
  106. package/templates/src/pages/context/[...contextSlug]/edit.astro +14 -14
  107. package/templates/src/pages/context/[...contextSlug].astro +7 -2
  108. package/templates/src/pages/storykeep/advanced.astro +5 -4
  109. package/templates/src/pages/storykeep/branding.astro +5 -4
  110. package/templates/src/pages/storykeep/content.astro +5 -4
  111. package/templates/src/pages/storykeep/init.astro +40 -1
  112. package/templates/src/pages/storykeep/login.astro +1 -1
  113. package/templates/src/pages/storykeep.astro +5 -4
  114. package/templates/src/stores/nodes.ts +59 -88
  115. package/templates/src/stores/orphanAnalysis.ts +19 -21
  116. package/templates/src/stores/storykeep.ts +7 -0
  117. package/templates/src/types/compositorTypes.ts +6 -0
  118. package/templates/src/types/tractstack.ts +17 -0
  119. package/templates/src/utils/actions/lispLexer.ts +2 -2
  120. package/templates/src/utils/actions/preParse_Action.ts +3 -0
  121. package/templates/src/utils/api/beliefHelpers.ts +12 -36
  122. package/templates/src/utils/api/menuHelpers.ts +2 -2
  123. package/templates/src/utils/api.ts +26 -0
  124. package/templates/src/utils/compositor/TemplateNodes.ts +7 -0
  125. package/templates/src/utils/compositor/allowInsert.ts +5 -3
  126. package/templates/src/utils/compositor/nodesHelper.ts +4 -0
  127. package/templates/src/utils/compositor/processMarkdown.ts +16 -2
  128. package/templates/src/utils/compositor/reduceNodesClassNames.ts +4 -0
  129. package/templates/src/utils/compositor/templateMarkdownStyles.ts +13 -13
  130. package/templates/src/utils/compositor/typeGuards.ts +1 -0
  131. package/templates/src/utils/customHelpers.ts +38 -0
  132. package/templates/src/utils/helpers.ts +2 -2
  133. package/templates/src/utils/layout.ts +65 -144
  134. package/utils/inject-files.ts +95 -18
  135. package/templates/src/client/analytics-events.js +0 -207
  136. package/templates/src/client/belief-events.js +0 -191
  137. package/templates/src/client/sse.js +0 -613
  138. package/templates/src/components/codehooks/FeaturedContent.astro +0 -273
  139. package/templates/src/components/codehooks/FeaturedContentSetup.tsx +0 -738
  140. package/templates/src/components/compositor/preview/FeaturedContentPreview.tsx +0 -128
  141. package/templates/src/components/edit/pane/PanePanel_slug.tsx +0 -219
@@ -175,7 +175,7 @@ export default function RegistrationForm({
175
175
 
176
176
  return (
177
177
  <>
178
- <div className="mx-auto max-w-2xl p-6">
178
+ <div className="mx-auto max-w-2xl p-6" style={{ paddingBottom: '112px' }}>
179
179
  <div className="rounded-lg bg-white p-8 shadow-lg">
180
180
  <div className="mb-8">
181
181
  <div className="h-16">
@@ -191,7 +191,6 @@ const ImpressionWrapper = ({
191
191
  <div
192
192
  className="impressions-wrapper pointer-events-none fixed z-50"
193
193
  style={{
194
- bottom: 'var(--bottom-right-controls-bottom-offset, 16px)',
195
194
  right: '16px',
196
195
  }}
197
196
  >
@@ -7,6 +7,7 @@
7
7
  export interface SvgBreaksDatum {
8
8
  viewBox: number[];
9
9
  path: string;
10
+ flipped?: boolean;
10
11
  }
11
12
 
12
13
  //export interface SvgModalDatum {
@@ -443,34 +444,42 @@ export const SvgBreaks: {
443
444
  kCzcut1: {
444
445
  viewBox: [1000, 101],
445
446
  path: `m 1000,97.5 v 5.25 H 0 C 0,68.5 0,34.25 0,0 c 1.81,0.17 3.61,0.34 5.42,0.5 5.75,0.51 11.54,0.24 17.29,1.18 3.35,0.55 6.81,0.5 10.22,0.52 1.84,0 3.53,0.62 5.29,0.8 2.85,0.3 5.74,0.22 8.61,0.45 2.12,0.17 4.21,0.65 6.33,0.84 2.2,0.2 4.41,0.21 6.61,0.33 1.5,0.08 2.99,0.18 4.48,0.34 5.19,0.58 10.38,1.13 15.56,1.81 4.09,0.54 8.32,-0.31 12.31,1.25 0.22,0.08 0.5,0 0.75,0.01 3.91,0.15 7.88,-0.05 11.71,0.58 2.81,0.47 5.58,0.57 8.38,0.78 4.95,0.37 9.9,0.85 14.86,1.21 2.49,0.18 5,0.13 7.48,0.34 1.77,0.15 3.51,0.77 5.26,0.78 4.25,0.04 8.44,0.37 12.65,1 3.98,0.59 8.09,0.24 12.07,0.84 1.89,0.28 3.76,0.64 5.68,0.72 2.83,0.12 5.72,-0.06 8.47,0.48 3.86,0.75 7.74,0.51 11.59,0.91 2.14,0.22 4.27,0.56 6.4,0.85 0.45,0.06 0.91,0.14 1.36,0.16 4.84,0.18 9.67,0.18 14.47,1.03 5.04,0.89 10.19,0.31 15.3,1.31 4.58,0.9 9.37,0.48 14.07,1.22 4.45,0.7 9.02,0.41 13.52,1.21 4.27,0.77 8.66,0.86 13,1.28 4.64,0.45 9.3,0.53 13.93,1.35 3.56,0.64 7.23,0.43 10.85,1.05 4.35,0.75 8.86,0.33 13.25,1.34 2.53,0.58 5.28,0.16 7.81,0.74 4.52,1.03 9.16,0.56 13.69,1.69 3.97,0.99 8.17,0.47 12.28,1.21 4.29,0.78 8.75,0.26 13.11,1.31 3.6,0.86 7.4,0.86 11.1,1.36 3.49,0.47 7.02,0.38 10.48,1.2 2.16,0.51 4.58,0.03 6.68,0.66 2.42,0.72 4.84,0.59 7.26,0.87 0.7,0.08 1.4,0.19 2.11,0.27 4.98,0.63 9.96,1.3 14.95,1.88 3.57,0.42 7.18,0.56 10.73,1.11 4.25,0.66 8.54,0.34 12.81,1.28 3.76,0.82 7.74,0.69 11.62,1.33 6.35,1.05 12.79,1.49 19.17,2.37 4.48,0.62 9,0.28 13.51,1.26 3.71,0.8 7.67,0.48 11.5,1.22 3.66,0.71 7.43,0.86 11.14,1.25 6.28,0.66 12.57,1.3 18.85,1.99 1.55,0.17 3.08,0.61 4.63,0.72 3.56,0.26 7.11,0.25 10.66,0.93 4.23,0.81 8.58,0.99 12.88,1.43 3.8,0.39 7.61,0.76 11.41,1.18 3.75,0.41 7.5,0.79 11.23,1.3 3.89,0.53 7.81,0.5 11.72,1.08 4.79,0.71 9.68,0.58 14.52,1.35 5.7,0.91 11.54,0.93 17.21,1.96 5.02,0.91 10.11,0.59 15.12,1.66 4.48,0.95 9.16,1.01 13.75,1.44 4.55,0.42 9.11,0.83 13.66,1.22 5.13,0.44 10.27,0.82 15.4,1.29 4,0.37 8.01,0.3 12.02,1.07 4.75,0.92 9.66,1.04 14.49,1.5 7.58,0.72 15.17,1.32 22.73,2.17 4.9,0.55 9.82,0.39 14.73,1.27 4.66,0.83 9.5,0.63 14.26,1.27 6.25,0.84 12.59,1.09 18.88,1.64 3.69,0.32 7.37,0.74 11.05,1.05 5.02,0.42 10.05,0 15.09,1.02 4.62,0.92 9.42,0.94 14.15,1.31 7.96,0.62 15.93,1.14 23.88,1.84 5.91,0.51 11.79,1.32 17.69,1.83 6.13,0.53 12.28,0.89 18.42,1.3 2.87,0.19 5.74,0.26 8.6,0.53 6.17,0.59 12.32,1.32 18.48,1.91 3.35,0.32 6.74,0.36 10.09,0.7 5.41,0.55 10.8,1.27 16.2,1.85 6.12,0.66 12.26,1.2 18.37,1.9 4.95,0.57 9.88,1.34 14.83,1.98 6.1,0.8 12.21,1.57 18.31,2.34 5.36,0.67 10.73,1.26 16.09,1.98 4.49,0.6 8.97,1.33 13.45,2.01 z`,
447
+ flipped: true,
446
448
  },
447
449
  kCzcut2: {
448
450
  viewBox: [1000, 101],
449
451
  path: `M 1000,0.02004487 V 102.75 c -333.33,0 -666.67,0 -1000,0 0,-1.75393 0,-3.507852 0,-5.261778 1.81,-0.290651 3.61,-0.601346 5.42,-0.851907 4.7,-0.651458 9.4,-1.252804 14.1,-1.914285 4.6,-0.641436 9.2,-1.353029 13.81,-1.964397 6.17,-0.82184 12.36,-1.573523 18.54,-2.355272 3.63,-0.461032 7.25,-0.982199 10.88,-1.373074 4.88,-0.531189 9.77,-0.932086 14.65,-1.453253 6.31,-0.671503 12.6,-1.443231 18.91,-2.104711 4.62,-0.4911 9.25,-0.881975 13.87,-1.292894 4.76,-0.430965 9.53,-0.811818 14.29,-1.242782 4.55,-0.41092 9.09,-0.922064 13.65,-1.272849 6,-0.461032 12.03,-0.420943 18.01,-1.262827 4.11,-0.581301 8.26,-0.801795 12.4,-1.182648 4.59,-0.420942 9.19,-0.771727 13.77,-1.292894 5.12,-0.581301 10.3,-0.160359 15.39,-1.232759 1.89,-0.400897 3.91,-0.200449 5.85,-0.420942 2.22,-0.250561 4.58,0.461032 6.65,-0.912042 6.26,-0.360808 12.53,-0.100224 18.77,-1.042333 4.97,-0.751683 10.03,-0.791772 15.01,-1.453253 4.15,-0.561256 8.34,-0.170382 12.5,-1.122513 4.36,-0.992221 8.92,-0.340763 13.4,-1.19267 4.91,-0.922064 10,-0.891996 15.01,-1.312938 4.8,-0.400898 9.61,-0.791773 14.4,-1.302917 4,-0.430965 8.03,-0.220494 12.01,-1.222737 3.41,-0.851907 7,-0.420942 10.52,-1.132535 4.44,-0.891997 9.07,-0.831862 13.61,-1.272849 5.21,-0.511144 10.45,-0.270606 15.66,-1.242782 4.43,-0.82184 9.01,-0.230516 13.5,-1.322962 3.78,-0.922064 7.77,-0.29065 11.68,-1.15258 4.22,-0.932086 8.66,-0.891996 13,-1.262826 2.7,-0.230516 5.41,-0.320718 8.09,-0.661481 4.45,-0.571279 8.87,-1.312939 13.3,-1.964397 4.24,-0.621391 8.52,-0.340763 12.8,-1.072401 4.43,-0.761705 9.02,-0.711593 13.54,-1.292894 3.74,-0.481077 7.51,-0.721615 11.25,-1.332984 3.76,-0.611368 7.6,-0.380852 11.39,-1.15258 3.8,-0.781749 7.72,-0.942108 11.59,-1.373073 4.3,-0.481077 8.64,-0.110247 12.95,-1.062378 3.7,-0.82184 7.59,-0.400898 11.38,-1.262827 3.59,-0.82184 7.32,-1.012266 10.99,-1.463275 3.58,-0.440988 7.21,-0.260584 10.76,-1.19267 3.2,-0.841885 6.55,-0.320718 9.88,-1.002244 4.66,-0.962153 9.57,-0.270605 14.3,-1.373073 1.6,-0.37083 3.34,-0.0902 4.97,-0.360808 4.74,-0.78175 9.57,-0.952131 14.27,-2.084666 3.58,-0.871952 7.3,-0.330741 10.98,-1.23276 4,-0.982198 8.27,-0.400897 12.44,-1.212714 4.45,-0.86193 9.11,-0.501122 13.63,-1.343006 2.19,-0.41092 4.58,0.06013 6.7,-0.53119 4.29,-1.192669 8.77,-0.721615 13.07,-1.924307 3.18,-0.891997 6.6,-0.420942 9.93,-1.162602 3.39,-0.761705 7.01,-0.380853 10.46,-1.302917 1.26,-0.33074 2.66,-0.08018 3.98,-0.260583 2.75,-0.390875 5.48,-0.891997 8.22,-1.343006 3.6,-0.591324 7.22,-0.05011 10.89,-0.871952 4.01,-0.891997 8.28,-0.360808 12.43,-1.272849 3.82,-0.841885 7.82,-0.53119 11.73,-1.242782 3.9,-0.711593 7.93,-0.511145 11.87,-1.383096 3.75,-0.841885 7.65,-0.200449 11.48,-1.052356 3.05,-0.681526 6.3,-0.420942 9.45,-0.671503 0.74,-0.06013 1.43,-0.641436 2.17,-0.701571 4.11,-0.37083 8.23,-0.180403 12.35,-1.012265 4.81,-0.982199 9.82,-0.330741 14.72,-1.463276 4.16,-0.962154 8.54,-0.29065 12.84,-1.102468 4.9,-0.932086 10,-0.491099 14.99,-1.332984 4.34,-0.731637 8.81,-0.380852 13.23,-1.11249 4.28,-0.711593 8.72,-0.451009 13.09,-0.631413 0.58,-0.02004 1.16,-0.100224 1.72,-0.220494 1,-0.210471 1.98,-0.581301 2.99,-0.70157 4.43,-0.511144 8.9,-0.06013 13.35,-1.022288 4.89,-1.062379 9.99,-0.140315 15,-1.19267 4.89,-1.022289 10,-0.180404 14.99,-1.252805 2.97,-0.641435 6.13,-0.430964 9.2,-0.581301 1.72,-0.08018 3.5,0.290651 5.06,-0.831862 0.27,-0.190426 0.73,-0.180404 1.09,-0.170381 5.94,0.180404 11.84,-0.440987 17.72,-1.1525802 4.18,-0.5011217 8.4,-0.020045 12.6,-1.0323107 4.71,-1.1325352 9.63,-0.1002244 14.49,-1.15258 4.8,-1.0423332 9.86,-0.5412115 14.8,-1.3730736 5.29,-0.8919967 10.72,-1.0122659 16.09,-1.453253 3.77,-0.3106955 7.54,-0.3507852 11.3,-1.0323108 3.17,-0.5712787 6.48,-0.3307403 9.72,-0.5512339 1,-0.070157 1.97,-0.6414358 2.97,-0.7015704 4.07,-0.2405384 8.16,-0.3207179 12.23,-0.5712788 1.88,-0.1102467 3.74,-0.60134605 5.62,-0.71159283 4.03,-0.24053843 8.07,-0.35078521 12.11,-0.5211666 C 996.28,0.20044867 998.13,0.10022435 999.99,0 Z`,
452
+ flipped: true,
450
453
  },
451
454
  kCzcutwide1: {
452
455
  viewBox: [1920, 101],
453
456
  path: `m 1920,97.5 v 5.25 H 0 C 0,68.5 0,34.25 0,0 c 3.4752,0.17 6.9312,0.34 10.4064,0.5 11.04,0.51 22.1568,0.24 33.1968,1.18 6.432,0.55 13.0752,0.5 19.6224,0.52 3.5328,0 6.7776,0.62 10.1568,0.8 5.472,0.3 11.0208,0.22 16.5312,0.45 4.0704,0.17 8.0832,0.65 12.1536,0.84 4.224,0.2 8.4672,0.21 12.6912,0.33 2.88,0.08 5.7408,0.18 8.6016,0.34 9.9648,0.58 19.9296,1.13 29.8752,1.81 7.8528,0.54 15.9744,-0.31 23.6352,1.25 0.4224,0.08 0.96,0 1.44,0.01 7.5072,0.15 15.1296,-0.05 22.4832,0.58 5.3952,0.47 10.7136,0.57 16.0896,0.78 9.504,0.37 19.008,0.85 28.5312,1.21 4.7808,0.18 9.6,0.13 14.3616,0.34 3.3984,0.15 6.7392,0.77 10.0992,0.78 8.16,0.04 16.2048,0.37 24.288,1 7.6416,0.59 15.5328,0.24 23.1744,0.84 3.6288,0.28 7.2192,0.64 10.9056,0.72 5.4336,0.12 10.9824,-0.06 16.2624,0.48 7.4112,0.75 14.8608,0.51 22.2528,0.91 4.1088,0.22 8.1984,0.56 12.288,0.85 0.864,0.06 1.7472,0.14 2.6112,0.16 9.2928,0.18 18.5664,0.18 27.7824,1.03 9.6768,0.89 19.5648,0.31 29.376,1.31 8.7936,0.9 17.9904,0.48 27.0144,1.22 8.544,0.7 17.3184,0.41 25.9584,1.21 8.1984,0.77 16.6272,0.86 24.96,1.28 8.9088,0.45 17.856,0.53 26.7456,1.35 6.8352,0.64 13.8816,0.43 20.832,1.05 8.352,0.75 17.0112,0.33 25.44,1.34 4.8576,0.58 10.1376,0.16 14.9952,0.74 8.6784,1.03 17.5872,0.56 26.2848,1.69 7.6224,0.99 15.6864,0.47 23.5776,1.21 8.2368,0.78 16.8,0.26 25.1712,1.31 6.912,0.86 14.208,0.86 21.312,1.36 6.7008,0.47 13.4784,0.38 20.1216,1.2 4.1472,0.51 8.7936,0.03 12.8256,0.66 4.6464,0.72 9.2928,0.59 13.9392,0.87 1.344,0.08 2.688,0.19 4.0512,0.27 9.5616,0.63 19.1232,1.3 28.704,1.88 6.8544,0.42 13.7856,0.56 20.6016,1.11 8.16,0.66 16.3968,0.34 24.5952,1.28 7.2192,0.82 14.8608,0.69 22.3104,1.33 12.192,1.05 24.5568,1.49 36.8064,2.37 8.6016,0.62 17.28,0.28 25.9392,1.26 7.1232,0.8 14.7264,0.48 22.08,1.22 7.0272,0.71 14.2656,0.86 21.3888,1.25 12.0576,0.66 24.1344,1.3 36.192,1.99 2.976,0.17 5.9136,0.61 8.8896,0.72 6.8352,0.26 13.6512,0.25 20.4672,0.93 8.1216,0.81 16.4736,0.99 24.7296,1.43 7.296,0.39 14.6112,0.76 21.9072,1.18 7.2,0.41 14.4,0.79 21.5616,1.3 7.4688,0.53 14.9952,0.5 22.5024,1.08 9.1968,0.71 18.5856,0.58 27.8784,1.35 10.944,0.91 22.1568,0.93 33.0432,1.96 9.6384,0.91 19.4112,0.59 29.0304,1.66 8.6016,0.95 17.5872,1.01 26.4,1.44 8.736,0.42 17.4912,0.83 26.2272,1.22 9.8496,0.44 19.7184,0.82 29.568,1.29 7.68,0.37 15.3792,0.3 23.0784,1.07 9.12,0.92 18.5472,1.04 27.8208,1.5 14.5536,0.72 29.1264,1.32 43.6416,2.17 9.408,0.55 18.8544,0.39 28.2816,1.27 8.9472,0.83 18.24,0.63 27.3792,1.27 12,0.84 24.1728,1.09 36.2496,1.64 7.0848,0.32 14.1504,0.74 21.216,1.05 9.6384,0.42 19.296,0 28.9728,1.02 8.8704,0.92 18.0864,0.94 27.168,1.31 15.2832,0.62 30.5856,1.14 45.8496,1.84 11.3472,0.51 22.6368,1.32 33.9648,1.83 11.7696,0.53 23.5776,0.89 35.3664,1.3 5.5104,0.19 11.0208,0.26 16.512,0.53 11.8464,0.59 23.6544,1.32 35.4816,1.91 6.432,0.32 12.9408,0.36 19.3728,0.7 10.3872,0.55 20.736,1.27 31.104,1.85 11.7504,0.66 23.5392,1.2 35.2704,1.9 9.504,0.57 18.9696,1.34 28.4736,1.98 11.712,0.8 23.4432,1.57 35.1552,2.34 10.2912,0.67 20.6016,1.26 30.8928,1.98 8.6208,0.6 17.2224,1.33 25.824,2.01 z`,
457
+ flipped: true,
454
458
  },
455
459
  kCzcutwide2: {
456
460
  viewBox: [1920, 101],
457
461
  path: `M 1920,0.02004487 V 102.75 c -639.9936,0 -1280.0064,0 -1920,0 0,-1.75393 0,-3.507852 0,-5.261778 3.4752,-0.290651 6.9312,-0.601346 10.4064,-0.851907 9.024,-0.651458 18.048,-1.252804 27.072,-1.914285 8.832,-0.641436 17.664,-1.353029 26.5152,-1.964397 11.8464,-0.82184 23.7312,-1.573523 35.5968,-2.355272 6.9696,-0.461032 13.92,-0.982199 20.8896,-1.373074 9.3696,-0.531189 18.7584,-0.932086 28.128,-1.453253 12.1152,-0.671503 24.192,-1.443231 36.3072,-2.104711 8.8704,-0.4911 17.76,-0.881975 26.6304,-1.292894 9.1392,-0.430965 18.2976,-0.811818 27.4368,-1.242782 8.736,-0.41092 17.4528,-0.922064 26.208,-1.272849 11.52,-0.461032 23.0976,-0.420943 34.5792,-1.262827 7.8912,-0.581301 15.8592,-0.801795 23.808,-1.182648 8.8128,-0.420942 17.6448,-0.771727 26.4384,-1.292894 9.8304,-0.581301 19.776,-0.160359 29.5488,-1.232759 3.6288,-0.400897 7.5072,-0.200449 11.232,-0.420942 4.2624,-0.250561 8.7936,0.461032 12.768,-0.912042 12.0192,-0.360808 24.0576,-0.100224 36.0384,-1.042333 9.5424,-0.751683 19.2576,-0.791772 28.8192,-1.453253 7.968,-0.561256 16.0128,-0.170382 24,-1.122513 8.3712,-0.992221 17.1264,-0.340763 25.728,-1.19267 9.4272,-0.922064 19.2,-0.891996 28.8192,-1.312938 9.216,-0.400898 18.4512,-0.791773 27.648,-1.302917 7.68,-0.430965 15.4176,-0.220494 23.0592,-1.222737 6.5472,-0.851907 13.44,-0.420942 20.1984,-1.132535 8.5248,-0.891997 17.4144,-0.831862 26.1312,-1.272849 10.0032,-0.511144 20.064,-0.270606 30.0672,-1.242782 8.5056,-0.82184 17.2992,-0.230516 25.92,-1.322962 7.2576,-0.922064 14.9184,-0.29065 22.4256,-1.15258 8.1024,-0.932086 16.6272,-0.891996 24.96,-1.262826 5.184,-0.230516 10.3872,-0.320718 15.5328,-0.661481 8.544,-0.571279 17.0304,-1.312939 25.536,-1.964397 8.1408,-0.621391 16.3584,-0.340763 24.576,-1.072401 8.5056,-0.761705 17.3184,-0.711593 25.9968,-1.292894 7.1808,-0.481077 14.4192,-0.721615 21.6,-1.332984 7.2192,-0.611368 14.592,-0.380852 21.8688,-1.15258 7.296,-0.781749 14.8224,-0.942108 22.2528,-1.373073 8.256,-0.481077 16.5888,-0.110247 24.864,-1.062378 7.104,-0.82184 14.5728,-0.400898 21.8496,-1.262827 6.8928,-0.82184 14.0544,-1.012266 21.1008,-1.463275 6.8736,-0.440988 13.8432,-0.260584 20.6592,-1.19267 6.144,-0.841885 12.576,-0.320718 18.9696,-1.002244 8.9472,-0.962153 18.3744,-0.270605 27.456,-1.373073 3.072,-0.37083 6.4128,-0.0902 9.5424,-0.360808 9.1008,-0.78175 18.3744,-0.952131 27.3984,-2.084666 6.8736,-0.871952 14.016,-0.330741 21.0816,-1.23276 7.68,-0.982198 15.8784,-0.400897 23.8848,-1.212714 8.544,-0.86193 17.4912,-0.501122 26.1696,-1.343006 4.2048,-0.41092 8.7936,0.06013 12.864,-0.53119 8.2368,-1.192669 16.8384,-0.721615 25.0944,-1.924307 6.1056,-0.891997 12.672,-0.420942 19.0656,-1.162602 6.5088,-0.761705 13.4592,-0.380853 20.0832,-1.302917 2.4192,-0.33074 5.1072,-0.08018 7.6416,-0.260583 5.28,-0.390875 10.5216,-0.891997 15.7824,-1.343006 6.912,-0.591324 13.8624,-0.05011 20.9088,-0.871952 7.6992,-0.891997 15.8976,-0.360808 23.8656,-1.272849 7.3344,-0.841885 15.0144,-0.53119 22.5216,-1.242782 7.488,-0.711593 15.2256,-0.511145 22.7904,-1.383096 7.2,-0.841885 14.688,-0.200449 22.0416,-1.052356 5.856,-0.681526 12.096,-0.420942 18.144,-0.671503 1.4208,-0.06013 2.7456,-0.641436 4.1664,-0.701571 7.8912,-0.37083 15.8016,-0.180403 23.712,-1.012265 9.2352,-0.982199 18.8544,-0.330741 28.2624,-1.463276 7.9872,-0.962154 16.3968,-0.29065 24.6528,-1.102468 9.408,-0.932086 19.2,-0.491099 28.7808,-1.332984 8.3328,-0.731637 16.9152,-0.380852 25.4016,-1.11249 8.2176,-0.711593 16.7424,-0.451009 25.1328,-0.631413 1.1136,-0.02004 2.2272,-0.100224 3.3024,-0.220494 1.92,-0.210471 3.8016,-0.581301 5.7408,-0.70157 8.5056,-0.511144 17.088,-0.06013 25.632,-1.022288 9.3888,-1.062379 19.1808,-0.140315 28.8,-1.19267 9.3888,-1.022289 19.2,-0.180404 28.7808,-1.252805 5.7024,-0.641435 11.7696,-0.430964 17.664,-0.581301 3.3024,-0.08018 6.72,0.290651 9.7152,-0.831862 0.5184,-0.190426 1.4016,-0.180404 2.0928,-0.170381 11.4048,0.180404 22.7328,-0.440987 34.0224,-1.1525802 8.0256,-0.5011217 16.128,-0.020045 24.192,-1.0323107 9.0432,-1.1325352 18.4896,-0.1002244 27.8208,-1.15258 9.216,-1.0423332 18.9312,-0.5412115 28.416,-1.3730736 10.1568,-0.8919967 20.5824,-1.0122659 30.8928,-1.453253 7.2384,-0.3106955 14.4768,-0.3507852 21.696,-1.0323108 6.0864,-0.5712787 12.4416,-0.3307403 18.6624,-0.5512339 1.92,-0.070157 3.7824,-0.6414358 5.7024,-0.7015704 7.8144,-0.2405384 15.6672,-0.3207179 23.4816,-0.5712788 3.6096,-0.1102467 7.1808,-0.60134605 10.7904,-0.71159283 7.7376,-0.24053843 15.4944,-0.35078521 23.2512,-0.5211666 C 1912.8576,0.20044867 1916.4096,0.10022435 1919.9808,0 Z`,
462
+ flipped: true,
458
463
  },
459
464
  kCzlowcut1: {
460
465
  viewBox: [1000, 54],
461
466
  path: `M 1000,51.082558 V 55.75 H 0 C 0,37.163209 0,18.586791 0,0 c 0.94,0.1452093 1.87,0.39413953 2.81,0.41488372 5.44,0.16595349 10.87,-0.47711628 16.32,0.3007907 2.49,0.35265118 5.07,0.0414884 7.61,0.0311163 2.04,0 4.19,-0.42525582 6.09,0.10372093 2.25,0.62232555 4.44,0.44599995 6.66,0.50823255 2.45,0.072605 4.98,-0.2385582 7.34,0.2800465 2.14,0.4667442 4.18,0.3733953 6.29,0.2593023 0.54,-0.031116 1.08,-0.062233 1.62,-0.041488 4.94,0.2385581 9.87,0.5808372 14.81,0.7156744 4.3,0.114093 8.54,1.1513023 12.87,0.7260465 1.65,-0.1659535 3.33,0.010372 4.99,0.062232 3.15,0.103721 6.3,0.2281861 9.45,0.331907 1.83,0.062233 3.72,-0.1763256 5.47,0.2489302 2.37,0.5808373 4.7,0.3630233 7.06,0.3733954 3.12,0 6.24,0 9.36,0.093349 2.41,0.072605 4.81,0.217814 7.21,0.446 3.06,0.2904186 6.2,-0.9231162 9.2,0.5600931 0.2,0.1037209 0.49,0.010372 0.74,0 3.25,-0.051861 6.5,-0.1970698 9.74,-0.1244652 2.15,0.051861 4.3,0.5289768 6.45,0.6119535 2.87,0.103721 5.75,-0.062233 8.62,0.031116 1.93,0.062233 3.86,0.4771163 5.79,0.5289768 3.79,0.093349 7.64,-0.3733954 11.36,0.1555813 5.83,0.8193954 11.67,-0.072605 17.53,0.8090233 5.42,0.8090233 11.02,-0.1037209 16.55,0.4771163 4.72,0.4978604 9.5,-0.051861 14.28,0.5704651 4.72,0.6119535 9.52,-0.062233 14.3,0.5289767 4.35,0.5393489 8.76,0 13.18,0.6534419 4.77,0.7053027 9.67,-0.114093 14.52,0.6534417 2.98,0.466745 6.07,0.134838 9.1,0.290419 6.17,0.321535 12.34,0.757163 18.52,1.08907 2.16,0.114093 4.33,0 6.49,0.134837 5.76,0.363023 11.51,0.819395 17.26,1.213535 1.74,0.124465 3.49,0.134837 5.24,0.269674 1.44,0.114093 2.87,0.414884 4.31,0.466745 2.29,0.08298 4.58,0.03112 6.87,0.05186 0.5,0 0.99,0.06223 1.49,0.124465 1.39,0.176326 2.8,0.622326 4.17,0.508233 3.43,-0.290419 6.78,0 10.18,0.549721 3.51,0.560093 7.12,0.477116 10.67,0.892 3.45,0.404511 6.91,-0.09335 10.38,0.663814 3.18,0.69493 6.53,0.601581 9.8,0.798651 6.02,0.363023 12.04,0.663814 18.06,1.047581 1.36,0.08298 2.69,0.456372 4.05,0.528977 3.77,0.217814 7.55,0.321535 11.32,0.528977 4.19,0.228186 8.37,0.560093 12.55,0.757162 3.8,0.176326 7.61,0.134838 11.39,0.819396 2.93,0.528976 5.93,0.653442 8.91,0.871256 3.64,0.269674 7.29,0.49786 10.94,0.643069 6.23,0.259303 12.46,0.383768 18.69,0.674186 2.06,0.09335 4.1,0.653442 6.16,0.777907 5.94,0.352652 11.88,0.549721 17.82,0.881628 2.11,0.114093 4.21,0.487489 6.32,0.632698 1.87,0.124465 3.75,0.05186 5.62,0.165953 1.19,0.0726 2.36,0.446 3.54,0.497861 5.28,0.238558 10.55,0.414884 15.83,0.622325 1.75,0.0726 3.49,0.124466 5.24,0.238559 6,0.404511 11.99,0.850511 17.99,1.234279 1.87,0.114093 3.75,0 5.62,0.124465 5.02,0.331907 10.02,0.850511 15.04,1.08907 4.97,0.238558 9.95,-0.186698 14.91,0.705302 2.07,0.373395 4.24,0.145209 6.36,0.300791 5.19,0.373395 10.37,0.840139 15.55,1.223907 3.51,0.259302 7.03,0.477116 10.55,0.643069 4.78,0.228186 9.56,0.383768 14.33,0.59121 3.61,0.155581 7.23,0.311162 10.84,0.539348 5.97,0.373396 11.95,0.08298 17.95,0.622326 7.34,0.663814 14.74,0.508233 22.11,1.338 5.15,0.580837 10.39,0.456372 15.58,0.622326 2.7,0.09335 5.4,0.124465 8.1,0.217814 2.58,0.08298 5.15,0.207441 7.73,0.331907 3.15,0.145209 6.31,0.30079 9.46,0.466744 4.85,0.259302 9.71,0.560093 14.56,0.767535 6.44,0.280046 12.88,0.466744 19.32,0.726046 3.24,0.134837 6.48,0.363023 9.72,0.497861 5.64,0.238558 11.27,-0.528977 16.94,0.269674 4.39,0.622326 8.88,0.446 13.33,0.632698 5.06,0.207442 10.11,-0.228186 15.18,0.487488 3.61,0.518605 7.32,0.155581 10.98,0.331907 5.43,0.259302 10.85,0.871256 16.28,0.933488 10.24,0.103721 20.46,0.311163 30.67,1.03721 5.8,0.414883 11.64,0.352651 17.46,0.560093 2.99,0.103721 5.98,0.342279 8.97,0.49786 6.35,0.352651 12.7,0.69493 19.06,1.026837 1.08,0.06223 2.17,0.02074 3.25,0.103721 5.23,0.404512 10.45,0.871256 15.68,1.265396 4.9,0.363023 9.8,0.653442 14.7,0.974976 0.33,0.02075 0.66,0.07261 0.99,0.103721 4.35,0.404512 8.69,0.819396 13.04,1.213535 5.18,0.466744 10.36,0.892 15.54,1.358744 4.35,0.39414 8.7,0.819396 13.06,1.23428 z`,
467
+ flipped: true,
462
468
  },
463
469
  kCzlowcut2: {
464
470
  viewBox: [1000, 54],
465
471
  path: `m 999.98,0 v 55.75 c -333.32333,0 -666.65667,0 -999.98,0 0,-1.5 0,-3 0,-4.5 4.3899122,-0.42 8.7698246,-0.86 13.159737,-1.26 6.209876,-0.56 12.409752,-1.1 18.619627,-1.62 7.169857,-0.59 14.339714,-1.18 21.51957,-1.7 4.269915,-0.31 8.549829,-0.51 12.819744,-0.76 1.449971,-0.08 2.909941,-0.12 4.359912,-0.23 5.639888,-0.41 11.269775,-0.87 16.909662,-1.25 3.229936,-0.22 6.459871,-0.35 9.699806,-0.48 4.309912,-0.18 8.629832,-0.32 12.939742,-0.51 5.0199,-0.21 10.0398,-0.51 15.0697,-0.67 6.43987,-0.21 12.88974,-0.34 19.32961,-0.5 7.08986,-0.18 14.16972,-0.37 21.25958,-0.55 0.20999,0 0.41999,0 0.61998,-0.04 5.2599,-1.19 10.62979,-0.19 15.96968,-1 5.0899,-0.77 10.3598,-0.38 15.54969,-0.49 2.65995,-0.06 5.3299,-0.04 7.98984,-0.16 1.74997,-0.08 3.48993,-0.45 5.2499,-0.52 6.51987,-0.27 13.03974,0.54 19.57961,-0.2 4.23991,-0.48 8.54983,-0.4 12.81974,-0.6 4.59991,-0.21 9.20982,-0.46 13.80972,-0.67 4.30992,-0.2 8.61983,-0.4 12.92975,-0.57 5.56988,-0.22 11.12977,-0.41 16.69966,-0.62 4.80991,-0.18 9.61981,-0.35 14.43971,-0.54 3.69993,-0.14 7.37986,-0.25 11.07978,-0.59 7.76985,-0.71 15.59969,-0.89 23.39953,-1.23 2.73995,-0.12 5.49989,-0.06 8.23984,-0.1 1.86996,-0.03 3.73992,-0.06 5.60989,-0.15 2.14995,-0.1 4.29991,-0.3 6.44987,-0.39 2.19995,-0.09 4.41991,-0.04 6.61987,-0.17 4.9599,-0.3 9.8998,-0.75 14.8597,-1.02 6.34987,-0.34 12.71974,-0.46 19.06962,-0.85 4.7099,-0.29 9.38981,-1.01 14.08971,-1.26 6.10988,-0.32 12.22976,-0.36 18.33964,-0.53 1.65996,-0.05 3.32993,-0.07 4.9899,-0.21 4.7399,-0.39 9.47981,-0.89 14.21971,-1.23 3.96992,-0.28 7.95984,-0.39 11.93976,-0.6 4.55991,-0.24 9.12982,-0.51 13.68973,-0.75 3.83992,-0.2 7.67985,0.31 11.53977,-0.5 3.68993,-0.78 7.50985,0.05 11.29977,-0.67 3.71993,-0.71 7.59985,-0.57 11.40978,-0.88 3.07993,-0.25 6.13987,-0.06 9.24981,-0.54 4.8199,-0.74 9.76981,-0.68 14.65971,-0.89 6.33987,-0.27 12.68974,-0.47 19.03962,-0.7 0.28999,-0.01 0.59999,0 0.86998,-0.09 3.32993,-1.19 6.85986,-0.38 10.30979,-1.16 3.50993,-0.8 7.29986,-0.25 10.98978,-0.75 4.23992,-0.57 8.56983,-0.02 12.86975,-0.65 4.16991,-0.61 8.42983,0.08 12.65974,-0.62 3.45993,-0.57 7.03986,-0.35 10.55979,-0.59 3.26994,-0.22 6.51987,-0.63 9.78981,-0.87 4.31991,-0.32 8.64982,-0.59 12.96974,-0.84 1.28997,-0.07 2.58995,0.04 3.86992,-0.04 0.77998,-0.04 1.53997,-0.29 2.30995,-0.43 0.51999,-0.1 1.02998,-0.24 1.55997,-0.27 3.27994,-0.18 6.54987,-0.33 9.82981,-0.49 2.64994,-0.13 5.29989,-0.3 7.94984,-0.4 1.54997,-0.06 3.17993,0.77 4.5999,-0.53 0.1,-0.09 0.32,-0.05 0.48999,-0.04 4.43992,0.11 8.84983,0.13 13.27974,-0.55 3.46993,-0.53 7.04986,-0.32 10.55979,-0.61 3.75992,-0.31 7.52985,0.02 11.31977,-0.72 4.12992,-0.8 8.39983,0.12 12.64975,-0.61 3.79992,-0.65 7.75984,0.17 11.66977,-0.55 4.16991,-0.76 8.43983,0 12.69974,-0.71 4.62991,-0.78 9.38981,0.2 14.14972,-0.66 4.39991,-0.79 8.99982,0.24 13.50973,-0.56 1.93996,-0.35 3.98992,0 5.98988,-0.06 4.19991,-0.15 8.39983,-0.38 12.60975,-0.54 4.37991,-0.17 8.75982,-0.34 13.14973,-0.44 4.72991,-0.11 9.45981,0.11 14.18972,-0.55 4.42991,-0.62 8.91982,0.27 13.42973,-0.33 3.80992,-0.51 7.73985,-0.06 11.60977,-0.15 1.14998,-0.03 2.29995,-0.62 3.44993,-0.63 3.74992,-0.03 7.49985,0.08 11.23977,0.14 0.53999,0 1.07998,0 1.61997,-0.06 1.80997,-0.19 3.60993,-0.54 5.42989,-0.58 2.82995,-0.06 5.65989,0.09 8.49983,0.13 0.44999,0 1.02998,0.09 1.33998,-0.15 1.24997,-0.93 2.61994,-0.48 3.95992,-0.5 0.78998,0 1.57997,0.1 2.36995,0.06 3.29993,-0.18 6.59987,0.28 9.9298,-0.37 2.48995,-0.49 5.1499,-0.21 7.72985,-0.05 3.75992,0.23 7.42985,-0.43 11.14977,-0.68 4.08992,-0.27 8.16984,0.53 12.29976,-0.25 4.49991,-0.84 9.09982,0.23 13.71972,-0.61 4.28992,-0.79 8.76983,-0.04 13.17974,-0.64 3.29993,-0.45 6.71987,0 10.0798,-0.07 1.39997,-0.03 2.79994,-0.48 4.19991,-0.52 3.65993,-0.11 7.35986,0.19 10.97978,-0.23 2.12996,-0.25 4.25992,-0.55 6.37988,-0.44 6.54987,0.33 13.06974,-0.59 19.6196,-0.45 2.61995,0.06 5.2399,-0.06 7.85985,-0.04 0.94998,0 1.28997,-0.28 1.07998,-1.25 -0.07,-0.3 0.18999,-0.68 0.29999,-1.02 z`,
472
+ flipped: true,
466
473
  },
467
474
  kCzlowcutwide1: {
468
475
  viewBox: [1920, 54],
469
476
  path: `M 1920,51.082558 V 55.75 H 0 C 0,37.163209 0,18.586791 0,0 1.8048,0.1452093 3.5904,0.39413953 5.3952,0.41488372 15.84,0.58083721 26.2656,-0.06223256 36.7296,0.71567442 c 4.7808,0.35265118 9.7344,0.0414884 14.6112,0.0311163 3.9168,0 8.0448,-0.42525582 11.6928,0.10372093 4.32,0.62232555 8.5248,0.44599995 12.7872,0.50823255 4.704,0.072605 9.5616,-0.2385582 14.0928,0.2800465 4.1088,0.4667442 8.0256,0.3733953 12.0768,0.2593023 1.0368,-0.031116 2.0736,-0.062233 3.1104,-0.041488 9.4848,0.2385581 18.9504,0.5808372 28.4352,0.7156744 8.256,0.114093 16.3968,1.1513023 24.7104,0.7260465 3.168,-0.1659535 6.3936,0.010372 9.5808,0.062232 6.048,0.103721 12.096,0.2281861 18.144,0.331907 3.5136,0.062233 7.1424,-0.1763256 10.5024,0.2489302 4.5504,0.5808373 9.024,0.3630233 13.5552,0.3733954 5.9904,0 11.9808,0 17.9712,0.093349 4.6272,0.072605 9.2352,0.217814 13.8432,0.446 5.8752,0.2904186 11.904,-0.9231162 17.664,0.5600931 0.384,0.1037209 0.9408,0.010372 1.4208,0 6.24,-0.051861 12.48,-0.1970698 18.7008,-0.1244652 4.128,0.051861 8.256,0.5289768 12.384,0.6119535 5.5104,0.103721 11.04,-0.062233 16.5504,0.031116 3.7056,0.062233 7.4112,0.4771163 11.1168,0.5289768 7.2768,0.093349 14.6688,-0.3733954 21.8112,0.1555813 11.1936,0.8193954 22.4064,-0.072605 33.6576,0.8090233 10.4064,0.8090233 21.1584,-0.1037209 31.776,0.4771163 9.0624,0.4978604 18.24,-0.051861 27.4176,0.5704651 9.0624,0.6119535 18.2784,-0.062233 27.456,0.5289767 8.352,0.5393489 16.8192,0 25.3056,0.6534419 9.1584,0.7053027 18.5664,-0.114093 27.8784,0.6534417 5.7216,0.466745 11.6544,0.134838 17.472,0.290419 11.8464,0.321535 23.6928,0.757163 35.5584,1.08907 4.1472,0.114093 8.3136,0 12.4608,0.134837 11.0592,0.363023 22.0992,0.819395 33.1392,1.213535 3.3408,0.124465 6.7008,0.134837 10.0608,0.269674 2.7648,0.114093 5.5104,0.414884 8.2752,0.466745 4.3968,0.08298 8.7936,0.03112 13.1904,0.05186 0.96,0 1.9008,0.06223 2.8608,0.124465 2.6688,0.176326 5.376,0.622326 8.0064,0.508233 6.5856,-0.290419 13.0176,0 19.5456,0.549721 6.7392,0.560093 13.6704,0.477116 20.4864,0.892 6.624,0.404511 13.2672,-0.09335 19.9296,0.663814 6.1056,0.69493 12.5376,0.601581 18.816,0.798651 11.5584,0.363023 23.1168,0.663814 34.6752,1.047581 2.6112,0.08298 5.1648,0.456372 7.776,0.528977 7.2384,0.217814 14.496,0.321535 21.7344,0.528977 8.0448,0.228186 16.0704,0.560093 24.096,0.757162 7.296,0.176326 14.6112,0.134838 21.8688,0.819396 5.6256,0.528976 11.3856,0.653442 17.1072,0.871256 6.9888,0.269674 13.9968,0.49786 21.0048,0.643069 11.9616,0.259303 23.9232,0.383768 35.8848,0.674186 3.9552,0.09335 7.872,0.653442 11.8272,0.777907 11.4048,0.352652 22.8096,0.549721 34.2144,0.881628 4.0512,0.114093 8.0832,0.487489 12.1344,0.632698 3.5904,0.124465 7.2,0.05186 10.7904,0.165953 2.2848,0.0726 4.5312,0.446 6.7968,0.497861 10.1376,0.238558 20.256,0.414884 30.3936,0.622325 3.36,0.0726 6.7008,0.124466 10.0608,0.238559 11.52,0.404511 23.0208,0.850511 34.5408,1.234279 3.5904,0.114093 7.2,0 10.7904,0.124465 9.6384,0.331907 19.2384,0.850511 28.8768,1.08907 9.5424,0.238558 19.104,-0.186698 28.6272,0.705302 3.9744,0.373395 8.1408,0.145209 12.2112,0.300791 9.9648,0.373395 19.9104,0.840139 29.856,1.223907 6.7392,0.259302 13.4976,0.477116 20.256,0.643069 9.1776,0.228186 18.3552,0.383768 27.5136,0.59121 6.9312,0.155581 13.8816,0.311162 20.8128,0.539348 11.4624,0.373396 22.944,0.08298 34.464,0.622326 14.0928,0.663814 28.3008,0.508233 42.4512,1.338 9.888,0.580837 19.9488,0.456372 29.9136,0.622326 5.184,0.09335 10.368,0.124465 15.552,0.217814 4.9536,0.08298 9.888,0.207441 14.8416,0.331907 6.048,0.145209 12.1152,0.30079 18.1632,0.466744 9.312,0.259302 18.6432,0.560093 27.9552,0.767535 12.3648,0.280046 24.7296,0.466744 37.0944,0.726046 6.2208,0.134837 12.4416,0.363023 18.6624,0.497861 10.8288,0.238558 21.6384,-0.528977 32.5248,0.269674 8.4288,0.622326 17.0496,0.446 25.5936,0.632698 9.7152,0.207442 19.4112,-0.228186 29.1456,0.487488 6.9312,0.518605 14.0544,0.155581 21.0816,0.331907 10.4256,0.259302 20.832,0.871256 31.2576,0.933488 19.6608,0.103721 39.2832,0.311163 58.8864,1.03721 11.136,0.414883 22.3488,0.352651 33.5232,0.560093 5.7408,0.103721 11.4816,0.342279 17.2224,0.49786 12.192,0.352651 24.384,0.69493 36.5952,1.026837 2.0736,0.06223 4.1664,0.02074 6.24,0.103721 10.0416,0.404512 20.064,0.871256 30.1056,1.265396 9.408,0.363023 18.816,0.653442 28.224,0.974976 0.6336,0.02075 1.2672,0.07261 1.9008,0.103721 8.352,0.404512 16.6848,0.819396 25.0368,1.213535 9.9456,0.466744 19.8912,0.892 29.8368,1.358744 8.352,0.39414 16.704,0.819396 25.0752,1.23428 z`,
477
+ flipped: true,
470
478
  },
471
479
  kCzlowcutwide2: {
472
480
  viewBox: [1920, 54],
473
481
  path: `m 1919.9616,0 v 55.75 c -639.9808,0 -1279.9808,0 -1919.9616,0 0,-1.5 0,-3 0,-4.5 8.4286314,-0.42 16.838063,-0.86 25.266695,-1.26 11.922961,-0.56 23.826723,-1.1 35.749685,-1.62 13.766124,-0.59 27.532249,-1.18 41.31757,-1.7 8.19824,-0.31 16.41568,-0.51 24.61391,-0.76 2.78395,-0.08 5.58709,-0.12 8.37103,-0.23 10.82859,-0.41 21.63797,-0.87 32.46655,-1.25 6.20148,-0.22 12.40296,-0.35 18.62363,-0.48 8.27504,-0.18 16.56927,-0.32 24.8443,-0.51 9.63821,-0.21 19.27642,-0.51 28.93383,-0.67 12.36455,-0.21 24.7483,-0.34 37.11285,-0.5 13.61253,-0.18 27.20586,-0.37 40.81839,-0.55 0.40319,0 0.80638,0 1.19037,-0.04 10.099,-1.19 20.4092,-0.19 30.66179,-1 9.77261,-0.77 19.8908,-0.38 29.8554,-0.49 5.1071,-0.06 10.2334,-0.04 15.3405,-0.16 3.35993,-0.08 6.70066,-0.45 10.0798,-0.52 12.51814,-0.27 25.03629,0.54 37.59284,-0.2 8.14064,-0.48 16.41567,-0.4 24.61391,-0.6 8.83182,-0.21 17.68285,-0.46 26.51467,-0.67 8.27504,-0.2 16.55007,-0.4 24.8251,-0.57 10.69419,-0.22 21.36918,-0.41 32.06336,-0.62 9.23502,-0.18 18.47003,-0.35 27.72425,-0.54 7.10386,-0.14 14.16932,-0.25 21.27317,-0.59 14.9181,-0.71 29.9514,-0.89 44.9271,-1.23 5.2607,-0.12 10.55979,-0.06 15.82049,-0.1 3.59033,-0.03 7.18065,-0.06 10.77098,-0.15 4.12792,-0.1 8.25584,-0.3 12.38375,-0.39 4.22392,-0.09 8.48624,-0.04 12.71015,-0.17 9.52301,-0.3 19.00762,-0.75 28.53063,-1.02 12.19176,-0.34 24.42191,-0.46 36.61367,-0.85 9.04302,-0.29 18.02844,-1.01 27.05226,-1.26 11.73096,-0.32 23.48113,-0.36 35.21209,-0.53 3.18714,-0.05 6.39347,-0.07 9.58061,-0.21 9.10062,-0.39 18.20124,-0.89 27.30185,-1.23 7.62225,-0.28 15.2829,-0.39 22.92435,-0.6 8.75502,-0.24 17.52925,-0.51 26.28427,-0.75 7.37265,-0.2 14.74531,0.31 22.15636,-0.5 7.08466,-0.78 14.41891,0.05 21.69556,-0.67 7.14226,-0.71 14.59171,-0.57 21.90677,-0.88 5.91348,-0.25 11.78856,-0.06 17.75964,-0.54 9.25417,-0.74 18.75807,-0.68 28.14667,-0.89 12.1725,-0.27 24.3643,-0.47 36.556,-0.7 0.5568,-0.01 1.152,0 1.6704,-0.09 6.3935,-1.19 13.1709,-0.38 19.7948,-1.16 6.7391,-0.8 14.0157,-0.25 21.1004,-0.75 8.1406,-0.57 16.4541,-0.02 24.7099,-0.65 8.0062,-0.61 16.1853,0.08 24.3067,-0.62 6.6431,-0.57 13.5165,-0.35 20.2748,-0.59 6.2783,-0.22 12.5181,-0.63 18.7964,-0.87 8.2943,-0.32 16.6077,-0.59 24.9019,-0.84 2.4768,-0.07 4.9727,0.04 7.4303,-0.04 1.4975,-0.04 2.9567,-0.29 4.4351,-0.43 0.9984,-0.1 1.9775,-0.24 2.9951,-0.27 6.2975,-0.18 12.5758,-0.33 18.8733,-0.49 5.0878,-0.13 10.1757,-0.3 15.2636,-0.4 2.976,-0.06 6.1055,0.77 8.8319,-0.53 0.192,-0.09 0.6144,-0.05 0.9407,-0.04 8.5247,0.11 16.9917,0.13 25.4971,-0.55 6.6623,-0.53 13.5358,-0.32 20.2748,-0.61 7.2191,-0.31 14.4573,0.02 21.734,-0.72 7.9294,-0.8 16.1277,0.12 24.2875,-0.61 7.2959,-0.65 14.8989,0.17 22.406,-0.55 8.0062,-0.76 16.2044,0 24.3835,-0.71 8.8894,-0.78 18.0284,0.2 27.1674,-0.66 8.4479,-0.79 17.2797,0.24 25.9387,-0.56 3.7247,-0.35 7.6607,0 11.5006,-0.06 8.0638,-0.15 16.1277,-0.38 24.2107,-0.54 8.4094,-0.17 16.8189,-0.34 25.2475,-0.44 9.0814,-0.11 18.1628,0.11 27.2443,-0.55 8.5054,-0.62 17.126,0.27 25.785,-0.33 7.3151,-0.51 14.8605,-0.06 22.2908,-0.15 2.2079,-0.03 4.4159,-0.62 6.6239,-0.63 7.1998,-0.03 14.3997,0.08 21.5803,0.14 1.0368,0 2.0736,0 3.1104,-0.06 3.4751,-0.19 6.931,-0.54 10.4254,-0.58 5.4334,-0.06 10.8669,0.09 16.3196,0.13 0.864,0 1.9776,0.09 2.5728,-0.15 2.3999,-0.93 5.0303,-0.48 7.603,-0.5 1.5168,0 3.0336,0.1 4.5503,0.06 6.3359,-0.18 12.6718,0.28 19.0653,-0.37 4.7807,-0.49 9.8878,-0.21 14.8413,-0.05 7.219,0.23 14.2653,-0.43 21.4075,-0.68 7.8527,-0.27 15.6861,0.53 23.6156,-0.25 8.6398,-0.84 17.4716,0.23 26.3418,-0.61 8.2367,-0.79 16.8381,-0.04 25.3051,-0.64 6.3359,-0.45 12.9022,0 19.3532,-0.07 2.688,-0.03 5.3759,-0.48 8.0639,-0.52 7.027,-0.11 14.1309,0.19 21.0812,-0.23 4.0895,-0.25 8.179,-0.55 12.2493,-0.44 12.5758,0.33 25.0939,-0.59 37.6697,-0.45 5.0303,0.06 10.0606,-0.06 15.0909,-0.04 1.8239,0 2.4767,-0.28 2.0735,-1.25 -0.1344,-0.3 0.3648,-0.68 0.576,-1.02 z`,
482
+ flipped: true,
474
483
  },
475
484
  kCzjag: {
476
485
  viewBox: [1000, 99],