@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,3119 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-soft-editorial",
4
+ "category": "editorial",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-soft-editorial",
7
+ "name": "Soft Editorial",
8
+ "localizedNames": {
9
+ "en": "Soft Editorial",
10
+ "zh": "柔和编辑部"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "柔和编辑部 · Soft Editorial",
14
+ "previewTitle": "Soft Editorial",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Georgia",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Georgia",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "Songti SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Georgia",
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": "Cormorant Garamond"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "F2EEDF",
52
+ "text": "2A241B",
53
+ "accent": "E1A4C2",
54
+ "surface": "D6DD63",
55
+ "secondary": "E8C9B6",
56
+ "muted": "E8C9B6"
57
+ },
58
+ "referenceDirectory": "editorial/dsh-soft-editorial",
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": "3fbfacdbe3ce6ab7e1a1820ab4fc9ac43cb0e5f47961f05a6e91439bae6accf1"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "F2EEDF",
95
+ "text": "2A241B",
96
+ "accent": "E1A4C2",
97
+ "surface": "D6DD63",
98
+ "secondary": "E8C9B6",
99
+ "muted": "E8C9B6"
100
+ },
101
+ "source": {
102
+ "fileName": "soft-editorial-reference.jpg",
103
+ "sha256": "3fbfacdbe3ce6ab7e1a1820ab4fc9ac43cb0e5f47961f05a6e91439bae6accf1",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 18,
106
+ "averageCharacters": 296,
107
+ "visualGrammar": "soft-editorial",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Soft Editorial / 柔和编辑部\n\nAdapted from Zara Zhang's Soft Editorial, 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: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Cormorant Garamond. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif 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 magazine spread aesthetic — the kind of layout a small print quarterly with field-notes pretensions would commission. Cormorant Garamond carries every headline and ornamental moment with mixed roman and italic; Work Sans recedes into supporting body. The palette is cream paper with a quartet of pastel candy accents (dusty pink, chartreuse lemon, soft peach blush, sage green, lilac) used as colored card backgrounds. Generous rounded cards (24–36px radius) float on translucent white over the cream field. The mood is editorial calm with a sprinkling of riso-print color — closer to a literary research notebook than a corporate deck.\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. A judgment worth revisiting — Asymmetric argument with three supporting evidence rows\n3. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n4. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n5. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n6. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n7. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n8. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n9. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\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": 6,
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": "quote",
137
+ "slideCount": 1,
138
+ "sampleSlideNumbers": [
139
+ 3
140
+ ],
141
+ "titlePosition": "left",
142
+ "bodyColumns": 2,
143
+ "density": "high",
144
+ "averageTextFrames": 18,
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": "data",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 2,
167
+ "density": "high",
168
+ "averageTextFrames": 30,
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": 13,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "process",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 2,
191
+ "density": "medium",
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": 26,
205
+ "averageMediaFrames": 0
206
+ },
207
+ {
208
+ "family": "grid",
209
+ "slideCount": 1,
210
+ "sampleSlideNumbers": [
211
+ 9
212
+ ],
213
+ "titlePosition": "left",
214
+ "bodyColumns": 3,
215
+ "density": "high",
216
+ "averageTextFrames": 13,
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": "text",
274
+ "x": 64,
275
+ "y": 45.333333333333336,
276
+ "width": 1066.6666666666667,
277
+ "height": 32,
278
+ "textRole": "body",
279
+ "fontSize": 12,
280
+ "textCapacity": 66
281
+ },
282
+ {
283
+ "kind": "title",
284
+ "x": 64,
285
+ "y": 197.33333333333334,
286
+ "width": 640,
287
+ "height": 280,
288
+ "textRole": "title",
289
+ "fontSize": 64,
290
+ "textCapacity": 14
291
+ },
292
+ {
293
+ "kind": "shape",
294
+ "x": 785.3333333333334,
295
+ "y": 165.33333333333334,
296
+ "width": 430.6666666666667,
297
+ "height": 440,
298
+ "shape": "roundRect",
299
+ "fill": "E1A4C2"
300
+ },
301
+ {
302
+ "kind": "title",
303
+ "x": 826.6666666666666,
304
+ "y": 236,
305
+ "width": 353.3333333333333,
306
+ "height": 266.6666666666667,
307
+ "textRole": "title",
308
+ "fontSize": 38,
309
+ "textCapacity": 24
310
+ },
311
+ {
312
+ "kind": "text",
313
+ "x": 66.66666666666667,
314
+ "y": 553.3333333333334,
315
+ "width": 653.3333333333334,
316
+ "height": 66.66666666666667,
317
+ "textRole": "body",
318
+ "fontSize": 18,
319
+ "textCapacity": 54
320
+ },
321
+ {
322
+ "kind": "text",
323
+ "x": 64,
324
+ "y": 674.6666666666666,
325
+ "width": 1013.3333333333334,
326
+ "height": 21.333333333333332,
327
+ "textRole": "body",
328
+ "fontSize": 9,
329
+ "textCapacity": 84
330
+ },
331
+ {
332
+ "kind": "text",
333
+ "x": 1160,
334
+ "y": 670.6666666666666,
335
+ "width": 53.333333333333336,
336
+ "height": 26.666666666666668,
337
+ "textRole": "body",
338
+ "fontSize": 11,
339
+ "textCapacity": 3
340
+ }
341
+ ],
342
+ "jsxReference": ""
343
+ },
344
+ {
345
+ "slideNumber": 2,
346
+ "sourceTitle": "A judgment worth revisiting",
347
+ "family": "insights",
348
+ "titlePosition": "left",
349
+ "bodyColumns": 2,
350
+ "density": "medium",
351
+ "features": [
352
+ "thesis"
353
+ ],
354
+ "recommendedRoles": [
355
+ "insights"
356
+ ],
357
+ "structureSummary": "Asymmetric argument with three supporting evidence rows",
358
+ "zones": [
359
+ {
360
+ "kind": "text",
361
+ "x": 64,
362
+ "y": 36,
363
+ "width": 886.6666666666666,
364
+ "height": 26.666666666666668,
365
+ "textRole": "body",
366
+ "fontSize": 10,
367
+ "textCapacity": 66
368
+ },
369
+ {
370
+ "kind": "title",
371
+ "x": 64,
372
+ "y": 101.33333333333333,
373
+ "width": 1152,
374
+ "height": 85.33333333333333,
375
+ "textRole": "title",
376
+ "fontSize": 32,
377
+ "textCapacity": 27
378
+ },
379
+ {
380
+ "kind": "text",
381
+ "x": 1005.3333333333334,
382
+ "y": 61.333333333333336,
383
+ "width": 210.66666666666666,
384
+ "height": 17.333333333333332,
385
+ "textRole": "body",
386
+ "fontSize": 9,
387
+ "textCapacity": 17
388
+ },
389
+ {
390
+ "kind": "text",
391
+ "x": 64,
392
+ "y": 218.66666666666666,
393
+ "width": 464,
394
+ "height": 33.333333333333336,
395
+ "textRole": "body",
396
+ "fontSize": 13,
397
+ "textCapacity": 26
398
+ },
399
+ {
400
+ "kind": "title",
401
+ "x": 64,
402
+ "y": 276,
403
+ "width": 442.6666666666667,
404
+ "height": 236,
405
+ "textRole": "title",
406
+ "fontSize": 30,
407
+ "textCapacity": 55
408
+ },
409
+ {
410
+ "kind": "text",
411
+ "x": 64,
412
+ "y": 560,
413
+ "width": 440,
414
+ "height": 57.333333333333336,
415
+ "textRole": "body",
416
+ "fontSize": 17,
417
+ "textCapacity": 38
418
+ },
419
+ {
420
+ "kind": "text",
421
+ "x": 588,
422
+ "y": 222.66666666666666,
423
+ "width": 66.66666666666667,
424
+ "height": 50.666666666666664,
425
+ "textRole": "body",
426
+ "fontSize": 26,
427
+ "textCapacity": 1
428
+ },
429
+ {
430
+ "kind": "text",
431
+ "x": 685.3333333333334,
432
+ "y": 226.66666666666666,
433
+ "width": 332,
434
+ "height": 42.666666666666664,
435
+ "textRole": "body",
436
+ "fontSize": 23,
437
+ "textCapacity": 10
438
+ },
439
+ {
440
+ "kind": "text",
441
+ "x": 1040,
442
+ "y": 234.66666666666666,
443
+ "width": 176,
444
+ "height": 32,
445
+ "textRole": "body",
446
+ "fontSize": 10,
447
+ "textCapacity": 26
448
+ },
449
+ {
450
+ "kind": "text",
451
+ "x": 685.3333333333334,
452
+ "y": 281.3333333333333,
453
+ "width": 530.6666666666666,
454
+ "height": 62.666666666666664,
455
+ "textRole": "body",
456
+ "fontSize": 18,
457
+ "textCapacity": 44
458
+ },
459
+ {
460
+ "kind": "text",
461
+ "x": 588,
462
+ "y": 348,
463
+ "width": 66.66666666666667,
464
+ "height": 50.666666666666664,
465
+ "textRole": "body",
466
+ "fontSize": 26,
467
+ "textCapacity": 1
468
+ },
469
+ {
470
+ "kind": "text",
471
+ "x": 685.3333333333334,
472
+ "y": 352,
473
+ "width": 332,
474
+ "height": 42.666666666666664,
475
+ "textRole": "body",
476
+ "fontSize": 23,
477
+ "textCapacity": 10
478
+ },
479
+ {
480
+ "kind": "text",
481
+ "x": 1040,
482
+ "y": 360,
483
+ "width": 176,
484
+ "height": 32,
485
+ "textRole": "body",
486
+ "fontSize": 10,
487
+ "textCapacity": 26
488
+ },
489
+ {
490
+ "kind": "text",
491
+ "x": 685.3333333333334,
492
+ "y": 406.6666666666667,
493
+ "width": 530.6666666666666,
494
+ "height": 62.666666666666664,
495
+ "textRole": "body",
496
+ "fontSize": 18,
497
+ "textCapacity": 44
498
+ },
499
+ {
500
+ "kind": "text",
501
+ "x": 588,
502
+ "y": 473.3333333333333,
503
+ "width": 66.66666666666667,
504
+ "height": 50.666666666666664,
505
+ "textRole": "body",
506
+ "fontSize": 26,
507
+ "textCapacity": 1
508
+ },
509
+ {
510
+ "kind": "text",
511
+ "x": 685.3333333333334,
512
+ "y": 477.3333333333333,
513
+ "width": 332,
514
+ "height": 42.666666666666664,
515
+ "textRole": "body",
516
+ "fontSize": 23,
517
+ "textCapacity": 10
518
+ },
519
+ {
520
+ "kind": "text",
521
+ "x": 1040,
522
+ "y": 485.3333333333333,
523
+ "width": 176,
524
+ "height": 32,
525
+ "textRole": "body",
526
+ "fontSize": 10,
527
+ "textCapacity": 26
528
+ },
529
+ {
530
+ "kind": "text",
531
+ "x": 685.3333333333334,
532
+ "y": 532,
533
+ "width": 530.6666666666666,
534
+ "height": 62.666666666666664,
535
+ "textRole": "body",
536
+ "fontSize": 18,
537
+ "textCapacity": 44
538
+ },
539
+ {
540
+ "kind": "text",
541
+ "x": 64,
542
+ "y": 676,
543
+ "width": 1044,
544
+ "height": 21.333333333333332,
545
+ "textRole": "body",
546
+ "fontSize": 9,
547
+ "textCapacity": 87
548
+ },
549
+ {
550
+ "kind": "text",
551
+ "x": 1161.3333333333333,
552
+ "y": 672,
553
+ "width": 54.666666666666664,
554
+ "height": 29.333333333333332,
555
+ "textRole": "body",
556
+ "fontSize": 11,
557
+ "textCapacity": 3
558
+ }
559
+ ],
560
+ "jsxReference": ""
561
+ },
562
+ {
563
+ "slideNumber": 3,
564
+ "sourceTitle": "Separate the record from the explanation",
565
+ "family": "quote",
566
+ "titlePosition": "left",
567
+ "bodyColumns": 2,
568
+ "density": "high",
569
+ "features": [
570
+ "evidence"
571
+ ],
572
+ "recommendedRoles": [
573
+ "quote"
574
+ ],
575
+ "structureSummary": "Interview excerpt, observation, competing explanation and next check",
576
+ "zones": [
577
+ {
578
+ "kind": "text",
579
+ "x": 64,
580
+ "y": 36,
581
+ "width": 886.6666666666666,
582
+ "height": 26.666666666666668,
583
+ "textRole": "body",
584
+ "fontSize": 10,
585
+ "textCapacity": 66
586
+ },
587
+ {
588
+ "kind": "title",
589
+ "x": 64,
590
+ "y": 101.33333333333333,
591
+ "width": 1152,
592
+ "height": 85.33333333333333,
593
+ "textRole": "title",
594
+ "fontSize": 32,
595
+ "textCapacity": 27
596
+ },
597
+ {
598
+ "kind": "text",
599
+ "x": 1005.3333333333334,
600
+ "y": 61.333333333333336,
601
+ "width": 210.66666666666666,
602
+ "height": 17.333333333333332,
603
+ "textRole": "body",
604
+ "fontSize": 9,
605
+ "textCapacity": 17
606
+ },
607
+ {
608
+ "kind": "shape",
609
+ "x": 64,
610
+ "y": 234.66666666666666,
611
+ "width": 369.3333333333333,
612
+ "height": 365.3333333333333,
613
+ "shape": "rect",
614
+ "fill": "D6DD63"
615
+ },
616
+ {
617
+ "kind": "text",
618
+ "x": 92,
619
+ "y": 253.33333333333334,
620
+ "width": 313.3333333333333,
621
+ "height": 30.666666666666668,
622
+ "textRole": "body",
623
+ "fontSize": 10,
624
+ "textCapacity": 46
625
+ },
626
+ {
627
+ "kind": "text",
628
+ "x": 92,
629
+ "y": 317.3333333333333,
630
+ "width": 309.3333333333333,
631
+ "height": 173.33333333333334,
632
+ "textRole": "body",
633
+ "fontSize": 28,
634
+ "textCapacity": 32
635
+ },
636
+ {
637
+ "kind": "text",
638
+ "x": 92,
639
+ "y": 546.6666666666666,
640
+ "width": 312,
641
+ "height": 36,
642
+ "textRole": "body",
643
+ "fontSize": 12,
644
+ "textCapacity": 38
645
+ },
646
+ {
647
+ "kind": "title",
648
+ "x": 482.6666666666667,
649
+ "y": 221.33333333333334,
650
+ "width": 253.33333333333334,
651
+ "height": 90.66666666666667,
652
+ "textRole": "title",
653
+ "fontSize": 48,
654
+ "textCapacity": 3
655
+ },
656
+ {
657
+ "kind": "text",
658
+ "x": 740,
659
+ "y": 234.66666666666666,
660
+ "width": 462.6666666666667,
661
+ "height": 64,
662
+ "textRole": "body",
663
+ "fontSize": 22,
664
+ "textCapacity": 15
665
+ },
666
+ {
667
+ "kind": "shape",
668
+ "x": 485.3333333333333,
669
+ "y": 321.3333333333333,
670
+ "width": 18.666666666666668,
671
+ "height": 18.666666666666668,
672
+ "shape": "rect",
673
+ "fill": "2A241B"
674
+ },
675
+ {
676
+ "kind": "shape",
677
+ "x": 514.6666666666666,
678
+ "y": 321.3333333333333,
679
+ "width": 18.666666666666668,
680
+ "height": 18.666666666666668,
681
+ "shape": "rect",
682
+ "fill": "2A241B"
683
+ },
684
+ {
685
+ "kind": "shape",
686
+ "x": 544,
687
+ "y": 321.3333333333333,
688
+ "width": 18.666666666666668,
689
+ "height": 18.666666666666668,
690
+ "shape": "rect",
691
+ "fill": "2A241B"
692
+ },
693
+ {
694
+ "kind": "shape",
695
+ "x": 573.3333333333334,
696
+ "y": 321.3333333333333,
697
+ "width": 18.666666666666668,
698
+ "height": 18.666666666666668,
699
+ "shape": "rect",
700
+ "fill": "cecabc"
701
+ },
702
+ {
703
+ "kind": "shape",
704
+ "x": 602.6666666666666,
705
+ "y": 321.3333333333333,
706
+ "width": 18.666666666666668,
707
+ "height": 18.666666666666668,
708
+ "shape": "rect",
709
+ "fill": "cecabc"
710
+ },
711
+ {
712
+ "kind": "shape",
713
+ "x": 632,
714
+ "y": 321.3333333333333,
715
+ "width": 18.666666666666668,
716
+ "height": 18.666666666666668,
717
+ "shape": "rect",
718
+ "fill": "cecabc"
719
+ },
720
+ {
721
+ "kind": "shape",
722
+ "x": 661.3333333333334,
723
+ "y": 321.3333333333333,
724
+ "width": 18.666666666666668,
725
+ "height": 18.666666666666668,
726
+ "shape": "rect",
727
+ "fill": "cecabc"
728
+ },
729
+ {
730
+ "kind": "shape",
731
+ "x": 690.6666666666666,
732
+ "y": 321.3333333333333,
733
+ "width": 18.666666666666668,
734
+ "height": 18.666666666666668,
735
+ "shape": "rect",
736
+ "fill": "cecabc"
737
+ },
738
+ {
739
+ "kind": "text",
740
+ "x": 748,
741
+ "y": 317.3333333333333,
742
+ "width": 468,
743
+ "height": 33.333333333333336,
744
+ "textRole": "body",
745
+ "fontSize": 10,
746
+ "textCapacity": 70
747
+ },
748
+ {
749
+ "kind": "text",
750
+ "x": 482.6666666666667,
751
+ "y": 390.6666666666667,
752
+ "width": 233.33333333333334,
753
+ "height": 45.333333333333336,
754
+ "textRole": "body",
755
+ "fontSize": 15,
756
+ "textCapacity": 22
757
+ },
758
+ {
759
+ "kind": "text",
760
+ "x": 741.3333333333334,
761
+ "y": 389.3333333333333,
762
+ "width": 469.3333333333333,
763
+ "height": 62.666666666666664,
764
+ "textRole": "body",
765
+ "fontSize": 17,
766
+ "textCapacity": 40
767
+ },
768
+ {
769
+ "kind": "text",
770
+ "x": 482.6666666666667,
771
+ "y": 466.6666666666667,
772
+ "width": 233.33333333333334,
773
+ "height": 45.333333333333336,
774
+ "textRole": "body",
775
+ "fontSize": 15,
776
+ "textCapacity": 22
777
+ },
778
+ {
779
+ "kind": "text",
780
+ "x": 741.3333333333334,
781
+ "y": 465.3333333333333,
782
+ "width": 469.3333333333333,
783
+ "height": 62.666666666666664,
784
+ "textRole": "body",
785
+ "fontSize": 17,
786
+ "textCapacity": 40
787
+ },
788
+ {
789
+ "kind": "text",
790
+ "x": 482.6666666666667,
791
+ "y": 542.6666666666666,
792
+ "width": 233.33333333333334,
793
+ "height": 45.333333333333336,
794
+ "textRole": "body",
795
+ "fontSize": 15,
796
+ "textCapacity": 22
797
+ },
798
+ {
799
+ "kind": "text",
800
+ "x": 741.3333333333334,
801
+ "y": 541.3333333333334,
802
+ "width": 469.3333333333333,
803
+ "height": 62.666666666666664,
804
+ "textRole": "body",
805
+ "fontSize": 17,
806
+ "textCapacity": 40
807
+ },
808
+ {
809
+ "kind": "text",
810
+ "x": 64,
811
+ "y": 633.3333333333334,
812
+ "width": 1152,
813
+ "height": 33.333333333333336,
814
+ "textRole": "body",
815
+ "fontSize": 13,
816
+ "textCapacity": 66
817
+ },
818
+ {
819
+ "kind": "text",
820
+ "x": 64,
821
+ "y": 676,
822
+ "width": 1044,
823
+ "height": 21.333333333333332,
824
+ "textRole": "body",
825
+ "fontSize": 9,
826
+ "textCapacity": 87
827
+ },
828
+ {
829
+ "kind": "text",
830
+ "x": 1161.3333333333333,
831
+ "y": 672,
832
+ "width": 54.666666666666664,
833
+ "height": 29.333333333333332,
834
+ "textRole": "body",
835
+ "fontSize": 11,
836
+ "textCapacity": 3
837
+ }
838
+ ],
839
+ "jsxReference": ""
840
+ },
841
+ {
842
+ "slideNumber": 4,
843
+ "sourceTitle": "Trace the question to testable branches",
844
+ "family": "process",
845
+ "titlePosition": "left",
846
+ "bodyColumns": 3,
847
+ "density": "high",
848
+ "features": [
849
+ "tree"
850
+ ],
851
+ "recommendedRoles": [
852
+ "process"
853
+ ],
854
+ "structureSummary": "Three-branch hypothesis tree with six testable leaves",
855
+ "zones": [
856
+ {
857
+ "kind": "text",
858
+ "x": 64,
859
+ "y": 36,
860
+ "width": 886.6666666666666,
861
+ "height": 26.666666666666668,
862
+ "textRole": "body",
863
+ "fontSize": 10,
864
+ "textCapacity": 66
865
+ },
866
+ {
867
+ "kind": "title",
868
+ "x": 64,
869
+ "y": 101.33333333333333,
870
+ "width": 1152,
871
+ "height": 85.33333333333333,
872
+ "textRole": "title",
873
+ "fontSize": 32,
874
+ "textCapacity": 27
875
+ },
876
+ {
877
+ "kind": "text",
878
+ "x": 1005.3333333333334,
879
+ "y": 61.333333333333336,
880
+ "width": 210.66666666666666,
881
+ "height": 17.333333333333332,
882
+ "textRole": "body",
883
+ "fontSize": 9,
884
+ "textCapacity": 17
885
+ },
886
+ {
887
+ "kind": "text",
888
+ "x": 64,
889
+ "y": 202.66666666666666,
890
+ "width": 1133.3333333333333,
891
+ "height": 33.333333333333336,
892
+ "textRole": "body",
893
+ "fontSize": 13,
894
+ "textCapacity": 65
895
+ },
896
+ {
897
+ "kind": "shape",
898
+ "x": 64,
899
+ "y": 362.6666666666667,
900
+ "width": 292,
901
+ "height": 140,
902
+ "shape": "rect",
903
+ "fill": "E1A4C2"
904
+ },
905
+ {
906
+ "kind": "text",
907
+ "x": 80,
908
+ "y": 380,
909
+ "width": 260,
910
+ "height": 114.66666666666667,
911
+ "textRole": "body",
912
+ "fontSize": 18,
913
+ "textCapacity": 40
914
+ },
915
+ {
916
+ "kind": "shape",
917
+ "x": 466.6666666666667,
918
+ "y": 245.33333333333334,
919
+ "width": 226.66666666666666,
920
+ "height": 77.33333333333333,
921
+ "shape": "rect",
922
+ "fill": "D6DD63"
923
+ },
924
+ {
925
+ "kind": "text",
926
+ "x": 482.6666666666667,
927
+ "y": 262.6666666666667,
928
+ "width": 194.66666666666666,
929
+ "height": 52,
930
+ "textRole": "body",
931
+ "fontSize": 18,
932
+ "textCapacity": 8
933
+ },
934
+ {
935
+ "kind": "text",
936
+ "x": 810.6666666666666,
937
+ "y": 236,
938
+ "width": 398.6666666666667,
939
+ "height": 45.333333333333336,
940
+ "textRole": "body",
941
+ "fontSize": 18,
942
+ "textCapacity": 16
943
+ },
944
+ {
945
+ "kind": "text",
946
+ "x": 810.6666666666666,
947
+ "y": 292,
948
+ "width": 398.6666666666667,
949
+ "height": 45.333333333333336,
950
+ "textRole": "body",
951
+ "fontSize": 18,
952
+ "textCapacity": 16
953
+ },
954
+ {
955
+ "kind": "shape",
956
+ "x": 466.6666666666667,
957
+ "y": 376,
958
+ "width": 226.66666666666666,
959
+ "height": 77.33333333333333,
960
+ "shape": "rect",
961
+ "fill": "D6DD63"
962
+ },
963
+ {
964
+ "kind": "text",
965
+ "x": 482.6666666666667,
966
+ "y": 393.3333333333333,
967
+ "width": 194.66666666666666,
968
+ "height": 52,
969
+ "textRole": "body",
970
+ "fontSize": 18,
971
+ "textCapacity": 8
972
+ },
973
+ {
974
+ "kind": "text",
975
+ "x": 810.6666666666666,
976
+ "y": 366.6666666666667,
977
+ "width": 398.6666666666667,
978
+ "height": 45.333333333333336,
979
+ "textRole": "body",
980
+ "fontSize": 18,
981
+ "textCapacity": 16
982
+ },
983
+ {
984
+ "kind": "text",
985
+ "x": 810.6666666666666,
986
+ "y": 422.6666666666667,
987
+ "width": 398.6666666666667,
988
+ "height": 45.333333333333336,
989
+ "textRole": "body",
990
+ "fontSize": 18,
991
+ "textCapacity": 16
992
+ },
993
+ {
994
+ "kind": "shape",
995
+ "x": 466.6666666666667,
996
+ "y": 506.6666666666667,
997
+ "width": 226.66666666666666,
998
+ "height": 77.33333333333333,
999
+ "shape": "rect",
1000
+ "fill": "D6DD63"
1001
+ },
1002
+ {
1003
+ "kind": "text",
1004
+ "x": 482.6666666666667,
1005
+ "y": 524,
1006
+ "width": 194.66666666666666,
1007
+ "height": 52,
1008
+ "textRole": "body",
1009
+ "fontSize": 18,
1010
+ "textCapacity": 8
1011
+ },
1012
+ {
1013
+ "kind": "text",
1014
+ "x": 810.6666666666666,
1015
+ "y": 497.3333333333333,
1016
+ "width": 398.6666666666667,
1017
+ "height": 45.333333333333336,
1018
+ "textRole": "body",
1019
+ "fontSize": 18,
1020
+ "textCapacity": 16
1021
+ },
1022
+ {
1023
+ "kind": "text",
1024
+ "x": 810.6666666666666,
1025
+ "y": 553.3333333333334,
1026
+ "width": 398.6666666666667,
1027
+ "height": 45.333333333333336,
1028
+ "textRole": "body",
1029
+ "fontSize": 18,
1030
+ "textCapacity": 16
1031
+ },
1032
+ {
1033
+ "kind": "text",
1034
+ "x": 64,
1035
+ "y": 633.3333333333334,
1036
+ "width": 1152,
1037
+ "height": 33.333333333333336,
1038
+ "textRole": "body",
1039
+ "fontSize": 13,
1040
+ "textCapacity": 66
1041
+ },
1042
+ {
1043
+ "kind": "text",
1044
+ "x": 64,
1045
+ "y": 676,
1046
+ "width": 1044,
1047
+ "height": 21.333333333333332,
1048
+ "textRole": "body",
1049
+ "fontSize": 9,
1050
+ "textCapacity": 87
1051
+ },
1052
+ {
1053
+ "kind": "text",
1054
+ "x": 1161.3333333333333,
1055
+ "y": 672,
1056
+ "width": 54.666666666666664,
1057
+ "height": 29.333333333333332,
1058
+ "textRole": "body",
1059
+ "fontSize": 11,
1060
+ "textCapacity": 3
1061
+ }
1062
+ ],
1063
+ "jsxReference": ""
1064
+ },
1065
+ {
1066
+ "slideNumber": 5,
1067
+ "sourceTitle": "Read the trend and investigate the pause",
1068
+ "family": "data",
1069
+ "titlePosition": "left",
1070
+ "bodyColumns": 2,
1071
+ "density": "high",
1072
+ "features": [
1073
+ "trend"
1074
+ ],
1075
+ "recommendedRoles": [
1076
+ "data"
1077
+ ],
1078
+ "structureSummary": "Labeled six-point trend with common scale and a separate interpretation",
1079
+ "zones": [
1080
+ {
1081
+ "kind": "text",
1082
+ "x": 64,
1083
+ "y": 36,
1084
+ "width": 886.6666666666666,
1085
+ "height": 26.666666666666668,
1086
+ "textRole": "body",
1087
+ "fontSize": 10,
1088
+ "textCapacity": 66
1089
+ },
1090
+ {
1091
+ "kind": "title",
1092
+ "x": 64,
1093
+ "y": 101.33333333333333,
1094
+ "width": 1152,
1095
+ "height": 85.33333333333333,
1096
+ "textRole": "title",
1097
+ "fontSize": 32,
1098
+ "textCapacity": 27
1099
+ },
1100
+ {
1101
+ "kind": "text",
1102
+ "x": 1005.3333333333334,
1103
+ "y": 61.333333333333336,
1104
+ "width": 210.66666666666666,
1105
+ "height": 17.333333333333332,
1106
+ "textRole": "body",
1107
+ "fontSize": 9,
1108
+ "textCapacity": 17
1109
+ },
1110
+ {
1111
+ "kind": "text",
1112
+ "x": 64,
1113
+ "y": 202.66666666666666,
1114
+ "width": 1133.3333333333333,
1115
+ "height": 33.333333333333336,
1116
+ "textRole": "body",
1117
+ "fontSize": 13,
1118
+ "textCapacity": 65
1119
+ },
1120
+ {
1121
+ "kind": "shape",
1122
+ "x": 437.3333333333333,
1123
+ "y": 253.33333333333334,
1124
+ "width": 121.33333333333333,
1125
+ "height": 314.6666666666667,
1126
+ "shape": "rect",
1127
+ "fill": "f0e7dc"
1128
+ },
1129
+ {
1130
+ "kind": "text",
1131
+ "x": 64,
1132
+ "y": 554.6666666666666,
1133
+ "width": 40,
1134
+ "height": 29.333333333333332,
1135
+ "textRole": "body",
1136
+ "fontSize": 11,
1137
+ "textCapacity": 2
1138
+ },
1139
+ {
1140
+ "kind": "text",
1141
+ "x": 64,
1142
+ "y": 480,
1143
+ "width": 40,
1144
+ "height": 29.333333333333332,
1145
+ "textRole": "body",
1146
+ "fontSize": 11,
1147
+ "textCapacity": 2
1148
+ },
1149
+ {
1150
+ "kind": "text",
1151
+ "x": 64,
1152
+ "y": 405.3333333333333,
1153
+ "width": 40,
1154
+ "height": 29.333333333333332,
1155
+ "textRole": "body",
1156
+ "fontSize": 11,
1157
+ "textCapacity": 2
1158
+ },
1159
+ {
1160
+ "kind": "text",
1161
+ "x": 64,
1162
+ "y": 330.6666666666667,
1163
+ "width": 40,
1164
+ "height": 29.333333333333332,
1165
+ "textRole": "body",
1166
+ "fontSize": 11,
1167
+ "textCapacity": 2
1168
+ },
1169
+ {
1170
+ "kind": "text",
1171
+ "x": 64,
1172
+ "y": 256,
1173
+ "width": 40,
1174
+ "height": 29.333333333333332,
1175
+ "textRole": "body",
1176
+ "fontSize": 11,
1177
+ "textCapacity": 2
1178
+ },
1179
+ {
1180
+ "kind": "shape",
1181
+ "x": 134.4,
1182
+ "y": 377.06666666666666,
1183
+ "width": 8.533333333333333,
1184
+ "height": 8.533333333333333,
1185
+ "shape": "ellipse",
1186
+ "fill": "2A241B"
1187
+ },
1188
+ {
1189
+ "kind": "text",
1190
+ "x": 108,
1191
+ "y": 341.3333333333333,
1192
+ "width": 62.666666666666664,
1193
+ "height": 33.333333333333336,
1194
+ "textRole": "body",
1195
+ "fontSize": 15,
1196
+ "textCapacity": 3
1197
+ },
1198
+ {
1199
+ "kind": "text",
1200
+ "x": 117.33333333333333,
1201
+ "y": 582.6666666666666,
1202
+ "width": 49.333333333333336,
1203
+ "height": 32,
1204
+ "textRole": "body",
1205
+ "fontSize": 12,
1206
+ "textCapacity": 3
1207
+ },
1208
+ {
1209
+ "kind": "shape",
1210
+ "x": 265.06666666666666,
1211
+ "y": 362.13333333333327,
1212
+ "width": 8.533333333333333,
1213
+ "height": 8.533333333333333,
1214
+ "shape": "ellipse",
1215
+ "fill": "2A241B"
1216
+ },
1217
+ {
1218
+ "kind": "text",
1219
+ "x": 238.66666666666666,
1220
+ "y": 326.3999999999999,
1221
+ "width": 62.666666666666664,
1222
+ "height": 33.333333333333336,
1223
+ "textRole": "body",
1224
+ "fontSize": 15,
1225
+ "textCapacity": 3
1226
+ },
1227
+ {
1228
+ "kind": "text",
1229
+ "x": 248,
1230
+ "y": 582.6666666666666,
1231
+ "width": 49.333333333333336,
1232
+ "height": 32,
1233
+ "textRole": "body",
1234
+ "fontSize": 12,
1235
+ "textCapacity": 3
1236
+ },
1237
+ {
1238
+ "kind": "shape",
1239
+ "x": 395.73333333333335,
1240
+ "y": 350.93333333333334,
1241
+ "width": 8.533333333333333,
1242
+ "height": 8.533333333333333,
1243
+ "shape": "ellipse",
1244
+ "fill": "2A241B"
1245
+ },
1246
+ {
1247
+ "kind": "text",
1248
+ "x": 369.3333333333333,
1249
+ "y": 315.2,
1250
+ "width": 62.666666666666664,
1251
+ "height": 33.333333333333336,
1252
+ "textRole": "body",
1253
+ "fontSize": 15,
1254
+ "textCapacity": 3
1255
+ },
1256
+ {
1257
+ "kind": "text",
1258
+ "x": 378.6666666666667,
1259
+ "y": 582.6666666666666,
1260
+ "width": 49.333333333333336,
1261
+ "height": 32,
1262
+ "textRole": "body",
1263
+ "fontSize": 12,
1264
+ "textCapacity": 3
1265
+ },
1266
+ {
1267
+ "kind": "shape",
1268
+ "x": 524,
1269
+ "y": 352.2666666666667,
1270
+ "width": 13.333333333333334,
1271
+ "height": 13.333333333333334,
1272
+ "shape": "ellipse",
1273
+ "fill": "E1A4C2"
1274
+ },
1275
+ {
1276
+ "kind": "text",
1277
+ "x": 500,
1278
+ "y": 318.9333333333334,
1279
+ "width": 62.666666666666664,
1280
+ "height": 33.333333333333336,
1281
+ "textRole": "body",
1282
+ "fontSize": 15,
1283
+ "textCapacity": 3
1284
+ },
1285
+ {
1286
+ "kind": "text",
1287
+ "x": 509.3333333333333,
1288
+ "y": 582.6666666666666,
1289
+ "width": 49.333333333333336,
1290
+ "height": 32,
1291
+ "textRole": "body",
1292
+ "fontSize": 12,
1293
+ "textCapacity": 3
1294
+ },
1295
+ {
1296
+ "kind": "shape",
1297
+ "x": 657.0666666666667,
1298
+ "y": 324.8,
1299
+ "width": 8.533333333333333,
1300
+ "height": 8.533333333333333,
1301
+ "shape": "ellipse",
1302
+ "fill": "2A241B"
1303
+ },
1304
+ {
1305
+ "kind": "text",
1306
+ "x": 630.6666666666666,
1307
+ "y": 289.06666666666666,
1308
+ "width": 62.666666666666664,
1309
+ "height": 33.333333333333336,
1310
+ "textRole": "body",
1311
+ "fontSize": 15,
1312
+ "textCapacity": 3
1313
+ },
1314
+ {
1315
+ "kind": "text",
1316
+ "x": 640,
1317
+ "y": 582.6666666666666,
1318
+ "width": 49.333333333333336,
1319
+ "height": 32,
1320
+ "textRole": "body",
1321
+ "fontSize": 12,
1322
+ "textCapacity": 3
1323
+ },
1324
+ {
1325
+ "kind": "shape",
1326
+ "x": 787.7333333333332,
1327
+ "y": 298.6666666666667,
1328
+ "width": 8.533333333333333,
1329
+ "height": 8.533333333333333,
1330
+ "shape": "ellipse",
1331
+ "fill": "2A241B"
1332
+ },
1333
+ {
1334
+ "kind": "text",
1335
+ "x": 761.3333333333334,
1336
+ "y": 262.93333333333334,
1337
+ "width": 62.666666666666664,
1338
+ "height": 33.333333333333336,
1339
+ "textRole": "body",
1340
+ "fontSize": 15,
1341
+ "textCapacity": 3
1342
+ },
1343
+ {
1344
+ "kind": "text",
1345
+ "x": 770.6666666666666,
1346
+ "y": 582.6666666666666,
1347
+ "width": 49.333333333333336,
1348
+ "height": 32,
1349
+ "textRole": "body",
1350
+ "fontSize": 12,
1351
+ "textCapacity": 3
1352
+ },
1353
+ {
1354
+ "kind": "text",
1355
+ "x": 365.3333333333333,
1356
+ "y": 248,
1357
+ "width": 206.66666666666666,
1358
+ "height": 33.333333333333336,
1359
+ "textRole": "body",
1360
+ "fontSize": 13,
1361
+ "textCapacity": 11
1362
+ },
1363
+ {
1364
+ "kind": "text",
1365
+ "x": 905.3333333333334,
1366
+ "y": 217.33333333333334,
1367
+ "width": 310.6666666666667,
1368
+ "height": 33.333333333333336,
1369
+ "textRole": "body",
1370
+ "fontSize": 13,
1371
+ "textCapacity": 17
1372
+ },
1373
+ {
1374
+ "kind": "title",
1375
+ "x": 905.3333333333334,
1376
+ "y": 269.3333333333333,
1377
+ "width": 310.6666666666667,
1378
+ "height": 104,
1379
+ "textRole": "title",
1380
+ "fontSize": 56,
1381
+ "textCapacity": 4
1382
+ },
1383
+ {
1384
+ "kind": "text",
1385
+ "x": 905.3333333333334,
1386
+ "y": 381.3333333333333,
1387
+ "width": 305.3333333333333,
1388
+ "height": 73.33333333333333,
1389
+ "textRole": "body",
1390
+ "fontSize": 18,
1391
+ "textCapacity": 24
1392
+ },
1393
+ {
1394
+ "kind": "text",
1395
+ "x": 905.3333333333334,
1396
+ "y": 492,
1397
+ "width": 305.3333333333333,
1398
+ "height": 29.333333333333332,
1399
+ "textRole": "body",
1400
+ "fontSize": 10,
1401
+ "textCapacity": 44
1402
+ },
1403
+ {
1404
+ "kind": "text",
1405
+ "x": 905.3333333333334,
1406
+ "y": 538.6666666666666,
1407
+ "width": 305.3333333333333,
1408
+ "height": 66.66666666666667,
1409
+ "textRole": "body",
1410
+ "fontSize": 20,
1411
+ "textCapacity": 22
1412
+ },
1413
+ {
1414
+ "kind": "text",
1415
+ "x": 64,
1416
+ "y": 633.3333333333334,
1417
+ "width": 1152,
1418
+ "height": 33.333333333333336,
1419
+ "textRole": "body",
1420
+ "fontSize": 13,
1421
+ "textCapacity": 66
1422
+ },
1423
+ {
1424
+ "kind": "text",
1425
+ "x": 64,
1426
+ "y": 676,
1427
+ "width": 1044,
1428
+ "height": 21.333333333333332,
1429
+ "textRole": "body",
1430
+ "fontSize": 9,
1431
+ "textCapacity": 87
1432
+ },
1433
+ {
1434
+ "kind": "text",
1435
+ "x": 1161.3333333333333,
1436
+ "y": 672,
1437
+ "width": 54.666666666666664,
1438
+ "height": 29.333333333333332,
1439
+ "textRole": "body",
1440
+ "fontSize": 11,
1441
+ "textCapacity": 3
1442
+ }
1443
+ ],
1444
+ "jsxReference": ""
1445
+ },
1446
+ {
1447
+ "slideNumber": 6,
1448
+ "sourceTitle": "A small intervention, a measurable change",
1449
+ "family": "comparison",
1450
+ "titlePosition": "left",
1451
+ "bodyColumns": 2,
1452
+ "density": "high",
1453
+ "features": [
1454
+ "case"
1455
+ ],
1456
+ "recommendedRoles": [
1457
+ "comparison"
1458
+ ],
1459
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
1460
+ "zones": [
1461
+ {
1462
+ "kind": "text",
1463
+ "x": 64,
1464
+ "y": 36,
1465
+ "width": 886.6666666666666,
1466
+ "height": 26.666666666666668,
1467
+ "textRole": "body",
1468
+ "fontSize": 10,
1469
+ "textCapacity": 66
1470
+ },
1471
+ {
1472
+ "kind": "title",
1473
+ "x": 64,
1474
+ "y": 101.33333333333333,
1475
+ "width": 1152,
1476
+ "height": 85.33333333333333,
1477
+ "textRole": "title",
1478
+ "fontSize": 32,
1479
+ "textCapacity": 27
1480
+ },
1481
+ {
1482
+ "kind": "text",
1483
+ "x": 1005.3333333333334,
1484
+ "y": 61.333333333333336,
1485
+ "width": 210.66666666666666,
1486
+ "height": 17.333333333333332,
1487
+ "textRole": "body",
1488
+ "fontSize": 9,
1489
+ "textCapacity": 17
1490
+ },
1491
+ {
1492
+ "kind": "text",
1493
+ "x": 64,
1494
+ "y": 224,
1495
+ "width": 386.6666666666667,
1496
+ "height": 34.666666666666664,
1497
+ "textRole": "body",
1498
+ "fontSize": 12,
1499
+ "textCapacity": 24
1500
+ },
1501
+ {
1502
+ "kind": "title",
1503
+ "x": 64,
1504
+ "y": 289.3333333333333,
1505
+ "width": 384,
1506
+ "height": 161.33333333333334,
1507
+ "textRole": "title",
1508
+ "fontSize": 34,
1509
+ "textCapacity": 24
1510
+ },
1511
+ {
1512
+ "kind": "text",
1513
+ "x": 64,
1514
+ "y": 492,
1515
+ "width": 374.6666666666667,
1516
+ "height": 104,
1517
+ "textRole": "body",
1518
+ "fontSize": 20,
1519
+ "textCapacity": 42
1520
+ },
1521
+ {
1522
+ "kind": "text",
1523
+ "x": 552,
1524
+ "y": 232,
1525
+ "width": 649.3333333333334,
1526
+ "height": 42.666666666666664,
1527
+ "textRole": "body",
1528
+ "fontSize": 20,
1529
+ "textCapacity": 24
1530
+ },
1531
+ {
1532
+ "kind": "shape",
1533
+ "x": 553.3333333333334,
1534
+ "y": 300,
1535
+ "width": 388.8,
1536
+ "height": 26.666666666666668,
1537
+ "shape": "rect",
1538
+ "fill": "b6b1a4"
1539
+ },
1540
+ {
1541
+ "kind": "shape",
1542
+ "x": 553.3333333333334,
1543
+ "y": 340,
1544
+ "width": 151.20000000000002,
1545
+ "height": 26.666666666666668,
1546
+ "shape": "rect",
1547
+ "fill": "E1A4C2"
1548
+ },
1549
+ {
1550
+ "kind": "text",
1551
+ "x": 1005.3333333333334,
1552
+ "y": 305.3333333333333,
1553
+ "width": 210.66666666666666,
1554
+ "height": 60,
1555
+ "textRole": "body",
1556
+ "fontSize": 23,
1557
+ "textCapacity": 6
1558
+ },
1559
+ {
1560
+ "kind": "text",
1561
+ "x": 552,
1562
+ "y": 421.3333333333333,
1563
+ "width": 649.3333333333334,
1564
+ "height": 42.666666666666664,
1565
+ "textRole": "body",
1566
+ "fontSize": 20,
1567
+ "textCapacity": 24
1568
+ },
1569
+ {
1570
+ "kind": "shape",
1571
+ "x": 553.3333333333334,
1572
+ "y": 489.3333333333333,
1573
+ "width": 198.72,
1574
+ "height": 26.666666666666668,
1575
+ "shape": "rect",
1576
+ "fill": "b6b1a4"
1577
+ },
1578
+ {
1579
+ "kind": "shape",
1580
+ "x": 553.3333333333334,
1581
+ "y": 529.3333333333334,
1582
+ "width": 315.36,
1583
+ "height": 26.666666666666668,
1584
+ "shape": "rect",
1585
+ "fill": "E1A4C2"
1586
+ },
1587
+ {
1588
+ "kind": "text",
1589
+ "x": 1005.3333333333334,
1590
+ "y": 494.6666666666667,
1591
+ "width": 210.66666666666666,
1592
+ "height": 60,
1593
+ "textRole": "body",
1594
+ "fontSize": 23,
1595
+ "textCapacity": 6
1596
+ },
1597
+ {
1598
+ "kind": "text",
1599
+ "x": 64,
1600
+ "y": 633.3333333333334,
1601
+ "width": 1152,
1602
+ "height": 33.333333333333336,
1603
+ "textRole": "body",
1604
+ "fontSize": 13,
1605
+ "textCapacity": 66
1606
+ },
1607
+ {
1608
+ "kind": "text",
1609
+ "x": 64,
1610
+ "y": 676,
1611
+ "width": 1044,
1612
+ "height": 21.333333333333332,
1613
+ "textRole": "body",
1614
+ "fontSize": 9,
1615
+ "textCapacity": 87
1616
+ },
1617
+ {
1618
+ "kind": "text",
1619
+ "x": 1161.3333333333333,
1620
+ "y": 672,
1621
+ "width": 54.666666666666664,
1622
+ "height": 29.333333333333332,
1623
+ "textRole": "body",
1624
+ "fontSize": 11,
1625
+ "textCapacity": 3
1626
+ }
1627
+ ],
1628
+ "jsxReference": ""
1629
+ },
1630
+ {
1631
+ "slideNumber": 7,
1632
+ "sourceTitle": "Show how the judgment develops",
1633
+ "family": "process",
1634
+ "titlePosition": "left",
1635
+ "bodyColumns": 2,
1636
+ "density": "medium",
1637
+ "features": [
1638
+ "timeline"
1639
+ ],
1640
+ "recommendedRoles": [
1641
+ "process"
1642
+ ],
1643
+ "structureSummary": "Alternating milestone notes around a continuous argument timeline",
1644
+ "zones": [
1645
+ {
1646
+ "kind": "text",
1647
+ "x": 64,
1648
+ "y": 36,
1649
+ "width": 886.6666666666666,
1650
+ "height": 26.666666666666668,
1651
+ "textRole": "body",
1652
+ "fontSize": 10,
1653
+ "textCapacity": 66
1654
+ },
1655
+ {
1656
+ "kind": "title",
1657
+ "x": 64,
1658
+ "y": 101.33333333333333,
1659
+ "width": 1152,
1660
+ "height": 85.33333333333333,
1661
+ "textRole": "title",
1662
+ "fontSize": 32,
1663
+ "textCapacity": 27
1664
+ },
1665
+ {
1666
+ "kind": "text",
1667
+ "x": 1005.3333333333334,
1668
+ "y": 61.333333333333336,
1669
+ "width": 210.66666666666666,
1670
+ "height": 17.333333333333332,
1671
+ "textRole": "body",
1672
+ "fontSize": 9,
1673
+ "textCapacity": 17
1674
+ },
1675
+ {
1676
+ "kind": "shape",
1677
+ "x": 117.33333333333333,
1678
+ "y": 377.3333333333333,
1679
+ "width": 18.666666666666668,
1680
+ "height": 18.666666666666668,
1681
+ "shape": "ellipse",
1682
+ "fill": "E1A4C2"
1683
+ },
1684
+ {
1685
+ "kind": "text",
1686
+ "x": 142.66666666666666,
1687
+ "y": 397.3333333333333,
1688
+ "width": 80,
1689
+ "height": 33.333333333333336,
1690
+ "textRole": "body",
1691
+ "fontSize": 13,
1692
+ "textCapacity": 4
1693
+ },
1694
+ {
1695
+ "kind": "text",
1696
+ "x": 104,
1697
+ "y": 236,
1698
+ "width": 245.33333333333334,
1699
+ "height": 62.666666666666664,
1700
+ "textRole": "body",
1701
+ "fontSize": 27,
1702
+ "textCapacity": 6
1703
+ },
1704
+ {
1705
+ "kind": "text",
1706
+ "x": 104,
1707
+ "y": 298.6666666666667,
1708
+ "width": 242.66666666666666,
1709
+ "height": 76,
1710
+ "textRole": "body",
1711
+ "fontSize": 18,
1712
+ "textCapacity": 20
1713
+ },
1714
+ {
1715
+ "kind": "shape",
1716
+ "x": 402.6666666666667,
1717
+ "y": 377.3333333333333,
1718
+ "width": 18.666666666666668,
1719
+ "height": 18.666666666666668,
1720
+ "shape": "ellipse",
1721
+ "fill": "E1A4C2"
1722
+ },
1723
+ {
1724
+ "kind": "text",
1725
+ "x": 428,
1726
+ "y": 397.3333333333333,
1727
+ "width": 80,
1728
+ "height": 33.333333333333336,
1729
+ "textRole": "body",
1730
+ "fontSize": 13,
1731
+ "textCapacity": 4
1732
+ },
1733
+ {
1734
+ "kind": "text",
1735
+ "x": 389.3333333333333,
1736
+ "y": 440,
1737
+ "width": 245.33333333333334,
1738
+ "height": 62.666666666666664,
1739
+ "textRole": "body",
1740
+ "fontSize": 27,
1741
+ "textCapacity": 6
1742
+ },
1743
+ {
1744
+ "kind": "text",
1745
+ "x": 389.3333333333333,
1746
+ "y": 520,
1747
+ "width": 242.66666666666666,
1748
+ "height": 76,
1749
+ "textRole": "body",
1750
+ "fontSize": 18,
1751
+ "textCapacity": 20
1752
+ },
1753
+ {
1754
+ "kind": "shape",
1755
+ "x": 688,
1756
+ "y": 377.3333333333333,
1757
+ "width": 18.666666666666668,
1758
+ "height": 18.666666666666668,
1759
+ "shape": "ellipse",
1760
+ "fill": "E1A4C2"
1761
+ },
1762
+ {
1763
+ "kind": "text",
1764
+ "x": 713.3333333333334,
1765
+ "y": 397.3333333333333,
1766
+ "width": 80,
1767
+ "height": 33.333333333333336,
1768
+ "textRole": "body",
1769
+ "fontSize": 13,
1770
+ "textCapacity": 4
1771
+ },
1772
+ {
1773
+ "kind": "text",
1774
+ "x": 674.6666666666666,
1775
+ "y": 236,
1776
+ "width": 245.33333333333334,
1777
+ "height": 62.666666666666664,
1778
+ "textRole": "body",
1779
+ "fontSize": 27,
1780
+ "textCapacity": 6
1781
+ },
1782
+ {
1783
+ "kind": "text",
1784
+ "x": 674.6666666666666,
1785
+ "y": 298.6666666666667,
1786
+ "width": 242.66666666666666,
1787
+ "height": 76,
1788
+ "textRole": "body",
1789
+ "fontSize": 18,
1790
+ "textCapacity": 20
1791
+ },
1792
+ {
1793
+ "kind": "shape",
1794
+ "x": 973.3333333333334,
1795
+ "y": 377.3333333333333,
1796
+ "width": 18.666666666666668,
1797
+ "height": 18.666666666666668,
1798
+ "shape": "ellipse",
1799
+ "fill": "E1A4C2"
1800
+ },
1801
+ {
1802
+ "kind": "text",
1803
+ "x": 998.6666666666666,
1804
+ "y": 397.3333333333333,
1805
+ "width": 80,
1806
+ "height": 33.333333333333336,
1807
+ "textRole": "body",
1808
+ "fontSize": 13,
1809
+ "textCapacity": 4
1810
+ },
1811
+ {
1812
+ "kind": "text",
1813
+ "x": 960,
1814
+ "y": 440,
1815
+ "width": 245.33333333333334,
1816
+ "height": 62.666666666666664,
1817
+ "textRole": "body",
1818
+ "fontSize": 27,
1819
+ "textCapacity": 6
1820
+ },
1821
+ {
1822
+ "kind": "text",
1823
+ "x": 960,
1824
+ "y": 520,
1825
+ "width": 242.66666666666666,
1826
+ "height": 76,
1827
+ "textRole": "body",
1828
+ "fontSize": 18,
1829
+ "textCapacity": 20
1830
+ },
1831
+ {
1832
+ "kind": "text",
1833
+ "x": 64,
1834
+ "y": 633.3333333333334,
1835
+ "width": 1152,
1836
+ "height": 33.333333333333336,
1837
+ "textRole": "body",
1838
+ "fontSize": 13,
1839
+ "textCapacity": 66
1840
+ },
1841
+ {
1842
+ "kind": "text",
1843
+ "x": 64,
1844
+ "y": 676,
1845
+ "width": 1044,
1846
+ "height": 21.333333333333332,
1847
+ "textRole": "body",
1848
+ "fontSize": 9,
1849
+ "textCapacity": 87
1850
+ },
1851
+ {
1852
+ "kind": "text",
1853
+ "x": 1161.3333333333333,
1854
+ "y": 672,
1855
+ "width": 54.666666666666664,
1856
+ "height": 29.333333333333332,
1857
+ "textRole": "body",
1858
+ "fontSize": 11,
1859
+ "textCapacity": 3
1860
+ }
1861
+ ],
1862
+ "jsxReference": ""
1863
+ },
1864
+ {
1865
+ "slideNumber": 8,
1866
+ "sourceTitle": "Choose the next move with evidence",
1867
+ "family": "comparison",
1868
+ "titlePosition": "left",
1869
+ "bodyColumns": 2,
1870
+ "density": "high",
1871
+ "features": [
1872
+ "matrix"
1873
+ ],
1874
+ "recommendedRoles": [
1875
+ "comparison"
1876
+ ],
1877
+ "structureSummary": "Two-axis decision map with direct labels and a recommended next step",
1878
+ "zones": [
1879
+ {
1880
+ "kind": "text",
1881
+ "x": 64,
1882
+ "y": 36,
1883
+ "width": 886.6666666666666,
1884
+ "height": 26.666666666666668,
1885
+ "textRole": "body",
1886
+ "fontSize": 10,
1887
+ "textCapacity": 66
1888
+ },
1889
+ {
1890
+ "kind": "title",
1891
+ "x": 64,
1892
+ "y": 101.33333333333333,
1893
+ "width": 1152,
1894
+ "height": 85.33333333333333,
1895
+ "textRole": "title",
1896
+ "fontSize": 32,
1897
+ "textCapacity": 27
1898
+ },
1899
+ {
1900
+ "kind": "text",
1901
+ "x": 1005.3333333333334,
1902
+ "y": 61.333333333333336,
1903
+ "width": 210.66666666666666,
1904
+ "height": 17.333333333333332,
1905
+ "textRole": "body",
1906
+ "fontSize": 9,
1907
+ "textCapacity": 17
1908
+ },
1909
+ {
1910
+ "kind": "text",
1911
+ "x": 64,
1912
+ "y": 202.66666666666666,
1913
+ "width": 1133.3333333333333,
1914
+ "height": 33.333333333333336,
1915
+ "textRole": "body",
1916
+ "fontSize": 13,
1917
+ "textCapacity": 65
1918
+ },
1919
+ {
1920
+ "kind": "shape",
1921
+ "x": 118.66666666666667,
1922
+ "y": 245.33333333333334,
1923
+ "width": 662.6666666666666,
1924
+ "height": 336,
1925
+ "shape": "rect",
1926
+ "fill": "ebe7d8"
1927
+ },
1928
+ {
1929
+ "kind": "shape",
1930
+ "x": 450.6666666666667,
1931
+ "y": 245.33333333333334,
1932
+ "width": 330.6666666666667,
1933
+ "height": 168,
1934
+ "shape": "rect",
1935
+ "fill": "efdfd9"
1936
+ },
1937
+ {
1938
+ "kind": "text",
1939
+ "x": 137.33333333333334,
1940
+ "y": 258.6666666666667,
1941
+ "width": 285.3333333333333,
1942
+ "height": 30.666666666666668,
1943
+ "textRole": "body",
1944
+ "fontSize": 10,
1945
+ "textCapacity": 42
1946
+ },
1947
+ {
1948
+ "kind": "text",
1949
+ "x": 472,
1950
+ "y": 258.6666666666667,
1951
+ "width": 285.3333333333333,
1952
+ "height": 30.666666666666668,
1953
+ "textRole": "body",
1954
+ "fontSize": 10,
1955
+ "textCapacity": 42
1956
+ },
1957
+ {
1958
+ "kind": "text",
1959
+ "x": 137.33333333333334,
1960
+ "y": 545.3333333333334,
1961
+ "width": 285.3333333333333,
1962
+ "height": 30.666666666666668,
1963
+ "textRole": "body",
1964
+ "fontSize": 10,
1965
+ "textCapacity": 42
1966
+ },
1967
+ {
1968
+ "kind": "text",
1969
+ "x": 472,
1970
+ "y": 545.3333333333334,
1971
+ "width": 285.3333333333333,
1972
+ "height": 30.666666666666668,
1973
+ "textRole": "body",
1974
+ "fontSize": 10,
1975
+ "textCapacity": 42
1976
+ },
1977
+ {
1978
+ "kind": "shape",
1979
+ "x": 236,
1980
+ "y": 345.3333333333333,
1981
+ "width": 18.666666666666668,
1982
+ "height": 18.666666666666668,
1983
+ "shape": "ellipse",
1984
+ "fill": "928d81"
1985
+ },
1986
+ {
1987
+ "kind": "text",
1988
+ "x": 269.3333333333333,
1989
+ "y": 338.6666666666667,
1990
+ "width": 50.666666666666664,
1991
+ "height": 37.333333333333336,
1992
+ "textRole": "body",
1993
+ "fontSize": 15,
1994
+ "textCapacity": 2
1995
+ },
1996
+ {
1997
+ "kind": "shape",
1998
+ "x": 557.3333333333334,
1999
+ "y": 322.6666666666667,
2000
+ "width": 34.666666666666664,
2001
+ "height": 34.666666666666664,
2002
+ "shape": "ellipse",
2003
+ "fill": "2A241B"
2004
+ },
2005
+ {
2006
+ "kind": "text",
2007
+ "x": 598.6666666666666,
2008
+ "y": 324,
2009
+ "width": 50.666666666666664,
2010
+ "height": 37.333333333333336,
2011
+ "textRole": "body",
2012
+ "fontSize": 15,
2013
+ "textCapacity": 2
2014
+ },
2015
+ {
2016
+ "kind": "shape",
2017
+ "x": 500,
2018
+ "y": 376,
2019
+ "width": 18.666666666666668,
2020
+ "height": 18.666666666666668,
2021
+ "shape": "ellipse",
2022
+ "fill": "928d81"
2023
+ },
2024
+ {
2025
+ "kind": "text",
2026
+ "x": 533.3333333333334,
2027
+ "y": 369.3333333333333,
2028
+ "width": 50.666666666666664,
2029
+ "height": 37.333333333333336,
2030
+ "textRole": "body",
2031
+ "fontSize": 15,
2032
+ "textCapacity": 2
2033
+ },
2034
+ {
2035
+ "kind": "shape",
2036
+ "x": 293.3333333333333,
2037
+ "y": 462.6666666666667,
2038
+ "width": 18.666666666666668,
2039
+ "height": 18.666666666666668,
2040
+ "shape": "ellipse",
2041
+ "fill": "928d81"
2042
+ },
2043
+ {
2044
+ "kind": "text",
2045
+ "x": 326.6666666666667,
2046
+ "y": 456,
2047
+ "width": 50.666666666666664,
2048
+ "height": 37.333333333333336,
2049
+ "textRole": "body",
2050
+ "fontSize": 15,
2051
+ "textCapacity": 2
2052
+ },
2053
+ {
2054
+ "kind": "shape",
2055
+ "x": 634.6666666666666,
2056
+ "y": 473.3333333333333,
2057
+ "width": 18.666666666666668,
2058
+ "height": 18.666666666666668,
2059
+ "shape": "ellipse",
2060
+ "fill": "928d81"
2061
+ },
2062
+ {
2063
+ "kind": "text",
2064
+ "x": 668,
2065
+ "y": 466.6666666666667,
2066
+ "width": 50.666666666666664,
2067
+ "height": 37.333333333333336,
2068
+ "textRole": "body",
2069
+ "fontSize": 15,
2070
+ "textCapacity": 2
2071
+ },
2072
+ {
2073
+ "kind": "text",
2074
+ "x": 118.66666666666667,
2075
+ "y": 589.3333333333334,
2076
+ "width": 317.3333333333333,
2077
+ "height": 29.333333333333332,
2078
+ "textRole": "body",
2079
+ "fontSize": 11,
2080
+ "textCapacity": 21
2081
+ },
2082
+ {
2083
+ "kind": "text",
2084
+ "x": 469.3333333333333,
2085
+ "y": 589.3333333333334,
2086
+ "width": 312,
2087
+ "height": 29.333333333333332,
2088
+ "textRole": "body",
2089
+ "fontSize": 11,
2090
+ "textCapacity": 21
2091
+ },
2092
+ {
2093
+ "kind": "text",
2094
+ "x": 842.6666666666666,
2095
+ "y": 230.66666666666666,
2096
+ "width": 373.3333333333333,
2097
+ "height": 33.333333333333336,
2098
+ "textRole": "body",
2099
+ "fontSize": 13,
2100
+ "textCapacity": 21
2101
+ },
2102
+ {
2103
+ "kind": "title",
2104
+ "x": 842.6666666666666,
2105
+ "y": 286.6666666666667,
2106
+ "width": 373.3333333333333,
2107
+ "height": 82.66666666666667,
2108
+ "textRole": "title",
2109
+ "fontSize": 32,
2110
+ "textCapacity": 8
2111
+ },
2112
+ {
2113
+ "kind": "text",
2114
+ "x": 842.6666666666666,
2115
+ "y": 414.6666666666667,
2116
+ "width": 146.66666666666666,
2117
+ "height": 41.333333333333336,
2118
+ "textRole": "body",
2119
+ "fontSize": 14,
2120
+ "textCapacity": 14
2121
+ },
2122
+ {
2123
+ "kind": "text",
2124
+ "x": 1004,
2125
+ "y": 414.6666666666667,
2126
+ "width": 212,
2127
+ "height": 45.333333333333336,
2128
+ "textRole": "body",
2129
+ "fontSize": 16,
2130
+ "textCapacity": 9
2131
+ },
2132
+ {
2133
+ "kind": "text",
2134
+ "x": 842.6666666666666,
2135
+ "y": 476,
2136
+ "width": 146.66666666666666,
2137
+ "height": 41.333333333333336,
2138
+ "textRole": "body",
2139
+ "fontSize": 14,
2140
+ "textCapacity": 14
2141
+ },
2142
+ {
2143
+ "kind": "text",
2144
+ "x": 1004,
2145
+ "y": 476,
2146
+ "width": 212,
2147
+ "height": 45.333333333333336,
2148
+ "textRole": "body",
2149
+ "fontSize": 16,
2150
+ "textCapacity": 9
2151
+ },
2152
+ {
2153
+ "kind": "text",
2154
+ "x": 842.6666666666666,
2155
+ "y": 537.3333333333334,
2156
+ "width": 146.66666666666666,
2157
+ "height": 41.333333333333336,
2158
+ "textRole": "body",
2159
+ "fontSize": 14,
2160
+ "textCapacity": 14
2161
+ },
2162
+ {
2163
+ "kind": "text",
2164
+ "x": 1004,
2165
+ "y": 537.3333333333334,
2166
+ "width": 212,
2167
+ "height": 45.333333333333336,
2168
+ "textRole": "body",
2169
+ "fontSize": 16,
2170
+ "textCapacity": 9
2171
+ },
2172
+ {
2173
+ "kind": "text",
2174
+ "x": 64,
2175
+ "y": 633.3333333333334,
2176
+ "width": 1152,
2177
+ "height": 33.333333333333336,
2178
+ "textRole": "body",
2179
+ "fontSize": 13,
2180
+ "textCapacity": 66
2181
+ },
2182
+ {
2183
+ "kind": "text",
2184
+ "x": 64,
2185
+ "y": 676,
2186
+ "width": 1044,
2187
+ "height": 21.333333333333332,
2188
+ "textRole": "body",
2189
+ "fontSize": 9,
2190
+ "textCapacity": 87
2191
+ },
2192
+ {
2193
+ "kind": "text",
2194
+ "x": 1161.3333333333333,
2195
+ "y": 672,
2196
+ "width": 54.666666666666664,
2197
+ "height": 29.333333333333332,
2198
+ "textRole": "body",
2199
+ "fontSize": 11,
2200
+ "textCapacity": 3
2201
+ }
2202
+ ],
2203
+ "jsxReference": ""
2204
+ },
2205
+ {
2206
+ "slideNumber": 9,
2207
+ "sourceTitle": "Give each moment a distinct purpose",
2208
+ "family": "grid",
2209
+ "titlePosition": "left",
2210
+ "bodyColumns": 3,
2211
+ "density": "high",
2212
+ "features": [
2213
+ "storyboard"
2214
+ ],
2215
+ "recommendedRoles": [
2216
+ "grid"
2217
+ ],
2218
+ "structureSummary": "Three schematic frames with distinct content and intent",
2219
+ "zones": [
2220
+ {
2221
+ "kind": "text",
2222
+ "x": 64,
2223
+ "y": 36,
2224
+ "width": 886.6666666666666,
2225
+ "height": 26.666666666666668,
2226
+ "textRole": "body",
2227
+ "fontSize": 10,
2228
+ "textCapacity": 66
2229
+ },
2230
+ {
2231
+ "kind": "title",
2232
+ "x": 64,
2233
+ "y": 101.33333333333333,
2234
+ "width": 1152,
2235
+ "height": 85.33333333333333,
2236
+ "textRole": "title",
2237
+ "fontSize": 32,
2238
+ "textCapacity": 27
2239
+ },
2240
+ {
2241
+ "kind": "text",
2242
+ "x": 1005.3333333333334,
2243
+ "y": 61.333333333333336,
2244
+ "width": 210.66666666666666,
2245
+ "height": 17.333333333333332,
2246
+ "textRole": "body",
2247
+ "fontSize": 9,
2248
+ "textCapacity": 17
2249
+ },
2250
+ {
2251
+ "kind": "shape",
2252
+ "x": 64,
2253
+ "y": 228,
2254
+ "width": 360,
2255
+ "height": 200,
2256
+ "shape": "rect",
2257
+ "fill": "D6DD63"
2258
+ },
2259
+ {
2260
+ "kind": "shape",
2261
+ "x": 112,
2262
+ "y": 337.3333333333333,
2263
+ "width": 117.33333333333333,
2264
+ "height": 41.333333333333336,
2265
+ "shape": "rect",
2266
+ "fill": "181915"
2267
+ },
2268
+ {
2269
+ "kind": "text",
2270
+ "x": 64,
2271
+ "y": 449.3333333333333,
2272
+ "width": 346.6666666666667,
2273
+ "height": 33.333333333333336,
2274
+ "textRole": "body",
2275
+ "fontSize": 13,
2276
+ "textCapacity": 20
2277
+ },
2278
+ {
2279
+ "kind": "text",
2280
+ "x": 64,
2281
+ "y": 501.3333333333333,
2282
+ "width": 350.6666666666667,
2283
+ "height": 105.33333333333333,
2284
+ "textRole": "body",
2285
+ "fontSize": 26,
2286
+ "textCapacity": 20
2287
+ },
2288
+ {
2289
+ "kind": "shape",
2290
+ "x": 456,
2291
+ "y": 228,
2292
+ "width": 360,
2293
+ "height": 200,
2294
+ "shape": "rect",
2295
+ "fill": "E1A4C2"
2296
+ },
2297
+ {
2298
+ "kind": "shape",
2299
+ "x": 582.6666666666666,
2300
+ "y": 266.6666666666667,
2301
+ "width": 104,
2302
+ "height": 104,
2303
+ "shape": "ellipse",
2304
+ "fill": "181915"
2305
+ },
2306
+ {
2307
+ "kind": "title",
2308
+ "x": 604,
2309
+ "y": 285.3333333333333,
2310
+ "width": 69.33333333333333,
2311
+ "height": 77.33333333333333,
2312
+ "textRole": "title",
2313
+ "fontSize": 33,
2314
+ "textCapacity": 1
2315
+ },
2316
+ {
2317
+ "kind": "text",
2318
+ "x": 456,
2319
+ "y": 449.3333333333333,
2320
+ "width": 346.6666666666667,
2321
+ "height": 33.333333333333336,
2322
+ "textRole": "body",
2323
+ "fontSize": 13,
2324
+ "textCapacity": 20
2325
+ },
2326
+ {
2327
+ "kind": "text",
2328
+ "x": 456,
2329
+ "y": 501.3333333333333,
2330
+ "width": 350.6666666666667,
2331
+ "height": 105.33333333333333,
2332
+ "textRole": "body",
2333
+ "fontSize": 26,
2334
+ "textCapacity": 20
2335
+ },
2336
+ {
2337
+ "kind": "shape",
2338
+ "x": 848,
2339
+ "y": 228,
2340
+ "width": 360,
2341
+ "height": 200,
2342
+ "shape": "rect",
2343
+ "fill": "D6DD63"
2344
+ },
2345
+ {
2346
+ "kind": "shape",
2347
+ "x": 896,
2348
+ "y": 262.6666666666667,
2349
+ "width": 16,
2350
+ "height": 16,
2351
+ "shape": "ellipse",
2352
+ "fill": "181915"
2353
+ },
2354
+ {
2355
+ "kind": "shape",
2356
+ "x": 896,
2357
+ "y": 312,
2358
+ "width": 16,
2359
+ "height": 16,
2360
+ "shape": "ellipse",
2361
+ "fill": "181915"
2362
+ },
2363
+ {
2364
+ "kind": "shape",
2365
+ "x": 896,
2366
+ "y": 361.3333333333333,
2367
+ "width": 16,
2368
+ "height": 16,
2369
+ "shape": "ellipse",
2370
+ "fill": "181915"
2371
+ },
2372
+ {
2373
+ "kind": "text",
2374
+ "x": 848,
2375
+ "y": 449.3333333333333,
2376
+ "width": 346.6666666666667,
2377
+ "height": 33.333333333333336,
2378
+ "textRole": "body",
2379
+ "fontSize": 13,
2380
+ "textCapacity": 20
2381
+ },
2382
+ {
2383
+ "kind": "text",
2384
+ "x": 848,
2385
+ "y": 501.3333333333333,
2386
+ "width": 350.6666666666667,
2387
+ "height": 105.33333333333333,
2388
+ "textRole": "body",
2389
+ "fontSize": 26,
2390
+ "textCapacity": 20
2391
+ },
2392
+ {
2393
+ "kind": "text",
2394
+ "x": 64,
2395
+ "y": 633.3333333333334,
2396
+ "width": 1152,
2397
+ "height": 33.333333333333336,
2398
+ "textRole": "body",
2399
+ "fontSize": 13,
2400
+ "textCapacity": 66
2401
+ },
2402
+ {
2403
+ "kind": "text",
2404
+ "x": 64,
2405
+ "y": 676,
2406
+ "width": 1044,
2407
+ "height": 21.333333333333332,
2408
+ "textRole": "body",
2409
+ "fontSize": 9,
2410
+ "textCapacity": 87
2411
+ },
2412
+ {
2413
+ "kind": "text",
2414
+ "x": 1161.3333333333333,
2415
+ "y": 672,
2416
+ "width": 54.666666666666664,
2417
+ "height": 29.333333333333332,
2418
+ "textRole": "body",
2419
+ "fontSize": 11,
2420
+ "textCapacity": 3
2421
+ }
2422
+ ],
2423
+ "jsxReference": ""
2424
+ },
2425
+ {
2426
+ "slideNumber": 10,
2427
+ "sourceTitle": "Connect each measure to a response",
2428
+ "family": "table",
2429
+ "titlePosition": "left",
2430
+ "bodyColumns": 2,
2431
+ "density": "high",
2432
+ "features": [
2433
+ "scorecard"
2434
+ ],
2435
+ "recommendedRoles": [
2436
+ "table"
2437
+ ],
2438
+ "structureSummary": "Actual, target and response aligned across four measures",
2439
+ "zones": [
2440
+ {
2441
+ "kind": "text",
2442
+ "x": 64,
2443
+ "y": 36,
2444
+ "width": 886.6666666666666,
2445
+ "height": 26.666666666666668,
2446
+ "textRole": "body",
2447
+ "fontSize": 10,
2448
+ "textCapacity": 66
2449
+ },
2450
+ {
2451
+ "kind": "title",
2452
+ "x": 64,
2453
+ "y": 101.33333333333333,
2454
+ "width": 1152,
2455
+ "height": 85.33333333333333,
2456
+ "textRole": "title",
2457
+ "fontSize": 32,
2458
+ "textCapacity": 27
2459
+ },
2460
+ {
2461
+ "kind": "text",
2462
+ "x": 1005.3333333333334,
2463
+ "y": 61.333333333333336,
2464
+ "width": 210.66666666666666,
2465
+ "height": 17.333333333333332,
2466
+ "textRole": "body",
2467
+ "fontSize": 9,
2468
+ "textCapacity": 17
2469
+ },
2470
+ {
2471
+ "kind": "text",
2472
+ "x": 64,
2473
+ "y": 222.66666666666666,
2474
+ "width": 373.3333333333333,
2475
+ "height": 32,
2476
+ "textRole": "body",
2477
+ "fontSize": 11,
2478
+ "textCapacity": 25
2479
+ },
2480
+ {
2481
+ "kind": "text",
2482
+ "x": 497.3333333333333,
2483
+ "y": 222.66666666666666,
2484
+ "width": 226.66666666666666,
2485
+ "height": 32,
2486
+ "textRole": "body",
2487
+ "fontSize": 11,
2488
+ "textCapacity": 15
2489
+ },
2490
+ {
2491
+ "kind": "text",
2492
+ "x": 697.3333333333334,
2493
+ "y": 222.66666666666666,
2494
+ "width": 226.66666666666666,
2495
+ "height": 32,
2496
+ "textRole": "body",
2497
+ "fontSize": 11,
2498
+ "textCapacity": 15
2499
+ },
2500
+ {
2501
+ "kind": "text",
2502
+ "x": 922.6666666666666,
2503
+ "y": 222.66666666666666,
2504
+ "width": 226.66666666666666,
2505
+ "height": 32,
2506
+ "textRole": "body",
2507
+ "fontSize": 11,
2508
+ "textCapacity": 15
2509
+ },
2510
+ {
2511
+ "kind": "text",
2512
+ "x": 81.33333333333333,
2513
+ "y": 294.6666666666667,
2514
+ "width": 373.3333333333333,
2515
+ "height": 49.333333333333336,
2516
+ "textRole": "body",
2517
+ "fontSize": 18,
2518
+ "textCapacity": 15
2519
+ },
2520
+ {
2521
+ "kind": "text",
2522
+ "x": 497.3333333333333,
2523
+ "y": 285.3333333333333,
2524
+ "width": 172,
2525
+ "height": 60,
2526
+ "textRole": "body",
2527
+ "fontSize": 28,
2528
+ "textCapacity": 4
2529
+ },
2530
+ {
2531
+ "kind": "text",
2532
+ "x": 697.3333333333334,
2533
+ "y": 298.6666666666667,
2534
+ "width": 193.33333333333334,
2535
+ "height": 44,
2536
+ "textRole": "body",
2537
+ "fontSize": 17,
2538
+ "textCapacity": 8
2539
+ },
2540
+ {
2541
+ "kind": "text",
2542
+ "x": 922.6666666666666,
2543
+ "y": 297.3333333333333,
2544
+ "width": 36,
2545
+ "height": 40,
2546
+ "textRole": "body",
2547
+ "fontSize": 18,
2548
+ "textCapacity": 1
2549
+ },
2550
+ {
2551
+ "kind": "text",
2552
+ "x": 980,
2553
+ "y": 298.6666666666667,
2554
+ "width": 210.66666666666666,
2555
+ "height": 40,
2556
+ "textRole": "body",
2557
+ "fontSize": 16,
2558
+ "textCapacity": 9
2559
+ },
2560
+ {
2561
+ "kind": "text",
2562
+ "x": 81.33333333333333,
2563
+ "y": 376,
2564
+ "width": 373.3333333333333,
2565
+ "height": 49.333333333333336,
2566
+ "textRole": "body",
2567
+ "fontSize": 18,
2568
+ "textCapacity": 15
2569
+ },
2570
+ {
2571
+ "kind": "text",
2572
+ "x": 497.3333333333333,
2573
+ "y": 366.6666666666667,
2574
+ "width": 172,
2575
+ "height": 60,
2576
+ "textRole": "body",
2577
+ "fontSize": 28,
2578
+ "textCapacity": 4
2579
+ },
2580
+ {
2581
+ "kind": "text",
2582
+ "x": 697.3333333333334,
2583
+ "y": 380,
2584
+ "width": 193.33333333333334,
2585
+ "height": 44,
2586
+ "textRole": "body",
2587
+ "fontSize": 17,
2588
+ "textCapacity": 8
2589
+ },
2590
+ {
2591
+ "kind": "text",
2592
+ "x": 922.6666666666666,
2593
+ "y": 378.6666666666667,
2594
+ "width": 36,
2595
+ "height": 40,
2596
+ "textRole": "body",
2597
+ "fontSize": 18,
2598
+ "textCapacity": 1
2599
+ },
2600
+ {
2601
+ "kind": "text",
2602
+ "x": 980,
2603
+ "y": 380,
2604
+ "width": 210.66666666666666,
2605
+ "height": 40,
2606
+ "textRole": "body",
2607
+ "fontSize": 16,
2608
+ "textCapacity": 9
2609
+ },
2610
+ {
2611
+ "kind": "shape",
2612
+ "x": 64,
2613
+ "y": 434.6666666666667,
2614
+ "width": 1152,
2615
+ "height": 81.33333333333333,
2616
+ "shape": "rect",
2617
+ "fill": "f0e6dc"
2618
+ },
2619
+ {
2620
+ "kind": "shape",
2621
+ "x": 64,
2622
+ "y": 434.6666666666667,
2623
+ "width": 4,
2624
+ "height": 81.33333333333333,
2625
+ "shape": "rect",
2626
+ "fill": "2A241B"
2627
+ },
2628
+ {
2629
+ "kind": "text",
2630
+ "x": 81.33333333333333,
2631
+ "y": 457.3333333333333,
2632
+ "width": 373.3333333333333,
2633
+ "height": 49.333333333333336,
2634
+ "textRole": "body",
2635
+ "fontSize": 18,
2636
+ "textCapacity": 15
2637
+ },
2638
+ {
2639
+ "kind": "text",
2640
+ "x": 497.3333333333333,
2641
+ "y": 448,
2642
+ "width": 172,
2643
+ "height": 60,
2644
+ "textRole": "body",
2645
+ "fontSize": 28,
2646
+ "textCapacity": 4
2647
+ },
2648
+ {
2649
+ "kind": "text",
2650
+ "x": 697.3333333333334,
2651
+ "y": 461.3333333333333,
2652
+ "width": 193.33333333333334,
2653
+ "height": 44,
2654
+ "textRole": "body",
2655
+ "fontSize": 17,
2656
+ "textCapacity": 8
2657
+ },
2658
+ {
2659
+ "kind": "text",
2660
+ "x": 922.6666666666666,
2661
+ "y": 460,
2662
+ "width": 36,
2663
+ "height": 40,
2664
+ "textRole": "body",
2665
+ "fontSize": 18,
2666
+ "textCapacity": 1
2667
+ },
2668
+ {
2669
+ "kind": "text",
2670
+ "x": 980,
2671
+ "y": 461.3333333333333,
2672
+ "width": 210.66666666666666,
2673
+ "height": 40,
2674
+ "textRole": "body",
2675
+ "fontSize": 16,
2676
+ "textCapacity": 9
2677
+ },
2678
+ {
2679
+ "kind": "text",
2680
+ "x": 81.33333333333333,
2681
+ "y": 538.6666666666666,
2682
+ "width": 373.3333333333333,
2683
+ "height": 49.333333333333336,
2684
+ "textRole": "body",
2685
+ "fontSize": 18,
2686
+ "textCapacity": 15
2687
+ },
2688
+ {
2689
+ "kind": "text",
2690
+ "x": 497.3333333333333,
2691
+ "y": 529.3333333333334,
2692
+ "width": 172,
2693
+ "height": 60,
2694
+ "textRole": "body",
2695
+ "fontSize": 28,
2696
+ "textCapacity": 4
2697
+ },
2698
+ {
2699
+ "kind": "text",
2700
+ "x": 697.3333333333334,
2701
+ "y": 542.6666666666666,
2702
+ "width": 193.33333333333334,
2703
+ "height": 44,
2704
+ "textRole": "body",
2705
+ "fontSize": 17,
2706
+ "textCapacity": 8
2707
+ },
2708
+ {
2709
+ "kind": "text",
2710
+ "x": 922.6666666666666,
2711
+ "y": 541.3333333333334,
2712
+ "width": 36,
2713
+ "height": 40,
2714
+ "textRole": "body",
2715
+ "fontSize": 18,
2716
+ "textCapacity": 1
2717
+ },
2718
+ {
2719
+ "kind": "text",
2720
+ "x": 980,
2721
+ "y": 542.6666666666666,
2722
+ "width": 210.66666666666666,
2723
+ "height": 40,
2724
+ "textRole": "body",
2725
+ "fontSize": 16,
2726
+ "textCapacity": 9
2727
+ },
2728
+ {
2729
+ "kind": "text",
2730
+ "x": 64,
2731
+ "y": 633.3333333333334,
2732
+ "width": 1152,
2733
+ "height": 33.333333333333336,
2734
+ "textRole": "body",
2735
+ "fontSize": 13,
2736
+ "textCapacity": 66
2737
+ },
2738
+ {
2739
+ "kind": "text",
2740
+ "x": 64,
2741
+ "y": 676,
2742
+ "width": 1044,
2743
+ "height": 21.333333333333332,
2744
+ "textRole": "body",
2745
+ "fontSize": 9,
2746
+ "textCapacity": 87
2747
+ },
2748
+ {
2749
+ "kind": "text",
2750
+ "x": 1161.3333333333333,
2751
+ "y": 672,
2752
+ "width": 54.666666666666664,
2753
+ "height": 29.333333333333332,
2754
+ "textRole": "body",
2755
+ "fontSize": 11,
2756
+ "textCapacity": 3
2757
+ }
2758
+ ],
2759
+ "jsxReference": ""
2760
+ },
2761
+ {
2762
+ "slideNumber": 11,
2763
+ "sourceTitle": "Sequence the work around a decision gate",
2764
+ "family": "process",
2765
+ "titlePosition": "left",
2766
+ "bodyColumns": 2,
2767
+ "density": "high",
2768
+ "features": [
2769
+ "roadmap"
2770
+ ],
2771
+ "recommendedRoles": [
2772
+ "process"
2773
+ ],
2774
+ "structureSummary": "Four timed workstreams and a decision gate",
2775
+ "zones": [
2776
+ {
2777
+ "kind": "text",
2778
+ "x": 64,
2779
+ "y": 36,
2780
+ "width": 886.6666666666666,
2781
+ "height": 26.666666666666668,
2782
+ "textRole": "body",
2783
+ "fontSize": 10,
2784
+ "textCapacity": 66
2785
+ },
2786
+ {
2787
+ "kind": "title",
2788
+ "x": 64,
2789
+ "y": 101.33333333333333,
2790
+ "width": 1152,
2791
+ "height": 85.33333333333333,
2792
+ "textRole": "title",
2793
+ "fontSize": 32,
2794
+ "textCapacity": 27
2795
+ },
2796
+ {
2797
+ "kind": "text",
2798
+ "x": 1005.3333333333334,
2799
+ "y": 61.333333333333336,
2800
+ "width": 210.66666666666666,
2801
+ "height": 17.333333333333332,
2802
+ "textRole": "body",
2803
+ "fontSize": 9,
2804
+ "textCapacity": 17
2805
+ },
2806
+ {
2807
+ "kind": "text",
2808
+ "x": 64,
2809
+ "y": 222.66666666666666,
2810
+ "width": 324,
2811
+ "height": 30.666666666666668,
2812
+ "textRole": "body",
2813
+ "fontSize": 11,
2814
+ "textCapacity": 22
2815
+ },
2816
+ {
2817
+ "kind": "text",
2818
+ "x": 421.3333333333333,
2819
+ "y": 221.33333333333334,
2820
+ "width": 176,
2821
+ "height": 33.333333333333336,
2822
+ "textRole": "body",
2823
+ "fontSize": 12,
2824
+ "textCapacity": 11
2825
+ },
2826
+ {
2827
+ "kind": "text",
2828
+ "x": 617.3333333333334,
2829
+ "y": 221.33333333333334,
2830
+ "width": 176,
2831
+ "height": 33.333333333333336,
2832
+ "textRole": "body",
2833
+ "fontSize": 12,
2834
+ "textCapacity": 11
2835
+ },
2836
+ {
2837
+ "kind": "text",
2838
+ "x": 813.3333333333334,
2839
+ "y": 221.33333333333334,
2840
+ "width": 176,
2841
+ "height": 33.333333333333336,
2842
+ "textRole": "body",
2843
+ "fontSize": 12,
2844
+ "textCapacity": 11
2845
+ },
2846
+ {
2847
+ "kind": "text",
2848
+ "x": 1009.3333333333334,
2849
+ "y": 221.33333333333334,
2850
+ "width": 176,
2851
+ "height": 33.333333333333336,
2852
+ "textRole": "body",
2853
+ "fontSize": 12,
2854
+ "textCapacity": 11
2855
+ },
2856
+ {
2857
+ "kind": "text",
2858
+ "x": 64,
2859
+ "y": 273.3333333333333,
2860
+ "width": 318.6666666666667,
2861
+ "height": 40,
2862
+ "textRole": "body",
2863
+ "fontSize": 18,
2864
+ "textCapacity": 13
2865
+ },
2866
+ {
2867
+ "kind": "text",
2868
+ "x": 64,
2869
+ "y": 313.3333333333333,
2870
+ "width": 318.6666666666667,
2871
+ "height": 32,
2872
+ "textRole": "body",
2873
+ "fontSize": 11,
2874
+ "textCapacity": 21
2875
+ },
2876
+ {
2877
+ "kind": "shape",
2878
+ "x": 406.6666666666667,
2879
+ "y": 289.3333333333333,
2880
+ "width": 176.4,
2881
+ "height": 29.333333333333332,
2882
+ "shape": "rect",
2883
+ "fill": "bcb7aa"
2884
+ },
2885
+ {
2886
+ "kind": "shape",
2887
+ "x": 579.0666666666667,
2888
+ "y": 300,
2889
+ "width": 8,
2890
+ "height": 8,
2891
+ "shape": "ellipse",
2892
+ "fill": "847f73"
2893
+ },
2894
+ {
2895
+ "kind": "text",
2896
+ "x": 64,
2897
+ "y": 354.6666666666667,
2898
+ "width": 318.6666666666667,
2899
+ "height": 40,
2900
+ "textRole": "body",
2901
+ "fontSize": 18,
2902
+ "textCapacity": 13
2903
+ },
2904
+ {
2905
+ "kind": "text",
2906
+ "x": 64,
2907
+ "y": 394.6666666666667,
2908
+ "width": 318.6666666666667,
2909
+ "height": 32,
2910
+ "textRole": "body",
2911
+ "fontSize": 11,
2912
+ "textCapacity": 21
2913
+ },
2914
+ {
2915
+ "kind": "shape",
2916
+ "x": 543.8666666666667,
2917
+ "y": 370.6666666666667,
2918
+ "width": 254.79999999999998,
2919
+ "height": 29.333333333333332,
2920
+ "shape": "rect",
2921
+ "fill": "bcb7aa"
2922
+ },
2923
+ {
2924
+ "kind": "shape",
2925
+ "x": 794.6666666666666,
2926
+ "y": 381.3333333333333,
2927
+ "width": 8,
2928
+ "height": 8,
2929
+ "shape": "ellipse",
2930
+ "fill": "847f73"
2931
+ },
2932
+ {
2933
+ "kind": "text",
2934
+ "x": 64,
2935
+ "y": 436,
2936
+ "width": 318.6666666666667,
2937
+ "height": 40,
2938
+ "textRole": "body",
2939
+ "fontSize": 18,
2940
+ "textCapacity": 13
2941
+ },
2942
+ {
2943
+ "kind": "text",
2944
+ "x": 64,
2945
+ "y": 476,
2946
+ "width": 318.6666666666667,
2947
+ "height": 32,
2948
+ "textRole": "body",
2949
+ "fontSize": 11,
2950
+ "textCapacity": 21
2951
+ },
2952
+ {
2953
+ "kind": "shape",
2954
+ "x": 759.4666666666667,
2955
+ "y": 452,
2956
+ "width": 215.60000000000002,
2957
+ "height": 29.333333333333332,
2958
+ "shape": "rect",
2959
+ "fill": "2A241B"
2960
+ },
2961
+ {
2962
+ "kind": "shape",
2963
+ "x": 971.0666666666667,
2964
+ "y": 462.6666666666667,
2965
+ "width": 8,
2966
+ "height": 8,
2967
+ "shape": "ellipse",
2968
+ "fill": "2A241B"
2969
+ },
2970
+ {
2971
+ "kind": "text",
2972
+ "x": 64,
2973
+ "y": 517.3333333333334,
2974
+ "width": 318.6666666666667,
2975
+ "height": 40,
2976
+ "textRole": "body",
2977
+ "fontSize": 18,
2978
+ "textCapacity": 13
2979
+ },
2980
+ {
2981
+ "kind": "text",
2982
+ "x": 64,
2983
+ "y": 557.3333333333334,
2984
+ "width": 318.6666666666667,
2985
+ "height": 32,
2986
+ "textRole": "body",
2987
+ "fontSize": 11,
2988
+ "textCapacity": 21
2989
+ },
2990
+ {
2991
+ "kind": "shape",
2992
+ "x": 955.4666666666666,
2993
+ "y": 533.3333333333334,
2994
+ "width": 235.20000000000002,
2995
+ "height": 29.333333333333332,
2996
+ "shape": "rect",
2997
+ "fill": "bcb7aa"
2998
+ },
2999
+ {
3000
+ "kind": "shape",
3001
+ "x": 1186.6666666666665,
3002
+ "y": 544,
3003
+ "width": 8,
3004
+ "height": 8,
3005
+ "shape": "ellipse",
3006
+ "fill": "847f73"
3007
+ },
3008
+ {
3009
+ "kind": "shape",
3010
+ "x": 949.3333333333334,
3011
+ "y": 592,
3012
+ "width": 10.666666666666666,
3013
+ "height": 10.666666666666666,
3014
+ "shape": "ellipse",
3015
+ "fill": "E1A4C2"
3016
+ },
3017
+ {
3018
+ "kind": "text",
3019
+ "x": 64,
3020
+ "y": 633.3333333333334,
3021
+ "width": 1152,
3022
+ "height": 33.333333333333336,
3023
+ "textRole": "body",
3024
+ "fontSize": 13,
3025
+ "textCapacity": 66
3026
+ },
3027
+ {
3028
+ "kind": "text",
3029
+ "x": 64,
3030
+ "y": 676,
3031
+ "width": 1044,
3032
+ "height": 21.333333333333332,
3033
+ "textRole": "body",
3034
+ "fontSize": 9,
3035
+ "textCapacity": 87
3036
+ },
3037
+ {
3038
+ "kind": "text",
3039
+ "x": 1161.3333333333333,
3040
+ "y": 672,
3041
+ "width": 54.666666666666664,
3042
+ "height": 29.333333333333332,
3043
+ "textRole": "body",
3044
+ "fontSize": 11,
3045
+ "textCapacity": 3
3046
+ }
3047
+ ],
3048
+ "jsxReference": ""
3049
+ },
3050
+ {
3051
+ "slideNumber": 12,
3052
+ "sourceTitle": "Closing",
3053
+ "family": "closing",
3054
+ "titlePosition": "left",
3055
+ "bodyColumns": 1,
3056
+ "density": "medium",
3057
+ "features": [
3058
+ "closing"
3059
+ ],
3060
+ "recommendedRoles": [
3061
+ "closing"
3062
+ ],
3063
+ "structureSummary": "Closing",
3064
+ "zones": [
3065
+ {
3066
+ "kind": "text",
3067
+ "x": 64,
3068
+ "y": 105.33333333333333,
3069
+ "width": 1133.3333333333333,
3070
+ "height": 34.666666666666664,
3071
+ "textRole": "body",
3072
+ "fontSize": 13,
3073
+ "textCapacity": 65
3074
+ },
3075
+ {
3076
+ "kind": "title",
3077
+ "x": 64,
3078
+ "y": 245.33333333333334,
3079
+ "width": 1146.6666666666667,
3080
+ "height": 262.6666666666667,
3081
+ "textRole": "title",
3082
+ "fontSize": 55,
3083
+ "textCapacity": 45
3084
+ },
3085
+ {
3086
+ "kind": "text",
3087
+ "x": 64,
3088
+ "y": 674.6666666666666,
3089
+ "width": 1013.3333333333334,
3090
+ "height": 21.333333333333332,
3091
+ "textRole": "body",
3092
+ "fontSize": 9,
3093
+ "textCapacity": 84
3094
+ },
3095
+ {
3096
+ "kind": "text",
3097
+ "x": 1160,
3098
+ "y": 670.6666666666666,
3099
+ "width": 53.333333333333336,
3100
+ "height": 26.666666666666668,
3101
+ "textRole": "body",
3102
+ "fontSize": 11,
3103
+ "textCapacity": 3
3104
+ }
3105
+ ],
3106
+ "jsxReference": ""
3107
+ }
3108
+ ]
3109
+ }
3110
+ },
3111
+ "provenance": {
3112
+ "kind": "mit-adaptation",
3113
+ "license": "MIT",
3114
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/soft-editorial",
3115
+ "author": "Zara Zhang",
3116
+ "adaptedBy": "DSH Desktop contributors",
3117
+ "modified": "2026-09-06"
3118
+ }
3119
+ }