@cola1900/dsh-ppt 0.1.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.
Files changed (730) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/THIRD_PARTY_NOTICES.md +29 -0
  4. package/UPSTREAM.md +17 -0
  5. package/cordis.patch.yml +8 -0
  6. package/lib/bin.js +4070 -0
  7. package/lib/catalog.js +3 -0
  8. package/lib/client.js +916 -0
  9. package/lib/index.js +3688 -0
  10. package/lib/invariant.js +13 -0
  11. package/lib/pptd-2VqVzr_T.js +2173 -0
  12. package/lib/pptd.js +2 -0
  13. package/lib/preview-assets.js +59 -0
  14. package/lib/preview-manifest.js +2 -0
  15. package/lib/text-wrap.js +20 -0
  16. package/lib/types/bin.d.ts +12 -0
  17. package/lib/types/client/OfficePptHero.d.ts +42 -0
  18. package/lib/types/client/curated-previews.d.ts +3 -0
  19. package/lib/types/client/curated-previews.generated.d.ts +2 -0
  20. package/lib/types/client/index.d.ts +6 -0
  21. package/lib/types/client/locales.d.ts +15 -0
  22. package/lib/types/client/rpc.d.ts +23 -0
  23. package/lib/types/client/standard.d.ts +31 -0
  24. package/lib/types/client.d.ts +1 -0
  25. package/lib/types/data-series.d.ts +31 -0
  26. package/lib/types/index.d.ts +25 -0
  27. package/lib/types/invariant.d.ts +8 -0
  28. package/lib/types/layouts.d.ts +54 -0
  29. package/lib/types/planning.d.ts +35 -0
  30. package/lib/types/ppt-ppt-skill.d.ts +6 -0
  31. package/lib/types/ppt-reference-semantics.generated.d.ts +2 -0
  32. package/lib/types/ppt-rpc.d.ts +5 -0
  33. package/lib/types/ppt-service.d.ts +34 -0
  34. package/lib/types/ppt-store.d.ts +47 -0
  35. package/lib/types/ppt-template-catalog.generated.d.ts +2 -0
  36. package/lib/types/ppt-template-definitions.d.ts +1 -0
  37. package/lib/types/ppt-tools.d.ts +10 -0
  38. package/lib/types/pptd-colors.d.ts +15 -0
  39. package/lib/types/pptd-convert.d.ts +21 -0
  40. package/lib/types/pptd-preview.d.ts +6 -0
  41. package/lib/types/pptd-publish.d.ts +8 -0
  42. package/lib/types/pptd-repair.d.ts +18 -0
  43. package/lib/types/pptd-tools.d.ts +5 -0
  44. package/lib/types/pptd.d.ts +89 -0
  45. package/lib/types/protocol.d.ts +547 -0
  46. package/lib/types/template-reference.d.ts +28 -0
  47. package/lib/types/template-semantics.d.ts +12 -0
  48. package/lib/types/templates.d.ts +2 -0
  49. package/lib/types/text-layout.d.ts +37 -0
  50. package/lib/validation.js +84 -0
  51. package/licenses/composer-NOTICES.md +29 -0
  52. package/licenses/dsh-desktop-LICENSE +21 -0
  53. package/licenses/html-anything/LICENSE +202 -0
  54. package/licenses/html-anything/deck-blueprint.md +22 -0
  55. package/licenses/html-anything/deck-course-module.md +23 -0
  56. package/licenses/zara/LICENSE +21 -0
  57. package/licenses/zara/templates/blue-professional/design.md +701 -0
  58. package/licenses/zara/templates/blue-professional/template.html +1423 -0
  59. package/licenses/zara/templates/blue-professional/template.json +43 -0
  60. package/licenses/zara/templates/broadside/design.md +493 -0
  61. package/licenses/zara/templates/broadside/template.html +2144 -0
  62. package/licenses/zara/templates/broadside/template.json +48 -0
  63. package/licenses/zara/templates/cartesian/design.md +513 -0
  64. package/licenses/zara/templates/cartesian/template.html +1136 -0
  65. package/licenses/zara/templates/cartesian/template.json +46 -0
  66. package/licenses/zara/templates/editorial-forest/design.md +497 -0
  67. package/licenses/zara/templates/editorial-forest/template.html +843 -0
  68. package/licenses/zara/templates/editorial-forest/template.json +44 -0
  69. package/licenses/zara/templates/monochrome/design.md +482 -0
  70. package/licenses/zara/templates/monochrome/template.html +2596 -0
  71. package/licenses/zara/templates/monochrome/template.json +49 -0
  72. package/licenses/zara/templates/neo-grid-bold/design.md +534 -0
  73. package/licenses/zara/templates/neo-grid-bold/template.html +865 -0
  74. package/licenses/zara/templates/neo-grid-bold/template.json +46 -0
  75. package/licenses/zara/templates/playful/design.md +480 -0
  76. package/licenses/zara/templates/playful/template.html +1355 -0
  77. package/licenses/zara/templates/playful/template.json +42 -0
  78. package/licenses/zara/templates/sakura-chroma/design.md +632 -0
  79. package/licenses/zara/templates/sakura-chroma/template.html +1405 -0
  80. package/licenses/zara/templates/sakura-chroma/template.json +53 -0
  81. package/licenses/zara/templates/signal/design.md +517 -0
  82. package/licenses/zara/templates/signal/template.html +2558 -0
  83. package/licenses/zara/templates/signal/template.json +49 -0
  84. package/licenses/zara/templates/soft-editorial/design.md +615 -0
  85. package/licenses/zara/templates/soft-editorial/template.html +1183 -0
  86. package/licenses/zara/templates/soft-editorial/template.json +46 -0
  87. package/package.json +107 -0
  88. package/skills/dsh-ppt/SKILL.md +36 -0
  89. package/skills/dsh-ppt/references/academic/dsh-course-workshop/design.md +61 -0
  90. package/skills/dsh-ppt/references/academic/dsh-course-workshop/metadata.json +2886 -0
  91. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/01.jpg +0 -0
  92. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/02.jpg +0 -0
  93. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/03.jpg +0 -0
  94. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/04.jpg +0 -0
  95. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/05.jpg +0 -0
  96. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/06.jpg +0 -0
  97. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/07.jpg +0 -0
  98. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/08.jpg +0 -0
  99. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/09.jpg +0 -0
  100. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/10.jpg +0 -0
  101. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/11.jpg +0 -0
  102. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/12.jpg +0 -0
  103. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/deck.pptd +21 -0
  104. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/01.page +142 -0
  105. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/02.page +382 -0
  106. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/03.page +817 -0
  107. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/04.page +408 -0
  108. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/05.page +407 -0
  109. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/06.page +760 -0
  110. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/07.page +551 -0
  111. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/08.page +339 -0
  112. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/09.page +297 -0
  113. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/10.page +365 -0
  114. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/11.page +575 -0
  115. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/12.page +130 -0
  116. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/deck.pptd +21 -0
  117. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/01.page +142 -0
  118. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/02.page +382 -0
  119. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/03.page +817 -0
  120. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/04.page +408 -0
  121. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/05.page +407 -0
  122. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/06.page +760 -0
  123. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/07.page +551 -0
  124. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/08.page +339 -0
  125. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/09.page +297 -0
  126. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/10.page +365 -0
  127. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/11.page +575 -0
  128. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/12.page +130 -0
  129. package/skills/dsh-ppt/references/academic/dsh-monochrome/design.md +61 -0
  130. package/skills/dsh-ppt/references/academic/dsh-monochrome/metadata.json +2989 -0
  131. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/01.jpg +0 -0
  132. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/02.jpg +0 -0
  133. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/03.jpg +0 -0
  134. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/04.jpg +0 -0
  135. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/05.jpg +0 -0
  136. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/06.jpg +0 -0
  137. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/07.jpg +0 -0
  138. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/08.jpg +0 -0
  139. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/09.jpg +0 -0
  140. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/10.jpg +0 -0
  141. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/11.jpg +0 -0
  142. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/12.jpg +0 -0
  143. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/deck.pptd +21 -0
  144. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/01.page +86 -0
  145. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/02.page +382 -0
  146. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/03.page +479 -0
  147. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/04.page +551 -0
  148. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/05.page +817 -0
  149. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/06.page +760 -0
  150. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/07.page +576 -0
  151. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/08.page +339 -0
  152. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/09.page +295 -0
  153. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/10.page +407 -0
  154. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/11.page +575 -0
  155. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/12.page +86 -0
  156. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/deck.pptd +21 -0
  157. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/01.page +86 -0
  158. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/02.page +382 -0
  159. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/03.page +479 -0
  160. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/04.page +551 -0
  161. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/05.page +817 -0
  162. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/06.page +760 -0
  163. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/07.page +576 -0
  164. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/08.page +339 -0
  165. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/09.page +295 -0
  166. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/10.page +407 -0
  167. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/11.page +575 -0
  168. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/12.page +86 -0
  169. package/skills/dsh-ppt/references/business/dsh-blue-professional/design.md +53 -0
  170. package/skills/dsh-ppt/references/business/dsh-blue-professional/metadata.json +3152 -0
  171. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/01.jpg +0 -0
  172. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/02.jpg +0 -0
  173. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/03.jpg +0 -0
  174. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/04.jpg +0 -0
  175. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/05.jpg +0 -0
  176. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/06.jpg +0 -0
  177. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/07.jpg +0 -0
  178. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/08.jpg +0 -0
  179. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/09.jpg +0 -0
  180. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/10.jpg +0 -0
  181. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/11.jpg +0 -0
  182. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/12.jpg +0 -0
  183. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/deck.pptd +21 -0
  184. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/01.page +100 -0
  185. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/02.page +310 -0
  186. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/03.page +381 -0
  187. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/04.page +853 -0
  188. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/05.page +436 -0
  189. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/06.page +732 -0
  190. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/07.page +574 -0
  191. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/08.page +767 -0
  192. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/09.page +282 -0
  193. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/10.page +350 -0
  194. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/11.page +462 -0
  195. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/12.page +86 -0
  196. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/deck.pptd +21 -0
  197. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/01.page +100 -0
  198. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/02.page +310 -0
  199. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/03.page +381 -0
  200. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/04.page +853 -0
  201. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/05.page +436 -0
  202. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/06.page +732 -0
  203. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/07.page +574 -0
  204. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/08.page +769 -0
  205. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/09.page +282 -0
  206. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/10.page +350 -0
  207. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/11.page +462 -0
  208. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/12.page +86 -0
  209. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/design.md +61 -0
  210. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/metadata.json +3883 -0
  211. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/01.jpg +0 -0
  212. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/02.jpg +0 -0
  213. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/03.jpg +0 -0
  214. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/04.jpg +0 -0
  215. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/05.jpg +0 -0
  216. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/06.jpg +0 -0
  217. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/07.jpg +0 -0
  218. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/08.jpg +0 -0
  219. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/09.jpg +0 -0
  220. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/10.jpg +0 -0
  221. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/11.jpg +0 -0
  222. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/12.jpg +0 -0
  223. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/deck.pptd +21 -0
  224. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/01.page +355 -0
  225. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/02.page +452 -0
  226. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/03.page +561 -0
  227. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/04.page +830 -0
  228. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/05.page +887 -0
  229. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/06.page +646 -0
  230. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/07.page +881 -0
  231. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/08.page +788 -0
  232. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/09.page +365 -0
  233. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/10.page +617 -0
  234. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/11.page +645 -0
  235. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/12.page +86 -0
  236. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/deck.pptd +21 -0
  237. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/01.page +354 -0
  238. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/02.page +452 -0
  239. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/03.page +561 -0
  240. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/04.page +830 -0
  241. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/05.page +887 -0
  242. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/06.page +646 -0
  243. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/07.page +881 -0
  244. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/08.page +788 -0
  245. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/09.page +365 -0
  246. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/10.page +617 -0
  247. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/11.page +645 -0
  248. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/12.page +86 -0
  249. package/skills/dsh-ppt/references/composition.md +19 -0
  250. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/design.md +124 -0
  251. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/metadata.json +1930 -0
  252. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/01.jpg +0 -0
  253. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/02.jpg +0 -0
  254. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/03.jpg +0 -0
  255. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/04.jpg +0 -0
  256. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/05.jpg +0 -0
  257. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/06.jpg +0 -0
  258. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/07.jpg +0 -0
  259. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/08.jpg +0 -0
  260. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/09.jpg +0 -0
  261. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/10.jpg +0 -0
  262. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/11.jpg +0 -0
  263. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/12.jpg +0 -0
  264. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/deck.pptd +91 -0
  265. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/01.page +259 -0
  266. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/02.page +325 -0
  267. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/03.page +511 -0
  268. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/04.page +398 -0
  269. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/05.page +439 -0
  270. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/06.page +493 -0
  271. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/07.page +194 -0
  272. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/08.page +422 -0
  273. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/09.page +458 -0
  274. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/10.page +746 -0
  275. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/11.page +604 -0
  276. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/12.page +343 -0
  277. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/deck.pptd +91 -0
  278. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/01.page +259 -0
  279. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/02.page +325 -0
  280. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/03.page +511 -0
  281. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/04.page +398 -0
  282. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/05.page +439 -0
  283. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/06.page +493 -0
  284. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/07.page +194 -0
  285. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/08.page +417 -0
  286. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/09.page +458 -0
  287. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/10.page +746 -0
  288. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/11.page +604 -0
  289. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/12.page +343 -0
  290. package/skills/dsh-ppt/references/consulting/dsh-cartesian/design.md +61 -0
  291. package/skills/dsh-ppt/references/consulting/dsh-cartesian/metadata.json +3196 -0
  292. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/01.jpg +0 -0
  293. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/02.jpg +0 -0
  294. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/03.jpg +0 -0
  295. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/04.jpg +0 -0
  296. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/05.jpg +0 -0
  297. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/06.jpg +0 -0
  298. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/07.jpg +0 -0
  299. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/08.jpg +0 -0
  300. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/09.jpg +0 -0
  301. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/10.jpg +0 -0
  302. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/11.jpg +0 -0
  303. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/12.jpg +0 -0
  304. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/deck.pptd +21 -0
  305. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/01.page +98 -0
  306. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/02.page +382 -0
  307. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/03.page +817 -0
  308. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/04.page +479 -0
  309. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/05.page +576 -0
  310. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/06.page +760 -0
  311. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/07.page +339 -0
  312. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/08.page +718 -0
  313. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/09.page +295 -0
  314. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/10.page +547 -0
  315. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/11.page +575 -0
  316. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/12.page +86 -0
  317. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/deck.pptd +21 -0
  318. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/01.page +98 -0
  319. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/02.page +382 -0
  320. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/03.page +817 -0
  321. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/04.page +479 -0
  322. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/05.page +576 -0
  323. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/06.page +760 -0
  324. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/07.page +339 -0
  325. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/08.page +718 -0
  326. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/09.page +295 -0
  327. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/10.page +547 -0
  328. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/11.page +575 -0
  329. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/12.page +86 -0
  330. package/skills/dsh-ppt/references/consulting/dsh-signal/design.md +61 -0
  331. package/skills/dsh-ppt/references/consulting/dsh-signal/metadata.json +3172 -0
  332. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/01.jpg +0 -0
  333. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/02.jpg +0 -0
  334. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/03.jpg +0 -0
  335. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/04.jpg +0 -0
  336. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/05.jpg +0 -0
  337. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/06.jpg +0 -0
  338. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/07.jpg +0 -0
  339. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/08.jpg +0 -0
  340. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/09.jpg +0 -0
  341. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/10.jpg +0 -0
  342. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/11.jpg +0 -0
  343. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/12.jpg +0 -0
  344. package/skills/dsh-ppt/references/consulting/dsh-signal/source/deck.pptd +21 -0
  345. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/01.page +100 -0
  346. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/02.page +382 -0
  347. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/03.page +817 -0
  348. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/04.page +760 -0
  349. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/05.page +576 -0
  350. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/06.page +718 -0
  351. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/07.page +295 -0
  352. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/08.page +551 -0
  353. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/09.page +339 -0
  354. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/10.page +547 -0
  355. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/11.page +575 -0
  356. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/12.page +86 -0
  357. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/deck.pptd +21 -0
  358. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/01.page +100 -0
  359. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/02.page +382 -0
  360. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/03.page +817 -0
  361. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/04.page +760 -0
  362. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/05.page +576 -0
  363. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/06.page +718 -0
  364. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/07.page +295 -0
  365. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/08.page +551 -0
  366. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/09.page +339 -0
  367. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/10.page +547 -0
  368. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/11.page +575 -0
  369. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/12.page +86 -0
  370. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/design.md +61 -0
  371. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/metadata.json +3091 -0
  372. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/01.jpg +0 -0
  373. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/02.jpg +0 -0
  374. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/03.jpg +0 -0
  375. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/04.jpg +0 -0
  376. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/05.jpg +0 -0
  377. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/06.jpg +0 -0
  378. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/07.jpg +0 -0
  379. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/08.jpg +0 -0
  380. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/09.jpg +0 -0
  381. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/10.jpg +0 -0
  382. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/11.jpg +0 -0
  383. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/12.jpg +0 -0
  384. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/deck.pptd +21 -0
  385. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/01.page +124 -0
  386. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/02.page +382 -0
  387. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/03.page +479 -0
  388. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/04.page +365 -0
  389. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/05.page +817 -0
  390. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/06.page +760 -0
  391. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/07.page +576 -0
  392. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/08.page +295 -0
  393. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/09.page +339 -0
  394. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/10.page +547 -0
  395. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/11.page +575 -0
  396. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/12.page +135 -0
  397. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/deck.pptd +21 -0
  398. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/01.page +124 -0
  399. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/02.page +384 -0
  400. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/03.page +479 -0
  401. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/04.page +365 -0
  402. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/05.page +817 -0
  403. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/06.page +760 -0
  404. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/07.page +576 -0
  405. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/08.page +295 -0
  406. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/09.page +341 -0
  407. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/10.page +547 -0
  408. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/11.page +575 -0
  409. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/12.page +135 -0
  410. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/design.md +61 -0
  411. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/metadata.json +3119 -0
  412. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/01.jpg +0 -0
  413. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/02.jpg +0 -0
  414. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/03.jpg +0 -0
  415. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/04.jpg +0 -0
  416. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/05.jpg +0 -0
  417. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/06.jpg +0 -0
  418. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/07.jpg +0 -0
  419. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/08.jpg +0 -0
  420. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/09.jpg +0 -0
  421. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/10.jpg +0 -0
  422. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/11.jpg +0 -0
  423. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/12.jpg +0 -0
  424. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/deck.pptd +21 -0
  425. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/01.page +117 -0
  426. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/02.page +382 -0
  427. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/03.page +479 -0
  428. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/04.page +817 -0
  429. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/05.page +760 -0
  430. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/06.page +295 -0
  431. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/07.page +365 -0
  432. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/08.page +576 -0
  433. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/09.page +408 -0
  434. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/10.page +547 -0
  435. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/11.page +575 -0
  436. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/12.page +86 -0
  437. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/deck.pptd +21 -0
  438. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/01.page +117 -0
  439. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/02.page +384 -0
  440. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/03.page +479 -0
  441. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/04.page +817 -0
  442. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/05.page +760 -0
  443. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/06.page +295 -0
  444. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/07.page +365 -0
  445. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/08.page +576 -0
  446. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/09.page +408 -0
  447. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/10.page +547 -0
  448. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/11.page +575 -0
  449. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/12.page +86 -0
  450. package/skills/dsh-ppt/references/pptd.md +55 -0
  451. package/skills/dsh-ppt/references/promotion/dsh-broadside/design.md +53 -0
  452. package/skills/dsh-ppt/references/promotion/dsh-broadside/metadata.json +2329 -0
  453. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/01.jpg +0 -0
  454. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/02.jpg +0 -0
  455. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/03.jpg +0 -0
  456. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/04.jpg +0 -0
  457. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/05.jpg +0 -0
  458. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/06.jpg +0 -0
  459. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/07.jpg +0 -0
  460. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/08.jpg +0 -0
  461. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/09.jpg +0 -0
  462. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/10.jpg +0 -0
  463. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/11.jpg +0 -0
  464. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/12.jpg +0 -0
  465. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/deck.pptd +21 -0
  466. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/01.page +72 -0
  467. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/02.page +156 -0
  468. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/03.page +350 -0
  469. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/04.page +210 -0
  470. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/05.page +436 -0
  471. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/06.page +420 -0
  472. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/07.page +480 -0
  473. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/08.page +294 -0
  474. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/09.page +210 -0
  475. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/10.page +392 -0
  476. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/11.page +560 -0
  477. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/12.page +58 -0
  478. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/deck.pptd +21 -0
  479. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/01.page +72 -0
  480. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/02.page +156 -0
  481. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/03.page +350 -0
  482. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/04.page +210 -0
  483. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/05.page +436 -0
  484. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/06.page +420 -0
  485. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/07.page +480 -0
  486. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/08.page +294 -0
  487. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/09.page +210 -0
  488. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/10.page +392 -0
  489. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/11.page +560 -0
  490. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/12.page +58 -0
  491. package/skills/dsh-ppt/references/promotion/dsh-playful/design.md +61 -0
  492. package/skills/dsh-ppt/references/promotion/dsh-playful/metadata.json +3070 -0
  493. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/01.jpg +0 -0
  494. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/02.jpg +0 -0
  495. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/03.jpg +0 -0
  496. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/04.jpg +0 -0
  497. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/05.jpg +0 -0
  498. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/06.jpg +0 -0
  499. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/07.jpg +0 -0
  500. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/08.jpg +0 -0
  501. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/09.jpg +0 -0
  502. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/10.jpg +0 -0
  503. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/11.jpg +0 -0
  504. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/12.jpg +0 -0
  505. package/skills/dsh-ppt/references/promotion/dsh-playful/source/deck.pptd +21 -0
  506. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/01.page +101 -0
  507. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/02.page +410 -0
  508. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/03.page +436 -0
  509. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/04.page +845 -0
  510. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/05.page +579 -0
  511. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/06.page +367 -0
  512. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/07.page +519 -0
  513. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/08.page +323 -0
  514. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/09.page +604 -0
  515. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/10.page +575 -0
  516. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/11.page +603 -0
  517. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/12.page +86 -0
  518. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/deck.pptd +21 -0
  519. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/01.page +100 -0
  520. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/02.page +410 -0
  521. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/03.page +436 -0
  522. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/04.page +845 -0
  523. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/05.page +579 -0
  524. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/06.page +367 -0
  525. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/07.page +519 -0
  526. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/08.page +323 -0
  527. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/09.page +604 -0
  528. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/10.page +575 -0
  529. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/11.page +603 -0
  530. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/12.page +86 -0
  531. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/design.md +61 -0
  532. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/metadata.json +3203 -0
  533. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/01.jpg +0 -0
  534. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/02.jpg +0 -0
  535. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/03.jpg +0 -0
  536. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/04.jpg +0 -0
  537. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/05.jpg +0 -0
  538. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/06.jpg +0 -0
  539. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/07.jpg +0 -0
  540. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/08.jpg +0 -0
  541. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/09.jpg +0 -0
  542. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/10.jpg +0 -0
  543. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/11.jpg +0 -0
  544. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/12.jpg +0 -0
  545. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/deck.pptd +21 -0
  546. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/01.page +173 -0
  547. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/02.page +424 -0
  548. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/03.page +450 -0
  549. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/04.page +593 -0
  550. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/05.page +521 -0
  551. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/06.page +533 -0
  552. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/07.page +618 -0
  553. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/08.page +381 -0
  554. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/09.page +337 -0
  555. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/10.page +407 -0
  556. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/11.page +617 -0
  557. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/12.page +145 -0
  558. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/deck.pptd +21 -0
  559. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/01.page +173 -0
  560. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/02.page +424 -0
  561. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/03.page +450 -0
  562. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/04.page +593 -0
  563. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/05.page +521 -0
  564. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/06.page +533 -0
  565. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/07.page +618 -0
  566. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/08.page +381 -0
  567. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/09.page +337 -0
  568. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/10.page +407 -0
  569. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/11.page +617 -0
  570. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/12.page +145 -0
  571. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/design.md +122 -0
  572. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/metadata.json +1659 -0
  573. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/01.jpg +0 -0
  574. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/02.jpg +0 -0
  575. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/03.jpg +0 -0
  576. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/04.jpg +0 -0
  577. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/05.jpg +0 -0
  578. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/06.jpg +0 -0
  579. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/07.jpg +0 -0
  580. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/08.jpg +0 -0
  581. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/09.jpg +0 -0
  582. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/10.jpg +0 -0
  583. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/11.jpg +0 -0
  584. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/12.jpg +0 -0
  585. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/deck.pptd +105 -0
  586. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/01.page +499 -0
  587. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/02.page +499 -0
  588. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/03.page +577 -0
  589. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/04.page +408 -0
  590. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/05.page +660 -0
  591. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/06.page +641 -0
  592. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/07.page +415 -0
  593. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/08.page +606 -0
  594. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/09.page +567 -0
  595. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/10.page +595 -0
  596. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/11.page +555 -0
  597. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/12.page +895 -0
  598. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/deck.pptd +105 -0
  599. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/01.page +499 -0
  600. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/02.page +499 -0
  601. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/03.page +577 -0
  602. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/04.page +408 -0
  603. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/05.page +660 -0
  604. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/06.page +641 -0
  605. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/07.page +415 -0
  606. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/08.page +606 -0
  607. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/09.page +567 -0
  608. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/10.page +595 -0
  609. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/11.page +555 -0
  610. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/12.page +895 -0
  611. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/design.md +111 -0
  612. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/metadata.json +1712 -0
  613. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/01.jpg +0 -0
  614. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/02.jpg +0 -0
  615. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/03.jpg +0 -0
  616. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/04.jpg +0 -0
  617. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/05.jpg +0 -0
  618. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/06.jpg +0 -0
  619. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/07.jpg +0 -0
  620. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/08.jpg +0 -0
  621. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/09.jpg +0 -0
  622. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/10.jpg +0 -0
  623. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/11.jpg +0 -0
  624. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/12.jpg +0 -0
  625. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/deck.pptd +93 -0
  626. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/01.page +395 -0
  627. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/02.page +574 -0
  628. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/03.page +307 -0
  629. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/04.page +359 -0
  630. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/05.page +443 -0
  631. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/06.page +437 -0
  632. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/07.page +181 -0
  633. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/08.page +557 -0
  634. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/09.page +337 -0
  635. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/10.page +732 -0
  636. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/11.page +589 -0
  637. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/12.page +385 -0
  638. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/deck.pptd +93 -0
  639. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/01.page +395 -0
  640. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/02.page +574 -0
  641. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/03.page +307 -0
  642. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/04.page +359 -0
  643. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/05.page +443 -0
  644. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/06.page +437 -0
  645. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/07.page +181 -0
  646. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/08.page +557 -0
  647. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/09.page +337 -0
  648. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/10.page +732 -0
  649. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/11.page +589 -0
  650. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/12.page +385 -0
  651. package/skills/dsh-ppt/references/work/dsh-editorial-forest/design.md +61 -0
  652. package/skills/dsh-ppt/references/work/dsh-editorial-forest/metadata.json +3338 -0
  653. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/01.jpg +0 -0
  654. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/02.jpg +0 -0
  655. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/03.jpg +0 -0
  656. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/04.jpg +0 -0
  657. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/05.jpg +0 -0
  658. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/06.jpg +0 -0
  659. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/07.jpg +0 -0
  660. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/08.jpg +0 -0
  661. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/09.jpg +0 -0
  662. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/10.jpg +0 -0
  663. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/11.jpg +0 -0
  664. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/12.jpg +0 -0
  665. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/deck.pptd +21 -0
  666. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/01.page +87 -0
  667. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/02.page +382 -0
  668. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/03.page +760 -0
  669. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/04.page +718 -0
  670. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/05.page +479 -0
  671. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/06.page +576 -0
  672. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/07.page +551 -0
  673. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/08.page +295 -0
  674. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/09.page +811 -0
  675. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/10.page +547 -0
  676. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/11.page +575 -0
  677. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/12.page +86 -0
  678. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/deck.pptd +21 -0
  679. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/01.page +87 -0
  680. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/02.page +382 -0
  681. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/03.page +760 -0
  682. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/04.page +718 -0
  683. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/05.page +479 -0
  684. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/06.page +576 -0
  685. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/07.page +551 -0
  686. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/08.page +295 -0
  687. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/09.page +811 -0
  688. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/10.page +547 -0
  689. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/11.page +575 -0
  690. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/12.page +86 -0
  691. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/design.md +61 -0
  692. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/metadata.json +3147 -0
  693. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/01.jpg +0 -0
  694. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/02.jpg +0 -0
  695. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/03.jpg +0 -0
  696. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/04.jpg +0 -0
  697. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/05.jpg +0 -0
  698. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/06.jpg +0 -0
  699. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/07.jpg +0 -0
  700. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/08.jpg +0 -0
  701. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/09.jpg +0 -0
  702. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/10.jpg +0 -0
  703. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/11.jpg +0 -0
  704. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/12.jpg +0 -0
  705. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/deck.pptd +21 -0
  706. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/01.page +390 -0
  707. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/02.page +1082 -0
  708. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/03.page +1511 -0
  709. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/04.page +1227 -0
  710. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/05.page +1517 -0
  711. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/06.page +1460 -0
  712. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/07.page +1276 -0
  713. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/08.page +1039 -0
  714. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/09.page +995 -0
  715. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/10.page +1275 -0
  716. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/11.page +1275 -0
  717. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/12.page +125 -0
  718. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/deck.pptd +21 -0
  719. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/01.page +390 -0
  720. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/02.page +1084 -0
  721. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/03.page +1511 -0
  722. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/04.page +1227 -0
  723. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/05.page +1517 -0
  724. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/06.page +1460 -0
  725. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/07.page +1276 -0
  726. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/08.page +1041 -0
  727. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/09.page +995 -0
  728. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/10.page +1275 -0
  729. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/11.page +1275 -0
  730. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/12.page +125 -0
