@kolbo/kolbo-code-linux-arm64-musl 1.1.74 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/bin/kolbo +0 -0
  2. package/package.json +1 -1
  3. package/skills/brainstorming/SKILL.md +164 -0
  4. package/skills/brainstorming/scripts/frame-template.html +214 -0
  5. package/skills/brainstorming/scripts/helper.js +88 -0
  6. package/skills/brainstorming/scripts/server.cjs +354 -0
  7. package/skills/brainstorming/scripts/start-server.sh +148 -0
  8. package/skills/brainstorming/scripts/stop-server.sh +56 -0
  9. package/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  10. package/skills/brainstorming/visual-companion.md +287 -0
  11. package/skills/dispatching-parallel-agents/SKILL.md +182 -0
  12. package/skills/docx/.skillfish.json +10 -0
  13. package/skills/docx/SKILL.md +196 -0
  14. package/skills/docx/docx-js.md +350 -0
  15. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  16. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  17. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  18. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  19. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  20. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  21. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  22. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  23. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  24. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  25. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  26. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  27. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  28. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  29. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  30. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  31. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  32. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  33. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  34. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  35. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  36. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  37. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  38. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  39. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  40. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  41. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  42. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  43. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  44. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  45. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  46. package/skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  47. package/skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  48. package/skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  49. package/skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  50. package/skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  51. package/skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  52. package/skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  53. package/skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  54. package/skills/docx/ooxml/scripts/pack.py +159 -0
  55. package/skills/docx/ooxml/scripts/unpack.py +29 -0
  56. package/skills/docx/ooxml/scripts/validate.py +69 -0
  57. package/skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  58. package/skills/docx/ooxml/scripts/validation/base.py +951 -0
  59. package/skills/docx/ooxml/scripts/validation/docx.py +274 -0
  60. package/skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  61. package/skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  62. package/skills/docx/ooxml.md +599 -0
  63. package/skills/docx/scripts/__init__.py +1 -0
  64. package/skills/docx/scripts/document.py +1272 -0
  65. package/skills/docx/scripts/templates/comments.xml +3 -0
  66. package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
  67. package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  68. package/skills/docx/scripts/templates/commentsIds.xml +3 -0
  69. package/skills/docx/scripts/templates/people.xml +3 -0
  70. package/skills/docx/scripts/utilities.py +374 -0
  71. package/skills/executing-plans/SKILL.md +70 -0
  72. package/skills/finishing-a-development-branch/SKILL.md +200 -0
  73. package/skills/fullstack-app/SKILL.md +621 -0
  74. package/skills/kolbo/SKILL.md +19 -263
  75. package/skills/ollama-vision/SKILL.md +105 -0
  76. package/skills/pdf/.skillfish.json +10 -0
  77. package/skills/pdf/FORMS.md +205 -0
  78. package/skills/pdf/REFERENCE.md +612 -0
  79. package/skills/pdf/SKILL.md +293 -0
  80. package/skills/pdf/scripts/check_bounding_boxes.py +70 -0
  81. package/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  82. package/skills/pdf/scripts/check_fillable_fields.py +12 -0
  83. package/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  84. package/skills/pdf/scripts/create_validation_image.py +41 -0
  85. package/skills/pdf/scripts/extract_form_field_info.py +152 -0
  86. package/skills/pdf/scripts/fill_fillable_fields.py +114 -0
  87. package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  88. package/skills/photo-studio/SKILL.md +122 -0
  89. package/skills/pptx/.skillfish.json +10 -0
  90. package/skills/pptx/SKILL.md +483 -0
  91. package/skills/pptx/html2pptx.md +626 -0
  92. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  93. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  94. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  95. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  96. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  97. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  98. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  99. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  100. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  101. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  102. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  103. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  104. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  105. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  106. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  107. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  108. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  109. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  110. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  111. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  112. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  113. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  114. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  115. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  116. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  117. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  118. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  119. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  120. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  121. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  122. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  123. package/skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
  124. package/skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  125. package/skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  126. package/skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  127. package/skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  128. package/skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  129. package/skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  130. package/skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  131. package/skills/pptx/ooxml/scripts/pack.py +159 -0
  132. package/skills/pptx/ooxml/scripts/unpack.py +29 -0
  133. package/skills/pptx/ooxml/scripts/validate.py +69 -0
  134. package/skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
  135. package/skills/pptx/ooxml/scripts/validation/base.py +951 -0
  136. package/skills/pptx/ooxml/scripts/validation/docx.py +274 -0
  137. package/skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
  138. package/skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
  139. package/skills/pptx/ooxml.md +427 -0
  140. package/skills/pptx/scripts/html2pptx.js +995 -0
  141. package/skills/pptx/scripts/inventory.py +1020 -0
  142. package/skills/pptx/scripts/rearrange.py +231 -0
  143. package/skills/pptx/scripts/replace.py +385 -0
  144. package/skills/pptx/scripts/thumbnail.py +450 -0
  145. package/skills/receiving-code-review/SKILL.md +213 -0
  146. package/skills/requesting-code-review/SKILL.md +105 -0
  147. package/skills/requesting-code-review/code-reviewer.md +146 -0
  148. package/skills/subagent-driven-development/SKILL.md +277 -0
  149. package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +26 -0
  150. package/skills/subagent-driven-development/implementer-prompt.md +113 -0
  151. package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  152. package/skills/supabase/.skillfish.json +10 -0
  153. package/skills/supabase/SKILL.md +106 -0
  154. package/skills/supabase/assets/feedback-issue-template.md +17 -0
  155. package/skills/supabase/references/skill-feedback.md +17 -0
  156. package/skills/supabase-postgres-best-practices/.skillfish.json +10 -0
  157. package/skills/supabase-postgres-best-practices/SKILL.md +64 -0
  158. package/skills/supabase-postgres-best-practices/references/_contributing.md +170 -0
  159. package/skills/supabase-postgres-best-practices/references/_sections.md +39 -0
  160. package/skills/supabase-postgres-best-practices/references/_template.md +34 -0
  161. package/skills/supabase-postgres-best-practices/references/advanced-full-text-search.md +55 -0
  162. package/skills/supabase-postgres-best-practices/references/advanced-jsonb-indexing.md +49 -0
  163. package/skills/supabase-postgres-best-practices/references/conn-idle-timeout.md +46 -0
  164. package/skills/supabase-postgres-best-practices/references/conn-limits.md +44 -0
  165. package/skills/supabase-postgres-best-practices/references/conn-pooling.md +41 -0
  166. package/skills/supabase-postgres-best-practices/references/conn-prepared-statements.md +46 -0
  167. package/skills/supabase-postgres-best-practices/references/data-batch-inserts.md +54 -0
  168. package/skills/supabase-postgres-best-practices/references/data-n-plus-one.md +53 -0
  169. package/skills/supabase-postgres-best-practices/references/data-pagination.md +50 -0
  170. package/skills/supabase-postgres-best-practices/references/data-upsert.md +50 -0
  171. package/skills/supabase-postgres-best-practices/references/lock-advisory.md +56 -0
  172. package/skills/supabase-postgres-best-practices/references/lock-deadlock-prevention.md +68 -0
  173. package/skills/supabase-postgres-best-practices/references/lock-short-transactions.md +50 -0
  174. package/skills/supabase-postgres-best-practices/references/lock-skip-locked.md +54 -0
  175. package/skills/supabase-postgres-best-practices/references/monitor-explain-analyze.md +45 -0
  176. package/skills/supabase-postgres-best-practices/references/monitor-pg-stat-statements.md +55 -0
  177. package/skills/supabase-postgres-best-practices/references/monitor-vacuum-analyze.md +55 -0
  178. package/skills/supabase-postgres-best-practices/references/query-composite-indexes.md +44 -0
  179. package/skills/supabase-postgres-best-practices/references/query-covering-indexes.md +40 -0
  180. package/skills/supabase-postgres-best-practices/references/query-index-types.md +48 -0
  181. package/skills/supabase-postgres-best-practices/references/query-missing-indexes.md +43 -0
  182. package/skills/supabase-postgres-best-practices/references/query-partial-indexes.md +45 -0
  183. package/skills/supabase-postgres-best-practices/references/schema-constraints.md +80 -0
  184. package/skills/supabase-postgres-best-practices/references/schema-data-types.md +46 -0
  185. package/skills/supabase-postgres-best-practices/references/schema-foreign-key-indexes.md +59 -0
  186. package/skills/supabase-postgres-best-practices/references/schema-lowercase-identifiers.md +55 -0
  187. package/skills/supabase-postgres-best-practices/references/schema-partitioning.md +55 -0
  188. package/skills/supabase-postgres-best-practices/references/schema-primary-keys.md +61 -0
  189. package/skills/supabase-postgres-best-practices/references/security-privileges.md +54 -0
  190. package/skills/supabase-postgres-best-practices/references/security-rls-basics.md +50 -0
  191. package/skills/supabase-postgres-best-practices/references/security-rls-performance.md +57 -0
  192. package/skills/supabase-quickstart/SKILL.md +400 -0
  193. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  194. package/skills/systematic-debugging/SKILL.md +296 -0
  195. package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  196. package/skills/systematic-debugging/condition-based-waiting.md +115 -0
  197. package/skills/systematic-debugging/defense-in-depth.md +122 -0
  198. package/skills/systematic-debugging/find-polluter.sh +63 -0
  199. package/skills/systematic-debugging/root-cause-tracing.md +169 -0
  200. package/skills/systematic-debugging/test-academic.md +14 -0
  201. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  202. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  203. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  204. package/skills/test-driven-development/SKILL.md +371 -0
  205. package/skills/test-driven-development/testing-anti-patterns.md +299 -0
  206. package/skills/using-git-worktrees/SKILL.md +218 -0
  207. package/skills/using-superpowers/SKILL.md +115 -0
  208. package/skills/using-superpowers/references/codex-tools.md +100 -0
  209. package/skills/using-superpowers/references/gemini-tools.md +33 -0
  210. package/skills/verification-before-completion/SKILL.md +139 -0
  211. package/skills/video-production/SKILL.md +8 -7
  212. package/skills/writing-plans/SKILL.md +152 -0
  213. package/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  214. package/skills/writing-skills/SKILL.md +655 -0
  215. package/skills/writing-skills/anthropic-best-practices.md +1150 -0
  216. package/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  217. package/skills/writing-skills/graphviz-conventions.dot +172 -0
  218. package/skills/writing-skills/persuasion-principles.md +187 -0
  219. package/skills/writing-skills/render-graphs.js +168 -0
  220. package/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  221. package/skills/xlsx/.skillfish.json +10 -0
  222. package/skills/xlsx/SKILL.md +288 -0
  223. package/skills/xlsx/recalc.py +178 -0
  224. package/skills/color-grading/SKILL.md +0 -152
  225. package/skills/ffmpeg-patterns/SKILL.md +0 -240
  226. package/skills/image-prompting-guide/SKILL.md +0 -143
  227. package/skills/music-prompting/SKILL.md +0 -146
  228. package/skills/production-review/SKILL.md +0 -152
  229. package/skills/short-form-video/SKILL.md +0 -168
  230. package/skills/sound-design/SKILL.md +0 -154
  231. package/skills/storytelling/SKILL.md +0 -139
  232. package/skills/subtitle-production/SKILL.md +0 -244
  233. package/skills/subtitle-production/reference/burn_to_video.py +0 -222
  234. package/skills/subtitle-production/reference/export_srts.py +0 -127
  235. package/skills/subtitle-production/reference/gen_srt.py +0 -42
  236. package/skills/typography-video/SKILL.md +0 -182
  237. package/skills/typography-video/reference/KineticTitleScene.tsx +0 -345
  238. package/skills/video-editing/SKILL.md +0 -128
  239. package/skills/video-prompting-guide/SKILL.md +0 -268
