pi-feishu-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (407) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +111 -0
  3. package/dist/src/bot.d.ts +29 -0
  4. package/dist/src/bot.js +75 -0
  5. package/dist/src/cards.d.ts +6 -0
  6. package/dist/src/cards.js +87 -0
  7. package/dist/src/config.d.ts +3 -0
  8. package/dist/src/config.js +28 -0
  9. package/dist/src/daemon.d.ts +2 -0
  10. package/dist/src/daemon.js +151 -0
  11. package/dist/src/extension.d.ts +2 -0
  12. package/dist/src/extension.js +124 -0
  13. package/dist/src/poller.d.ts +33 -0
  14. package/dist/src/poller.js +94 -0
  15. package/dist/src/renderer.d.ts +8 -0
  16. package/dist/src/renderer.js +31 -0
  17. package/dist/src/session-registry.d.ts +15 -0
  18. package/dist/src/session-registry.js +82 -0
  19. package/dist/src/types.d.ts +25 -0
  20. package/dist/src/types.js +1 -0
  21. package/dist/tests/bot.test.d.ts +1 -0
  22. package/dist/tests/bot.test.js +89 -0
  23. package/dist/tests/cards.test.d.ts +1 -0
  24. package/dist/tests/cards.test.js +39 -0
  25. package/dist/tests/config.test.d.ts +1 -0
  26. package/dist/tests/config.test.js +59 -0
  27. package/dist/tests/renderer.test.d.ts +1 -0
  28. package/dist/tests/renderer.test.js +61 -0
  29. package/dist/tests/session-registry.test.d.ts +1 -0
  30. package/dist/tests/session-registry.test.js +92 -0
  31. package/dist/tests/types.test.d.ts +1 -0
  32. package/dist/tests/types.test.js +30 -0
  33. package/package.json +35 -0
  34. package/skills/lark-approval/SKILL.md +56 -0
  35. package/skills/lark-apps/SKILL.md +92 -0
  36. package/skills/lark-apps/references/lark-apps-access-scope-get.md +104 -0
  37. package/skills/lark-apps/references/lark-apps-access-scope-set.md +126 -0
  38. package/skills/lark-apps/references/lark-apps-create.md +112 -0
  39. package/skills/lark-apps/references/lark-apps-html-publish.md +151 -0
  40. package/skills/lark-apps/references/lark-apps-list.md +95 -0
  41. package/skills/lark-apps/references/lark-apps-update.md +86 -0
  42. package/skills/lark-attendance/SKILL.md +57 -0
  43. package/skills/lark-base/SKILL.md +359 -0
  44. package/skills/lark-base/references/dashboard-block-data-config.md +350 -0
  45. package/skills/lark-base/references/examples.md +140 -0
  46. package/skills/lark-base/references/formula-field-guide.md +737 -0
  47. package/skills/lark-base/references/lark-base-advperm-disable.md +83 -0
  48. package/skills/lark-base/references/lark-base-advperm-enable.md +80 -0
  49. package/skills/lark-base/references/lark-base-base-copy.md +74 -0
  50. package/skills/lark-base/references/lark-base-base-create.md +68 -0
  51. package/skills/lark-base/references/lark-base-base-get.md +39 -0
  52. package/skills/lark-base/references/lark-base-cell-value.md +151 -0
  53. package/skills/lark-base/references/lark-base-dashboard-arrange.md +83 -0
  54. package/skills/lark-base/references/lark-base-dashboard-block-create.md +108 -0
  55. package/skills/lark-base/references/lark-base-dashboard-block-delete.md +46 -0
  56. package/skills/lark-base/references/lark-base-dashboard-block-get.md +57 -0
  57. package/skills/lark-base/references/lark-base-dashboard-block-list.md +53 -0
  58. package/skills/lark-base/references/lark-base-dashboard-block-update.md +84 -0
  59. package/skills/lark-base/references/lark-base-dashboard-create.md +73 -0
  60. package/skills/lark-base/references/lark-base-dashboard-delete.md +44 -0
  61. package/skills/lark-base/references/lark-base-dashboard-get.md +59 -0
  62. package/skills/lark-base/references/lark-base-dashboard-list.md +52 -0
  63. package/skills/lark-base/references/lark-base-dashboard-update.md +69 -0
  64. package/skills/lark-base/references/lark-base-dashboard.md +240 -0
  65. package/skills/lark-base/references/lark-base-data-analysis-sop.md +88 -0
  66. package/skills/lark-base/references/lark-base-data-query.md +375 -0
  67. package/skills/lark-base/references/lark-base-field-create.md +104 -0
  68. package/skills/lark-base/references/lark-base-field-delete.md +51 -0
  69. package/skills/lark-base/references/lark-base-field-get.md +42 -0
  70. package/skills/lark-base/references/lark-base-field-list.md +44 -0
  71. package/skills/lark-base/references/lark-base-field-search-options.md +48 -0
  72. package/skills/lark-base/references/lark-base-field-update.md +97 -0
  73. package/skills/lark-base/references/lark-base-field.md +22 -0
  74. package/skills/lark-base/references/lark-base-form-create.md +87 -0
  75. package/skills/lark-base/references/lark-base-form-delete.md +64 -0
  76. package/skills/lark-base/references/lark-base-form-detail.md +198 -0
  77. package/skills/lark-base/references/lark-base-form-get.md +68 -0
  78. package/skills/lark-base/references/lark-base-form-list.md +73 -0
  79. package/skills/lark-base/references/lark-base-form-questions-create.md +118 -0
  80. package/skills/lark-base/references/lark-base-form-questions-delete.md +68 -0
  81. package/skills/lark-base/references/lark-base-form-questions-list.md +84 -0
  82. package/skills/lark-base/references/lark-base-form-questions-update.md +92 -0
  83. package/skills/lark-base/references/lark-base-form-questions.md +23 -0
  84. package/skills/lark-base/references/lark-base-form-submit.md +171 -0
  85. package/skills/lark-base/references/lark-base-form-update.md +82 -0
  86. package/skills/lark-base/references/lark-base-form.md +25 -0
  87. package/skills/lark-base/references/lark-base-history.md +16 -0
  88. package/skills/lark-base/references/lark-base-record-batch-create.md +58 -0
  89. package/skills/lark-base/references/lark-base-record-batch-update.md +53 -0
  90. package/skills/lark-base/references/lark-base-record-delete.md +62 -0
  91. package/skills/lark-base/references/lark-base-record-history-list.md +86 -0
  92. package/skills/lark-base/references/lark-base-record-share-link-create.md +72 -0
  93. package/skills/lark-base/references/lark-base-record-upsert.md +64 -0
  94. package/skills/lark-base/references/lark-base-record.md +31 -0
  95. package/skills/lark-base/references/lark-base-role-create.md +89 -0
  96. package/skills/lark-base/references/lark-base-role-delete.md +83 -0
  97. package/skills/lark-base/references/lark-base-role-get.md +87 -0
  98. package/skills/lark-base/references/lark-base-role-list.md +81 -0
  99. package/skills/lark-base/references/lark-base-role-update.md +94 -0
  100. package/skills/lark-base/references/lark-base-shortcut-field-properties.md +481 -0
  101. package/skills/lark-base/references/lark-base-table-create.md +62 -0
  102. package/skills/lark-base/references/lark-base-table-delete.md +51 -0
  103. package/skills/lark-base/references/lark-base-table-get.md +46 -0
  104. package/skills/lark-base/references/lark-base-table-list.md +43 -0
  105. package/skills/lark-base/references/lark-base-table-update.md +49 -0
  106. package/skills/lark-base/references/lark-base-table.md +20 -0
  107. package/skills/lark-base/references/lark-base-view-create.md +50 -0
  108. package/skills/lark-base/references/lark-base-view-delete.md +48 -0
  109. package/skills/lark-base/references/lark-base-view-get-card.md +38 -0
  110. package/skills/lark-base/references/lark-base-view-get-filter.md +38 -0
  111. package/skills/lark-base/references/lark-base-view-get-group.md +38 -0
  112. package/skills/lark-base/references/lark-base-view-get-sort.md +38 -0
  113. package/skills/lark-base/references/lark-base-view-get-timebar.md +38 -0
  114. package/skills/lark-base/references/lark-base-view-get-visible-fields.md +28 -0
  115. package/skills/lark-base/references/lark-base-view-get.md +38 -0
  116. package/skills/lark-base/references/lark-base-view-list.md +44 -0
  117. package/skills/lark-base/references/lark-base-view-rename.md +44 -0
  118. package/skills/lark-base/references/lark-base-view-set-card.md +55 -0
  119. package/skills/lark-base/references/lark-base-view-set-filter.md +181 -0
  120. package/skills/lark-base/references/lark-base-view-set-group.md +65 -0
  121. package/skills/lark-base/references/lark-base-view-set-sort.md +63 -0
  122. package/skills/lark-base/references/lark-base-view-set-timebar.md +51 -0
  123. package/skills/lark-base/references/lark-base-view-set-visible-fields.md +46 -0
  124. package/skills/lark-base/references/lark-base-view.md +44 -0
  125. package/skills/lark-base/references/lark-base-workflow-create.md +180 -0
  126. package/skills/lark-base/references/lark-base-workflow-disable.md +94 -0
  127. package/skills/lark-base/references/lark-base-workflow-enable.md +94 -0
  128. package/skills/lark-base/references/lark-base-workflow-get.md +147 -0
  129. package/skills/lark-base/references/lark-base-workflow-guide.md +718 -0
  130. package/skills/lark-base/references/lark-base-workflow-list.md +124 -0
  131. package/skills/lark-base/references/lark-base-workflow-schema.md +935 -0
  132. package/skills/lark-base/references/lark-base-workflow-update.md +167 -0
  133. package/skills/lark-base/references/lark-base-workflow.md +23 -0
  134. package/skills/lark-base/references/lark-base-workspace.md +18 -0
  135. package/skills/lark-base/references/lookup-field-guide.md +512 -0
  136. package/skills/lark-base/references/role-config.md +539 -0
  137. package/skills/lark-calendar/SKILL.md +154 -0
  138. package/skills/lark-calendar/references/lark-calendar-agenda.md +78 -0
  139. package/skills/lark-calendar/references/lark-calendar-create.md +109 -0
  140. package/skills/lark-calendar/references/lark-calendar-freebusy.md +124 -0
  141. package/skills/lark-calendar/references/lark-calendar-room-find.md +113 -0
  142. package/skills/lark-calendar/references/lark-calendar-rsvp.md +42 -0
  143. package/skills/lark-calendar/references/lark-calendar-schedule-meeting.md +265 -0
  144. package/skills/lark-calendar/references/lark-calendar-suggestion.md +125 -0
  145. package/skills/lark-calendar/references/lark-calendar-update.md +105 -0
  146. package/skills/lark-contact/SKILL.md +45 -0
  147. package/skills/lark-contact/references/lark-contact-get-user.md +19 -0
  148. package/skills/lark-contact/references/lark-contact-search-user.md +124 -0
  149. package/skills/lark-doc/SKILL.md +65 -0
  150. package/skills/lark-doc/references/lark-doc-create.md +89 -0
  151. package/skills/lark-doc/references/lark-doc-fetch.md +141 -0
  152. package/skills/lark-doc/references/lark-doc-md.md +71 -0
  153. package/skills/lark-doc/references/lark-doc-media-download.md +50 -0
  154. package/skills/lark-doc/references/lark-doc-media-insert.md +114 -0
  155. package/skills/lark-doc/references/lark-doc-media-preview.md +41 -0
  156. package/skills/lark-doc/references/lark-doc-update.md +252 -0
  157. package/skills/lark-doc/references/lark-doc-whiteboard.md +100 -0
  158. package/skills/lark-doc/references/lark-doc-xml.md +169 -0
  159. package/skills/lark-doc/references/style/lark-doc-create-workflow.md +56 -0
  160. package/skills/lark-doc/references/style/lark-doc-style.md +106 -0
  161. package/skills/lark-doc/references/style/lark-doc-update-workflow.md +54 -0
  162. package/skills/lark-drive/SKILL.md +369 -0
  163. package/skills/lark-drive/references/lark-drive-add-comment.md +182 -0
  164. package/skills/lark-drive/references/lark-drive-apply-permission.md +77 -0
  165. package/skills/lark-drive/references/lark-drive-create-folder.md +73 -0
  166. package/skills/lark-drive/references/lark-drive-create-shortcut.md +103 -0
  167. package/skills/lark-drive/references/lark-drive-delete.md +79 -0
  168. package/skills/lark-drive/references/lark-drive-download.md +31 -0
  169. package/skills/lark-drive/references/lark-drive-export-download.md +50 -0
  170. package/skills/lark-drive/references/lark-drive-export.md +119 -0
  171. package/skills/lark-drive/references/lark-drive-import.md +159 -0
  172. package/skills/lark-drive/references/lark-drive-inspect.md +50 -0
  173. package/skills/lark-drive/references/lark-drive-move.md +120 -0
  174. package/skills/lark-drive/references/lark-drive-pull.md +137 -0
  175. package/skills/lark-drive/references/lark-drive-push.md +162 -0
  176. package/skills/lark-drive/references/lark-drive-reactions.md +113 -0
  177. package/skills/lark-drive/references/lark-drive-search.md +266 -0
  178. package/skills/lark-drive/references/lark-drive-status.md +198 -0
  179. package/skills/lark-drive/references/lark-drive-task-result.md +302 -0
  180. package/skills/lark-drive/references/lark-drive-upload.md +67 -0
  181. package/skills/lark-drive/references/lark-drive-version-delete.md +38 -0
  182. package/skills/lark-drive/references/lark-drive-version-get.md +71 -0
  183. package/skills/lark-drive/references/lark-drive-version-history.md +73 -0
  184. package/skills/lark-drive/references/lark-drive-version-revert.md +198 -0
  185. package/skills/lark-event/SKILL.md +145 -0
  186. package/skills/lark-event/references/lark-event-im.md +86 -0
  187. package/skills/lark-im/SKILL.md +162 -0
  188. package/skills/lark-im/references/lark-im-chat-create.md +162 -0
  189. package/skills/lark-im/references/lark-im-chat-identity.md +55 -0
  190. package/skills/lark-im/references/lark-im-chat-list.md +198 -0
  191. package/skills/lark-im/references/lark-im-chat-messages-list.md +148 -0
  192. package/skills/lark-im/references/lark-im-chat-search.md +136 -0
  193. package/skills/lark-im/references/lark-im-chat-update.md +84 -0
  194. package/skills/lark-im/references/lark-im-flag-cancel.md +198 -0
  195. package/skills/lark-im/references/lark-im-flag-create.md +67 -0
  196. package/skills/lark-im/references/lark-im-flag-list.md +100 -0
  197. package/skills/lark-im/references/lark-im-messages-mget.md +95 -0
  198. package/skills/lark-im/references/lark-im-messages-reply.md +228 -0
  199. package/skills/lark-im/references/lark-im-messages-resources-download.md +94 -0
  200. package/skills/lark-im/references/lark-im-messages-search.md +232 -0
  201. package/skills/lark-im/references/lark-im-messages-send.md +229 -0
  202. package/skills/lark-im/references/lark-im-reactions.md +297 -0
  203. package/skills/lark-im/references/lark-im-threads-messages-list.md +111 -0
  204. package/skills/lark-mail/SKILL.md +648 -0
  205. package/skills/lark-mail/references/lark-mail-decline-receipt.md +115 -0
  206. package/skills/lark-mail/references/lark-mail-draft-create.md +123 -0
  207. package/skills/lark-mail/references/lark-mail-draft-edit.md +400 -0
  208. package/skills/lark-mail/references/lark-mail-forward.md +173 -0
  209. package/skills/lark-mail/references/lark-mail-message.md +230 -0
  210. package/skills/lark-mail/references/lark-mail-messages.md +108 -0
  211. package/skills/lark-mail/references/lark-mail-reply-all.md +206 -0
  212. package/skills/lark-mail/references/lark-mail-reply.md +242 -0
  213. package/skills/lark-mail/references/lark-mail-send-receipt.md +198 -0
  214. package/skills/lark-mail/references/lark-mail-send.md +216 -0
  215. package/skills/lark-mail/references/lark-mail-share-to-chat.md +198 -0
  216. package/skills/lark-mail/references/lark-mail-signature.md +98 -0
  217. package/skills/lark-mail/references/lark-mail-template-create.md +129 -0
  218. package/skills/lark-mail/references/lark-mail-template-update.md +198 -0
  219. package/skills/lark-mail/references/lark-mail-thread.md +111 -0
  220. package/skills/lark-mail/references/lark-mail-triage.md +122 -0
  221. package/skills/lark-mail/references/lark-mail-watch.md +94 -0
  222. package/skills/lark-minutes/SKILL.md +139 -0
  223. package/skills/lark-minutes/references/lark-minutes-download.md +137 -0
  224. package/skills/lark-minutes/references/lark-minutes-search.md +206 -0
  225. package/skills/lark-minutes/references/lark-minutes-upload.md +104 -0
  226. package/skills/lark-okr/SKILL.md +133 -0
  227. package/skills/lark-okr/references/lark-okr-contentblock.md +359 -0
  228. package/skills/lark-okr/references/lark-okr-cycle-detail.md +84 -0
  229. package/skills/lark-okr/references/lark-okr-cycle-list.md +90 -0
  230. package/skills/lark-okr/references/lark-okr-entities.md +329 -0
  231. package/skills/lark-okr/references/lark-okr-image-upload.md +116 -0
  232. package/skills/lark-okr/references/lark-okr-progress-create.md +81 -0
  233. package/skills/lark-okr/references/lark-okr-progress-delete.md +47 -0
  234. package/skills/lark-okr/references/lark-okr-progress-get.md +62 -0
  235. package/skills/lark-okr/references/lark-okr-progress-list.md +80 -0
  236. package/skills/lark-okr/references/lark-okr-progress-update.md +81 -0
  237. package/skills/lark-openapi-explorer/SKILL.md +153 -0
  238. package/skills/lark-shared/SKILL.md +144 -0
  239. package/skills/lark-sheets/SKILL.md +343 -0
  240. package/skills/lark-sheets/references/lark-sheets-cell-data.md +197 -0
  241. package/skills/lark-sheets/references/lark-sheets-cell-images.md +59 -0
  242. package/skills/lark-sheets/references/lark-sheets-cell-style-and-merge.md +141 -0
  243. package/skills/lark-sheets/references/lark-sheets-dropdown.md +133 -0
  244. package/skills/lark-sheets/references/lark-sheets-filter-views.md +193 -0
  245. package/skills/lark-sheets/references/lark-sheets-float-images.md +125 -0
  246. package/skills/lark-sheets/references/lark-sheets-formula.md +88 -0
  247. package/skills/lark-sheets/references/lark-sheets-row-column-management.md +151 -0
  248. package/skills/lark-sheets/references/lark-sheets-sheet-management.md +164 -0
  249. package/skills/lark-sheets/references/lark-sheets-spreadsheet-management.md +140 -0
  250. package/skills/lark-skill-maker/SKILL.md +85 -0
  251. package/skills/lark-slides/SKILL.md +296 -0
  252. package/skills/lark-slides/assets/templates/administration--all_hands_meeting.xml +1999 -0
  253. package/skills/lark-slides/assets/templates/administration--annual_gala.xml +1160 -0
  254. package/skills/lark-slides/assets/templates/administration--company_intro.xml +1376 -0
  255. package/skills/lark-slides/assets/templates/administration--corporate_culture.xml +1765 -0
  256. package/skills/lark-slides/assets/templates/hr--employee_training.xml +912 -0
  257. package/skills/lark-slides/assets/templates/hr--employee_training_workshop.xml +1504 -0
  258. package/skills/lark-slides/assets/templates/hr--onboarding.xml +933 -0
  259. package/skills/lark-slides/assets/templates/marketing--brand_communication.xml +1367 -0
  260. package/skills/lark-slides/assets/templates/marketing--brand_logo_design.xml +1347 -0
  261. package/skills/lark-slides/assets/templates/marketing--brand_operations_plan.xml +1309 -0
  262. package/skills/lark-slides/assets/templates/marketing--business_plan.xml +1646 -0
  263. package/skills/lark-slides/assets/templates/marketing--marketing_plan.xml +198 -0
  264. package/skills/lark-slides/assets/templates/marketing--marketing_strategy.xml +1484 -0
  265. package/skills/lark-slides/assets/templates/marketing--product_whitepaper.xml +198 -0
  266. package/skills/lark-slides/assets/templates/marketing--roadshow_business_plan.xml +1506 -0
  267. package/skills/lark-slides/assets/templates/misc--book_sharing.xml +198 -0
  268. package/skills/lark-slides/assets/templates/misc--club_event_plan.xml +4885 -0
  269. package/skills/lark-slides/assets/templates/misc--student_career_plan.xml +1854 -0
  270. package/skills/lark-slides/assets/templates/office--dark_general.xml +3763 -0
  271. package/skills/lark-slides/assets/templates/office--dept_annual_report.xml +1192 -0
  272. package/skills/lark-slides/assets/templates/office--light_general.xml +3378 -0
  273. package/skills/lark-slides/assets/templates/office--project_kickoff.xml +3152 -0
  274. package/skills/lark-slides/assets/templates/office--quarterly_review.xml +1253 -0
  275. package/skills/lark-slides/assets/templates/office--work_report.xml +1099 -0
  276. package/skills/lark-slides/assets/templates/office--work_summary.xml +4420 -0
  277. package/skills/lark-slides/assets/templates/office--work_summary_report.xml +1523 -0
  278. package/skills/lark-slides/assets/templates/operations--brand_logo_design.xml +1347 -0
  279. package/skills/lark-slides/assets/templates/operations--brand_operations_plan.xml +1309 -0
  280. package/skills/lark-slides/assets/templates/operations--marketing_plan.xml +1469 -0
  281. package/skills/lark-slides/assets/templates/operations--product_promotion.xml +687 -0
  282. package/skills/lark-slides/assets/templates/personal--experience_sharing.xml +2242 -0
  283. package/skills/lark-slides/assets/templates/personal--personal_resume.xml +2047 -0
  284. package/skills/lark-slides/assets/templates/personal--promotion_defense.xml +1099 -0
  285. package/skills/lark-slides/assets/templates/personal--promotion_report.xml +1039 -0
  286. package/skills/lark-slides/assets/templates/personal--self_intro.xml +696 -0
  287. package/skills/lark-slides/assets/templates/personal--teaching_sharing.xml +3013 -0
  288. package/skills/lark-slides/assets/templates/product--business_case_analysis.xml +1341 -0
  289. package/skills/lark-slides/assets/templates/product--market_analysis.xml +898 -0
  290. package/skills/lark-slides/assets/templates/product--product_analysis.xml +1537 -0
  291. package/skills/lark-slides/assets/templates/product--product_intro.xml +2838 -0
  292. package/skills/lark-slides/assets/templates/product--product_promotion.xml +687 -0
  293. package/skills/lark-slides/assets/templates/product--product_promotion_2.xml +198 -0
  294. package/skills/lark-slides/references/asset-planning.md +124 -0
  295. package/skills/lark-slides/references/examples.md +261 -0
  296. package/skills/lark-slides/references/lark-slides-create.md +137 -0
  297. package/skills/lark-slides/references/lark-slides-edit-workflows.md +142 -0
  298. package/skills/lark-slides/references/lark-slides-media-upload.md +128 -0
  299. package/skills/lark-slides/references/lark-slides-replace-slide.md +239 -0
  300. package/skills/lark-slides/references/lark-slides-xml-presentation-slide-create.md +220 -0
  301. package/skills/lark-slides/references/lark-slides-xml-presentation-slide-delete.md +123 -0
  302. package/skills/lark-slides/references/lark-slides-xml-presentation-slide-get.md +110 -0
  303. package/skills/lark-slides/references/lark-slides-xml-presentation-slide-replace.md +186 -0
  304. package/skills/lark-slides/references/lark-slides-xml-presentations-get.md +98 -0
  305. package/skills/lark-slides/references/planning-layer.md +219 -0
  306. package/skills/lark-slides/references/slide-templates.md +201 -0
  307. package/skills/lark-slides/references/slides_demo.xml +226 -0
  308. package/skills/lark-slides/references/slides_xml_schema_definition.xml +3004 -0
  309. package/skills/lark-slides/references/template-catalog.md +463 -0
  310. package/skills/lark-slides/references/template-index.json +198 -0
  311. package/skills/lark-slides/references/troubleshooting.md +198 -0
  312. package/skills/lark-slides/references/validation-checklist.md +102 -0
  313. package/skills/lark-slides/references/visual-planning.md +250 -0
  314. package/skills/lark-slides/references/xml-format-guide.md +369 -0
  315. package/skills/lark-slides/references/xml-schema-quick-ref.md +215 -0
  316. package/skills/lark-slides/scripts/template_tool.py +970 -0
  317. package/skills/lark-slides/scripts/template_tool_test.py +177 -0
  318. package/skills/lark-slides/scripts/xml_text_overlap_lint.py +367 -0
  319. package/skills/lark-slides/scripts/xml_text_overlap_lint_test.py +263 -0
  320. package/skills/lark-task/SKILL.md +165 -0
  321. package/skills/lark-task/references/lark-task-assign.md +38 -0
  322. package/skills/lark-task/references/lark-task-comment.md +28 -0
  323. package/skills/lark-task/references/lark-task-complete.md +27 -0
  324. package/skills/lark-task/references/lark-task-create.md +57 -0
  325. package/skills/lark-task/references/lark-task-followers.md +35 -0
  326. package/skills/lark-task/references/lark-task-get-my-tasks.md +55 -0
  327. package/skills/lark-task/references/lark-task-get-related-tasks.md +53 -0
  328. package/skills/lark-task/references/lark-task-reminder.md +36 -0
  329. package/skills/lark-task/references/lark-task-reopen.md +27 -0
  330. package/skills/lark-task/references/lark-task-search.md +41 -0
  331. package/skills/lark-task/references/lark-task-set-ancestor.md +32 -0
  332. package/skills/lark-task/references/lark-task-subscribe-event.md +86 -0
  333. package/skills/lark-task/references/lark-task-tasklist-create.md +35 -0
  334. package/skills/lark-task/references/lark-task-tasklist-members.md +36 -0
  335. package/skills/lark-task/references/lark-task-tasklist-search.md +38 -0
  336. package/skills/lark-task/references/lark-task-tasklist-task-add.md +38 -0
  337. package/skills/lark-task/references/lark-task-update.md +37 -0
  338. package/skills/lark-task/references/lark-task-upload-attachment.md +59 -0
  339. package/skills/lark-vc/SKILL.md +168 -0
  340. package/skills/lark-vc/references/lark-vc-notes.md +126 -0
  341. package/skills/lark-vc/references/lark-vc-recording.md +153 -0
  342. package/skills/lark-vc/references/lark-vc-search.md +193 -0
  343. package/skills/lark-vc-agent/SKILL.md +121 -0
  344. package/skills/lark-vc-agent/references/lark-vc-agent-meeting-events.md +247 -0
  345. package/skills/lark-vc-agent/references/lark-vc-agent-meeting-join.md +133 -0
  346. package/skills/lark-vc-agent/references/lark-vc-agent-meeting-leave.md +111 -0
  347. package/skills/lark-whiteboard/SKILL.md +144 -0
  348. package/skills/lark-whiteboard/references/connectors.md +102 -0
  349. package/skills/lark-whiteboard/references/content.md +40 -0
  350. package/skills/lark-whiteboard/references/image.md +80 -0
  351. package/skills/lark-whiteboard/references/lark-whiteboard-query.md +49 -0
  352. package/skills/lark-whiteboard/references/lark-whiteboard-update.md +100 -0
  353. package/skills/lark-whiteboard/references/layout.md +374 -0
  354. package/skills/lark-whiteboard/references/schema.md +357 -0
  355. package/skills/lark-whiteboard/references/style.md +318 -0
  356. package/skills/lark-whiteboard/references/typography.md +73 -0
  357. package/skills/lark-whiteboard/routes/dsl.md +107 -0
  358. package/skills/lark-whiteboard/routes/mermaid.md +27 -0
  359. package/skills/lark-whiteboard/routes/svg.md +54 -0
  360. package/skills/lark-whiteboard/scenes/architecture.md +433 -0
  361. package/skills/lark-whiteboard/scenes/bar-chart.md +187 -0
  362. package/skills/lark-whiteboard/scenes/comparison.md +135 -0
  363. package/skills/lark-whiteboard/scenes/fishbone.md +238 -0
  364. package/skills/lark-whiteboard/scenes/flowchart.md +198 -0
  365. package/skills/lark-whiteboard/scenes/flywheel.md +195 -0
  366. package/skills/lark-whiteboard/scenes/funnel.md +198 -0
  367. package/skills/lark-whiteboard/scenes/line-chart.md +214 -0
  368. package/skills/lark-whiteboard/scenes/mermaid.md +130 -0
  369. package/skills/lark-whiteboard/scenes/milestone.md +139 -0
  370. package/skills/lark-whiteboard/scenes/organization.md +173 -0
  371. package/skills/lark-whiteboard/scenes/photo-showcase.md +198 -0
  372. package/skills/lark-whiteboard/scenes/pyramid.md +99 -0
  373. package/skills/lark-whiteboard/scenes/swimlane.md +371 -0
  374. package/skills/lark-whiteboard/scenes/treemap.md +198 -0
  375. package/skills/lark-wiki/SKILL.md +119 -0
  376. package/skills/lark-wiki/references/lark-wiki-delete-space.md +205 -0
  377. package/skills/lark-wiki/references/lark-wiki-member-add.md +66 -0
  378. package/skills/lark-wiki/references/lark-wiki-member-list.md +76 -0
  379. package/skills/lark-wiki/references/lark-wiki-member-remove.md +61 -0
  380. package/skills/lark-wiki/references/lark-wiki-move.md +183 -0
  381. package/skills/lark-wiki/references/lark-wiki-node-copy.md +72 -0
  382. package/skills/lark-wiki/references/lark-wiki-node-create.md +127 -0
  383. package/skills/lark-wiki/references/lark-wiki-node-delete.md +62 -0
  384. package/skills/lark-wiki/references/lark-wiki-node-get.md +56 -0
  385. package/skills/lark-wiki/references/lark-wiki-node-list.md +198 -0
  386. package/skills/lark-wiki/references/lark-wiki-space-create.md +46 -0
  387. package/skills/lark-wiki/references/lark-wiki-space-list.md +198 -0
  388. package/skills/lark-workflow-meeting-summary/SKILL.md +104 -0
  389. package/skills/lark-workflow-standup-report/SKILL.md +120 -0
  390. package/skills/mmx-cli/SKILL.md +440 -0
  391. package/src/bot.ts +109 -0
  392. package/src/cards.ts +105 -0
  393. package/src/config.ts +33 -0
  394. package/src/daemon.ts +217 -0
  395. package/src/extension.ts +132 -0
  396. package/src/poller.ts +135 -0
  397. package/src/renderer.ts +47 -0
  398. package/src/session-registry.ts +90 -0
  399. package/src/types.ts +29 -0
  400. package/tests/bot.test.ts +104 -0
  401. package/tests/cards.test.ts +48 -0
  402. package/tests/config.test.ts +59 -0
  403. package/tests/renderer.test.ts +74 -0
  404. package/tests/session-registry.test.ts +94 -0
  405. package/tests/types.test.ts +35 -0
  406. package/tsconfig.json +16 -0
  407. package/vitest.config.ts +7 -0