@@ -0,0 +1,3070 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-playful",
4
+ "category": "promotion",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-playful",
7
+ "name": "Playful",
8
+ "localizedNames": {
9
+ "en": "Playful",
10
+ "zh": "杏色创意"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "杏色创意 · Playful",
14
+ "previewTitle": "Playful",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Arial Black",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Arial Black",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "PingFang SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Arial",
30
+ "body": "Arial"
31
+ },
32
+ "zh": {
33
+ "macOS": {
34
+ "serif": "Songti SC",
35
+ "sans": "PingFang SC"
36
+ },
37
+ "Windows": {
38
+ "serif": "SimSun",
39
+ "sans": "Microsoft YaHei"
40
+ },
41
+ "Linux": {
42
+ "serif": "Noto Serif CJK SC",
43
+ "sans": "Noto Sans CJK SC"
44
+ }
45
+ }
46
+ },
47
+ "upstreamTitle": "Syne"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "F0C8A0",
52
+ "text": "1A1A1A",
53
+ "accent": "1A1A1A",
54
+ "surface": "E8B88E",
55
+ "secondary": "F7DEC6",
56
+ "muted": "F7DEC6"
57
+ },
58
+ "referenceDirectory": "promotion/dsh-playful",
59
+ "referenceWidth": 1280,
60
+ "referenceHeight": 720,
61
+ "referencePageCount": 12,
62
+ "representativeSlides": [
63
+ 1,
64
+ 2,
65
+ 3,
66
+ 4,
67
+ 5,
68
+ 6,
69
+ 7,
70
+ 8,
71
+ 9,
72
+ 10,
73
+ 11,
74
+ 12
75
+ ],
76
+ "previewSlides": [
77
+ 4,
78
+ 1,
79
+ 2,
80
+ 3,
81
+ 5,
82
+ 6,
83
+ 7,
84
+ 8,
85
+ 9,
86
+ 10,
87
+ 11,
88
+ 12
89
+ ],
90
+ "designSha256": "68e9bd4ba421fd0e357fde6dac52ffb419a94ed2df5ffe559ad427a188c2d78d"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "F0C8A0",
95
+ "text": "1A1A1A",
96
+ "accent": "1A1A1A",
97
+ "surface": "E8B88E",
98
+ "secondary": "F7DEC6",
99
+ "muted": "F7DEC6"
100
+ },
101
+ "source": {
102
+ "fileName": "playful-reference.jpg",
103
+ "sha256": "68e9bd4ba421fd0e357fde6dac52ffb419a94ed2df5ffe559ad427a188c2d78d",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 17,
106
+ "averageCharacters": 279,
107
+ "visualGrammar": "playful",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Playful / 杏色创意\n\nAdapted from Zara Zhang's Playful, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial Black; English body: Arial. These portable Office substitutions replace the upstream display face Syne. Chinese display: PingFang SC; body: PingFang SC. On Windows use Microsoft YaHei / Microsoft YaHei; on Linux use Noto Sans CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n \"A warm, hand-crafted editorial system built on a peach-clay canvas with charcoal ink as the only \\\"color.\\\" Display type runs in Syne (weight 700–800, tight negative tracking); body type runs in Space Grotesk at weight 400–500. The aesthetic borrows from independent studio decks, risograph zines, and sketchbook spreads: organic blob frames, scribbled SVG doodles, slightly rotated cards, and double-stroke offset borders give every slide a hand-touched, unpolished warmth. The effect is creative-studio editorial, not corporate pitch — confident but human, structured but loose.\"\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Make the idea easier to try — Asymmetric argument with three supporting evidence rows\n3. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\n4. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n5. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n6. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n7. Follow one cohort through the funnel — A single cohort with explicit conversion counts and an overall rate\n8. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n9. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n",
110
+ "layoutPatterns": [
111
+ {
112
+ "family": "cover",
113
+ "slideCount": 1,
114
+ "sampleSlideNumbers": [
115
+ 1
116
+ ],
117
+ "titlePosition": "left",
118
+ "bodyColumns": 1,
119
+ "density": "medium",
120
+ "averageTextFrames": 4,
121
+ "averageMediaFrames": 0
122
+ },
123
+ {
124
+ "family": "insights",
125
+ "slideCount": 1,
126
+ "sampleSlideNumbers": [
127
+ 2
128
+ ],
129
+ "titlePosition": "left",
130
+ "bodyColumns": 2,
131
+ "density": "medium",
132
+ "averageTextFrames": 20,
133
+ "averageMediaFrames": 0
134
+ },
135
+ {
136
+ "family": "grid",
137
+ "slideCount": 1,
138
+ "sampleSlideNumbers": [
139
+ 3
140
+ ],
141
+ "titlePosition": "left",
142
+ "bodyColumns": 3,
143
+ "density": "high",
144
+ "averageTextFrames": 13,
145
+ "averageMediaFrames": 0
146
+ },
147
+ {
148
+ "family": "process",
149
+ "slideCount": 1,
150
+ "sampleSlideNumbers": [
151
+ 4
152
+ ],
153
+ "titlePosition": "left",
154
+ "bodyColumns": 3,
155
+ "density": "high",
156
+ "averageTextFrames": 17,
157
+ "averageMediaFrames": 0
158
+ },
159
+ {
160
+ "family": "process",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 2,
167
+ "density": "high",
168
+ "averageTextFrames": 21,
169
+ "averageMediaFrames": 0
170
+ },
171
+ {
172
+ "family": "comparison",
173
+ "slideCount": 1,
174
+ "sampleSlideNumbers": [
175
+ 6
176
+ ],
177
+ "titlePosition": "left",
178
+ "bodyColumns": 2,
179
+ "density": "high",
180
+ "averageTextFrames": 16,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "data",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 2,
191
+ "density": "high",
192
+ "averageTextFrames": 18,
193
+ "averageMediaFrames": 0
194
+ },
195
+ {
196
+ "family": "comparison",
197
+ "slideCount": 1,
198
+ "sampleSlideNumbers": [
199
+ 8
200
+ ],
201
+ "titlePosition": "left",
202
+ "bodyColumns": 2,
203
+ "density": "high",
204
+ "averageTextFrames": 13,
205
+ "averageMediaFrames": 0
206
+ },
207
+ {
208
+ "family": "comparison",
209
+ "slideCount": 1,
210
+ "sampleSlideNumbers": [
211
+ 9
212
+ ],
213
+ "titlePosition": "left",
214
+ "bodyColumns": 2,
215
+ "density": "high",
216
+ "averageTextFrames": 26,
217
+ "averageMediaFrames": 0
218
+ },
219
+ {
220
+ "family": "table",
221
+ "slideCount": 1,
222
+ "sampleSlideNumbers": [
223
+ 10
224
+ ],
225
+ "titlePosition": "left",
226
+ "bodyColumns": 2,
227
+ "density": "high",
228
+ "averageTextFrames": 30,
229
+ "averageMediaFrames": 0
230
+ },
231
+ {
232
+ "family": "process",
233
+ "slideCount": 1,
234
+ "sampleSlideNumbers": [
235
+ 11
236
+ ],
237
+ "titlePosition": "left",
238
+ "bodyColumns": 2,
239
+ "density": "high",
240
+ "averageTextFrames": 19,
241
+ "averageMediaFrames": 0
242
+ },
243
+ {
244
+ "family": "closing",
245
+ "slideCount": 1,
246
+ "sampleSlideNumbers": [
247
+ 12
248
+ ],
249
+ "titlePosition": "left",
250
+ "bodyColumns": 1,
251
+ "density": "medium",
252
+ "averageTextFrames": 4,
253
+ "averageMediaFrames": 0
254
+ }
255
+ ],
256
+ "pageReferences": [
257
+ {
258
+ "slideNumber": 1,
259
+ "sourceTitle": "Cover",
260
+ "family": "cover",
261
+ "titlePosition": "left",
262
+ "bodyColumns": 1,
263
+ "density": "medium",
264
+ "features": [
265
+ "cover"
266
+ ],
267
+ "recommendedRoles": [
268
+ "cover"
269
+ ],
270
+ "structureSummary": "Cover",
271
+ "zones": [
272
+ {
273
+ "kind": "shape",
274
+ "x": 1010.6666666666666,
275
+ "y": 88,
276
+ "width": 153.33333333333334,
277
+ "height": 188,
278
+ "shape": "ellipse",
279
+ "fill": "F0C8A0"
280
+ },
281
+ {
282
+ "kind": "shape",
283
+ "x": 1042.6666666666667,
284
+ "y": 124,
285
+ "width": 93.33333333333333,
286
+ "height": 124,
287
+ "shape": "ellipse",
288
+ "fill": "1A1A1A"
289
+ },
290
+ {
291
+ "kind": "title",
292
+ "x": 64,
293
+ "y": 200,
294
+ "width": 954.6666666666666,
295
+ "height": 304,
296
+ "textRole": "title",
297
+ "fontSize": 61,
298
+ "textCapacity": 33
299
+ },
300
+ {
301
+ "kind": "text",
302
+ "x": 64,
303
+ "y": 560,
304
+ "width": 973.3333333333334,
305
+ "height": 60,
306
+ "textRole": "body",
307
+ "fontSize": 22,
308
+ "textCapacity": 33
309
+ },
310
+ {
311
+ "kind": "text",
312
+ "x": 64,
313
+ "y": 674.6666666666666,
314
+ "width": 1013.3333333333334,
315
+ "height": 21.333333333333332,
316
+ "textRole": "body",
317
+ "fontSize": 9,
318
+ "textCapacity": 84
319
+ },
320
+ {
321
+ "kind": "text",
322
+ "x": 1160,
323
+ "y": 670.6666666666666,
324
+ "width": 53.333333333333336,
325
+ "height": 26.666666666666668,
326
+ "textRole": "body",
327
+ "fontSize": 11,
328
+ "textCapacity": 3
329
+ }
330
+ ],
331
+ "jsxReference": ""
332
+ },
333
+ {
334
+ "slideNumber": 2,
335
+ "sourceTitle": "Make the idea easier to try",
336
+ "family": "insights",
337
+ "titlePosition": "left",
338
+ "bodyColumns": 2,
339
+ "density": "medium",
340
+ "features": [
341
+ "thesis"
342
+ ],
343
+ "recommendedRoles": [
344
+ "insights"
345
+ ],
346
+ "structureSummary": "Asymmetric argument with three supporting evidence rows",
347
+ "zones": [
348
+ {
349
+ "kind": "shape",
350
+ "x": 1157.3333333333333,
351
+ "y": 30.666666666666668,
352
+ "width": 37.333333333333336,
353
+ "height": 37.333333333333336,
354
+ "shape": "ellipse",
355
+ "fill": "1A1A1A"
356
+ },
357
+ {
358
+ "kind": "shape",
359
+ "x": 1210.6666666666667,
360
+ "y": 38.666666666666664,
361
+ "width": 21.333333333333332,
362
+ "height": 21.333333333333332,
363
+ "shape": "ellipse",
364
+ "fill": "1A1A1A"
365
+ },
366
+ {
367
+ "kind": "text",
368
+ "x": 64,
369
+ "y": 36,
370
+ "width": 886.6666666666666,
371
+ "height": 26.666666666666668,
372
+ "textRole": "body",
373
+ "fontSize": 10,
374
+ "textCapacity": 66
375
+ },
376
+ {
377
+ "kind": "title",
378
+ "x": 64,
379
+ "y": 101.33333333333333,
380
+ "width": 1152,
381
+ "height": 85.33333333333333,
382
+ "textRole": "title",
383
+ "fontSize": 32,
384
+ "textCapacity": 27
385
+ },
386
+ {
387
+ "kind": "text",
388
+ "x": 1005.3333333333334,
389
+ "y": 61.333333333333336,
390
+ "width": 210.66666666666666,
391
+ "height": 17.333333333333332,
392
+ "textRole": "body",
393
+ "fontSize": 9,
394
+ "textCapacity": 17
395
+ },
396
+ {
397
+ "kind": "text",
398
+ "x": 64,
399
+ "y": 218.66666666666666,
400
+ "width": 464,
401
+ "height": 33.333333333333336,
402
+ "textRole": "body",
403
+ "fontSize": 13,
404
+ "textCapacity": 26
405
+ },
406
+ {
407
+ "kind": "title",
408
+ "x": 64,
409
+ "y": 276,
410
+ "width": 442.6666666666667,
411
+ "height": 236,
412
+ "textRole": "title",
413
+ "fontSize": 30,
414
+ "textCapacity": 55
415
+ },
416
+ {
417
+ "kind": "text",
418
+ "x": 64,
419
+ "y": 560,
420
+ "width": 440,
421
+ "height": 57.333333333333336,
422
+ "textRole": "body",
423
+ "fontSize": 17,
424
+ "textCapacity": 38
425
+ },
426
+ {
427
+ "kind": "text",
428
+ "x": 588,
429
+ "y": 222.66666666666666,
430
+ "width": 66.66666666666667,
431
+ "height": 50.666666666666664,
432
+ "textRole": "body",
433
+ "fontSize": 26,
434
+ "textCapacity": 1
435
+ },
436
+ {
437
+ "kind": "text",
438
+ "x": 685.3333333333334,
439
+ "y": 226.66666666666666,
440
+ "width": 332,
441
+ "height": 42.666666666666664,
442
+ "textRole": "body",
443
+ "fontSize": 23,
444
+ "textCapacity": 10
445
+ },
446
+ {
447
+ "kind": "text",
448
+ "x": 1040,
449
+ "y": 234.66666666666666,
450
+ "width": 176,
451
+ "height": 32,
452
+ "textRole": "body",
453
+ "fontSize": 10,
454
+ "textCapacity": 26
455
+ },
456
+ {
457
+ "kind": "text",
458
+ "x": 685.3333333333334,
459
+ "y": 281.3333333333333,
460
+ "width": 530.6666666666666,
461
+ "height": 62.666666666666664,
462
+ "textRole": "body",
463
+ "fontSize": 18,
464
+ "textCapacity": 44
465
+ },
466
+ {
467
+ "kind": "text",
468
+ "x": 588,
469
+ "y": 348,
470
+ "width": 66.66666666666667,
471
+ "height": 50.666666666666664,
472
+ "textRole": "body",
473
+ "fontSize": 26,
474
+ "textCapacity": 1
475
+ },
476
+ {
477
+ "kind": "text",
478
+ "x": 685.3333333333334,
479
+ "y": 352,
480
+ "width": 332,
481
+ "height": 42.666666666666664,
482
+ "textRole": "body",
483
+ "fontSize": 23,
484
+ "textCapacity": 10
485
+ },
486
+ {
487
+ "kind": "text",
488
+ "x": 1040,
489
+ "y": 360,
490
+ "width": 176,
491
+ "height": 32,
492
+ "textRole": "body",
493
+ "fontSize": 10,
494
+ "textCapacity": 26
495
+ },
496
+ {
497
+ "kind": "text",
498
+ "x": 685.3333333333334,
499
+ "y": 406.6666666666667,
500
+ "width": 530.6666666666666,
501
+ "height": 62.666666666666664,
502
+ "textRole": "body",
503
+ "fontSize": 18,
504
+ "textCapacity": 44
505
+ },
506
+ {
507
+ "kind": "text",
508
+ "x": 588,
509
+ "y": 473.3333333333333,
510
+ "width": 66.66666666666667,
511
+ "height": 50.666666666666664,
512
+ "textRole": "body",
513
+ "fontSize": 26,
514
+ "textCapacity": 1
515
+ },
516
+ {
517
+ "kind": "text",
518
+ "x": 685.3333333333334,
519
+ "y": 477.3333333333333,
520
+ "width": 332,
521
+ "height": 42.666666666666664,
522
+ "textRole": "body",
523
+ "fontSize": 23,
524
+ "textCapacity": 10
525
+ },
526
+ {
527
+ "kind": "text",
528
+ "x": 1040,
529
+ "y": 485.3333333333333,
530
+ "width": 176,
531
+ "height": 32,
532
+ "textRole": "body",
533
+ "fontSize": 10,
534
+ "textCapacity": 26
535
+ },
536
+ {
537
+ "kind": "text",
538
+ "x": 685.3333333333334,
539
+ "y": 532,
540
+ "width": 530.6666666666666,
541
+ "height": 62.666666666666664,
542
+ "textRole": "body",
543
+ "fontSize": 18,
544
+ "textCapacity": 44
545
+ },
546
+ {
547
+ "kind": "text",
548
+ "x": 64,
549
+ "y": 676,
550
+ "width": 1044,
551
+ "height": 21.333333333333332,
552
+ "textRole": "body",
553
+ "fontSize": 9,
554
+ "textCapacity": 87
555
+ },
556
+ {
557
+ "kind": "text",
558
+ "x": 1161.3333333333333,
559
+ "y": 672,
560
+ "width": 54.666666666666664,
561
+ "height": 29.333333333333332,
562
+ "textRole": "body",
563
+ "fontSize": 11,
564
+ "textCapacity": 3
565
+ }
566
+ ],
567
+ "jsxReference": ""
568
+ },
569
+ {
570
+ "slideNumber": 3,
571
+ "sourceTitle": "Give each moment a distinct purpose",
572
+ "family": "grid",
573
+ "titlePosition": "left",
574
+ "bodyColumns": 3,
575
+ "density": "high",
576
+ "features": [
577
+ "storyboard"
578
+ ],
579
+ "recommendedRoles": [
580
+ "grid"
581
+ ],
582
+ "structureSummary": "Three schematic frames with distinct content and intent",
583
+ "zones": [
584
+ {
585
+ "kind": "shape",
586
+ "x": 1157.3333333333333,
587
+ "y": 30.666666666666668,
588
+ "width": 37.333333333333336,
589
+ "height": 37.333333333333336,
590
+ "shape": "ellipse",
591
+ "fill": "1A1A1A"
592
+ },
593
+ {
594
+ "kind": "shape",
595
+ "x": 1210.6666666666667,
596
+ "y": 38.666666666666664,
597
+ "width": 21.333333333333332,
598
+ "height": 21.333333333333332,
599
+ "shape": "ellipse",
600
+ "fill": "1A1A1A"
601
+ },
602
+ {
603
+ "kind": "text",
604
+ "x": 64,
605
+ "y": 36,
606
+ "width": 886.6666666666666,
607
+ "height": 26.666666666666668,
608
+ "textRole": "body",
609
+ "fontSize": 10,
610
+ "textCapacity": 66
611
+ },
612
+ {
613
+ "kind": "title",
614
+ "x": 64,
615
+ "y": 101.33333333333333,
616
+ "width": 1152,
617
+ "height": 85.33333333333333,
618
+ "textRole": "title",
619
+ "fontSize": 32,
620
+ "textCapacity": 27
621
+ },
622
+ {
623
+ "kind": "text",
624
+ "x": 1005.3333333333334,
625
+ "y": 61.333333333333336,
626
+ "width": 210.66666666666666,
627
+ "height": 17.333333333333332,
628
+ "textRole": "body",
629
+ "fontSize": 9,
630
+ "textCapacity": 17
631
+ },
632
+ {
633
+ "kind": "shape",
634
+ "x": 64,
635
+ "y": 228,
636
+ "width": 360,
637
+ "height": 200,
638
+ "shape": "rect",
639
+ "fill": "E8B88E"
640
+ },
641
+ {
642
+ "kind": "shape",
643
+ "x": 112,
644
+ "y": 337.3333333333333,
645
+ "width": 117.33333333333333,
646
+ "height": 41.333333333333336,
647
+ "shape": "rect",
648
+ "fill": "181915"
649
+ },
650
+ {
651
+ "kind": "text",
652
+ "x": 64,
653
+ "y": 449.3333333333333,
654
+ "width": 346.6666666666667,
655
+ "height": 33.333333333333336,
656
+ "textRole": "body",
657
+ "fontSize": 13,
658
+ "textCapacity": 20
659
+ },
660
+ {
661
+ "kind": "text",
662
+ "x": 64,
663
+ "y": 501.3333333333333,
664
+ "width": 350.6666666666667,
665
+ "height": 105.33333333333333,
666
+ "textRole": "body",
667
+ "fontSize": 26,
668
+ "textCapacity": 20
669
+ },
670
+ {
671
+ "kind": "shape",
672
+ "x": 456,
673
+ "y": 228,
674
+ "width": 360,
675
+ "height": 200,
676
+ "shape": "rect",
677
+ "fill": "1A1A1A"
678
+ },
679
+ {
680
+ "kind": "shape",
681
+ "x": 582.6666666666666,
682
+ "y": 266.6666666666667,
683
+ "width": 104,
684
+ "height": 104,
685
+ "shape": "ellipse",
686
+ "fill": "F8F6EE"
687
+ },
688
+ {
689
+ "kind": "title",
690
+ "x": 604,
691
+ "y": 285.3333333333333,
692
+ "width": 69.33333333333333,
693
+ "height": 77.33333333333333,
694
+ "textRole": "title",
695
+ "fontSize": 33,
696
+ "textCapacity": 1
697
+ },
698
+ {
699
+ "kind": "text",
700
+ "x": 456,
701
+ "y": 449.3333333333333,
702
+ "width": 346.6666666666667,
703
+ "height": 33.333333333333336,
704
+ "textRole": "body",
705
+ "fontSize": 13,
706
+ "textCapacity": 20
707
+ },
708
+ {
709
+ "kind": "text",
710
+ "x": 456,
711
+ "y": 501.3333333333333,
712
+ "width": 350.6666666666667,
713
+ "height": 105.33333333333333,
714
+ "textRole": "body",
715
+ "fontSize": 26,
716
+ "textCapacity": 20
717
+ },
718
+ {
719
+ "kind": "shape",
720
+ "x": 848,
721
+ "y": 228,
722
+ "width": 360,
723
+ "height": 200,
724
+ "shape": "rect",
725
+ "fill": "E8B88E"
726
+ },
727
+ {
728
+ "kind": "shape",
729
+ "x": 896,
730
+ "y": 262.6666666666667,
731
+ "width": 16,
732
+ "height": 16,
733
+ "shape": "ellipse",
734
+ "fill": "181915"
735
+ },
736
+ {
737
+ "kind": "shape",
738
+ "x": 896,
739
+ "y": 312,
740
+ "width": 16,
741
+ "height": 16,
742
+ "shape": "ellipse",
743
+ "fill": "181915"
744
+ },
745
+ {
746
+ "kind": "shape",
747
+ "x": 896,
748
+ "y": 361.3333333333333,
749
+ "width": 16,
750
+ "height": 16,
751
+ "shape": "ellipse",
752
+ "fill": "181915"
753
+ },
754
+ {
755
+ "kind": "text",
756
+ "x": 848,
757
+ "y": 449.3333333333333,
758
+ "width": 346.6666666666667,
759
+ "height": 33.333333333333336,
760
+ "textRole": "body",
761
+ "fontSize": 13,
762
+ "textCapacity": 20
763
+ },
764
+ {
765
+ "kind": "text",
766
+ "x": 848,
767
+ "y": 501.3333333333333,
768
+ "width": 350.6666666666667,
769
+ "height": 105.33333333333333,
770
+ "textRole": "body",
771
+ "fontSize": 26,
772
+ "textCapacity": 20
773
+ },
774
+ {
775
+ "kind": "text",
776
+ "x": 64,
777
+ "y": 633.3333333333334,
778
+ "width": 1152,
779
+ "height": 33.333333333333336,
780
+ "textRole": "body",
781
+ "fontSize": 13,
782
+ "textCapacity": 66
783
+ },
784
+ {
785
+ "kind": "text",
786
+ "x": 64,
787
+ "y": 676,
788
+ "width": 1044,
789
+ "height": 21.333333333333332,
790
+ "textRole": "body",
791
+ "fontSize": 9,
792
+ "textCapacity": 87
793
+ },
794
+ {
795
+ "kind": "text",
796
+ "x": 1161.3333333333333,
797
+ "y": 672,
798
+ "width": 54.666666666666664,
799
+ "height": 29.333333333333332,
800
+ "textRole": "body",
801
+ "fontSize": 11,
802
+ "textCapacity": 3
803
+ }
804
+ ],
805
+ "jsxReference": ""
806
+ },
807
+ {
808
+ "slideNumber": 4,
809
+ "sourceTitle": "Trace the question to testable branches",
810
+ "family": "process",
811
+ "titlePosition": "left",
812
+ "bodyColumns": 3,
813
+ "density": "high",
814
+ "features": [
815
+ "tree"
816
+ ],
817
+ "recommendedRoles": [
818
+ "process"
819
+ ],
820
+ "structureSummary": "Three-branch hypothesis tree with six testable leaves",
821
+ "zones": [
822
+ {
823
+ "kind": "shape",
824
+ "x": 1157.3333333333333,
825
+ "y": 30.666666666666668,
826
+ "width": 37.333333333333336,
827
+ "height": 37.333333333333336,
828
+ "shape": "ellipse",
829
+ "fill": "F0C8A0"
830
+ },
831
+ {
832
+ "kind": "shape",
833
+ "x": 1210.6666666666667,
834
+ "y": 38.666666666666664,
835
+ "width": 21.333333333333332,
836
+ "height": 21.333333333333332,
837
+ "shape": "ellipse",
838
+ "fill": "F0C8A0"
839
+ },
840
+ {
841
+ "kind": "text",
842
+ "x": 64,
843
+ "y": 36,
844
+ "width": 886.6666666666666,
845
+ "height": 26.666666666666668,
846
+ "textRole": "body",
847
+ "fontSize": 10,
848
+ "textCapacity": 66
849
+ },
850
+ {
851
+ "kind": "title",
852
+ "x": 64,
853
+ "y": 101.33333333333333,
854
+ "width": 1152,
855
+ "height": 85.33333333333333,
856
+ "textRole": "title",
857
+ "fontSize": 32,
858
+ "textCapacity": 27
859
+ },
860
+ {
861
+ "kind": "text",
862
+ "x": 1005.3333333333334,
863
+ "y": 61.333333333333336,
864
+ "width": 210.66666666666666,
865
+ "height": 17.333333333333332,
866
+ "textRole": "body",
867
+ "fontSize": 9,
868
+ "textCapacity": 17
869
+ },
870
+ {
871
+ "kind": "text",
872
+ "x": 64,
873
+ "y": 202.66666666666666,
874
+ "width": 1133.3333333333333,
875
+ "height": 33.333333333333336,
876
+ "textRole": "body",
877
+ "fontSize": 13,
878
+ "textCapacity": 65
879
+ },
880
+ {
881
+ "kind": "shape",
882
+ "x": 64,
883
+ "y": 362.6666666666667,
884
+ "width": 292,
885
+ "height": 140,
886
+ "shape": "roundRect",
887
+ "fill": "F0C8A0"
888
+ },
889
+ {
890
+ "kind": "text",
891
+ "x": 80,
892
+ "y": 380,
893
+ "width": 260,
894
+ "height": 114.66666666666667,
895
+ "textRole": "body",
896
+ "fontSize": 18,
897
+ "textCapacity": 40
898
+ },
899
+ {
900
+ "kind": "shape",
901
+ "x": 466.6666666666667,
902
+ "y": 245.33333333333334,
903
+ "width": 226.66666666666666,
904
+ "height": 77.33333333333333,
905
+ "shape": "roundRect",
906
+ "fill": "3D3129"
907
+ },
908
+ {
909
+ "kind": "text",
910
+ "x": 482.6666666666667,
911
+ "y": 262.6666666666667,
912
+ "width": 194.66666666666666,
913
+ "height": 52,
914
+ "textRole": "body",
915
+ "fontSize": 18,
916
+ "textCapacity": 8
917
+ },
918
+ {
919
+ "kind": "text",
920
+ "x": 810.6666666666666,
921
+ "y": 236,
922
+ "width": 398.6666666666667,
923
+ "height": 45.333333333333336,
924
+ "textRole": "body",
925
+ "fontSize": 18,
926
+ "textCapacity": 16
927
+ },
928
+ {
929
+ "kind": "text",
930
+ "x": 810.6666666666666,
931
+ "y": 292,
932
+ "width": 398.6666666666667,
933
+ "height": 45.333333333333336,
934
+ "textRole": "body",
935
+ "fontSize": 18,
936
+ "textCapacity": 16
937
+ },
938
+ {
939
+ "kind": "shape",
940
+ "x": 466.6666666666667,
941
+ "y": 376,
942
+ "width": 226.66666666666666,
943
+ "height": 77.33333333333333,
944
+ "shape": "roundRect",
945
+ "fill": "3D3129"
946
+ },
947
+ {
948
+ "kind": "text",
949
+ "x": 482.6666666666667,
950
+ "y": 393.3333333333333,
951
+ "width": 194.66666666666666,
952
+ "height": 52,
953
+ "textRole": "body",
954
+ "fontSize": 18,
955
+ "textCapacity": 8
956
+ },
957
+ {
958
+ "kind": "text",
959
+ "x": 810.6666666666666,
960
+ "y": 366.6666666666667,
961
+ "width": 398.6666666666667,
962
+ "height": 45.333333333333336,
963
+ "textRole": "body",
964
+ "fontSize": 18,
965
+ "textCapacity": 16
966
+ },
967
+ {
968
+ "kind": "text",
969
+ "x": 810.6666666666666,
970
+ "y": 422.6666666666667,
971
+ "width": 398.6666666666667,
972
+ "height": 45.333333333333336,
973
+ "textRole": "body",
974
+ "fontSize": 18,
975
+ "textCapacity": 16
976
+ },
977
+ {
978
+ "kind": "shape",
979
+ "x": 466.6666666666667,
980
+ "y": 506.6666666666667,
981
+ "width": 226.66666666666666,
982
+ "height": 77.33333333333333,
983
+ "shape": "roundRect",
984
+ "fill": "3D3129"
985
+ },
986
+ {
987
+ "kind": "text",
988
+ "x": 482.6666666666667,
989
+ "y": 524,
990
+ "width": 194.66666666666666,
991
+ "height": 52,
992
+ "textRole": "body",
993
+ "fontSize": 18,
994
+ "textCapacity": 8
995
+ },
996
+ {
997
+ "kind": "text",
998
+ "x": 810.6666666666666,
999
+ "y": 497.3333333333333,
1000
+ "width": 398.6666666666667,
1001
+ "height": 45.333333333333336,
1002
+ "textRole": "body",
1003
+ "fontSize": 18,
1004
+ "textCapacity": 16
1005
+ },
1006
+ {
1007
+ "kind": "text",
1008
+ "x": 810.6666666666666,
1009
+ "y": 553.3333333333334,
1010
+ "width": 398.6666666666667,
1011
+ "height": 45.333333333333336,
1012
+ "textRole": "body",
1013
+ "fontSize": 18,
1014
+ "textCapacity": 16
1015
+ },
1016
+ {
1017
+ "kind": "text",
1018
+ "x": 64,
1019
+ "y": 633.3333333333334,
1020
+ "width": 1152,
1021
+ "height": 33.333333333333336,
1022
+ "textRole": "body",
1023
+ "fontSize": 13,
1024
+ "textCapacity": 66
1025
+ },
1026
+ {
1027
+ "kind": "text",
1028
+ "x": 64,
1029
+ "y": 676,
1030
+ "width": 1044,
1031
+ "height": 21.333333333333332,
1032
+ "textRole": "body",
1033
+ "fontSize": 9,
1034
+ "textCapacity": 87
1035
+ },
1036
+ {
1037
+ "kind": "text",
1038
+ "x": 1161.3333333333333,
1039
+ "y": 672,
1040
+ "width": 54.666666666666664,
1041
+ "height": 29.333333333333332,
1042
+ "textRole": "body",
1043
+ "fontSize": 11,
1044
+ "textCapacity": 3
1045
+ }
1046
+ ],
1047
+ "jsxReference": ""
1048
+ },
1049
+ {
1050
+ "slideNumber": 5,
1051
+ "sourceTitle": "Locate the friction along the journey",
1052
+ "family": "process",
1053
+ "titlePosition": "left",
1054
+ "bodyColumns": 2,
1055
+ "density": "high",
1056
+ "features": [
1057
+ "journey"
1058
+ ],
1059
+ "recommendedRoles": [
1060
+ "process"
1061
+ ],
1062
+ "structureSummary": "Four stages aligned across actions and independent outcome measures",
1063
+ "zones": [
1064
+ {
1065
+ "kind": "shape",
1066
+ "x": 1157.3333333333333,
1067
+ "y": 30.666666666666668,
1068
+ "width": 37.333333333333336,
1069
+ "height": 37.333333333333336,
1070
+ "shape": "ellipse",
1071
+ "fill": "1A1A1A"
1072
+ },
1073
+ {
1074
+ "kind": "shape",
1075
+ "x": 1210.6666666666667,
1076
+ "y": 38.666666666666664,
1077
+ "width": 21.333333333333332,
1078
+ "height": 21.333333333333332,
1079
+ "shape": "ellipse",
1080
+ "fill": "1A1A1A"
1081
+ },
1082
+ {
1083
+ "kind": "text",
1084
+ "x": 64,
1085
+ "y": 36,
1086
+ "width": 886.6666666666666,
1087
+ "height": 26.666666666666668,
1088
+ "textRole": "body",
1089
+ "fontSize": 10,
1090
+ "textCapacity": 66
1091
+ },
1092
+ {
1093
+ "kind": "title",
1094
+ "x": 64,
1095
+ "y": 101.33333333333333,
1096
+ "width": 1152,
1097
+ "height": 85.33333333333333,
1098
+ "textRole": "title",
1099
+ "fontSize": 32,
1100
+ "textCapacity": 27
1101
+ },
1102
+ {
1103
+ "kind": "text",
1104
+ "x": 1005.3333333333334,
1105
+ "y": 61.333333333333336,
1106
+ "width": 210.66666666666666,
1107
+ "height": 17.333333333333332,
1108
+ "textRole": "body",
1109
+ "fontSize": 9,
1110
+ "textCapacity": 17
1111
+ },
1112
+ {
1113
+ "kind": "text",
1114
+ "x": 64,
1115
+ "y": 250.66666666666666,
1116
+ "width": 153.33333333333334,
1117
+ "height": 40,
1118
+ "textRole": "body",
1119
+ "fontSize": 12,
1120
+ "textCapacity": 18
1121
+ },
1122
+ {
1123
+ "kind": "text",
1124
+ "x": 64,
1125
+ "y": 376,
1126
+ "width": 153.33333333333334,
1127
+ "height": 40,
1128
+ "textRole": "body",
1129
+ "fontSize": 12,
1130
+ "textCapacity": 18
1131
+ },
1132
+ {
1133
+ "kind": "text",
1134
+ "x": 64,
1135
+ "y": 501.3333333333333,
1136
+ "width": 153.33333333333334,
1137
+ "height": 40,
1138
+ "textRole": "body",
1139
+ "fontSize": 12,
1140
+ "textCapacity": 18
1141
+ },
1142
+ {
1143
+ "kind": "shape",
1144
+ "x": 244,
1145
+ "y": 232,
1146
+ "width": 222.66666666666666,
1147
+ "height": 84,
1148
+ "shape": "roundRect",
1149
+ "fill": "E8B88E"
1150
+ },
1151
+ {
1152
+ "kind": "text",
1153
+ "x": 260,
1154
+ "y": 249.33333333333334,
1155
+ "width": 190.66666666666666,
1156
+ "height": 58.666666666666664,
1157
+ "textRole": "body",
1158
+ "fontSize": 18,
1159
+ "textCapacity": 14
1160
+ },
1161
+ {
1162
+ "kind": "text",
1163
+ "x": 244,
1164
+ "y": 372,
1165
+ "width": 212,
1166
+ "height": 82.66666666666667,
1167
+ "textRole": "body",
1168
+ "fontSize": 20,
1169
+ "textCapacity": 14
1170
+ },
1171
+ {
1172
+ "kind": "title",
1173
+ "x": 244,
1174
+ "y": 490.6666666666667,
1175
+ "width": 212,
1176
+ "height": 73.33333333333333,
1177
+ "textRole": "title",
1178
+ "fontSize": 35,
1179
+ "textCapacity": 4
1180
+ },
1181
+ {
1182
+ "kind": "shape",
1183
+ "x": 488,
1184
+ "y": 232,
1185
+ "width": 222.66666666666666,
1186
+ "height": 84,
1187
+ "shape": "roundRect",
1188
+ "fill": "1A1A1A"
1189
+ },
1190
+ {
1191
+ "kind": "text",
1192
+ "x": 504,
1193
+ "y": 249.33333333333334,
1194
+ "width": 190.66666666666666,
1195
+ "height": 58.666666666666664,
1196
+ "textRole": "body",
1197
+ "fontSize": 18,
1198
+ "textCapacity": 14
1199
+ },
1200
+ {
1201
+ "kind": "text",
1202
+ "x": 488,
1203
+ "y": 372,
1204
+ "width": 212,
1205
+ "height": 82.66666666666667,
1206
+ "textRole": "body",
1207
+ "fontSize": 20,
1208
+ "textCapacity": 14
1209
+ },
1210
+ {
1211
+ "kind": "title",
1212
+ "x": 488,
1213
+ "y": 490.6666666666667,
1214
+ "width": 212,
1215
+ "height": 73.33333333333333,
1216
+ "textRole": "title",
1217
+ "fontSize": 35,
1218
+ "textCapacity": 4
1219
+ },
1220
+ {
1221
+ "kind": "shape",
1222
+ "x": 732,
1223
+ "y": 232,
1224
+ "width": 222.66666666666666,
1225
+ "height": 84,
1226
+ "shape": "roundRect",
1227
+ "fill": "E8B88E"
1228
+ },
1229
+ {
1230
+ "kind": "text",
1231
+ "x": 748,
1232
+ "y": 249.33333333333334,
1233
+ "width": 190.66666666666666,
1234
+ "height": 58.666666666666664,
1235
+ "textRole": "body",
1236
+ "fontSize": 18,
1237
+ "textCapacity": 14
1238
+ },
1239
+ {
1240
+ "kind": "text",
1241
+ "x": 732,
1242
+ "y": 372,
1243
+ "width": 212,
1244
+ "height": 82.66666666666667,
1245
+ "textRole": "body",
1246
+ "fontSize": 20,
1247
+ "textCapacity": 14
1248
+ },
1249
+ {
1250
+ "kind": "title",
1251
+ "x": 732,
1252
+ "y": 490.6666666666667,
1253
+ "width": 212,
1254
+ "height": 73.33333333333333,
1255
+ "textRole": "title",
1256
+ "fontSize": 35,
1257
+ "textCapacity": 4
1258
+ },
1259
+ {
1260
+ "kind": "shape",
1261
+ "x": 976,
1262
+ "y": 232,
1263
+ "width": 222.66666666666666,
1264
+ "height": 84,
1265
+ "shape": "roundRect",
1266
+ "fill": "E8B88E"
1267
+ },
1268
+ {
1269
+ "kind": "text",
1270
+ "x": 992,
1271
+ "y": 249.33333333333334,
1272
+ "width": 190.66666666666666,
1273
+ "height": 58.666666666666664,
1274
+ "textRole": "body",
1275
+ "fontSize": 18,
1276
+ "textCapacity": 14
1277
+ },
1278
+ {
1279
+ "kind": "text",
1280
+ "x": 976,
1281
+ "y": 372,
1282
+ "width": 212,
1283
+ "height": 82.66666666666667,
1284
+ "textRole": "body",
1285
+ "fontSize": 20,
1286
+ "textCapacity": 14
1287
+ },
1288
+ {
1289
+ "kind": "title",
1290
+ "x": 976,
1291
+ "y": 490.6666666666667,
1292
+ "width": 212,
1293
+ "height": 73.33333333333333,
1294
+ "textRole": "title",
1295
+ "fontSize": 35,
1296
+ "textCapacity": 4
1297
+ },
1298
+ {
1299
+ "kind": "text",
1300
+ "x": 64,
1301
+ "y": 633.3333333333334,
1302
+ "width": 1152,
1303
+ "height": 33.333333333333336,
1304
+ "textRole": "body",
1305
+ "fontSize": 13,
1306
+ "textCapacity": 66
1307
+ },
1308
+ {
1309
+ "kind": "text",
1310
+ "x": 64,
1311
+ "y": 676,
1312
+ "width": 1044,
1313
+ "height": 21.333333333333332,
1314
+ "textRole": "body",
1315
+ "fontSize": 9,
1316
+ "textCapacity": 87
1317
+ },
1318
+ {
1319
+ "kind": "text",
1320
+ "x": 1161.3333333333333,
1321
+ "y": 672,
1322
+ "width": 54.666666666666664,
1323
+ "height": 29.333333333333332,
1324
+ "textRole": "body",
1325
+ "fontSize": 11,
1326
+ "textCapacity": 3
1327
+ }
1328
+ ],
1329
+ "jsxReference": ""
1330
+ },
1331
+ {
1332
+ "slideNumber": 6,
1333
+ "sourceTitle": "Design the test before reading the result",
1334
+ "family": "comparison",
1335
+ "titlePosition": "left",
1336
+ "bodyColumns": 2,
1337
+ "density": "high",
1338
+ "features": [
1339
+ "experiment"
1340
+ ],
1341
+ "recommendedRoles": [
1342
+ "comparison"
1343
+ ],
1344
+ "structureSummary": "One hypothesis with comparison, measure and a predeclared decision rule",
1345
+ "zones": [
1346
+ {
1347
+ "kind": "shape",
1348
+ "x": 1157.3333333333333,
1349
+ "y": 30.666666666666668,
1350
+ "width": 37.333333333333336,
1351
+ "height": 37.333333333333336,
1352
+ "shape": "ellipse",
1353
+ "fill": "1A1A1A"
1354
+ },
1355
+ {
1356
+ "kind": "shape",
1357
+ "x": 1210.6666666666667,
1358
+ "y": 38.666666666666664,
1359
+ "width": 21.333333333333332,
1360
+ "height": 21.333333333333332,
1361
+ "shape": "ellipse",
1362
+ "fill": "1A1A1A"
1363
+ },
1364
+ {
1365
+ "kind": "text",
1366
+ "x": 64,
1367
+ "y": 36,
1368
+ "width": 886.6666666666666,
1369
+ "height": 26.666666666666668,
1370
+ "textRole": "body",
1371
+ "fontSize": 10,
1372
+ "textCapacity": 66
1373
+ },
1374
+ {
1375
+ "kind": "title",
1376
+ "x": 64,
1377
+ "y": 101.33333333333333,
1378
+ "width": 1152,
1379
+ "height": 85.33333333333333,
1380
+ "textRole": "title",
1381
+ "fontSize": 32,
1382
+ "textCapacity": 27
1383
+ },
1384
+ {
1385
+ "kind": "text",
1386
+ "x": 1005.3333333333334,
1387
+ "y": 61.333333333333336,
1388
+ "width": 210.66666666666666,
1389
+ "height": 17.333333333333332,
1390
+ "textRole": "body",
1391
+ "fontSize": 9,
1392
+ "textCapacity": 17
1393
+ },
1394
+ {
1395
+ "kind": "title",
1396
+ "x": 64,
1397
+ "y": 232,
1398
+ "width": 366.6666666666667,
1399
+ "height": 138.66666666666666,
1400
+ "textRole": "title",
1401
+ "fontSize": 32,
1402
+ "textCapacity": 16
1403
+ },
1404
+ {
1405
+ "kind": "text",
1406
+ "x": 64,
1407
+ "y": 441.3333333333333,
1408
+ "width": 370.6666666666667,
1409
+ "height": 156,
1410
+ "textRole": "body",
1411
+ "fontSize": 21,
1412
+ "textCapacity": 65
1413
+ },
1414
+ {
1415
+ "kind": "text",
1416
+ "x": 536,
1417
+ "y": 236,
1418
+ "width": 188,
1419
+ "height": 45.333333333333336,
1420
+ "textRole": "body",
1421
+ "fontSize": 18,
1422
+ "textCapacity": 7
1423
+ },
1424
+ {
1425
+ "kind": "text",
1426
+ "x": 748,
1427
+ "y": 236,
1428
+ "width": 466.6666666666667,
1429
+ "height": 77.33333333333333,
1430
+ "textRole": "body",
1431
+ "fontSize": 18,
1432
+ "textCapacity": 38
1433
+ },
1434
+ {
1435
+ "kind": "text",
1436
+ "x": 536,
1437
+ "y": 330.6666666666667,
1438
+ "width": 188,
1439
+ "height": 45.333333333333336,
1440
+ "textRole": "body",
1441
+ "fontSize": 18,
1442
+ "textCapacity": 7
1443
+ },
1444
+ {
1445
+ "kind": "text",
1446
+ "x": 748,
1447
+ "y": 330.6666666666667,
1448
+ "width": 466.6666666666667,
1449
+ "height": 77.33333333333333,
1450
+ "textRole": "body",
1451
+ "fontSize": 18,
1452
+ "textCapacity": 38
1453
+ },
1454
+ {
1455
+ "kind": "text",
1456
+ "x": 536,
1457
+ "y": 425.3333333333333,
1458
+ "width": 188,
1459
+ "height": 45.333333333333336,
1460
+ "textRole": "body",
1461
+ "fontSize": 18,
1462
+ "textCapacity": 7
1463
+ },
1464
+ {
1465
+ "kind": "text",
1466
+ "x": 748,
1467
+ "y": 425.3333333333333,
1468
+ "width": 466.6666666666667,
1469
+ "height": 77.33333333333333,
1470
+ "textRole": "body",
1471
+ "fontSize": 18,
1472
+ "textCapacity": 38
1473
+ },
1474
+ {
1475
+ "kind": "text",
1476
+ "x": 536,
1477
+ "y": 520,
1478
+ "width": 188,
1479
+ "height": 45.333333333333336,
1480
+ "textRole": "body",
1481
+ "fontSize": 18,
1482
+ "textCapacity": 7
1483
+ },
1484
+ {
1485
+ "kind": "text",
1486
+ "x": 748,
1487
+ "y": 520,
1488
+ "width": 466.6666666666667,
1489
+ "height": 77.33333333333333,
1490
+ "textRole": "body",
1491
+ "fontSize": 18,
1492
+ "textCapacity": 38
1493
+ },
1494
+ {
1495
+ "kind": "text",
1496
+ "x": 64,
1497
+ "y": 633.3333333333334,
1498
+ "width": 1152,
1499
+ "height": 33.333333333333336,
1500
+ "textRole": "body",
1501
+ "fontSize": 13,
1502
+ "textCapacity": 66
1503
+ },
1504
+ {
1505
+ "kind": "text",
1506
+ "x": 64,
1507
+ "y": 676,
1508
+ "width": 1044,
1509
+ "height": 21.333333333333332,
1510
+ "textRole": "body",
1511
+ "fontSize": 9,
1512
+ "textCapacity": 87
1513
+ },
1514
+ {
1515
+ "kind": "text",
1516
+ "x": 1161.3333333333333,
1517
+ "y": 672,
1518
+ "width": 54.666666666666664,
1519
+ "height": 29.333333333333332,
1520
+ "textRole": "body",
1521
+ "fontSize": 11,
1522
+ "textCapacity": 3
1523
+ }
1524
+ ],
1525
+ "jsxReference": ""
1526
+ },
1527
+ {
1528
+ "slideNumber": 7,
1529
+ "sourceTitle": "Follow one cohort through the funnel",
1530
+ "family": "data",
1531
+ "titlePosition": "left",
1532
+ "bodyColumns": 2,
1533
+ "density": "high",
1534
+ "features": [
1535
+ "funnel"
1536
+ ],
1537
+ "recommendedRoles": [
1538
+ "data"
1539
+ ],
1540
+ "structureSummary": "A single cohort with explicit conversion counts and an overall rate",
1541
+ "zones": [
1542
+ {
1543
+ "kind": "shape",
1544
+ "x": 1157.3333333333333,
1545
+ "y": 30.666666666666668,
1546
+ "width": 37.333333333333336,
1547
+ "height": 37.333333333333336,
1548
+ "shape": "ellipse",
1549
+ "fill": "1A1A1A"
1550
+ },
1551
+ {
1552
+ "kind": "shape",
1553
+ "x": 1210.6666666666667,
1554
+ "y": 38.666666666666664,
1555
+ "width": 21.333333333333332,
1556
+ "height": 21.333333333333332,
1557
+ "shape": "ellipse",
1558
+ "fill": "1A1A1A"
1559
+ },
1560
+ {
1561
+ "kind": "text",
1562
+ "x": 64,
1563
+ "y": 36,
1564
+ "width": 886.6666666666666,
1565
+ "height": 26.666666666666668,
1566
+ "textRole": "body",
1567
+ "fontSize": 10,
1568
+ "textCapacity": 66
1569
+ },
1570
+ {
1571
+ "kind": "title",
1572
+ "x": 64,
1573
+ "y": 101.33333333333333,
1574
+ "width": 1152,
1575
+ "height": 85.33333333333333,
1576
+ "textRole": "title",
1577
+ "fontSize": 32,
1578
+ "textCapacity": 27
1579
+ },
1580
+ {
1581
+ "kind": "text",
1582
+ "x": 1005.3333333333334,
1583
+ "y": 61.333333333333336,
1584
+ "width": 210.66666666666666,
1585
+ "height": 17.333333333333332,
1586
+ "textRole": "body",
1587
+ "fontSize": 9,
1588
+ "textCapacity": 17
1589
+ },
1590
+ {
1591
+ "kind": "text",
1592
+ "x": 64,
1593
+ "y": 202.66666666666666,
1594
+ "width": 1133.3333333333333,
1595
+ "height": 33.333333333333336,
1596
+ "textRole": "body",
1597
+ "fontSize": 13,
1598
+ "textCapacity": 65
1599
+ },
1600
+ {
1601
+ "kind": "shape",
1602
+ "x": 64,
1603
+ "y": 241.33333333333334,
1604
+ "width": 201.33333333333334,
1605
+ "height": 380,
1606
+ "shape": "rect",
1607
+ "fill": "E8B88E"
1608
+ },
1609
+ {
1610
+ "kind": "title",
1611
+ "x": 80,
1612
+ "y": 262.6666666666667,
1613
+ "width": 170.66666666666666,
1614
+ "height": 74.66666666666667,
1615
+ "textRole": "title",
1616
+ "fontSize": 36,
1617
+ "textCapacity": 3
1618
+ },
1619
+ {
1620
+ "kind": "text",
1621
+ "x": 74.66666666666667,
1622
+ "y": 534.6666666666666,
1623
+ "width": 180,
1624
+ "height": 72,
1625
+ "textRole": "body",
1626
+ "fontSize": 15,
1627
+ "textCapacity": 27
1628
+ },
1629
+ {
1630
+ "kind": "shape",
1631
+ "x": 288,
1632
+ "y": 305.3333333333333,
1633
+ "width": 201.33333333333334,
1634
+ "height": 316,
1635
+ "shape": "rect",
1636
+ "fill": "E8B88E"
1637
+ },
1638
+ {
1639
+ "kind": "title",
1640
+ "x": 304,
1641
+ "y": 326.6666666666667,
1642
+ "width": 170.66666666666666,
1643
+ "height": 74.66666666666667,
1644
+ "textRole": "title",
1645
+ "fontSize": 36,
1646
+ "textCapacity": 3
1647
+ },
1648
+ {
1649
+ "kind": "text",
1650
+ "x": 298.6666666666667,
1651
+ "y": 534.6666666666666,
1652
+ "width": 180,
1653
+ "height": 72,
1654
+ "textRole": "body",
1655
+ "fontSize": 15,
1656
+ "textCapacity": 27
1657
+ },
1658
+ {
1659
+ "kind": "shape",
1660
+ "x": 512,
1661
+ "y": 369.3333333333333,
1662
+ "width": 201.33333333333334,
1663
+ "height": 252,
1664
+ "shape": "rect",
1665
+ "fill": "1A1A1A"
1666
+ },
1667
+ {
1668
+ "kind": "title",
1669
+ "x": 528,
1670
+ "y": 390.6666666666667,
1671
+ "width": 170.66666666666666,
1672
+ "height": 74.66666666666667,
1673
+ "textRole": "title",
1674
+ "fontSize": 36,
1675
+ "textCapacity": 3
1676
+ },
1677
+ {
1678
+ "kind": "text",
1679
+ "x": 522.6666666666666,
1680
+ "y": 534.6666666666666,
1681
+ "width": 180,
1682
+ "height": 72,
1683
+ "textRole": "body",
1684
+ "fontSize": 15,
1685
+ "textCapacity": 27
1686
+ },
1687
+ {
1688
+ "kind": "shape",
1689
+ "x": 736,
1690
+ "y": 433.3333333333333,
1691
+ "width": 201.33333333333334,
1692
+ "height": 188,
1693
+ "shape": "rect",
1694
+ "fill": "E8B88E"
1695
+ },
1696
+ {
1697
+ "kind": "title",
1698
+ "x": 752,
1699
+ "y": 454.6666666666667,
1700
+ "width": 170.66666666666666,
1701
+ "height": 74.66666666666667,
1702
+ "textRole": "title",
1703
+ "fontSize": 36,
1704
+ "textCapacity": 3
1705
+ },
1706
+ {
1707
+ "kind": "text",
1708
+ "x": 746.6666666666666,
1709
+ "y": 534.6666666666666,
1710
+ "width": 180,
1711
+ "height": 72,
1712
+ "textRole": "body",
1713
+ "fontSize": 15,
1714
+ "textCapacity": 27
1715
+ },
1716
+ {
1717
+ "kind": "title",
1718
+ "x": 1026.6666666666667,
1719
+ "y": 261.3333333333333,
1720
+ "width": 192,
1721
+ "height": 92,
1722
+ "textRole": "title",
1723
+ "fontSize": 33,
1724
+ "textCapacity": 4
1725
+ },
1726
+ {
1727
+ "kind": "text",
1728
+ "x": 1026.6666666666667,
1729
+ "y": 389.3333333333333,
1730
+ "width": 189.33333333333334,
1731
+ "height": 102.66666666666667,
1732
+ "textRole": "body",
1733
+ "fontSize": 20,
1734
+ "textCapacity": 21
1735
+ },
1736
+ {
1737
+ "kind": "text",
1738
+ "x": 1026.6666666666667,
1739
+ "y": 540,
1740
+ "width": 189.33333333333334,
1741
+ "height": 33.333333333333336,
1742
+ "textRole": "body",
1743
+ "fontSize": 13,
1744
+ "textCapacity": 10
1745
+ },
1746
+ {
1747
+ "kind": "text",
1748
+ "x": 64,
1749
+ "y": 633.3333333333334,
1750
+ "width": 1152,
1751
+ "height": 33.333333333333336,
1752
+ "textRole": "body",
1753
+ "fontSize": 13,
1754
+ "textCapacity": 66
1755
+ },
1756
+ {
1757
+ "kind": "text",
1758
+ "x": 64,
1759
+ "y": 676,
1760
+ "width": 1044,
1761
+ "height": 21.333333333333332,
1762
+ "textRole": "body",
1763
+ "fontSize": 9,
1764
+ "textCapacity": 87
1765
+ },
1766
+ {
1767
+ "kind": "text",
1768
+ "x": 1161.3333333333333,
1769
+ "y": 672,
1770
+ "width": 54.666666666666664,
1771
+ "height": 29.333333333333332,
1772
+ "textRole": "body",
1773
+ "fontSize": 11,
1774
+ "textCapacity": 3
1775
+ }
1776
+ ],
1777
+ "jsxReference": ""
1778
+ },
1779
+ {
1780
+ "slideNumber": 8,
1781
+ "sourceTitle": "A small intervention, a measurable change",
1782
+ "family": "comparison",
1783
+ "titlePosition": "left",
1784
+ "bodyColumns": 2,
1785
+ "density": "high",
1786
+ "features": [
1787
+ "case"
1788
+ ],
1789
+ "recommendedRoles": [
1790
+ "comparison"
1791
+ ],
1792
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
1793
+ "zones": [
1794
+ {
1795
+ "kind": "shape",
1796
+ "x": 1157.3333333333333,
1797
+ "y": 30.666666666666668,
1798
+ "width": 37.333333333333336,
1799
+ "height": 37.333333333333336,
1800
+ "shape": "ellipse",
1801
+ "fill": "F0C8A0"
1802
+ },
1803
+ {
1804
+ "kind": "shape",
1805
+ "x": 1210.6666666666667,
1806
+ "y": 38.666666666666664,
1807
+ "width": 21.333333333333332,
1808
+ "height": 21.333333333333332,
1809
+ "shape": "ellipse",
1810
+ "fill": "F0C8A0"
1811
+ },
1812
+ {
1813
+ "kind": "text",
1814
+ "x": 64,
1815
+ "y": 36,
1816
+ "width": 886.6666666666666,
1817
+ "height": 26.666666666666668,
1818
+ "textRole": "body",
1819
+ "fontSize": 10,
1820
+ "textCapacity": 66
1821
+ },
1822
+ {
1823
+ "kind": "title",
1824
+ "x": 64,
1825
+ "y": 101.33333333333333,
1826
+ "width": 1152,
1827
+ "height": 85.33333333333333,
1828
+ "textRole": "title",
1829
+ "fontSize": 32,
1830
+ "textCapacity": 27
1831
+ },
1832
+ {
1833
+ "kind": "text",
1834
+ "x": 1005.3333333333334,
1835
+ "y": 61.333333333333336,
1836
+ "width": 210.66666666666666,
1837
+ "height": 17.333333333333332,
1838
+ "textRole": "body",
1839
+ "fontSize": 9,
1840
+ "textCapacity": 17
1841
+ },
1842
+ {
1843
+ "kind": "text",
1844
+ "x": 64,
1845
+ "y": 224,
1846
+ "width": 386.6666666666667,
1847
+ "height": 34.666666666666664,
1848
+ "textRole": "body",
1849
+ "fontSize": 12,
1850
+ "textCapacity": 24
1851
+ },
1852
+ {
1853
+ "kind": "title",
1854
+ "x": 64,
1855
+ "y": 289.3333333333333,
1856
+ "width": 384,
1857
+ "height": 161.33333333333334,
1858
+ "textRole": "title",
1859
+ "fontSize": 34,
1860
+ "textCapacity": 24
1861
+ },
1862
+ {
1863
+ "kind": "text",
1864
+ "x": 64,
1865
+ "y": 492,
1866
+ "width": 374.6666666666667,
1867
+ "height": 104,
1868
+ "textRole": "body",
1869
+ "fontSize": 20,
1870
+ "textCapacity": 42
1871
+ },
1872
+ {
1873
+ "kind": "text",
1874
+ "x": 552,
1875
+ "y": 232,
1876
+ "width": 649.3333333333334,
1877
+ "height": 42.666666666666664,
1878
+ "textRole": "body",
1879
+ "fontSize": 20,
1880
+ "textCapacity": 24
1881
+ },
1882
+ {
1883
+ "kind": "shape",
1884
+ "x": 553.3333333333334,
1885
+ "y": 300,
1886
+ "width": 388.8,
1887
+ "height": 26.666666666666668,
1888
+ "shape": "rect",
1889
+ "fill": "5a4e42"
1890
+ },
1891
+ {
1892
+ "kind": "shape",
1893
+ "x": 553.3333333333334,
1894
+ "y": 340,
1895
+ "width": 151.20000000000002,
1896
+ "height": 26.666666666666668,
1897
+ "shape": "rect",
1898
+ "fill": "F0C8A0"
1899
+ },
1900
+ {
1901
+ "kind": "text",
1902
+ "x": 1005.3333333333334,
1903
+ "y": 305.3333333333333,
1904
+ "width": 210.66666666666666,
1905
+ "height": 60,
1906
+ "textRole": "body",
1907
+ "fontSize": 23,
1908
+ "textCapacity": 6
1909
+ },
1910
+ {
1911
+ "kind": "text",
1912
+ "x": 552,
1913
+ "y": 421.3333333333333,
1914
+ "width": 649.3333333333334,
1915
+ "height": 42.666666666666664,
1916
+ "textRole": "body",
1917
+ "fontSize": 20,
1918
+ "textCapacity": 24
1919
+ },
1920
+ {
1921
+ "kind": "shape",
1922
+ "x": 553.3333333333334,
1923
+ "y": 489.3333333333333,
1924
+ "width": 198.72,
1925
+ "height": 26.666666666666668,
1926
+ "shape": "rect",
1927
+ "fill": "5a4e42"
1928
+ },
1929
+ {
1930
+ "kind": "shape",
1931
+ "x": 553.3333333333334,
1932
+ "y": 529.3333333333334,
1933
+ "width": 315.36,
1934
+ "height": 26.666666666666668,
1935
+ "shape": "rect",
1936
+ "fill": "F0C8A0"
1937
+ },
1938
+ {
1939
+ "kind": "text",
1940
+ "x": 1005.3333333333334,
1941
+ "y": 494.6666666666667,
1942
+ "width": 210.66666666666666,
1943
+ "height": 60,
1944
+ "textRole": "body",
1945
+ "fontSize": 23,
1946
+ "textCapacity": 6
1947
+ },
1948
+ {
1949
+ "kind": "text",
1950
+ "x": 64,
1951
+ "y": 633.3333333333334,
1952
+ "width": 1152,
1953
+ "height": 33.333333333333336,
1954
+ "textRole": "body",
1955
+ "fontSize": 13,
1956
+ "textCapacity": 66
1957
+ },
1958
+ {
1959
+ "kind": "text",
1960
+ "x": 64,
1961
+ "y": 676,
1962
+ "width": 1044,
1963
+ "height": 21.333333333333332,
1964
+ "textRole": "body",
1965
+ "fontSize": 9,
1966
+ "textCapacity": 87
1967
+ },
1968
+ {
1969
+ "kind": "text",
1970
+ "x": 1161.3333333333333,
1971
+ "y": 672,
1972
+ "width": 54.666666666666664,
1973
+ "height": 29.333333333333332,
1974
+ "textRole": "body",
1975
+ "fontSize": 11,
1976
+ "textCapacity": 3
1977
+ }
1978
+ ],
1979
+ "jsxReference": ""
1980
+ },
1981
+ {
1982
+ "slideNumber": 9,
1983
+ "sourceTitle": "Choose the next move with evidence",
1984
+ "family": "comparison",
1985
+ "titlePosition": "left",
1986
+ "bodyColumns": 2,
1987
+ "density": "high",
1988
+ "features": [
1989
+ "matrix"
1990
+ ],
1991
+ "recommendedRoles": [
1992
+ "comparison"
1993
+ ],
1994
+ "structureSummary": "Two-axis decision map with direct labels and a recommended next step",
1995
+ "zones": [
1996
+ {
1997
+ "kind": "shape",
1998
+ "x": 1157.3333333333333,
1999
+ "y": 30.666666666666668,
2000
+ "width": 37.333333333333336,
2001
+ "height": 37.333333333333336,
2002
+ "shape": "ellipse",
2003
+ "fill": "1A1A1A"
2004
+ },
2005
+ {
2006
+ "kind": "shape",
2007
+ "x": 1210.6666666666667,
2008
+ "y": 38.666666666666664,
2009
+ "width": 21.333333333333332,
2010
+ "height": 21.333333333333332,
2011
+ "shape": "ellipse",
2012
+ "fill": "1A1A1A"
2013
+ },
2014
+ {
2015
+ "kind": "text",
2016
+ "x": 64,
2017
+ "y": 36,
2018
+ "width": 886.6666666666666,
2019
+ "height": 26.666666666666668,
2020
+ "textRole": "body",
2021
+ "fontSize": 10,
2022
+ "textCapacity": 66
2023
+ },
2024
+ {
2025
+ "kind": "title",
2026
+ "x": 64,
2027
+ "y": 101.33333333333333,
2028
+ "width": 1152,
2029
+ "height": 85.33333333333333,
2030
+ "textRole": "title",
2031
+ "fontSize": 32,
2032
+ "textCapacity": 27
2033
+ },
2034
+ {
2035
+ "kind": "text",
2036
+ "x": 1005.3333333333334,
2037
+ "y": 61.333333333333336,
2038
+ "width": 210.66666666666666,
2039
+ "height": 17.333333333333332,
2040
+ "textRole": "body",
2041
+ "fontSize": 9,
2042
+ "textCapacity": 17
2043
+ },
2044
+ {
2045
+ "kind": "text",
2046
+ "x": 64,
2047
+ "y": 202.66666666666666,
2048
+ "width": 1133.3333333333333,
2049
+ "height": 33.333333333333336,
2050
+ "textRole": "body",
2051
+ "fontSize": 13,
2052
+ "textCapacity": 65
2053
+ },
2054
+ {
2055
+ "kind": "shape",
2056
+ "x": 118.66666666666667,
2057
+ "y": 245.33333333333334,
2058
+ "width": 662.6666666666666,
2059
+ "height": 336,
2060
+ "shape": "rect",
2061
+ "fill": "e9c29b"
2062
+ },
2063
+ {
2064
+ "kind": "shape",
2065
+ "x": 450.6666666666667,
2066
+ "y": 245.33333333333334,
2067
+ "width": 330.6666666666667,
2068
+ "height": 168,
2069
+ "shape": "rect",
2070
+ "fill": "c5a585"
2071
+ },
2072
+ {
2073
+ "kind": "text",
2074
+ "x": 137.33333333333334,
2075
+ "y": 258.6666666666667,
2076
+ "width": 285.3333333333333,
2077
+ "height": 30.666666666666668,
2078
+ "textRole": "body",
2079
+ "fontSize": 10,
2080
+ "textCapacity": 42
2081
+ },
2082
+ {
2083
+ "kind": "text",
2084
+ "x": 472,
2085
+ "y": 258.6666666666667,
2086
+ "width": 285.3333333333333,
2087
+ "height": 30.666666666666668,
2088
+ "textRole": "body",
2089
+ "fontSize": 10,
2090
+ "textCapacity": 42
2091
+ },
2092
+ {
2093
+ "kind": "text",
2094
+ "x": 137.33333333333334,
2095
+ "y": 545.3333333333334,
2096
+ "width": 285.3333333333333,
2097
+ "height": 30.666666666666668,
2098
+ "textRole": "body",
2099
+ "fontSize": 10,
2100
+ "textCapacity": 42
2101
+ },
2102
+ {
2103
+ "kind": "text",
2104
+ "x": 472,
2105
+ "y": 545.3333333333334,
2106
+ "width": 285.3333333333333,
2107
+ "height": 30.666666666666668,
2108
+ "textRole": "body",
2109
+ "fontSize": 10,
2110
+ "textCapacity": 42
2111
+ },
2112
+ {
2113
+ "kind": "shape",
2114
+ "x": 236,
2115
+ "y": 345.3333333333333,
2116
+ "width": 18.666666666666668,
2117
+ "height": 18.666666666666668,
2118
+ "shape": "ellipse",
2119
+ "fill": "897460"
2120
+ },
2121
+ {
2122
+ "kind": "text",
2123
+ "x": 269.3333333333333,
2124
+ "y": 338.6666666666667,
2125
+ "width": 50.666666666666664,
2126
+ "height": 37.333333333333336,
2127
+ "textRole": "body",
2128
+ "fontSize": 15,
2129
+ "textCapacity": 2
2130
+ },
2131
+ {
2132
+ "kind": "shape",
2133
+ "x": 557.3333333333334,
2134
+ "y": 322.6666666666667,
2135
+ "width": 34.666666666666664,
2136
+ "height": 34.666666666666664,
2137
+ "shape": "ellipse",
2138
+ "fill": "1A1A1A"
2139
+ },
2140
+ {
2141
+ "kind": "text",
2142
+ "x": 598.6666666666666,
2143
+ "y": 324,
2144
+ "width": 50.666666666666664,
2145
+ "height": 37.333333333333336,
2146
+ "textRole": "body",
2147
+ "fontSize": 15,
2148
+ "textCapacity": 2
2149
+ },
2150
+ {
2151
+ "kind": "shape",
2152
+ "x": 500,
2153
+ "y": 376,
2154
+ "width": 18.666666666666668,
2155
+ "height": 18.666666666666668,
2156
+ "shape": "ellipse",
2157
+ "fill": "897460"
2158
+ },
2159
+ {
2160
+ "kind": "text",
2161
+ "x": 533.3333333333334,
2162
+ "y": 369.3333333333333,
2163
+ "width": 50.666666666666664,
2164
+ "height": 37.333333333333336,
2165
+ "textRole": "body",
2166
+ "fontSize": 15,
2167
+ "textCapacity": 2
2168
+ },
2169
+ {
2170
+ "kind": "shape",
2171
+ "x": 293.3333333333333,
2172
+ "y": 462.6666666666667,
2173
+ "width": 18.666666666666668,
2174
+ "height": 18.666666666666668,
2175
+ "shape": "ellipse",
2176
+ "fill": "897460"
2177
+ },
2178
+ {
2179
+ "kind": "text",
2180
+ "x": 326.6666666666667,
2181
+ "y": 456,
2182
+ "width": 50.666666666666664,
2183
+ "height": 37.333333333333336,
2184
+ "textRole": "body",
2185
+ "fontSize": 15,
2186
+ "textCapacity": 2
2187
+ },
2188
+ {
2189
+ "kind": "shape",
2190
+ "x": 634.6666666666666,
2191
+ "y": 473.3333333333333,
2192
+ "width": 18.666666666666668,
2193
+ "height": 18.666666666666668,
2194
+ "shape": "ellipse",
2195
+ "fill": "897460"
2196
+ },
2197
+ {
2198
+ "kind": "text",
2199
+ "x": 668,
2200
+ "y": 466.6666666666667,
2201
+ "width": 50.666666666666664,
2202
+ "height": 37.333333333333336,
2203
+ "textRole": "body",
2204
+ "fontSize": 15,
2205
+ "textCapacity": 2
2206
+ },
2207
+ {
2208
+ "kind": "text",
2209
+ "x": 118.66666666666667,
2210
+ "y": 589.3333333333334,
2211
+ "width": 317.3333333333333,
2212
+ "height": 29.333333333333332,
2213
+ "textRole": "body",
2214
+ "fontSize": 11,
2215
+ "textCapacity": 21
2216
+ },
2217
+ {
2218
+ "kind": "text",
2219
+ "x": 469.3333333333333,
2220
+ "y": 589.3333333333334,
2221
+ "width": 312,
2222
+ "height": 29.333333333333332,
2223
+ "textRole": "body",
2224
+ "fontSize": 11,
2225
+ "textCapacity": 21
2226
+ },
2227
+ {
2228
+ "kind": "text",
2229
+ "x": 842.6666666666666,
2230
+ "y": 230.66666666666666,
2231
+ "width": 373.3333333333333,
2232
+ "height": 33.333333333333336,
2233
+ "textRole": "body",
2234
+ "fontSize": 13,
2235
+ "textCapacity": 21
2236
+ },
2237
+ {
2238
+ "kind": "title",
2239
+ "x": 842.6666666666666,
2240
+ "y": 286.6666666666667,
2241
+ "width": 373.3333333333333,
2242
+ "height": 82.66666666666667,
2243
+ "textRole": "title",
2244
+ "fontSize": 32,
2245
+ "textCapacity": 8
2246
+ },
2247
+ {
2248
+ "kind": "text",
2249
+ "x": 842.6666666666666,
2250
+ "y": 414.6666666666667,
2251
+ "width": 146.66666666666666,
2252
+ "height": 41.333333333333336,
2253
+ "textRole": "body",
2254
+ "fontSize": 14,
2255
+ "textCapacity": 14
2256
+ },
2257
+ {
2258
+ "kind": "text",
2259
+ "x": 1004,
2260
+ "y": 414.6666666666667,
2261
+ "width": 212,
2262
+ "height": 45.333333333333336,
2263
+ "textRole": "body",
2264
+ "fontSize": 16,
2265
+ "textCapacity": 9
2266
+ },
2267
+ {
2268
+ "kind": "text",
2269
+ "x": 842.6666666666666,
2270
+ "y": 476,
2271
+ "width": 146.66666666666666,
2272
+ "height": 41.333333333333336,
2273
+ "textRole": "body",
2274
+ "fontSize": 14,
2275
+ "textCapacity": 14
2276
+ },
2277
+ {
2278
+ "kind": "text",
2279
+ "x": 1004,
2280
+ "y": 476,
2281
+ "width": 212,
2282
+ "height": 45.333333333333336,
2283
+ "textRole": "body",
2284
+ "fontSize": 16,
2285
+ "textCapacity": 9
2286
+ },
2287
+ {
2288
+ "kind": "text",
2289
+ "x": 842.6666666666666,
2290
+ "y": 537.3333333333334,
2291
+ "width": 146.66666666666666,
2292
+ "height": 41.333333333333336,
2293
+ "textRole": "body",
2294
+ "fontSize": 14,
2295
+ "textCapacity": 14
2296
+ },
2297
+ {
2298
+ "kind": "text",
2299
+ "x": 1004,
2300
+ "y": 537.3333333333334,
2301
+ "width": 212,
2302
+ "height": 45.333333333333336,
2303
+ "textRole": "body",
2304
+ "fontSize": 16,
2305
+ "textCapacity": 9
2306
+ },
2307
+ {
2308
+ "kind": "text",
2309
+ "x": 64,
2310
+ "y": 633.3333333333334,
2311
+ "width": 1152,
2312
+ "height": 33.333333333333336,
2313
+ "textRole": "body",
2314
+ "fontSize": 13,
2315
+ "textCapacity": 66
2316
+ },
2317
+ {
2318
+ "kind": "text",
2319
+ "x": 64,
2320
+ "y": 676,
2321
+ "width": 1044,
2322
+ "height": 21.333333333333332,
2323
+ "textRole": "body",
2324
+ "fontSize": 9,
2325
+ "textCapacity": 87
2326
+ },
2327
+ {
2328
+ "kind": "text",
2329
+ "x": 1161.3333333333333,
2330
+ "y": 672,
2331
+ "width": 54.666666666666664,
2332
+ "height": 29.333333333333332,
2333
+ "textRole": "body",
2334
+ "fontSize": 11,
2335
+ "textCapacity": 3
2336
+ }
2337
+ ],
2338
+ "jsxReference": ""
2339
+ },
2340
+ {
2341
+ "slideNumber": 10,
2342
+ "sourceTitle": "Connect each measure to a response",
2343
+ "family": "table",
2344
+ "titlePosition": "left",
2345
+ "bodyColumns": 2,
2346
+ "density": "high",
2347
+ "features": [
2348
+ "scorecard"
2349
+ ],
2350
+ "recommendedRoles": [
2351
+ "table"
2352
+ ],
2353
+ "structureSummary": "Actual, target and response aligned across four measures",
2354
+ "zones": [
2355
+ {
2356
+ "kind": "shape",
2357
+ "x": 1157.3333333333333,
2358
+ "y": 30.666666666666668,
2359
+ "width": 37.333333333333336,
2360
+ "height": 37.333333333333336,
2361
+ "shape": "ellipse",
2362
+ "fill": "1A1A1A"
2363
+ },
2364
+ {
2365
+ "kind": "shape",
2366
+ "x": 1210.6666666666667,
2367
+ "y": 38.666666666666664,
2368
+ "width": 21.333333333333332,
2369
+ "height": 21.333333333333332,
2370
+ "shape": "ellipse",
2371
+ "fill": "1A1A1A"
2372
+ },
2373
+ {
2374
+ "kind": "text",
2375
+ "x": 64,
2376
+ "y": 36,
2377
+ "width": 886.6666666666666,
2378
+ "height": 26.666666666666668,
2379
+ "textRole": "body",
2380
+ "fontSize": 10,
2381
+ "textCapacity": 66
2382
+ },
2383
+ {
2384
+ "kind": "title",
2385
+ "x": 64,
2386
+ "y": 101.33333333333333,
2387
+ "width": 1152,
2388
+ "height": 85.33333333333333,
2389
+ "textRole": "title",
2390
+ "fontSize": 32,
2391
+ "textCapacity": 27
2392
+ },
2393
+ {
2394
+ "kind": "text",
2395
+ "x": 1005.3333333333334,
2396
+ "y": 61.333333333333336,
2397
+ "width": 210.66666666666666,
2398
+ "height": 17.333333333333332,
2399
+ "textRole": "body",
2400
+ "fontSize": 9,
2401
+ "textCapacity": 17
2402
+ },
2403
+ {
2404
+ "kind": "text",
2405
+ "x": 64,
2406
+ "y": 222.66666666666666,
2407
+ "width": 373.3333333333333,
2408
+ "height": 32,
2409
+ "textRole": "body",
2410
+ "fontSize": 11,
2411
+ "textCapacity": 25
2412
+ },
2413
+ {
2414
+ "kind": "text",
2415
+ "x": 497.3333333333333,
2416
+ "y": 222.66666666666666,
2417
+ "width": 226.66666666666666,
2418
+ "height": 32,
2419
+ "textRole": "body",
2420
+ "fontSize": 11,
2421
+ "textCapacity": 15
2422
+ },
2423
+ {
2424
+ "kind": "text",
2425
+ "x": 697.3333333333334,
2426
+ "y": 222.66666666666666,
2427
+ "width": 226.66666666666666,
2428
+ "height": 32,
2429
+ "textRole": "body",
2430
+ "fontSize": 11,
2431
+ "textCapacity": 15
2432
+ },
2433
+ {
2434
+ "kind": "text",
2435
+ "x": 922.6666666666666,
2436
+ "y": 222.66666666666666,
2437
+ "width": 226.66666666666666,
2438
+ "height": 32,
2439
+ "textRole": "body",
2440
+ "fontSize": 11,
2441
+ "textCapacity": 15
2442
+ },
2443
+ {
2444
+ "kind": "text",
2445
+ "x": 81.33333333333333,
2446
+ "y": 294.6666666666667,
2447
+ "width": 373.3333333333333,
2448
+ "height": 49.333333333333336,
2449
+ "textRole": "body",
2450
+ "fontSize": 18,
2451
+ "textCapacity": 15
2452
+ },
2453
+ {
2454
+ "kind": "text",
2455
+ "x": 497.3333333333333,
2456
+ "y": 285.3333333333333,
2457
+ "width": 172,
2458
+ "height": 60,
2459
+ "textRole": "body",
2460
+ "fontSize": 28,
2461
+ "textCapacity": 4
2462
+ },
2463
+ {
2464
+ "kind": "text",
2465
+ "x": 697.3333333333334,
2466
+ "y": 298.6666666666667,
2467
+ "width": 193.33333333333334,
2468
+ "height": 44,
2469
+ "textRole": "body",
2470
+ "fontSize": 17,
2471
+ "textCapacity": 8
2472
+ },
2473
+ {
2474
+ "kind": "text",
2475
+ "x": 922.6666666666666,
2476
+ "y": 297.3333333333333,
2477
+ "width": 36,
2478
+ "height": 40,
2479
+ "textRole": "body",
2480
+ "fontSize": 18,
2481
+ "textCapacity": 1
2482
+ },
2483
+ {
2484
+ "kind": "text",
2485
+ "x": 980,
2486
+ "y": 298.6666666666667,
2487
+ "width": 210.66666666666666,
2488
+ "height": 40,
2489
+ "textRole": "body",
2490
+ "fontSize": 16,
2491
+ "textCapacity": 9
2492
+ },
2493
+ {
2494
+ "kind": "text",
2495
+ "x": 81.33333333333333,
2496
+ "y": 376,
2497
+ "width": 373.3333333333333,
2498
+ "height": 49.333333333333336,
2499
+ "textRole": "body",
2500
+ "fontSize": 18,
2501
+ "textCapacity": 15
2502
+ },
2503
+ {
2504
+ "kind": "text",
2505
+ "x": 497.3333333333333,
2506
+ "y": 366.6666666666667,
2507
+ "width": 172,
2508
+ "height": 60,
2509
+ "textRole": "body",
2510
+ "fontSize": 28,
2511
+ "textCapacity": 4
2512
+ },
2513
+ {
2514
+ "kind": "text",
2515
+ "x": 697.3333333333334,
2516
+ "y": 380,
2517
+ "width": 193.33333333333334,
2518
+ "height": 44,
2519
+ "textRole": "body",
2520
+ "fontSize": 17,
2521
+ "textCapacity": 8
2522
+ },
2523
+ {
2524
+ "kind": "text",
2525
+ "x": 922.6666666666666,
2526
+ "y": 378.6666666666667,
2527
+ "width": 36,
2528
+ "height": 40,
2529
+ "textRole": "body",
2530
+ "fontSize": 18,
2531
+ "textCapacity": 1
2532
+ },
2533
+ {
2534
+ "kind": "text",
2535
+ "x": 980,
2536
+ "y": 380,
2537
+ "width": 210.66666666666666,
2538
+ "height": 40,
2539
+ "textRole": "body",
2540
+ "fontSize": 16,
2541
+ "textCapacity": 9
2542
+ },
2543
+ {
2544
+ "kind": "shape",
2545
+ "x": 64,
2546
+ "y": 434.6666666666667,
2547
+ "width": 1152,
2548
+ "height": 81.33333333333333,
2549
+ "shape": "rect",
2550
+ "fill": "d8b591"
2551
+ },
2552
+ {
2553
+ "kind": "shape",
2554
+ "x": 64,
2555
+ "y": 434.6666666666667,
2556
+ "width": 4,
2557
+ "height": 81.33333333333333,
2558
+ "shape": "rect",
2559
+ "fill": "1A1A1A"
2560
+ },
2561
+ {
2562
+ "kind": "text",
2563
+ "x": 81.33333333333333,
2564
+ "y": 457.3333333333333,
2565
+ "width": 373.3333333333333,
2566
+ "height": 49.333333333333336,
2567
+ "textRole": "body",
2568
+ "fontSize": 18,
2569
+ "textCapacity": 15
2570
+ },
2571
+ {
2572
+ "kind": "text",
2573
+ "x": 497.3333333333333,
2574
+ "y": 448,
2575
+ "width": 172,
2576
+ "height": 60,
2577
+ "textRole": "body",
2578
+ "fontSize": 28,
2579
+ "textCapacity": 4
2580
+ },
2581
+ {
2582
+ "kind": "text",
2583
+ "x": 697.3333333333334,
2584
+ "y": 461.3333333333333,
2585
+ "width": 193.33333333333334,
2586
+ "height": 44,
2587
+ "textRole": "body",
2588
+ "fontSize": 17,
2589
+ "textCapacity": 8
2590
+ },
2591
+ {
2592
+ "kind": "text",
2593
+ "x": 922.6666666666666,
2594
+ "y": 460,
2595
+ "width": 36,
2596
+ "height": 40,
2597
+ "textRole": "body",
2598
+ "fontSize": 18,
2599
+ "textCapacity": 1
2600
+ },
2601
+ {
2602
+ "kind": "text",
2603
+ "x": 980,
2604
+ "y": 461.3333333333333,
2605
+ "width": 210.66666666666666,
2606
+ "height": 40,
2607
+ "textRole": "body",
2608
+ "fontSize": 16,
2609
+ "textCapacity": 9
2610
+ },
2611
+ {
2612
+ "kind": "text",
2613
+ "x": 81.33333333333333,
2614
+ "y": 538.6666666666666,
2615
+ "width": 373.3333333333333,
2616
+ "height": 49.333333333333336,
2617
+ "textRole": "body",
2618
+ "fontSize": 18,
2619
+ "textCapacity": 15
2620
+ },
2621
+ {
2622
+ "kind": "text",
2623
+ "x": 497.3333333333333,
2624
+ "y": 529.3333333333334,
2625
+ "width": 172,
2626
+ "height": 60,
2627
+ "textRole": "body",
2628
+ "fontSize": 28,
2629
+ "textCapacity": 4
2630
+ },
2631
+ {
2632
+ "kind": "text",
2633
+ "x": 697.3333333333334,
2634
+ "y": 542.6666666666666,
2635
+ "width": 193.33333333333334,
2636
+ "height": 44,
2637
+ "textRole": "body",
2638
+ "fontSize": 17,
2639
+ "textCapacity": 8
2640
+ },
2641
+ {
2642
+ "kind": "text",
2643
+ "x": 922.6666666666666,
2644
+ "y": 541.3333333333334,
2645
+ "width": 36,
2646
+ "height": 40,
2647
+ "textRole": "body",
2648
+ "fontSize": 18,
2649
+ "textCapacity": 1
2650
+ },
2651
+ {
2652
+ "kind": "text",
2653
+ "x": 980,
2654
+ "y": 542.6666666666666,
2655
+ "width": 210.66666666666666,
2656
+ "height": 40,
2657
+ "textRole": "body",
2658
+ "fontSize": 16,
2659
+ "textCapacity": 9
2660
+ },
2661
+ {
2662
+ "kind": "text",
2663
+ "x": 64,
2664
+ "y": 633.3333333333334,
2665
+ "width": 1152,
2666
+ "height": 33.333333333333336,
2667
+ "textRole": "body",
2668
+ "fontSize": 13,
2669
+ "textCapacity": 66
2670
+ },
2671
+ {
2672
+ "kind": "text",
2673
+ "x": 64,
2674
+ "y": 676,
2675
+ "width": 1044,
2676
+ "height": 21.333333333333332,
2677
+ "textRole": "body",
2678
+ "fontSize": 9,
2679
+ "textCapacity": 87
2680
+ },
2681
+ {
2682
+ "kind": "text",
2683
+ "x": 1161.3333333333333,
2684
+ "y": 672,
2685
+ "width": 54.666666666666664,
2686
+ "height": 29.333333333333332,
2687
+ "textRole": "body",
2688
+ "fontSize": 11,
2689
+ "textCapacity": 3
2690
+ }
2691
+ ],
2692
+ "jsxReference": ""
2693
+ },
2694
+ {
2695
+ "slideNumber": 11,
2696
+ "sourceTitle": "Sequence the work around a decision gate",
2697
+ "family": "process",
2698
+ "titlePosition": "left",
2699
+ "bodyColumns": 2,
2700
+ "density": "high",
2701
+ "features": [
2702
+ "roadmap"
2703
+ ],
2704
+ "recommendedRoles": [
2705
+ "process"
2706
+ ],
2707
+ "structureSummary": "Four timed workstreams and a decision gate",
2708
+ "zones": [
2709
+ {
2710
+ "kind": "shape",
2711
+ "x": 1157.3333333333333,
2712
+ "y": 30.666666666666668,
2713
+ "width": 37.333333333333336,
2714
+ "height": 37.333333333333336,
2715
+ "shape": "ellipse",
2716
+ "fill": "1A1A1A"
2717
+ },
2718
+ {
2719
+ "kind": "shape",
2720
+ "x": 1210.6666666666667,
2721
+ "y": 38.666666666666664,
2722
+ "width": 21.333333333333332,
2723
+ "height": 21.333333333333332,
2724
+ "shape": "ellipse",
2725
+ "fill": "1A1A1A"
2726
+ },
2727
+ {
2728
+ "kind": "text",
2729
+ "x": 64,
2730
+ "y": 36,
2731
+ "width": 886.6666666666666,
2732
+ "height": 26.666666666666668,
2733
+ "textRole": "body",
2734
+ "fontSize": 10,
2735
+ "textCapacity": 66
2736
+ },
2737
+ {
2738
+ "kind": "title",
2739
+ "x": 64,
2740
+ "y": 101.33333333333333,
2741
+ "width": 1152,
2742
+ "height": 85.33333333333333,
2743
+ "textRole": "title",
2744
+ "fontSize": 32,
2745
+ "textCapacity": 27
2746
+ },
2747
+ {
2748
+ "kind": "text",
2749
+ "x": 1005.3333333333334,
2750
+ "y": 61.333333333333336,
2751
+ "width": 210.66666666666666,
2752
+ "height": 17.333333333333332,
2753
+ "textRole": "body",
2754
+ "fontSize": 9,
2755
+ "textCapacity": 17
2756
+ },
2757
+ {
2758
+ "kind": "text",
2759
+ "x": 64,
2760
+ "y": 222.66666666666666,
2761
+ "width": 324,
2762
+ "height": 30.666666666666668,
2763
+ "textRole": "body",
2764
+ "fontSize": 11,
2765
+ "textCapacity": 22
2766
+ },
2767
+ {
2768
+ "kind": "text",
2769
+ "x": 421.3333333333333,
2770
+ "y": 221.33333333333334,
2771
+ "width": 176,
2772
+ "height": 33.333333333333336,
2773
+ "textRole": "body",
2774
+ "fontSize": 12,
2775
+ "textCapacity": 11
2776
+ },
2777
+ {
2778
+ "kind": "text",
2779
+ "x": 617.3333333333334,
2780
+ "y": 221.33333333333334,
2781
+ "width": 176,
2782
+ "height": 33.333333333333336,
2783
+ "textRole": "body",
2784
+ "fontSize": 12,
2785
+ "textCapacity": 11
2786
+ },
2787
+ {
2788
+ "kind": "text",
2789
+ "x": 813.3333333333334,
2790
+ "y": 221.33333333333334,
2791
+ "width": 176,
2792
+ "height": 33.333333333333336,
2793
+ "textRole": "body",
2794
+ "fontSize": 12,
2795
+ "textCapacity": 11
2796
+ },
2797
+ {
2798
+ "kind": "text",
2799
+ "x": 1009.3333333333334,
2800
+ "y": 221.33333333333334,
2801
+ "width": 176,
2802
+ "height": 33.333333333333336,
2803
+ "textRole": "body",
2804
+ "fontSize": 12,
2805
+ "textCapacity": 11
2806
+ },
2807
+ {
2808
+ "kind": "text",
2809
+ "x": 64,
2810
+ "y": 273.3333333333333,
2811
+ "width": 318.6666666666667,
2812
+ "height": 40,
2813
+ "textRole": "body",
2814
+ "fontSize": 18,
2815
+ "textCapacity": 13
2816
+ },
2817
+ {
2818
+ "kind": "text",
2819
+ "x": 64,
2820
+ "y": 313.3333333333333,
2821
+ "width": 318.6666666666667,
2822
+ "height": 32,
2823
+ "textRole": "body",
2824
+ "fontSize": 11,
2825
+ "textCapacity": 21
2826
+ },
2827
+ {
2828
+ "kind": "shape",
2829
+ "x": 406.6666666666667,
2830
+ "y": 289.3333333333333,
2831
+ "width": 176.4,
2832
+ "height": 29.333333333333332,
2833
+ "shape": "rect",
2834
+ "fill": "b6997c"
2835
+ },
2836
+ {
2837
+ "kind": "shape",
2838
+ "x": 579.0666666666667,
2839
+ "y": 300,
2840
+ "width": 8,
2841
+ "height": 8,
2842
+ "shape": "ellipse",
2843
+ "fill": "7a6856"
2844
+ },
2845
+ {
2846
+ "kind": "text",
2847
+ "x": 64,
2848
+ "y": 354.6666666666667,
2849
+ "width": 318.6666666666667,
2850
+ "height": 40,
2851
+ "textRole": "body",
2852
+ "fontSize": 18,
2853
+ "textCapacity": 13
2854
+ },
2855
+ {
2856
+ "kind": "text",
2857
+ "x": 64,
2858
+ "y": 394.6666666666667,
2859
+ "width": 318.6666666666667,
2860
+ "height": 32,
2861
+ "textRole": "body",
2862
+ "fontSize": 11,
2863
+ "textCapacity": 21
2864
+ },
2865
+ {
2866
+ "kind": "shape",
2867
+ "x": 543.8666666666667,
2868
+ "y": 370.6666666666667,
2869
+ "width": 254.79999999999998,
2870
+ "height": 29.333333333333332,
2871
+ "shape": "rect",
2872
+ "fill": "b6997c"
2873
+ },
2874
+ {
2875
+ "kind": "shape",
2876
+ "x": 794.6666666666666,
2877
+ "y": 381.3333333333333,
2878
+ "width": 8,
2879
+ "height": 8,
2880
+ "shape": "ellipse",
2881
+ "fill": "7a6856"
2882
+ },
2883
+ {
2884
+ "kind": "text",
2885
+ "x": 64,
2886
+ "y": 436,
2887
+ "width": 318.6666666666667,
2888
+ "height": 40,
2889
+ "textRole": "body",
2890
+ "fontSize": 18,
2891
+ "textCapacity": 13
2892
+ },
2893
+ {
2894
+ "kind": "text",
2895
+ "x": 64,
2896
+ "y": 476,
2897
+ "width": 318.6666666666667,
2898
+ "height": 32,
2899
+ "textRole": "body",
2900
+ "fontSize": 11,
2901
+ "textCapacity": 21
2902
+ },
2903
+ {
2904
+ "kind": "shape",
2905
+ "x": 759.4666666666667,
2906
+ "y": 452,
2907
+ "width": 215.60000000000002,
2908
+ "height": 29.333333333333332,
2909
+ "shape": "rect",
2910
+ "fill": "1A1A1A"
2911
+ },
2912
+ {
2913
+ "kind": "shape",
2914
+ "x": 971.0666666666667,
2915
+ "y": 462.6666666666667,
2916
+ "width": 8,
2917
+ "height": 8,
2918
+ "shape": "ellipse",
2919
+ "fill": "1A1A1A"
2920
+ },
2921
+ {
2922
+ "kind": "text",
2923
+ "x": 64,
2924
+ "y": 517.3333333333334,
2925
+ "width": 318.6666666666667,
2926
+ "height": 40,
2927
+ "textRole": "body",
2928
+ "fontSize": 18,
2929
+ "textCapacity": 13
2930
+ },
2931
+ {
2932
+ "kind": "text",
2933
+ "x": 64,
2934
+ "y": 557.3333333333334,
2935
+ "width": 318.6666666666667,
2936
+ "height": 32,
2937
+ "textRole": "body",
2938
+ "fontSize": 11,
2939
+ "textCapacity": 21
2940
+ },
2941
+ {
2942
+ "kind": "shape",
2943
+ "x": 955.4666666666666,
2944
+ "y": 533.3333333333334,
2945
+ "width": 235.20000000000002,
2946
+ "height": 29.333333333333332,
2947
+ "shape": "rect",
2948
+ "fill": "b6997c"
2949
+ },
2950
+ {
2951
+ "kind": "shape",
2952
+ "x": 1186.6666666666665,
2953
+ "y": 544,
2954
+ "width": 8,
2955
+ "height": 8,
2956
+ "shape": "ellipse",
2957
+ "fill": "7a6856"
2958
+ },
2959
+ {
2960
+ "kind": "shape",
2961
+ "x": 949.3333333333334,
2962
+ "y": 592,
2963
+ "width": 10.666666666666666,
2964
+ "height": 10.666666666666666,
2965
+ "shape": "ellipse",
2966
+ "fill": "1A1A1A"
2967
+ },
2968
+ {
2969
+ "kind": "text",
2970
+ "x": 64,
2971
+ "y": 633.3333333333334,
2972
+ "width": 1152,
2973
+ "height": 33.333333333333336,
2974
+ "textRole": "body",
2975
+ "fontSize": 13,
2976
+ "textCapacity": 66
2977
+ },
2978
+ {
2979
+ "kind": "text",
2980
+ "x": 64,
2981
+ "y": 676,
2982
+ "width": 1044,
2983
+ "height": 21.333333333333332,
2984
+ "textRole": "body",
2985
+ "fontSize": 9,
2986
+ "textCapacity": 87
2987
+ },
2988
+ {
2989
+ "kind": "text",
2990
+ "x": 1161.3333333333333,
2991
+ "y": 672,
2992
+ "width": 54.666666666666664,
2993
+ "height": 29.333333333333332,
2994
+ "textRole": "body",
2995
+ "fontSize": 11,
2996
+ "textCapacity": 3
2997
+ }
2998
+ ],
2999
+ "jsxReference": ""
3000
+ },
3001
+ {
3002
+ "slideNumber": 12,
3003
+ "sourceTitle": "Closing",
3004
+ "family": "closing",
3005
+ "titlePosition": "left",
3006
+ "bodyColumns": 1,
3007
+ "density": "medium",
3008
+ "features": [
3009
+ "closing"
3010
+ ],
3011
+ "recommendedRoles": [
3012
+ "closing"
3013
+ ],
3014
+ "structureSummary": "Closing",
3015
+ "zones": [
3016
+ {
3017
+ "kind": "text",
3018
+ "x": 64,
3019
+ "y": 105.33333333333333,
3020
+ "width": 1133.3333333333333,
3021
+ "height": 34.666666666666664,
3022
+ "textRole": "body",
3023
+ "fontSize": 13,
3024
+ "textCapacity": 65
3025
+ },
3026
+ {
3027
+ "kind": "title",
3028
+ "x": 64,
3029
+ "y": 245.33333333333334,
3030
+ "width": 1146.6666666666667,
3031
+ "height": 262.6666666666667,
3032
+ "textRole": "title",
3033
+ "fontSize": 55,
3034
+ "textCapacity": 45
3035
+ },
3036
+ {
3037
+ "kind": "text",
3038
+ "x": 64,
3039
+ "y": 674.6666666666666,
3040
+ "width": 1013.3333333333334,
3041
+ "height": 21.333333333333332,
3042
+ "textRole": "body",
3043
+ "fontSize": 9,
3044
+ "textCapacity": 84
3045
+ },
3046
+ {
3047
+ "kind": "text",
3048
+ "x": 1160,
3049
+ "y": 670.6666666666666,
3050
+ "width": 53.333333333333336,
3051
+ "height": 26.666666666666668,
3052
+ "textRole": "body",
3053
+ "fontSize": 11,
3054
+ "textCapacity": 3
3055
+ }
3056
+ ],
3057
+ "jsxReference": ""
3058
+ }
3059
+ ]
3060
+ }
3061
+ },
3062
+ "provenance": {
3063
+ "kind": "mit-adaptation",
3064
+ "license": "MIT",
3065
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/playful",
3066
+ "author": "Zara Zhang",
3067
+ "adaptedBy": "DSH Desktop contributors",
3068
+ "modified": "2026-09-06"
3069
+ }
3070
+ }