@@ -0,0 +1,570 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:vml"
3
+ xmlns:pvml="urn:schemas-microsoft-com:office:powerpoint"
4
+ xmlns:o="urn:schemas-microsoft-com:office:office"
5
+ xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
6
+ xmlns:w10="urn:schemas-microsoft-com:office:word"
7
+ xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
8
+ xmlns:x="urn:schemas-microsoft-com:office:excel"
9
+ xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
10
+ targetNamespace="urn:schemas-microsoft-com:vml" elementFormDefault="qualified"
11
+ attributeFormDefault="unqualified">
12
+ <xsd:import namespace="urn:schemas-microsoft-com:office:office"
13
+ schemaLocation="vml-officeDrawing.xsd"/>
14
+ <xsd:import namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
15
+ schemaLocation="wml.xsd"/>
16
+ <xsd:import namespace="urn:schemas-microsoft-com:office:word"
17
+ schemaLocation="vml-wordprocessingDrawing.xsd"/>
18
+ <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
19
+ schemaLocation="shared-relationshipReference.xsd"/>
20
+ <xsd:import namespace="urn:schemas-microsoft-com:office:excel"
21
+ schemaLocation="vml-spreadsheetDrawing.xsd"/>
22
+ <xsd:import namespace="urn:schemas-microsoft-com:office:powerpoint"
23
+ schemaLocation="vml-presentationDrawing.xsd"/>
24
+ <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
25
+ schemaLocation="shared-commonSimpleTypes.xsd"/>
26
+ <xsd:attributeGroup name="AG_Id">
27
+ <xsd:attribute name="id" type="xsd:string" use="optional"/>
28
+ </xsd:attributeGroup>
29
+ <xsd:attributeGroup name="AG_Style">
30
+ <xsd:attribute name="style" type="xsd:string" use="optional"/>
31
+ </xsd:attributeGroup>
32
+ <xsd:attributeGroup name="AG_Type">
33
+ <xsd:attribute name="type" type="xsd:string" use="optional"/>
34
+ </xsd:attributeGroup>
35
+ <xsd:attributeGroup name="AG_Adj">
36
+ <xsd:attribute name="adj" type="xsd:string" use="optional"/>
37
+ </xsd:attributeGroup>
38
+ <xsd:attributeGroup name="AG_Path">
39
+ <xsd:attribute name="path" type="xsd:string" use="optional"/>
40
+ </xsd:attributeGroup>
41
+ <xsd:attributeGroup name="AG_Fill">
42
+ <xsd:attribute name="filled" type="s:ST_TrueFalse" use="optional"/>
43
+ <xsd:attribute name="fillcolor" type="s:ST_ColorType" use="optional"/>
44
+ </xsd:attributeGroup>
45
+ <xsd:attributeGroup name="AG_Chromakey">
46
+ <xsd:attribute name="chromakey" type="s:ST_ColorType" use="optional"/>
47
+ </xsd:attributeGroup>
48
+ <xsd:attributeGroup name="AG_Ext">
49
+ <xsd:attribute name="ext" form="qualified" type="ST_Ext"/>
50
+ </xsd:attributeGroup>
51
+ <xsd:attributeGroup name="AG_CoreAttributes">
52
+ <xsd:attributeGroup ref="AG_Id"/>
53
+ <xsd:attributeGroup ref="AG_Style"/>
54
+ <xsd:attribute name="href" type="xsd:string" use="optional"/>
55
+ <xsd:attribute name="target" type="xsd:string" use="optional"/>
56
+ <xsd:attribute name="class" type="xsd:string" use="optional"/>
57
+ <xsd:attribute name="title" type="xsd:string" use="optional"/>
58
+ <xsd:attribute name="alt" type="xsd:string" use="optional"/>
59
+ <xsd:attribute name="coordsize" type="xsd:string" use="optional"/>
60
+ <xsd:attribute name="coordorigin" type="xsd:string" use="optional"/>
61
+ <xsd:attribute name="wrapcoords" type="xsd:string" use="optional"/>
62
+ <xsd:attribute name="print" type="s:ST_TrueFalse" use="optional"/>
63
+ </xsd:attributeGroup>
64
+ <xsd:attributeGroup name="AG_ShapeAttributes">
65
+ <xsd:attributeGroup ref="AG_Chromakey"/>
66
+ <xsd:attributeGroup ref="AG_Fill"/>
67
+ <xsd:attribute name="opacity" type="xsd:string" use="optional"/>
68
+ <xsd:attribute name="stroked" type="s:ST_TrueFalse" use="optional"/>
69
+ <xsd:attribute name="strokecolor" type="s:ST_ColorType" use="optional"/>
70
+ <xsd:attribute name="strokeweight" type="xsd:string" use="optional"/>
71
+ <xsd:attribute name="insetpen" type="s:ST_TrueFalse" use="optional"/>
72
+ </xsd:attributeGroup>
73
+ <xsd:attributeGroup name="AG_OfficeCoreAttributes">
74
+ <xsd:attribute ref="o:spid"/>
75
+ <xsd:attribute ref="o:oned"/>
76
+ <xsd:attribute ref="o:regroupid"/>
77
+ <xsd:attribute ref="o:doubleclicknotify"/>
78
+ <xsd:attribute ref="o:button"/>
79
+ <xsd:attribute ref="o:userhidden"/>
80
+ <xsd:attribute ref="o:bullet"/>
81
+ <xsd:attribute ref="o:hr"/>
82
+ <xsd:attribute ref="o:hrstd"/>
83
+ <xsd:attribute ref="o:hrnoshade"/>
84
+ <xsd:attribute ref="o:hrpct"/>
85
+ <xsd:attribute ref="o:hralign"/>
86
+ <xsd:attribute ref="o:allowincell"/>
87
+ <xsd:attribute ref="o:allowoverlap"/>
88
+ <xsd:attribute ref="o:userdrawn"/>
89
+ <xsd:attribute ref="o:bordertopcolor"/>
90
+ <xsd:attribute ref="o:borderleftcolor"/>
91
+ <xsd:attribute ref="o:borderbottomcolor"/>
92
+ <xsd:attribute ref="o:borderrightcolor"/>
93
+ <xsd:attribute ref="o:dgmlayout"/>
94
+ <xsd:attribute ref="o:dgmnodekind"/>
95
+ <xsd:attribute ref="o:dgmlayoutmru"/>
96
+ <xsd:attribute ref="o:insetmode"/>
97
+ </xsd:attributeGroup>
98
+ <xsd:attributeGroup name="AG_OfficeShapeAttributes">
99
+ <xsd:attribute ref="o:spt"/>
100
+ <xsd:attribute ref="o:connectortype"/>
101
+ <xsd:attribute ref="o:bwmode"/>
102
+ <xsd:attribute ref="o:bwpure"/>
103
+ <xsd:attribute ref="o:bwnormal"/>
104
+ <xsd:attribute ref="o:forcedash"/>
105
+ <xsd:attribute ref="o:oleicon"/>
106
+ <xsd:attribute ref="o:ole"/>
107
+ <xsd:attribute ref="o:preferrelative"/>
108
+ <xsd:attribute ref="o:cliptowrap"/>
109
+ <xsd:attribute ref="o:clip"/>
110
+ </xsd:attributeGroup>
111
+ <xsd:attributeGroup name="AG_AllCoreAttributes">
112
+ <xsd:attributeGroup ref="AG_CoreAttributes"/>
113
+ <xsd:attributeGroup ref="AG_OfficeCoreAttributes"/>
114
+ </xsd:attributeGroup>
115
+ <xsd:attributeGroup name="AG_AllShapeAttributes">
116
+ <xsd:attributeGroup ref="AG_ShapeAttributes"/>
117
+ <xsd:attributeGroup ref="AG_OfficeShapeAttributes"/>
118
+ </xsd:attributeGroup>
119
+ <xsd:attributeGroup name="AG_ImageAttributes">
120
+ <xsd:attribute name="src" type="xsd:string" use="optional"/>
121
+ <xsd:attribute name="cropleft" type="xsd:string" use="optional"/>
122
+ <xsd:attribute name="croptop" type="xsd:string" use="optional"/>
123
+ <xsd:attribute name="cropright" type="xsd:string" use="optional"/>
124
+ <xsd:attribute name="cropbottom" type="xsd:string" use="optional"/>
125
+ <xsd:attribute name="gain" type="xsd:string" use="optional"/>
126
+ <xsd:attribute name="blacklevel" type="xsd:string" use="optional"/>
127
+ <xsd:attribute name="gamma" type="xsd:string" use="optional"/>
128
+ <xsd:attribute name="grayscale" type="s:ST_TrueFalse" use="optional"/>
129
+ <xsd:attribute name="bilevel" type="s:ST_TrueFalse" use="optional"/>
130
+ </xsd:attributeGroup>
131
+ <xsd:attributeGroup name="AG_StrokeAttributes">
132
+ <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/>
133
+ <xsd:attribute name="weight" type="xsd:string" use="optional"/>
134
+ <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/>
135
+ <xsd:attribute name="opacity" type="xsd:string" use="optional"/>
136
+ <xsd:attribute name="linestyle" type="ST_StrokeLineStyle" use="optional"/>
137
+ <xsd:attribute name="miterlimit" type="xsd:decimal" use="optional"/>
138
+ <xsd:attribute name="joinstyle" type="ST_StrokeJoinStyle" use="optional"/>
139
+ <xsd:attribute name="endcap" type="ST_StrokeEndCap" use="optional"/>
140
+ <xsd:attribute name="dashstyle" type="xsd:string" use="optional"/>
141
+ <xsd:attribute name="filltype" type="ST_FillType" use="optional"/>
142
+ <xsd:attribute name="src" type="xsd:string" use="optional"/>
143
+ <xsd:attribute name="imageaspect" type="ST_ImageAspect" use="optional"/>
144
+ <xsd:attribute name="imagesize" type="xsd:string" use="optional"/>
145
+ <xsd:attribute name="imagealignshape" type="s:ST_TrueFalse" use="optional"/>
146
+ <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/>
147
+ <xsd:attribute name="startarrow" type="ST_StrokeArrowType" use="optional"/>
148
+ <xsd:attribute name="startarrowwidth" type="ST_StrokeArrowWidth" use="optional"/>
149
+ <xsd:attribute name="startarrowlength" type="ST_StrokeArrowLength" use="optional"/>
150
+ <xsd:attribute name="endarrow" type="ST_StrokeArrowType" use="optional"/>
151
+ <xsd:attribute name="endarrowwidth" type="ST_StrokeArrowWidth" use="optional"/>
152
+ <xsd:attribute name="endarrowlength" type="ST_StrokeArrowLength" use="optional"/>
153
+ <xsd:attribute ref="o:href"/>
154
+ <xsd:attribute ref="o:althref"/>
155
+ <xsd:attribute ref="o:title"/>
156
+ <xsd:attribute ref="o:forcedash"/>
157
+ <xsd:attribute ref="r:id" use="optional"/>
158
+ <xsd:attribute name="insetpen" type="s:ST_TrueFalse" use="optional"/>
159
+ <xsd:attribute ref="o:relid"/>
160
+ </xsd:attributeGroup>
161
+ <xsd:group name="EG_ShapeElements">
162
+ <xsd:choice>
163
+ <xsd:element ref="path"/>
164
+ <xsd:element ref="formulas"/>
165
+ <xsd:element ref="handles"/>
166
+ <xsd:element ref="fill"/>
167
+ <xsd:element ref="stroke"/>
168
+ <xsd:element ref="shadow"/>
169
+ <xsd:element ref="textbox"/>
170
+ <xsd:element ref="textpath"/>
171
+ <xsd:element ref="imagedata"/>
172
+ <xsd:element ref="o:skew"/>
173
+ <xsd:element ref="o:extrusion"/>
174
+ <xsd:element ref="o:callout"/>
175
+ <xsd:element ref="o:lock"/>
176
+ <xsd:element ref="o:clippath"/>
177
+ <xsd:element ref="o:signatureline"/>
178
+ <xsd:element ref="w10:wrap"/>
179
+ <xsd:element ref="w10:anchorlock"/>
180
+ <xsd:element ref="w10:bordertop"/>
181
+ <xsd:element ref="w10:borderbottom"/>
182
+ <xsd:element ref="w10:borderleft"/>
183
+ <xsd:element ref="w10:borderright"/>
184
+ <xsd:element ref="x:ClientData" minOccurs="0"/>
185
+ <xsd:element ref="pvml:textdata" minOccurs="0"/>
186
+ </xsd:choice>
187
+ </xsd:group>
188
+ <xsd:element name="shape" type="CT_Shape"/>
189
+ <xsd:element name="shapetype" type="CT_Shapetype"/>
190
+ <xsd:element name="group" type="CT_Group"/>
191
+ <xsd:element name="background" type="CT_Background"/>
192
+ <xsd:complexType name="CT_Shape">
193
+ <xsd:choice maxOccurs="unbounded">
194
+ <xsd:group ref="EG_ShapeElements"/>
195
+ <xsd:element ref="o:ink"/>
196
+ <xsd:element ref="pvml:iscomment"/>
197
+ <xsd:element ref="o:equationxml"/>
198
+ </xsd:choice>
199
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
200
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
201
+ <xsd:attributeGroup ref="AG_Type"/>
202
+ <xsd:attributeGroup ref="AG_Adj"/>
203
+ <xsd:attributeGroup ref="AG_Path"/>
204
+ <xsd:attribute ref="o:gfxdata"/>
205
+ <xsd:attribute name="equationxml" type="xsd:string" use="optional"/>
206
+ </xsd:complexType>
207
+ <xsd:complexType name="CT_Shapetype">
208
+ <xsd:sequence>
209
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
210
+ <xsd:element ref="o:complex" minOccurs="0"/>
211
+ </xsd:sequence>
212
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
213
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
214
+ <xsd:attributeGroup ref="AG_Adj"/>
215
+ <xsd:attributeGroup ref="AG_Path"/>
216
+ <xsd:attribute ref="o:master"/>
217
+ </xsd:complexType>
218
+ <xsd:complexType name="CT_Group">
219
+ <xsd:choice maxOccurs="unbounded">
220
+ <xsd:group ref="EG_ShapeElements"/>
221
+ <xsd:element ref="group"/>
222
+ <xsd:element ref="shape"/>
223
+ <xsd:element ref="shapetype"/>
224
+ <xsd:element ref="arc"/>
225
+ <xsd:element ref="curve"/>
226
+ <xsd:element ref="image"/>
227
+ <xsd:element ref="line"/>
228
+ <xsd:element ref="oval"/>
229
+ <xsd:element ref="polyline"/>
230
+ <xsd:element ref="rect"/>
231
+ <xsd:element ref="roundrect"/>
232
+ <xsd:element ref="o:diagram"/>
233
+ </xsd:choice>
234
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
235
+ <xsd:attributeGroup ref="AG_Fill"/>
236
+ <xsd:attribute name="editas" type="ST_EditAs" use="optional"/>
237
+ <xsd:attribute ref="o:tableproperties"/>
238
+ <xsd:attribute ref="o:tablelimits"/>
239
+ </xsd:complexType>
240
+ <xsd:complexType name="CT_Background">
241
+ <xsd:sequence>
242
+ <xsd:element ref="fill" minOccurs="0"/>
243
+ </xsd:sequence>
244
+ <xsd:attributeGroup ref="AG_Id"/>
245
+ <xsd:attributeGroup ref="AG_Fill"/>
246
+ <xsd:attribute ref="o:bwmode"/>
247
+ <xsd:attribute ref="o:bwpure"/>
248
+ <xsd:attribute ref="o:bwnormal"/>
249
+ <xsd:attribute ref="o:targetscreensize"/>
250
+ </xsd:complexType>
251
+ <xsd:element name="fill" type="CT_Fill"/>
252
+ <xsd:element name="formulas" type="CT_Formulas"/>
253
+ <xsd:element name="handles" type="CT_Handles"/>
254
+ <xsd:element name="imagedata" type="CT_ImageData"/>
255
+ <xsd:element name="path" type="CT_Path"/>
256
+ <xsd:element name="textbox" type="CT_Textbox"/>
257
+ <xsd:element name="shadow" type="CT_Shadow"/>
258
+ <xsd:element name="stroke" type="CT_Stroke"/>
259
+ <xsd:element name="textpath" type="CT_TextPath"/>
260
+ <xsd:complexType name="CT_Fill">
261
+ <xsd:sequence>
262
+ <xsd:element ref="o:fill" minOccurs="0"/>
263
+ </xsd:sequence>
264
+ <xsd:attributeGroup ref="AG_Id"/>
265
+ <xsd:attribute name="type" type="ST_FillType" use="optional"/>
266
+ <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/>
267
+ <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/>
268
+ <xsd:attribute name="opacity" type="xsd:string" use="optional"/>
269
+ <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/>
270
+ <xsd:attribute name="src" type="xsd:string" use="optional"/>
271
+ <xsd:attribute ref="o:href"/>
272
+ <xsd:attribute ref="o:althref"/>
273
+ <xsd:attribute name="size" type="xsd:string" use="optional"/>
274
+ <xsd:attribute name="origin" type="xsd:string" use="optional"/>
275
+ <xsd:attribute name="position" type="xsd:string" use="optional"/>
276
+ <xsd:attribute name="aspect" type="ST_ImageAspect" use="optional"/>
277
+ <xsd:attribute name="colors" type="xsd:string" use="optional"/>
278
+ <xsd:attribute name="angle" type="xsd:decimal" use="optional"/>
279
+ <xsd:attribute name="alignshape" type="s:ST_TrueFalse" use="optional"/>
280
+ <xsd:attribute name="focus" type="xsd:string" use="optional"/>
281
+ <xsd:attribute name="focussize" type="xsd:string" use="optional"/>
282
+ <xsd:attribute name="focusposition" type="xsd:string" use="optional"/>
283
+ <xsd:attribute name="method" type="ST_FillMethod" use="optional"/>
284
+ <xsd:attribute ref="o:detectmouseclick"/>
285
+ <xsd:attribute ref="o:title"/>
286
+ <xsd:attribute ref="o:opacity2"/>
287
+ <xsd:attribute name="recolor" type="s:ST_TrueFalse" use="optional"/>
288
+ <xsd:attribute name="rotate" type="s:ST_TrueFalse" use="optional"/>
289
+ <xsd:attribute ref="r:id" use="optional"/>
290
+ <xsd:attribute ref="o:relid" use="optional"/>
291
+ </xsd:complexType>
292
+ <xsd:complexType name="CT_Formulas">
293
+ <xsd:sequence>
294
+ <xsd:element name="f" type="CT_F" minOccurs="0" maxOccurs="unbounded"/>
295
+ </xsd:sequence>
296
+ </xsd:complexType>
297
+ <xsd:complexType name="CT_F">
298
+ <xsd:attribute name="eqn" type="xsd:string"/>
299
+ </xsd:complexType>
300
+ <xsd:complexType name="CT_Handles">
301
+ <xsd:sequence>
302
+ <xsd:element name="h" type="CT_H" minOccurs="0" maxOccurs="unbounded"/>
303
+ </xsd:sequence>
304
+ </xsd:complexType>
305
+ <xsd:complexType name="CT_H">
306
+ <xsd:attribute name="position" type="xsd:string"/>
307
+ <xsd:attribute name="polar" type="xsd:string"/>
308
+ <xsd:attribute name="map" type="xsd:string"/>
309
+ <xsd:attribute name="invx" type="s:ST_TrueFalse"/>
310
+ <xsd:attribute name="invy" type="s:ST_TrueFalse"/>
311
+ <xsd:attribute name="switch" type="s:ST_TrueFalseBlank"/>
312
+ <xsd:attribute name="xrange" type="xsd:string"/>
313
+ <xsd:attribute name="yrange" type="xsd:string"/>
314
+ <xsd:attribute name="radiusrange" type="xsd:string"/>
315
+ </xsd:complexType>
316
+ <xsd:complexType name="CT_ImageData">
317
+ <xsd:attributeGroup ref="AG_Id"/>
318
+ <xsd:attributeGroup ref="AG_ImageAttributes"/>
319
+ <xsd:attributeGroup ref="AG_Chromakey"/>
320
+ <xsd:attribute name="embosscolor" type="s:ST_ColorType" use="optional"/>
321
+ <xsd:attribute name="recolortarget" type="s:ST_ColorType"/>
322
+ <xsd:attribute ref="o:href"/>
323
+ <xsd:attribute ref="o:althref"/>
324
+ <xsd:attribute ref="o:title"/>
325
+ <xsd:attribute ref="o:oleid"/>
326
+ <xsd:attribute ref="o:detectmouseclick"/>
327
+ <xsd:attribute ref="o:movie"/>
328
+ <xsd:attribute ref="o:relid"/>
329
+ <xsd:attribute ref="r:id"/>
330
+ <xsd:attribute ref="r:pict"/>
331
+ <xsd:attribute ref="r:href"/>
332
+ </xsd:complexType>
333
+ <xsd:complexType name="CT_Path">
334
+ <xsd:attributeGroup ref="AG_Id"/>
335
+ <xsd:attribute name="v" type="xsd:string" use="optional"/>
336
+ <xsd:attribute name="limo" type="xsd:string" use="optional"/>
337
+ <xsd:attribute name="textboxrect" type="xsd:string" use="optional"/>
338
+ <xsd:attribute name="fillok" type="s:ST_TrueFalse" use="optional"/>
339
+ <xsd:attribute name="strokeok" type="s:ST_TrueFalse" use="optional"/>
340
+ <xsd:attribute name="shadowok" type="s:ST_TrueFalse" use="optional"/>
341
+ <xsd:attribute name="arrowok" type="s:ST_TrueFalse" use="optional"/>
342
+ <xsd:attribute name="gradientshapeok" type="s:ST_TrueFalse" use="optional"/>
343
+ <xsd:attribute name="textpathok" type="s:ST_TrueFalse" use="optional"/>
344
+ <xsd:attribute name="insetpenok" type="s:ST_TrueFalse" use="optional"/>
345
+ <xsd:attribute ref="o:connecttype"/>
346
+ <xsd:attribute ref="o:connectlocs"/>
347
+ <xsd:attribute ref="o:connectangles"/>
348
+ <xsd:attribute ref="o:extrusionok"/>
349
+ </xsd:complexType>
350
+ <xsd:complexType name="CT_Shadow">
351
+ <xsd:attributeGroup ref="AG_Id"/>
352
+ <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/>
353
+ <xsd:attribute name="type" type="ST_ShadowType" use="optional"/>
354
+ <xsd:attribute name="obscured" type="s:ST_TrueFalse" use="optional"/>
355
+ <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/>
356
+ <xsd:attribute name="opacity" type="xsd:string" use="optional"/>
357
+ <xsd:attribute name="offset" type="xsd:string" use="optional"/>
358
+ <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/>
359
+ <xsd:attribute name="offset2" type="xsd:string" use="optional"/>
360
+ <xsd:attribute name="origin" type="xsd:string" use="optional"/>
361
+ <xsd:attribute name="matrix" type="xsd:string" use="optional"/>
362
+ </xsd:complexType>
363
+ <xsd:complexType name="CT_Stroke">
364
+ <xsd:sequence>
365
+ <xsd:element ref="o:left" minOccurs="0"/>
366
+ <xsd:element ref="o:top" minOccurs="0"/>
367
+ <xsd:element ref="o:right" minOccurs="0"/>
368
+ <xsd:element ref="o:bottom" minOccurs="0"/>
369
+ <xsd:element ref="o:column" minOccurs="0"/>
370
+ </xsd:sequence>
371
+ <xsd:attributeGroup ref="AG_Id"/>
372
+ <xsd:attributeGroup ref="AG_StrokeAttributes"/>
373
+ </xsd:complexType>
374
+ <xsd:complexType name="CT_Textbox">
375
+ <xsd:choice>
376
+ <xsd:element ref="w:txbxContent" minOccurs="0"/>
377
+ <xsd:any namespace="##local" processContents="skip"/>
378
+ </xsd:choice>
379
+ <xsd:attributeGroup ref="AG_Id"/>
380
+ <xsd:attributeGroup ref="AG_Style"/>
381
+ <xsd:attribute name="inset" type="xsd:string" use="optional"/>
382
+ <xsd:attribute ref="o:singleclick"/>
383
+ <xsd:attribute ref="o:insetmode"/>
384
+ </xsd:complexType>
385
+ <xsd:complexType name="CT_TextPath">
386
+ <xsd:attributeGroup ref="AG_Id"/>
387
+ <xsd:attributeGroup ref="AG_Style"/>
388
+ <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/>
389
+ <xsd:attribute name="fitshape" type="s:ST_TrueFalse" use="optional"/>
390
+ <xsd:attribute name="fitpath" type="s:ST_TrueFalse" use="optional"/>
391
+ <xsd:attribute name="trim" type="s:ST_TrueFalse" use="optional"/>
392
+ <xsd:attribute name="xscale" type="s:ST_TrueFalse" use="optional"/>
393
+ <xsd:attribute name="string" type="xsd:string" use="optional"/>
394
+ </xsd:complexType>
395
+ <xsd:element name="arc" type="CT_Arc"/>
396
+ <xsd:element name="curve" type="CT_Curve"/>
397
+ <xsd:element name="image" type="CT_Image"/>
398
+ <xsd:element name="line" type="CT_Line"/>
399
+ <xsd:element name="oval" type="CT_Oval"/>
400
+ <xsd:element name="polyline" type="CT_PolyLine"/>
401
+ <xsd:element name="rect" type="CT_Rect"/>
402
+ <xsd:element name="roundrect" type="CT_RoundRect"/>
403
+ <xsd:complexType name="CT_Arc">
404
+ <xsd:sequence>
405
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
406
+ </xsd:sequence>
407
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
408
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
409
+ <xsd:attribute name="startAngle" type="xsd:decimal" use="optional"/>
410
+ <xsd:attribute name="endAngle" type="xsd:decimal" use="optional"/>
411
+ </xsd:complexType>
412
+ <xsd:complexType name="CT_Curve">
413
+ <xsd:sequence>
414
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
415
+ </xsd:sequence>
416
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
417
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
418
+ <xsd:attribute name="from" type="xsd:string" use="optional"/>
419
+ <xsd:attribute name="control1" type="xsd:string" use="optional"/>
420
+ <xsd:attribute name="control2" type="xsd:string" use="optional"/>
421
+ <xsd:attribute name="to" type="xsd:string" use="optional"/>
422
+ </xsd:complexType>
423
+ <xsd:complexType name="CT_Image">
424
+ <xsd:sequence>
425
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
426
+ </xsd:sequence>
427
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
428
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
429
+ <xsd:attributeGroup ref="AG_ImageAttributes"/>
430
+ </xsd:complexType>
431
+ <xsd:complexType name="CT_Line">
432
+ <xsd:sequence>
433
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
434
+ </xsd:sequence>
435
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
436
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
437
+ <xsd:attribute name="from" type="xsd:string" use="optional"/>
438
+ <xsd:attribute name="to" type="xsd:string" use="optional"/>
439
+ </xsd:complexType>
440
+ <xsd:complexType name="CT_Oval">
441
+ <xsd:choice maxOccurs="unbounded">
442
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
443
+ </xsd:choice>
444
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
445
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
446
+ </xsd:complexType>
447
+ <xsd:complexType name="CT_PolyLine">
448
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
449
+ <xsd:group ref="EG_ShapeElements"/>
450
+ <xsd:element ref="o:ink"/>
451
+ </xsd:choice>
452
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
453
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
454
+ <xsd:attribute name="points" type="xsd:string" use="optional"/>
455
+ </xsd:complexType>
456
+ <xsd:complexType name="CT_Rect">
457
+ <xsd:choice maxOccurs="unbounded">
458
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
459
+ </xsd:choice>
460
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
461
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
462
+ </xsd:complexType>
463
+ <xsd:complexType name="CT_RoundRect">
464
+ <xsd:choice maxOccurs="unbounded">
465
+ <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/>
466
+ </xsd:choice>
467
+ <xsd:attributeGroup ref="AG_AllCoreAttributes"/>
468
+ <xsd:attributeGroup ref="AG_AllShapeAttributes"/>
469
+ <xsd:attribute name="arcsize" type="xsd:string" use="optional"/>
470
+ </xsd:complexType>
471
+ <xsd:simpleType name="ST_Ext">
472
+ <xsd:restriction base="xsd:string">
473
+ <xsd:enumeration value="view"/>
474
+ <xsd:enumeration value="edit"/>
475
+ <xsd:enumeration value="backwardCompatible"/>
476
+ </xsd:restriction>
477
+ </xsd:simpleType>
478
+ <xsd:simpleType name="ST_FillType">
479
+ <xsd:restriction base="xsd:string">
480
+ <xsd:enumeration value="solid"/>
481
+ <xsd:enumeration value="gradient"/>
482
+ <xsd:enumeration value="gradientRadial"/>
483
+ <xsd:enumeration value="tile"/>
484
+ <xsd:enumeration value="pattern"/>
485
+ <xsd:enumeration value="frame"/>
486
+ </xsd:restriction>
487
+ </xsd:simpleType>
488
+ <xsd:simpleType name="ST_FillMethod">
489
+ <xsd:restriction base="xsd:string">
490
+ <xsd:enumeration value="none"/>
491
+ <xsd:enumeration value="linear"/>
492
+ <xsd:enumeration value="sigma"/>
493
+ <xsd:enumeration value="any"/>
494
+ <xsd:enumeration value="linear sigma"/>
495
+ </xsd:restriction>
496
+ </xsd:simpleType>
497
+ <xsd:simpleType name="ST_ShadowType">
498
+ <xsd:restriction base="xsd:string">
499
+ <xsd:enumeration value="single"/>
500
+ <xsd:enumeration value="double"/>
501
+ <xsd:enumeration value="emboss"/>
502
+ <xsd:enumeration value="perspective"/>
503
+ </xsd:restriction>
504
+ </xsd:simpleType>
505
+ <xsd:simpleType name="ST_StrokeLineStyle">
506
+ <xsd:restriction base="xsd:string">
507
+ <xsd:enumeration value="single"/>
508
+ <xsd:enumeration value="thinThin"/>
509
+ <xsd:enumeration value="thinThick"/>
510
+ <xsd:enumeration value="thickThin"/>
511
+ <xsd:enumeration value="thickBetweenThin"/>
512
+ </xsd:restriction>
513
+ </xsd:simpleType>
514
+ <xsd:simpleType name="ST_StrokeJoinStyle">
515
+ <xsd:restriction base="xsd:string">
516
+ <xsd:enumeration value="round"/>
517
+ <xsd:enumeration value="bevel"/>
518
+ <xsd:enumeration value="miter"/>
519
+ </xsd:restriction>
520
+ </xsd:simpleType>
521
+ <xsd:simpleType name="ST_StrokeEndCap">
522
+ <xsd:restriction base="xsd:string">
523
+ <xsd:enumeration value="flat"/>
524
+ <xsd:enumeration value="square"/>
525
+ <xsd:enumeration value="round"/>
526
+ </xsd:restriction>
527
+ </xsd:simpleType>
528
+ <xsd:simpleType name="ST_StrokeArrowLength">
529
+ <xsd:restriction base="xsd:string">
530
+ <xsd:enumeration value="short"/>
531
+ <xsd:enumeration value="medium"/>
532
+ <xsd:enumeration value="long"/>
533
+ </xsd:restriction>
534
+ </xsd:simpleType>
535
+ <xsd:simpleType name="ST_StrokeArrowWidth">
536
+ <xsd:restriction base="xsd:string">
537
+ <xsd:enumeration value="narrow"/>
538
+ <xsd:enumeration value="medium"/>
539
+ <xsd:enumeration value="wide"/>
540
+ </xsd:restriction>
541
+ </xsd:simpleType>
542
+ <xsd:simpleType name="ST_StrokeArrowType">
543
+ <xsd:restriction base="xsd:string">
544
+ <xsd:enumeration value="none"/>
545
+ <xsd:enumeration value="block"/>
546
+ <xsd:enumeration value="classic"/>
547
+ <xsd:enumeration value="oval"/>
548
+ <xsd:enumeration value="diamond"/>
549
+ <xsd:enumeration value="open"/>
550
+ </xsd:restriction>
551
+ </xsd:simpleType>
552
+ <xsd:simpleType name="ST_ImageAspect">
553
+ <xsd:restriction base="xsd:string">
554
+ <xsd:enumeration value="ignore"/>
555
+ <xsd:enumeration value="atMost"/>
556
+ <xsd:enumeration value="atLeast"/>
557
+ </xsd:restriction>
558
+ </xsd:simpleType>
559
+ <xsd:simpleType name="ST_EditAs">
560
+ <xsd:restriction base="xsd:string">
561
+ <xsd:enumeration value="canvas"/>
562
+ <xsd:enumeration value="orgchart"/>
563
+ <xsd:enumeration value="radial"/>
564
+ <xsd:enumeration value="cycle"/>
565
+ <xsd:enumeration value="stacked"/>
566
+ <xsd:enumeration value="venn"/>
567
+ <xsd:enumeration value="bullseye"/>
568
+ </xsd:restriction>
569
+ </xsd:simpleType>
570
+ </xsd:schema>