@@ -0,0 +1,1537 @@
1
+ <presentation xmlns="http://www.larkoffice.com/sml/2.0" width="960" height="540">
2
+ <title>产品分析报告</title>
3
+ <theme>
4
+ <fill alpha="1">
5
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
6
+ </fill>
7
+ <textStyles>
8
+ <title fontColor="#000000FF" fontSize="60"/>
9
+ <headline fontColor="#000000FF" fontSize="36"/>
10
+ <sub-headline fontColor="#000000FF" fontSize="20"/>
11
+ <body fontColor="#000000FF"/>
12
+ <caption fontColor="#808080FF"/>
13
+ </textStyles>
14
+ </theme>
15
+ <slide>
16
+ <style>
17
+ <fill>
18
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
19
+ </fill>
20
+ </style>
21
+ <data>
22
+ <shape width="557" height="557" topLeftX="470" topLeftY="132" alpha="0.51" type="ellipse">
23
+ <border color="rgba(255, 255, 255, 1)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
24
+ </shape>
25
+ <shape width="514" height="514" topLeftX="646" topLeftY="-103" alpha="0.51" type="ellipse">
26
+ <border color="rgba(255, 255, 255, 1)" width="1" lineJoin="miter" miterLimit="10"/>
27
+ </shape>
28
+ <shape width="11" height="11" topLeftX="641" topLeftY="146" type="ellipse">
29
+ <fill>
30
+ <fillColor color="rgba(255, 255, 255, 1)"/>
31
+ </fill>
32
+ </shape>
33
+ <shape width="397" height="56" topLeftX="30" topLeftY="428" alpha="0.5" type="text">
34
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" color="rgba(242, 243, 245, 1)">
35
+ <p>
36
+ <span color="rgba(242, 243, 245, 1)" fontSize="12">报告目的和背景:说明本次报告的目的,例如对特定产品进行详细分析,以评估其市场地位和潜在机会</span>
37
+ </p>
38
+ </content>
39
+ </shape>
40
+ <shape width="640" height="110" topLeftX="30" topLeftY="320" type="text">
41
+ <content textType="title" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="90" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1" letterSpacing="2">
42
+ <p>
43
+ <strong>
44
+ <span color="rgba(242, 243, 245, 1)" fontSize="90">产品分析报告</span>
45
+ </strong>
46
+ </p>
47
+ </content>
48
+ </shape>
49
+ <shape width="162" height="39" topLeftX="30" topLeftY="28" type="text">
50
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" fontFamily="undefined" color="rgba(255, 255, 255, 1)" backgroundColor="rgba(0, 0, 0, 0)" bold="false" italic="false" underline="false" strikethrough="false" list="none" listStyle="circle-hollow-square" textAlign="left" autoFit="shape-auto-fit">
51
+ <p list="none" textAlign="left">
52
+ <span color="rgba(255, 255, 255, 1)" backgroundColor="rgba(0, 0, 0, 0)" fontSize="12" fontFamily="undefined" bold="false" italic="false" strikethrough="false" underline="false">你的团队</span>
53
+ </p>
54
+ </content>
55
+ </shape>
56
+ </data>
57
+ <note>
58
+ <content/>
59
+ </note>
60
+ </slide>
61
+ <slide>
62
+ <style>
63
+ <fill>
64
+ <fillImg src="TWMbb5BUwoVGv2xyYwFcPJN0nfh" alpha="1" rotateWithShape="false"/>
65
+ </fill>
66
+ </style>
67
+ <data>
68
+ <shape width="449" height="449" topLeftX="532" topLeftY="88" alpha="0.15" type="ellipse">
69
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
70
+ </shape>
71
+ <shape width="514" height="514" topLeftX="626" topLeftY="-123" alpha="0.15" type="ellipse">
72
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineJoin="miter" miterLimit="10"/>
73
+ </shape>
74
+ <shape width="82" height="82" topLeftX="67" topLeftY="405" type="ellipse">
75
+ <fill>
76
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
77
+ </fill>
78
+ </shape>
79
+ <shape width="42" height="42" topLeftX="182" topLeftY="397" type="ellipse">
80
+ <fill>
81
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
82
+ </fill>
83
+ </shape>
84
+ <shape width="181" height="74" topLeftX="87" topLeftY="187" type="text">
85
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
86
+ <p>
87
+ <span fontSize="12">描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</span>
88
+ </p>
89
+ </content>
90
+ </shape>
91
+ <shape width="181" height="74" topLeftX="83" topLeftY="122" type="text">
92
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
93
+ <p>
94
+ <strong>
95
+ <span fontSize="45">目录</span>
96
+ </strong>
97
+ </p>
98
+ </content>
99
+ </shape>
100
+ <shape width="30" height="30" topLeftX="406" topLeftY="131" type="ellipse">
101
+ <fill>
102
+ <fillColor color="linear-gradient(90deg,rgba(222, 235, 255, 1) 0%,rgba(255, 255, 255, 1) 0%,rgba(223, 236, 255, 1) 57%,rgba(215, 231, 255, 1) 100%,rgba(144, 188, 255, 1) 100%,rgba(182, 211, 255, 1) 100%)"/>
103
+ </fill>
104
+ </shape>
105
+ <shape width="219" height="40" topLeftX="415" topLeftY="131" type="text">
106
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2">
107
+ <p>
108
+ <strong>产品概述</strong>
109
+ </p>
110
+ </content>
111
+ </shape>
112
+ <shape width="222" height="74" topLeftX="412" topLeftY="169" alpha="0.5" type="text">
113
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
114
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
115
+ </content>
116
+ </shape>
117
+ <shape width="30" height="30" topLeftX="663" topLeftY="131" type="ellipse">
118
+ <fill>
119
+ <fillColor color="linear-gradient(90deg,rgba(222, 235, 255, 1) 0%,rgba(255, 255, 255, 1) 0%,rgba(223, 236, 255, 1) 57%,rgba(215, 231, 255, 1) 100%,rgba(144, 188, 255, 1) 100%,rgba(182, 211, 255, 1) 100%)"/>
120
+ </fill>
121
+ </shape>
122
+ <shape width="219" height="40" topLeftX="672" topLeftY="131" type="text">
123
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2">
124
+ <p>
125
+ <strong>市场分析</strong>
126
+ </p>
127
+ </content>
128
+ </shape>
129
+ <shape width="222" height="74" topLeftX="669" topLeftY="169" alpha="0.5" type="text">
130
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
131
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
132
+ </content>
133
+ </shape>
134
+ <shape width="30" height="30" topLeftX="406" topLeftY="284" type="ellipse">
135
+ <fill>
136
+ <fillColor color="linear-gradient(90deg,rgba(222, 235, 255, 1) 0%,rgba(255, 255, 255, 1) 0%,rgba(223, 236, 255, 1) 57%,rgba(215, 231, 255, 1) 100%,rgba(144, 188, 255, 1) 100%,rgba(182, 211, 255, 1) 100%)"/>
137
+ </fill>
138
+ </shape>
139
+ <shape width="219" height="40" topLeftX="415" topLeftY="284" type="text">
140
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2">
141
+ <p>
142
+ <strong>竞争分析</strong>
143
+ </p>
144
+ </content>
145
+ </shape>
146
+ <shape width="222" height="74" topLeftX="412" topLeftY="321" alpha="0.5" type="text">
147
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
148
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
149
+ </content>
150
+ </shape>
151
+ <shape width="30" height="30" topLeftX="663" topLeftY="284" type="ellipse">
152
+ <fill>
153
+ <fillColor color="linear-gradient(90deg,rgba(222, 235, 255, 1) 0%,rgba(255, 255, 255, 1) 0%,rgba(223, 236, 255, 1) 57%,rgba(215, 231, 255, 1) 100%,rgba(144, 188, 255, 1) 100%,rgba(182, 211, 255, 1) 100%)"/>
154
+ </fill>
155
+ </shape>
156
+ <shape width="219" height="40" topLeftX="672" topLeftY="284" type="text">
157
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2">
158
+ <p>
159
+ <strong>建议与措施</strong>
160
+ </p>
161
+ </content>
162
+ </shape>
163
+ <shape width="222" height="74" topLeftX="669" topLeftY="321" alpha="0.5" type="text">
164
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
165
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
166
+ </content>
167
+ </shape>
168
+ </data>
169
+ <note>
170
+ <content/>
171
+ </note>
172
+ </slide>
173
+ <slide>
174
+ <style>
175
+ <fill>
176
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
177
+ </fill>
178
+ </style>
179
+ <data>
180
+ <shape width="271" height="271" topLeftX="831" topLeftY="100" alpha="0.51" type="ellipse">
181
+ <border color="rgba(255, 255, 255, 1)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
182
+ </shape>
183
+ <shape width="619" height="619" topLeftX="411" topLeftY="247" alpha="0.51" type="ellipse">
184
+ <border color="rgba(255, 255, 255, 1)" width="1" lineJoin="miter" miterLimit="10"/>
185
+ </shape>
186
+ <shape width="11" height="11" topLeftX="832" topLeftY="265" type="ellipse">
187
+ <fill>
188
+ <fillColor color="rgba(255, 255, 255, 1)"/>
189
+ </fill>
190
+ </shape>
191
+ <shape width="200" height="74" topLeftX="70" topLeftY="150" type="text">
192
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
193
+ <p>
194
+ <span color="rgba(242, 243, 245, 1)" fontSize="12">描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</span>
195
+ </p>
196
+ </content>
197
+ </shape>
198
+ <shape width="692" height="92" topLeftX="70" topLeftY="62" type="text">
199
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
200
+ <p>
201
+ <strong>
202
+ <span color="rgba(242, 243, 245, 1)" fontSize="60">产品概述</span>
203
+ </strong>
204
+ </p>
205
+ </content>
206
+ </shape>
207
+ <shape width="291" height="160" topLeftX="647" topLeftY="362" type="text">
208
+ <content textType="title" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="140" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1" letterSpacing="2" textAlign="right">
209
+ <p>01</p>
210
+ </content>
211
+ </shape>
212
+ </data>
213
+ <note>
214
+ <content/>
215
+ </note>
216
+ </slide>
217
+ <slide>
218
+ <style>
219
+ <fill>
220
+ <fillImg src="H63mb66AvoxSqoxsg77cGpftnWO" alpha="1" rotateWithShape="false"/>
221
+ </fill>
222
+ </style>
223
+ <data>
224
+ <shape width="589" height="589" topLeftX="-40" topLeftY="316" rotation="90" alpha="0.15" type="ellipse">
225
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineJoin="miter" miterLimit="10"/>
226
+ </shape>
227
+ <shape width="277" height="277" topLeftX="-21" topLeftY="168" rotation="90" alpha="0.15" type="ellipse">
228
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
229
+ </shape>
230
+ <shape width="10" height="10" topLeftX="28" topLeftY="411" rotation="90" alpha="0.93" type="ellipse">
231
+ <fill>
232
+ <fillColor color="rgba(226, 234, 249, 1)"/>
233
+ </fill>
234
+ </shape>
235
+ <shape width="43" height="49" topLeftX="490" topLeftY="315" type="text">
236
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" lineSpacing="multiple:1.2" textAlign="left">
237
+ <p lineSpacing="multiple:1.2">
238
+ <strong>
239
+ <span color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" fontSize="24">↑</span>
240
+ </strong>
241
+ </p>
242
+ </content>
243
+ </shape>
244
+ <shape width="43" height="49" topLeftX="687" topLeftY="315" type="text">
245
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" lineSpacing="multiple:1.2" textAlign="left">
246
+ <p lineSpacing="multiple:1.2">
247
+ <strong>
248
+ <span color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" fontSize="24">↑</span>
249
+ </strong>
250
+ </p>
251
+ </content>
252
+ </shape>
253
+ <img src="Tk6zbOJdRoVYW6xa5FvcVRnFneh" width="315" height="420" topLeftX="60" topLeftY="57">
254
+ <crop type="rect" leftOffset="0.68" rightOffset="0.68" topOffset="0" bottomOffset="0" presetHandlers="16"/>
255
+ </img>
256
+ <shape width="129" height="40" topLeftX="500" topLeftY="371" type="text">
257
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2">
258
+ <p>
259
+ <strong>
260
+ <span fontSize="16">增长</span>
261
+ </strong>
262
+ <strong>
263
+ <span fontSize="16">率</span>
264
+ </strong>
265
+ </p>
266
+ </content>
267
+ </shape>
268
+ <shape width="352" height="74" topLeftX="490" topLeftY="173" type="text">
269
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
270
+ <p>
271
+ <span fontSize="12">描述你的产品定位、使用场景、特点、功能等。描述你的产品定位、使用场景、特点、功能等。描述你的产品定位、使用场景、特点、功能等。</span>
272
+ </p>
273
+ </content>
274
+ </shape>
275
+ <shape width="432" height="64" topLeftX="490" topLeftY="113" type="text">
276
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
277
+ <p>
278
+ <strong>
279
+ <span fontSize="36">产品介绍</span>
280
+ </strong>
281
+ </p>
282
+ </content>
283
+ </shape>
284
+ <shape width="130" height="38" topLeftX="686" topLeftY="397" type="text">
285
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
286
+ <p>
287
+ <span fontSize="12">相关细节信息描述</span>
288
+ </p>
289
+ </content>
290
+ </shape>
291
+ <shape width="130" height="38" topLeftX="500" topLeftY="397" type="text">
292
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
293
+ <p>
294
+ <span fontSize="12">相关细节信息描述</span>
295
+ </p>
296
+ </content>
297
+ </shape>
298
+ <shape width="128" height="78" topLeftX="714" topLeftY="293" type="text">
299
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
300
+ <p>
301
+ <strong>
302
+ <span color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" fontSize="48">120</span>
303
+ </strong>
304
+ </p>
305
+ </content>
306
+ </shape>
307
+ <shape width="128" height="78" topLeftX="517" topLeftY="293" type="text">
308
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
309
+ <p>
310
+ <strong>
311
+ <span color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" fontSize="48">80%</span>
312
+ </strong>
313
+ </p>
314
+ </content>
315
+ </shape>
316
+ <shape width="129" height="40" topLeftX="698" topLeftY="371" type="text">
317
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2">
318
+ <p>增长量</p>
319
+ </content>
320
+ </shape>
321
+ </data>
322
+ <note>
323
+ <content/>
324
+ </note>
325
+ </slide>
326
+ <slide>
327
+ <style>
328
+ <fill>
329
+ <fillImg src="GI0MbgUiqoP9hsxYaGjcMcrOnTf" alpha="1" rotateWithShape="false"/>
330
+ </fill>
331
+ </style>
332
+ <data>
333
+ <shape width="212" height="212" topLeftX="374" topLeftY="168" type="ellipse">
334
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" dashArray="dash" width="1" lineJoin="miter" miterLimit="10"/>
335
+ </shape>
336
+ <shape width="182" height="182" topLeftX="389" topLeftY="184" type="ellipse">
337
+ <fill>
338
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
339
+ </fill>
340
+ </shape>
341
+ <line startX="335" startY="128" endX="405" endY="198">
342
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
343
+ </line>
344
+ <line startX="555" startY="350" endX="625" endY="420">
345
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
346
+ </line>
347
+ <line startX="405" startY="350" endX="335" endY="420">
348
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
349
+ </line>
350
+ <line startX="625" startY="128" endX="555" endY="198">
351
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
352
+ </line>
353
+ <icon width="135" height="135" topLeftX="67" topLeftY="75" alpha="0.38" iconType="iconpark/Abstract/cycle-one.svg">
354
+ <border color="rgba(226, 234, 249, 1)" width="6" lineJoin="miter" miterLimit="10"/>
355
+ </icon>
356
+ <icon width="140" height="140" topLeftX="63" topLeftY="294" alpha="0.38" iconType="iconpark/Abstract/two-ellipses.svg">
357
+ <border color="rgba(226, 234, 249, 1)" width="6" lineJoin="miter" miterLimit="10"/>
358
+ </icon>
359
+ <icon width="136" height="136" topLeftX="785" topLeftY="299" alpha="0.38" iconType="iconpark/Charts/data-all.svg">
360
+ <border color="rgba(226, 234, 249, 1)" width="6" lineJoin="miter" miterLimit="10"/>
361
+ </icon>
362
+ <icon width="134" height="134" topLeftX="786" topLeftY="75" alpha="0.38" iconType="iconpark/Office/application-effect.svg">
363
+ <border color="rgba(226, 234, 249, 1)" width="6" lineJoin="miter" miterLimit="10"/>
364
+ </icon>
365
+ <shape width="241" height="56" topLeftX="76" topLeftY="142" alpha="0.5" type="text">
366
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="right">
367
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
368
+ </content>
369
+ </shape>
370
+ <shape width="212" height="40" topLeftX="110" topLeftY="110" type="text">
371
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="right">
372
+ <p>二级观点 #1</p>
373
+ </content>
374
+ </shape>
375
+ <shape width="91" height="97" topLeftX="434" topLeftY="221" type="text">
376
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="32" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1.2" textAlign="center">
377
+ <p>产品特点</p>
378
+ </content>
379
+ </shape>
380
+ <shape width="241" height="56" topLeftX="76" topLeftY="388" alpha="0.5" type="text">
381
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="right">
382
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
383
+ </content>
384
+ </shape>
385
+ <shape width="212" height="40" topLeftX="110" topLeftY="357" type="text">
386
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="right">
387
+ <p>二级观点 #2</p>
388
+ </content>
389
+ </shape>
390
+ <shape width="241" height="56" topLeftX="644" topLeftY="142" alpha="0.5" type="text">
391
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
392
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
393
+ </content>
394
+ </shape>
395
+ <shape width="212" height="40" topLeftX="644" topLeftY="110" type="text">
396
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="left">
397
+ <p>二级观点 #3</p>
398
+ </content>
399
+ </shape>
400
+ <shape width="241" height="56" topLeftX="644" topLeftY="388" alpha="0.5" type="text">
401
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
402
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
403
+ </content>
404
+ </shape>
405
+ <shape width="212" height="40" topLeftX="644" topLeftY="357" type="text">
406
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="left">
407
+ <p>二级观点 #4</p>
408
+ </content>
409
+ </shape>
410
+ </data>
411
+ <note>
412
+ <content/>
413
+ </note>
414
+ </slide>
415
+ <slide>
416
+ <style>
417
+ <fill>
418
+ <fillImg src="AJEbbuSXXouiGbx4bXNcouexn0g" alpha="1" rotateWithShape="false"/>
419
+ </fill>
420
+ </style>
421
+ <data>
422
+ <img src="QvCWbM5xqoVaJzxvKBXcIGiBnLf" width="367" height="540" topLeftX="593" topLeftY="0" saturation="-16" temperature="28">
423
+ <crop type="rect" leftOffset="21" rightOffset="26" topOffset="0" bottomOffset="74"/>
424
+ </img>
425
+ <shape width="269" height="56" topLeftX="85" topLeftY="170" type="text">
426
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
427
+ <p>确定产品的目标用户群体,并说明产品在市场中的定位和竞争优势。</p>
428
+ </content>
429
+ </shape>
430
+ <shape width="432" height="64" topLeftX="85" topLeftY="100" type="text">
431
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
432
+ <p>用户画像</p>
433
+ </content>
434
+ </shape>
435
+ <shape width="298" height="39" topLeftX="85" topLeftY="299" type="text">
436
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2">
437
+ <p>用户画像</p>
438
+ </content>
439
+ </shape>
440
+ <shape width="298" height="94" topLeftX="85" topLeftY="343" alpha="0.5" type="text">
441
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" lineSpacing="multiple:2">
442
+ <ul>
443
+ <li>
444
+ <p lineSpacing="multiple:2">
445
+ <span fontSize="12">关键核心描述</span>
446
+ </p>
447
+ </li>
448
+ <li>
449
+ <p lineSpacing="multiple:2">
450
+ <span fontSize="12">关键核心描述</span>
451
+ </p>
452
+ </li>
453
+ <li>
454
+ <p lineSpacing="multiple:2">
455
+ <span fontSize="12">关键核心描述</span>
456
+ </p>
457
+ </li>
458
+ </ul>
459
+ </content>
460
+ </shape>
461
+ </data>
462
+ <note>
463
+ <content/>
464
+ </note>
465
+ </slide>
466
+ <slide>
467
+ <style>
468
+ <fill>
469
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
470
+ </fill>
471
+ </style>
472
+ <data>
473
+ <shape width="271" height="271" topLeftX="831" topLeftY="100" alpha="0.51" type="ellipse">
474
+ <border color="rgba(255, 255, 255, 1)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
475
+ </shape>
476
+ <shape width="619" height="619" topLeftX="411" topLeftY="247" alpha="0.51" type="ellipse">
477
+ <border color="rgba(255, 255, 255, 1)" width="1" lineJoin="miter" miterLimit="10"/>
478
+ </shape>
479
+ <shape width="11" height="11" topLeftX="832" topLeftY="265" type="ellipse">
480
+ <fill>
481
+ <fillColor color="rgba(255, 255, 255, 1)"/>
482
+ </fill>
483
+ </shape>
484
+ <shape width="200" height="74" topLeftX="70" topLeftY="150" type="text">
485
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
486
+ <p>
487
+ <span color="rgba(242, 243, 245, 1)" fontSize="12">描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</span>
488
+ </p>
489
+ </content>
490
+ </shape>
491
+ <shape width="692" height="92" topLeftX="70" topLeftY="62" type="text">
492
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
493
+ <p>
494
+ <strong>
495
+ <span color="rgba(242, 243, 245, 1)" fontSize="60">市场分析</span>
496
+ </strong>
497
+ </p>
498
+ </content>
499
+ </shape>
500
+ <shape width="291" height="160" topLeftX="647" topLeftY="362" type="text">
501
+ <content textType="title" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="140" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1" letterSpacing="2" textAlign="right">
502
+ <p>02</p>
503
+ </content>
504
+ </shape>
505
+ </data>
506
+ <note>
507
+ <content/>
508
+ </note>
509
+ </slide>
510
+ <slide>
511
+ <style>
512
+ <fill>
513
+ <fillImg src="FooxbXPOJoYY0RxELmOcRJaEnNe" alpha="1" rotateWithShape="false"/>
514
+ </fill>
515
+ </style>
516
+ <data>
517
+ <shape width="960" height="253" topLeftX="0" topLeftY="0" type="rect">
518
+ <fill>
519
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
520
+ </fill>
521
+ </shape>
522
+ <img src="NcsLb3VSRoeJEVxfOuTc1ISdnPf" width="960" height="253" topLeftX="0" topLeftY="0" alpha="0.5">
523
+ <crop type="rect" leftOffset="85" rightOffset="12" topOffset="25" bottomOffset="0"/>
524
+ </img>
525
+ <shape width="269" height="56" topLeftX="53" topLeftY="370" type="text">
526
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
527
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
528
+ </content>
529
+ </shape>
530
+ <shape width="432" height="64" topLeftX="53" topLeftY="300" type="text">
531
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
532
+ <p>目标市场</p>
533
+ </content>
534
+ </shape>
535
+ <shape width="392" height="39" topLeftX="490" topLeftY="311" type="text">
536
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2">
537
+ <p>描述的目标市场</p>
538
+ </content>
539
+ </shape>
540
+ <shape width="298" height="94" topLeftX="490" topLeftY="355" alpha="0.5" type="text">
541
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" lineSpacing="multiple:2">
542
+ <ul>
543
+ <li>
544
+ <p lineSpacing="multiple:2">关键核心描述</p>
545
+ </li>
546
+ <li>
547
+ <p lineSpacing="multiple:2">
548
+ <span fontSize="12">关键核心描述</span>
549
+ </p>
550
+ </li>
551
+ <li>
552
+ <p lineSpacing="multiple:2">
553
+ <span fontSize="12">关键核心描述</span>
554
+ </p>
555
+ </li>
556
+ </ul>
557
+ </content>
558
+ </shape>
559
+ </data>
560
+ <note>
561
+ <content/>
562
+ </note>
563
+ </slide>
564
+ <slide>
565
+ <style>
566
+ <fill>
567
+ <fillImg src="QPp4bfbR9ocU43xZdn1cHZZxnYd" alpha="1" rotateWithShape="false"/>
568
+ </fill>
569
+ </style>
570
+ <data>
571
+ <shape width="570" height="570" topLeftX="-30" topLeftY="70" alpha="0.6" type="ellipse">
572
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineJoin="miter" miterLimit="10"/>
573
+ </shape>
574
+ <shape width="420" height="420" topLeftX="43" topLeftY="220" alpha="0.6" type="ellipse">
575
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineJoin="miter" miterLimit="10"/>
576
+ </shape>
577
+ <shape width="258" height="258" topLeftX="127" topLeftY="382" alpha="0.6" type="ellipse">
578
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineJoin="miter" miterLimit="10"/>
579
+ </shape>
580
+ <shape width="330" height="47" topLeftX="594" topLeftY="122" type="text">
581
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true">
582
+ <p>关键结论 #1</p>
583
+ </content>
584
+ </shape>
585
+ <shape width="212" height="40" topLeftX="152" topLeftY="447" type="text">
586
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="center">
587
+ <p>高端市场</p>
588
+ </content>
589
+ </shape>
590
+ <shape width="212" height="40" topLeftX="152" topLeftY="312" type="text">
591
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="center">
592
+ <p>中端市场</p>
593
+ </content>
594
+ </shape>
595
+ <shape width="212" height="40" topLeftX="152" topLeftY="158" type="text">
596
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" lineSpacing="multiple:1.2" textAlign="center">
597
+ <p>低端市场</p>
598
+ </content>
599
+ </shape>
600
+ <shape width="110" height="68" topLeftX="203" topLeftY="396" type="text">
601
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="40" color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" bold="true" lineSpacing="multiple:1.2" textAlign="center">
602
+ <p>10%</p>
603
+ </content>
604
+ </shape>
605
+ <shape width="110" height="68" topLeftX="203" topLeftY="260" type="text">
606
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="40" color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" bold="true" lineSpacing="multiple:1.2" textAlign="center">
607
+ <p>30%</p>
608
+ </content>
609
+ </shape>
610
+ <shape width="110" height="68" topLeftX="203" topLeftY="106" type="text">
611
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="40" color="linear-gradient(0deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" bold="true" lineSpacing="multiple:1.2" textAlign="center">
612
+ <p>60%</p>
613
+ </content>
614
+ </shape>
615
+ <shape width="309" height="56" topLeftX="594" topLeftY="295" alpha="0.5" type="text">
616
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
617
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
618
+ </content>
619
+ </shape>
620
+ <shape width="330" height="47" topLeftX="594" topLeftY="263" type="text">
621
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true">
622
+ <p>关键结论 #2</p>
623
+ </content>
624
+ </shape>
625
+ <shape width="309" height="56" topLeftX="594" topLeftY="153" alpha="0.5" type="text">
626
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
627
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
628
+ </content>
629
+ </shape>
630
+ <shape width="309" height="56" topLeftX="594" topLeftY="442" alpha="0.5" type="text">
631
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
632
+ <p>描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</p>
633
+ </content>
634
+ </shape>
635
+ <shape width="330" height="47" topLeftX="594" topLeftY="410" type="text">
636
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true">
637
+ <p>关键结论 #3</p>
638
+ </content>
639
+ </shape>
640
+ </data>
641
+ <note>
642
+ <content/>
643
+ </note>
644
+ </slide>
645
+ <slide>
646
+ <style>
647
+ <fill>
648
+ <fillImg src="LeJHbiXkToox4uxb12Oc7AVUnqf" alpha="1" rotateWithShape="false"/>
649
+ </fill>
650
+ </style>
651
+ <data>
652
+ <line startX="933" startY="101" endX="29" endY="102" alpha="0.1">
653
+ <border width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
654
+ </line>
655
+ <line startX="933" startY="326" endX="29" endY="327" alpha="0.1">
656
+ <border width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
657
+ </line>
658
+ <line startX="933" startY="209" endX="29" endY="210" alpha="0.1">
659
+ <border width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
660
+ </line>
661
+ <shape width="19" height="19" topLeftX="54" topLeftY="124" type="ellipse">
662
+ <fill>
663
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
664
+ </fill>
665
+ </shape>
666
+ <shape width="19" height="19" topLeftX="54" topLeftY="235" type="ellipse">
667
+ <fill>
668
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
669
+ </fill>
670
+ </shape>
671
+ <shape width="19" height="19" topLeftX="54" topLeftY="354" type="ellipse">
672
+ <fill>
673
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
674
+ </fill>
675
+ </shape>
676
+ <line startX="924" startY="442" endX="20" endY="443" alpha="0.1">
677
+ <border width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
678
+ </line>
679
+ <shape width="439" height="56" topLeftX="395" topLeftY="375" alpha="0.5" type="text">
680
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
681
+ <ul>
682
+ <li>
683
+ <p>
684
+ <span fontSize="12">这是指机器学习模型为其预测和决策提供解释的能力</span>
685
+ </p>
686
+ </li>
687
+ <li>
688
+ <p>
689
+ <span fontSize="12">它可以提高人工智能系统的透明度和可信度,以及识别和纠正错误或偏见</span>
690
+ </p>
691
+ </li>
692
+ </ul>
693
+ </content>
694
+ </shape>
695
+ <shape width="439" height="56" topLeftX="395" topLeftY="257" alpha="0.5" type="text">
696
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
697
+ <ul>
698
+ <li>
699
+ <p>
700
+ <span fontSize="12">这是一个帮助程序员编写、调试和优化代码的工具</span>
701
+ </p>
702
+ </li>
703
+ <li>
704
+ <p>
705
+ <span fontSize="12">它可以提供诸如代码自动完成、纠错、性能改进、文档生成等功能。</span>
706
+ </p>
707
+ </li>
708
+ </ul>
709
+ </content>
710
+ </shape>
711
+ <shape width="439" height="56" topLeftX="395" topLeftY="145" alpha="0.5" type="text">
712
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
713
+ <ul>
714
+ <li>
715
+ <p>
716
+ <span fontSize="12">这是一种人工智能技术,可以创造新的内容,如文本、图像、视频或音频。它可用于文案写作、音乐、药物发现等任务。</span>
717
+ </p>
718
+ </li>
719
+ </ul>
720
+ </content>
721
+ </shape>
722
+ <shape width="218" height="40" topLeftX="184" topLeftY="374" type="text">
723
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2" textAlign="center">
724
+ <p>
725
+ <strong>
726
+ <span fontSize="16">解释型 AI</span>
727
+ </strong>
728
+ </p>
729
+ </content>
730
+ </shape>
731
+ <shape width="218" height="40" topLeftX="184" topLeftY="257" type="text">
732
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2" textAlign="center">
733
+ <p>
734
+ <strong>
735
+ <span fontSize="16">AI 编码助手</span>
736
+ </strong>
737
+ </p>
738
+ </content>
739
+ </shape>
740
+ <shape width="218" height="40" topLeftX="184" topLeftY="144" type="text">
741
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" bold="true" lineSpacing="multiple:1.2" textAlign="center">
742
+ <p>
743
+ <strong>
744
+ <span fontSize="16">生成式 AI</span>
745
+ </strong>
746
+ </p>
747
+ </content>
748
+ </shape>
749
+ <shape width="110" height="56" topLeftX="71" topLeftY="366" type="text">
750
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="24" bold="true">
751
+ <p>
752
+ <strong>
753
+ <span fontSize="24">趋势 #</span>
754
+ </strong>
755
+ <strong>
756
+ <span fontSize="24">3</span>
757
+ </strong>
758
+ </p>
759
+ </content>
760
+ </shape>
761
+ <shape width="110" height="56" topLeftX="71" topLeftY="248" type="text">
762
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="24" bold="true">
763
+ <p>
764
+ <strong>
765
+ <span fontSize="24">趋势 #</span>
766
+ </strong>
767
+ <strong>
768
+ <span fontSize="24">2</span>
769
+ </strong>
770
+ </p>
771
+ </content>
772
+ </shape>
773
+ <shape width="110" height="56" topLeftX="71" topLeftY="136" type="text">
774
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="24" bold="true">
775
+ <p>
776
+ <strong>
777
+ <span fontSize="24">趋势 #1</span>
778
+ </strong>
779
+ </p>
780
+ </content>
781
+ </shape>
782
+ </data>
783
+ <note>
784
+ <content/>
785
+ </note>
786
+ </slide>
787
+ <slide>
788
+ <style>
789
+ <fill>
790
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
791
+ </fill>
792
+ </style>
793
+ <data>
794
+ <shape width="271" height="271" topLeftX="831" topLeftY="100" alpha="0.51" type="ellipse">
795
+ <border color="rgba(255, 255, 255, 1)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
796
+ </shape>
797
+ <shape width="619" height="619" topLeftX="411" topLeftY="247" alpha="0.51" type="ellipse">
798
+ <border color="rgba(255, 255, 255, 1)" width="1" lineJoin="miter" miterLimit="10"/>
799
+ </shape>
800
+ <shape width="11" height="11" topLeftX="832" topLeftY="265" type="ellipse">
801
+ <fill>
802
+ <fillColor color="rgba(255, 255, 255, 1)"/>
803
+ </fill>
804
+ </shape>
805
+ <shape width="200" height="74" topLeftX="70" topLeftY="150" type="text">
806
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
807
+ <p>
808
+ <span color="rgba(242, 243, 245, 1)" fontSize="12">描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</span>
809
+ </p>
810
+ </content>
811
+ </shape>
812
+ <shape width="692" height="92" topLeftX="70" topLeftY="62" type="text">
813
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
814
+ <p>
815
+ <strong>
816
+ <span color="rgba(242, 243, 245, 1)" fontSize="60">竞争分析</span>
817
+ </strong>
818
+ </p>
819
+ </content>
820
+ </shape>
821
+ <shape width="291" height="160" topLeftX="647" topLeftY="362" type="text">
822
+ <content textType="title" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="140" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1" letterSpacing="2" textAlign="right">
823
+ <p>03</p>
824
+ </content>
825
+ </shape>
826
+ </data>
827
+ <note>
828
+ <content/>
829
+ </note>
830
+ </slide>
831
+ <slide>
832
+ <style>
833
+ <fill>
834
+ <fillImg src="ZQekbiWtbo1NMUxcr8NccVqdnDr" alpha="1" rotateWithShape="false"/>
835
+ </fill>
836
+ </style>
837
+ <data>
838
+ <shape width="552" height="38" topLeftX="26" topLeftY="135" alpha="0.5" type="text">
839
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
840
+ <p>主要竞争对手和市场份额:列举产品的主要竞争对手,并分析他们在市场中的地位和市场份额。</p>
841
+ </content>
842
+ </shape>
843
+ <shape width="432" height="59" topLeftX="26" topLeftY="85" type="text">
844
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="32" bold="true" lineSpacing="multiple:1.2">
845
+ <p>竞争对手</p>
846
+ </content>
847
+ </shape>
848
+ <table topLeftX="26" topLeftY="198">
849
+ <colgroup>
850
+ <col span="4" width="224"/>
851
+ </colgroup>
852
+ <tr height="41">
853
+ <td>
854
+ <borderTop color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
855
+ <borderRight color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
856
+ <borderBottom color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
857
+ <borderLeft color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
858
+ <fill>
859
+ <fillColor color="rgba(45, 78, 249, 1)"/>
860
+ </fill>
861
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="14" color="rgba(255, 255, 255, 1)" bold="true">
862
+ <p>
863
+ <strong>
864
+ <span color="rgba(255, 255, 255, 1)" fontSize="14">竞争对手</span>
865
+ </strong>
866
+ </p>
867
+ </content>
868
+ </td>
869
+ <td>
870
+ <borderTop color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
871
+ <borderRight color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
872
+ <borderBottom color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
873
+ <fill>
874
+ <fillColor color="rgba(45, 78, 249, 1)"/>
875
+ </fill>
876
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" color="rgba(255, 255, 255, 1)" bold="true">
877
+ <p>
878
+ <strong>
879
+ <span color="rgba(255, 255, 255, 1)" fontSize="14">2025</span>
880
+ </strong>
881
+ </p>
882
+ </content>
883
+ </td>
884
+ <td>
885
+ <borderTop color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
886
+ <borderRight color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
887
+ <borderBottom color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
888
+ <fill>
889
+ <fillColor color="rgba(45, 78, 249, 1)"/>
890
+ </fill>
891
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" color="rgba(255, 255, 255, 1)" bold="true">
892
+ <p>
893
+ <strong>
894
+ <span color="rgba(255, 255, 255, 1)" fontSize="14">2026</span>
895
+ </strong>
896
+ </p>
897
+ </content>
898
+ </td>
899
+ <td>
900
+ <borderTop color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
901
+ <borderRight color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
902
+ <borderBottom color="rgba(45, 78, 249, 1)" lineJoin="miter" miterLimit="10"/>
903
+ <fill>
904
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
905
+ </fill>
906
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="14" color="rgba(255, 255, 255, 1)" bold="true">
907
+ <p>
908
+ <strong>
909
+ <span color="rgba(255, 255, 255, 1)" fontSize="14">相关细节</span>
910
+ </strong>
911
+ </p>
912
+ </content>
913
+ </td>
914
+ </tr>
915
+ <tr height="46">
916
+ <td>
917
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
918
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
919
+ <borderLeft color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
920
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" bold="true">
921
+ <p>
922
+ <strong>
923
+ <span fontSize="12">竞争对手 A</span>
924
+ </strong>
925
+ </p>
926
+ </content>
927
+ </td>
928
+ <td>
929
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
930
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
931
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
932
+ <p>
933
+ <span fontSize="12">30M</span>
934
+ </p>
935
+ </content>
936
+ </td>
937
+ <td>
938
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
939
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
940
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
941
+ <p>
942
+ <span fontSize="12">32M</span>
943
+ </p>
944
+ </content>
945
+ </td>
946
+ <td>
947
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
948
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
949
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
950
+ <p>
951
+ <span fontSize="12">更多细节描述</span>
952
+ </p>
953
+ </content>
954
+ </td>
955
+ </tr>
956
+ <tr height="46">
957
+ <td>
958
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
959
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
960
+ <borderLeft color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
961
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" bold="true">
962
+ <p>
963
+ <strong>
964
+ <span fontSize="12">竞争对手 B</span>
965
+ </strong>
966
+ </p>
967
+ </content>
968
+ </td>
969
+ <td>
970
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
971
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
972
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
973
+ <p>
974
+ <span fontSize="12">45M</span>
975
+ </p>
976
+ </content>
977
+ </td>
978
+ <td>
979
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
980
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
981
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
982
+ <p>
983
+ <span fontSize="12">40M</span>
984
+ </p>
985
+ </content>
986
+ </td>
987
+ <td>
988
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
989
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
990
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
991
+ <p>
992
+ <span fontSize="12">更多细节描述</span>
993
+ </p>
994
+ </content>
995
+ </td>
996
+ </tr>
997
+ <tr height="46">
998
+ <td>
999
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1000
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1001
+ <borderLeft color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1002
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" bold="true">
1003
+ <p>
1004
+ <strong>
1005
+ <span fontSize="12">竞争对手 C</span>
1006
+ </strong>
1007
+ </p>
1008
+ </content>
1009
+ </td>
1010
+ <td>
1011
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1012
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1013
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1014
+ <p>
1015
+ <span fontSize="12">15M</span>
1016
+ </p>
1017
+ </content>
1018
+ </td>
1019
+ <td>
1020
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1021
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1022
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1023
+ <p>
1024
+ <span fontSize="12">30M</span>
1025
+ </p>
1026
+ </content>
1027
+ </td>
1028
+ <td>
1029
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1030
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1031
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1032
+ <p>
1033
+ <span fontSize="12">更多细节描述</span>
1034
+ </p>
1035
+ </content>
1036
+ </td>
1037
+ </tr>
1038
+ <tr height="46">
1039
+ <td>
1040
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1041
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1042
+ <borderLeft color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1043
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" bold="true">
1044
+ <p>
1045
+ <strong>
1046
+ <span fontSize="12">竞争对手 D</span>
1047
+ </strong>
1048
+ </p>
1049
+ </content>
1050
+ </td>
1051
+ <td>
1052
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1053
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1054
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1055
+ <p>
1056
+ <span fontSize="12">60M</span>
1057
+ </p>
1058
+ </content>
1059
+ </td>
1060
+ <td>
1061
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1062
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1063
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1064
+ <p>
1065
+ <span fontSize="12">66M</span>
1066
+ </p>
1067
+ </content>
1068
+ </td>
1069
+ <td>
1070
+ <borderRight color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1071
+ <borderBottom color="rgba(176, 194, 225, 1)" lineJoin="miter" miterLimit="10"/>
1072
+ <content verticalAlign="top" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1073
+ <p>
1074
+ <span fontSize="12">更多细节描述</span>
1075
+ </p>
1076
+ </content>
1077
+ </td>
1078
+ </tr>
1079
+ </table>
1080
+ </data>
1081
+ <note>
1082
+ <content/>
1083
+ </note>
1084
+ </slide>
1085
+ <slide>
1086
+ <style/>
1087
+ <data>
1088
+ <shape width="824" height="416" topLeftX="68" topLeftY="62" presetHandlers="16" alpha="0.54" type="round-rect">
1089
+ <fill>
1090
+ <fillColor color="linear-gradient(90deg,rgba(222, 235, 255, 1) 0%,rgba(229, 238, 253, 1) 0%,rgba(214, 226, 244, 1) 70%,rgba(144, 188, 255, 1) 100%,rgba(214, 230, 255, 1) 100%)"/>
1091
+ </fill>
1092
+ </shape>
1093
+ <shape width="100" height="34" topLeftX="436" topLeftY="20" type="text">
1094
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="rgba(0, 0, 0, 1)" lineSpacing="multiple:1.2" textAlign="center">
1095
+ <p>
1096
+ <strong>
1097
+ <span color="rgba(0, 0, 0, 1)" fontSize="12">容易使用</span>
1098
+ </strong>
1099
+ </p>
1100
+ </content>
1101
+ </shape>
1102
+ <shape width="94" height="34" topLeftX="876" topLeftY="253" rotation="90" type="text">
1103
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="rgba(0, 0, 0, 1)" lineSpacing="multiple:1.2" textAlign="center">
1104
+ <p>
1105
+ <strong>
1106
+ <span color="rgba(0, 0, 0, 1)" fontSize="12">高效率</span>
1107
+ </strong>
1108
+ </p>
1109
+ </content>
1110
+ </shape>
1111
+ <shape width="100" height="34" topLeftX="436" topLeftY="483" type="text">
1112
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="rgba(0, 0, 0, 1)" lineSpacing="multiple:1.2" textAlign="center">
1113
+ <p>
1114
+ <strong>
1115
+ <span color="rgba(0, 0, 0, 1)" fontSize="12">难以使用</span>
1116
+ </strong>
1117
+ </p>
1118
+ </content>
1119
+ </shape>
1120
+ <shape width="94" height="34" topLeftX="-10" topLeftY="254" rotation="270" type="text">
1121
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="rgba(0, 0, 0, 1)" lineSpacing="multiple:1.2" textAlign="center">
1122
+ <p>
1123
+ <strong>
1124
+ <span color="rgba(0, 0, 0, 1)" fontSize="12">低效率</span>
1125
+ </strong>
1126
+ </p>
1127
+ </content>
1128
+ </shape>
1129
+ <line startX="90" startY="272" endX="870" endY="275" alpha="0.12">
1130
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
1131
+ </line>
1132
+ <line startX="481" startY="462" endX="479" endY="78" alpha="0.12">
1133
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineCap="square" lineJoin="miter" miterLimit="10"/>
1134
+ </line>
1135
+ <shape width="67" height="67" topLeftX="652" topLeftY="94" type="ellipse">
1136
+ <fill>
1137
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
1138
+ </fill>
1139
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" color="rgba(242, 243, 245, 1)">
1140
+ <p>
1141
+ <span color="rgba(242, 243, 245, 1)">A</span>
1142
+ </p>
1143
+ </content>
1144
+ <shadow offset="4" blur="26" color="rgba(45, 78, 249, 0.18)"/>
1145
+ </shape>
1146
+ <shape width="104" height="38" topLeftX="634" topLeftY="157" type="text">
1147
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1148
+ <p>
1149
+ <span color="rgba(31, 35, 41, 1)">你的产品</span>
1150
+ </p>
1151
+ </content>
1152
+ </shape>
1153
+ <shape width="56" height="56" topLeftX="800" topLeftY="143" type="ellipse">
1154
+ <fill>
1155
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1156
+ </fill>
1157
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16">
1158
+ <p>B</p>
1159
+ </content>
1160
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1161
+ </shape>
1162
+ <shape width="104" height="38" topLeftX="778" topLeftY="196" type="text">
1163
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1164
+ <p>
1165
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1166
+ </p>
1167
+ </content>
1168
+ </shape>
1169
+ <shape width="32" height="32" topLeftX="544" topLeftY="183" type="ellipse">
1170
+ <fill>
1171
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1172
+ </fill>
1173
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1174
+ </shape>
1175
+ <shape width="104" height="38" topLeftX="508" topLeftY="211" type="text">
1176
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1177
+ <p>
1178
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1179
+ </p>
1180
+ </content>
1181
+ </shape>
1182
+ <shape width="39" height="45" topLeftX="541" topLeftY="177" type="text">
1183
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" textAlign="center">
1184
+ <p>
1185
+ <span fontSize="16">C</span>
1186
+ </p>
1187
+ </content>
1188
+ </shape>
1189
+ <shape width="64" height="64" topLeftX="267" topLeftY="90" type="ellipse">
1190
+ <fill>
1191
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1192
+ </fill>
1193
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16">
1194
+ <p>D</p>
1195
+ </content>
1196
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1197
+ </shape>
1198
+ <shape width="104" height="38" topLeftX="247" topLeftY="149" type="text">
1199
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1200
+ <p>
1201
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1202
+ </p>
1203
+ </content>
1204
+ </shape>
1205
+ <shape width="104" height="38" topLeftX="332" topLeftY="244" type="text">
1206
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1207
+ <p>
1208
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1209
+ </p>
1210
+ </content>
1211
+ </shape>
1212
+ <shape width="32" height="32" topLeftX="368" topLeftY="220" type="ellipse">
1213
+ <fill>
1214
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1215
+ </fill>
1216
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1217
+ </shape>
1218
+ <shape width="38" height="44" topLeftX="365" topLeftY="215" type="text">
1219
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" textAlign="center">
1220
+ <p>F</p>
1221
+ </content>
1222
+ </shape>
1223
+ <shape width="67" height="67" topLeftX="139" topLeftY="164" type="ellipse">
1224
+ <fill>
1225
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1226
+ </fill>
1227
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16">
1228
+ <p>E</p>
1229
+ </content>
1230
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1231
+ </shape>
1232
+ <shape width="104" height="38" topLeftX="121" topLeftY="226" type="text">
1233
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1234
+ <p>
1235
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1236
+ </p>
1237
+ </content>
1238
+ </shape>
1239
+ <shape width="74" height="74" topLeftX="708" topLeftY="344" type="ellipse">
1240
+ <fill>
1241
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1242
+ </fill>
1243
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="30">
1244
+ <p>
1245
+ <span fontSize="30">J</span>
1246
+ </p>
1247
+ </content>
1248
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1249
+ </shape>
1250
+ <shape width="104" height="38" topLeftX="693" topLeftY="414" type="text">
1251
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1252
+ <p>
1253
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1254
+ </p>
1255
+ </content>
1256
+ </shape>
1257
+ <shape width="56" height="56" topLeftX="562" topLeftY="306" type="ellipse">
1258
+ <fill>
1259
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1260
+ </fill>
1261
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16">
1262
+ <p>I</p>
1263
+ </content>
1264
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1265
+ </shape>
1266
+ <shape width="104" height="38" topLeftX="538" topLeftY="358" type="text">
1267
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1268
+ <p>
1269
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1270
+ </p>
1271
+ </content>
1272
+ </shape>
1273
+ <shape width="32" height="32" topLeftX="368" topLeftY="322" type="ellipse">
1274
+ <fill>
1275
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1276
+ </fill>
1277
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1278
+ </shape>
1279
+ <shape width="104" height="38" topLeftX="332" topLeftY="350" type="text">
1280
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1281
+ <p>
1282
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1283
+ </p>
1284
+ </content>
1285
+ </shape>
1286
+ <shape width="38" height="44" topLeftX="365" topLeftY="316" type="text">
1287
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="16" textAlign="center">
1288
+ <p>
1289
+ <span fontSize="16">H</span>
1290
+ </p>
1291
+ </content>
1292
+ </shape>
1293
+ <shape width="44" height="44" topLeftX="226" topLeftY="359" type="ellipse">
1294
+ <fill>
1295
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1296
+ </fill>
1297
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="14">
1298
+ <p>
1299
+ <span fontSize="14">G</span>
1300
+ </p>
1301
+ </content>
1302
+ <shadow offset="7" blur="7" color="rgba(165, 178, 244, 0.17)"/>
1303
+ </shape>
1304
+ <shape width="104" height="38" topLeftX="196" topLeftY="398" type="text">
1305
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1306
+ <p>
1307
+ <span color="rgba(31, 35, 41, 1)">竞争对手</span>
1308
+ </p>
1309
+ </content>
1310
+ </shape>
1311
+ </data>
1312
+ <note>
1313
+ <content/>
1314
+ </note>
1315
+ </slide>
1316
+ <slide>
1317
+ <style>
1318
+ <fill>
1319
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
1320
+ </fill>
1321
+ </style>
1322
+ <data>
1323
+ <shape width="271" height="271" topLeftX="831" topLeftY="100" alpha="0.51" type="ellipse">
1324
+ <border color="rgba(255, 255, 255, 1)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
1325
+ </shape>
1326
+ <shape width="619" height="619" topLeftX="411" topLeftY="247" alpha="0.51" type="ellipse">
1327
+ <border color="rgba(255, 255, 255, 1)" width="1" lineJoin="miter" miterLimit="10"/>
1328
+ </shape>
1329
+ <shape width="11" height="11" topLeftX="832" topLeftY="265" type="ellipse">
1330
+ <fill>
1331
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1332
+ </fill>
1333
+ </shape>
1334
+ <shape width="200" height="74" topLeftX="70" topLeftY="150" type="text">
1335
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1336
+ <p>
1337
+ <span color="rgba(242, 243, 245, 1)" fontSize="12">描述相关的信息以解释你的标题。现在就开始打字吧。写任何你想表达的内容</span>
1338
+ </p>
1339
+ </content>
1340
+ </shape>
1341
+ <shape width="692" height="92" topLeftX="70" topLeftY="62" type="text">
1342
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
1343
+ <p>
1344
+ <strong>
1345
+ <span color="rgba(242, 243, 245, 1)" fontSize="60">建议与措施</span>
1346
+ </strong>
1347
+ </p>
1348
+ </content>
1349
+ </shape>
1350
+ <shape width="291" height="160" topLeftX="647" topLeftY="362" type="text">
1351
+ <content textType="title" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="140" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1" letterSpacing="2" textAlign="right">
1352
+ <p>04</p>
1353
+ </content>
1354
+ </shape>
1355
+ </data>
1356
+ <note>
1357
+ <content/>
1358
+ </note>
1359
+ </slide>
1360
+ <slide>
1361
+ <style/>
1362
+ <data>
1363
+ <shape width="468" height="56" topLeftX="246" topLeftY="86" alpha="0.5" type="text">
1364
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="center">
1365
+ <p>(竞争对手的优势、劣势、机会和威胁):对竞争对手进行SWOT分析,评估他们的优势、劣势、面临的机会和威胁。</p>
1366
+ </content>
1367
+ </shape>
1368
+ <shape width="432" height="54" topLeftX="264" topLeftY="45" type="text">
1369
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="28" bold="true" lineSpacing="multiple:1.2" textAlign="center">
1370
+ <p>
1371
+ <span fontSize="28">SWOT 分析</span>
1372
+ </p>
1373
+ </content>
1374
+ </shape>
1375
+ <shape width="173" height="173" topLeftX="333" topLeftY="177" type="ellipse">
1376
+ <fill>
1377
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
1378
+ </fill>
1379
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="32" color="rgba(255, 255, 255, 1)" bold="true">
1380
+ <p>
1381
+ <strong>
1382
+ <span color="rgba(255, 255, 255, 1)" fontSize="32">S</span>
1383
+ </strong>
1384
+ </p>
1385
+ </content>
1386
+ </shape>
1387
+ <shape width="173" height="173" topLeftX="454" topLeftY="177" type="ellipse">
1388
+ <fill>
1389
+ <fillColor color="rgba(31, 35, 41, 1)"/>
1390
+ </fill>
1391
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="32" color="rgba(255, 255, 255, 1)" bold="true">
1392
+ <p>
1393
+ <strong>
1394
+ <span color="rgba(255, 255, 255, 1)" fontSize="32">W</span>
1395
+ </strong>
1396
+ </p>
1397
+ </content>
1398
+ </shape>
1399
+ <shape width="173" height="173" topLeftX="454" topLeftY="301" type="ellipse">
1400
+ <fill>
1401
+ <fillColor color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)"/>
1402
+ </fill>
1403
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="32" color="rgba(255, 255, 255, 1)" bold="true">
1404
+ <p>
1405
+ <strong>
1406
+ <span color="rgba(255, 255, 255, 1)" fontSize="32">O</span>
1407
+ </strong>
1408
+ </p>
1409
+ </content>
1410
+ </shape>
1411
+ <shape width="173" height="173" topLeftX="333" topLeftY="301" flipX="true" type="ellipse">
1412
+ <fill>
1413
+ <fillColor color="rgba(31, 35, 41, 1)"/>
1414
+ </fill>
1415
+ <content paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="32" color="rgba(255, 255, 255, 1)" bold="true">
1416
+ <p>
1417
+ <strong>
1418
+ <span color="rgba(255, 255, 255, 1)" fontSize="32">T</span>
1419
+ </strong>
1420
+ </p>
1421
+ </content>
1422
+ </shape>
1423
+ <shape width="295" height="47" topLeftX="9" topLeftY="200" type="text">
1424
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true" textAlign="right">
1425
+ <p>优势</p>
1426
+ </content>
1427
+ </shape>
1428
+ <shape width="219" height="56" topLeftX="85" topLeftY="241" alpha="0.5" type="text">
1429
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="right">
1430
+ <p>专有的技术平台。具有深厚行业知识的强大团队 .低管理成本</p>
1431
+ </content>
1432
+ </shape>
1433
+ <shape width="295" height="47" topLeftX="9" topLeftY="347" type="text">
1434
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true" textAlign="right">
1435
+ <p>挑战</p>
1436
+ </content>
1437
+ </shape>
1438
+ <shape width="219" height="74" topLeftX="85" topLeftY="388" alpha="0.5" type="text">
1439
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="right">
1440
+ <p>来自老牌企业的激烈竞争。不可预见的市场和经济条件。网络安全风险和潜在违规行为</p>
1441
+ </content>
1442
+ </shape>
1443
+ <shape width="295" height="47" topLeftX="656" topLeftY="200" type="text">
1444
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true" textAlign="left">
1445
+ <p>劣势</p>
1446
+ </content>
1447
+ </shape>
1448
+ <shape width="219" height="74" topLeftX="656" topLeftY="241" alpha="0.5" type="text">
1449
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
1450
+ <p>拥挤的电子商务市场中的新进入者。品牌知名度有限。扩大经营规模的潜在问题</p>
1451
+ </content>
1452
+ </shape>
1453
+ <shape width="295" height="47" topLeftX="656" topLeftY="347" type="text">
1454
+ <content textType="sub-headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="18" bold="true" textAlign="left">
1455
+ <p>机遇</p>
1456
+ </content>
1457
+ </shape>
1458
+ <shape width="219" height="56" topLeftX="656" topLeftY="388" alpha="0.5" type="text">
1459
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" textAlign="left">
1460
+ <p>不断增长的网上购物趋势。智能手机用户数量的增加。扩展到国际市场</p>
1461
+ </content>
1462
+ </shape>
1463
+ </data>
1464
+ <note>
1465
+ <content/>
1466
+ </note>
1467
+ </slide>
1468
+ <slide>
1469
+ <style>
1470
+ <fill>
1471
+ <fillImg src="PgVbbpypho2FaOxbrbmcPQpfnwh" alpha="1" rotateWithShape="false"/>
1472
+ </fill>
1473
+ </style>
1474
+ <data>
1475
+ <shape width="449" height="449" topLeftX="504" topLeftY="192" alpha="0.15" type="ellipse">
1476
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
1477
+ </shape>
1478
+ <shape width="514" height="514" topLeftX="598" topLeftY="-19" alpha="0.15" type="ellipse">
1479
+ <border color="linear-gradient(90deg,rgba(46, 78, 246, 1) 0%,rgba(33, 130, 244, 1) 100%)" width="1" lineJoin="miter" miterLimit="10"/>
1480
+ </shape>
1481
+ <shape width="13" height="13" topLeftX="593" topLeftY="227" alpha="0.8" type="ellipse">
1482
+ <fill>
1483
+ <fillColor color="rgba(226, 234, 249, 1)"/>
1484
+ </fill>
1485
+ </shape>
1486
+ <shape width="581" height="56" topLeftX="43" topLeftY="120" alpha="0.5" type="text">
1487
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12">
1488
+ <p>提出建议和策略:根据市场洞察和机会与挑战分析,提出具体的建议和策略,以帮助企业在电子商务行业中取得竞争优势。例如,加强供应链管理,提升用户体验,拓展新兴市场等。</p>
1489
+ </content>
1490
+ </shape>
1491
+ <shape width="583" height="64" topLeftX="43" topLeftY="50" type="text">
1492
+ <content textType="headline" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="36" bold="true" lineSpacing="multiple:1.2">
1493
+ <p>建议与措施</p>
1494
+ </content>
1495
+ </shape>
1496
+ <undefined type="fallback"/>
1497
+ </data>
1498
+ <note>
1499
+ <content/>
1500
+ </note>
1501
+ </slide>
1502
+ <slide>
1503
+ <style>
1504
+ <fill>
1505
+ <fillImg src="CeKhbKPBboW8zMxwnIsckRXjnwh" alpha="1" rotateWithShape="false"/>
1506
+ </fill>
1507
+ </style>
1508
+ <data>
1509
+ <shape width="557" height="557" topLeftX="497" topLeftY="113" alpha="0.51" type="ellipse">
1510
+ <border color="rgba(255, 255, 255, 1)" dashArray="long-dash" width="1" lineJoin="miter" miterLimit="10"/>
1511
+ </shape>
1512
+ <shape width="514" height="514" topLeftX="703" topLeftY="-204" alpha="0.51" type="ellipse">
1513
+ <border color="rgba(255, 255, 255, 1)" width="1" lineJoin="miter" miterLimit="10"/>
1514
+ </shape>
1515
+ <shape width="11" height="11" topLeftX="708" topLeftY="116" type="ellipse">
1516
+ <fill>
1517
+ <fillColor color="rgba(255, 255, 255, 1)"/>
1518
+ </fill>
1519
+ </shape>
1520
+ <shape width="575" height="110" topLeftX="37" topLeftY="389" type="text">
1521
+ <content textType="title" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="90" color="rgba(242, 243, 245, 1)" bold="true" lineSpacing="multiple:1" letterSpacing="2">
1522
+ <p>感谢您的观赏</p>
1523
+ </content>
1524
+ </shape>
1525
+ <shape width="162" height="39" topLeftX="30" topLeftY="28" type="text">
1526
+ <content textType="caption" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" fontSize="12" fontFamily="undefined" color="rgba(255, 255, 255, 1)" backgroundColor="rgba(0, 0, 0, 0)" bold="false" italic="false" underline="false" strikethrough="false" list="none" listStyle="circle-hollow-square" textAlign="left" autoFit="shape-auto-fit">
1527
+ <p list="none" textAlign="left">
1528
+ <span color="rgba(255, 255, 255, 1)" backgroundColor="rgba(0, 0, 0, 0)" fontSize="12" fontFamily="undefined" bold="false" italic="false" strikethrough="false" underline="false">你的团队</span>
1529
+ </p>
1530
+ </content>
1531
+ </shape>
1532
+ </data>
1533
+ <note>
1534
+ <content/>
1535
+ </note>
1536
+ </slide>
1537
+ </presentation>